/* About  */

.sec-about-message {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 4.167%;
	margin-bottom: 100px;
}
.sec-about-message-flex {
	display: flex;
	align-items: flex-start;
	width: 100%;
	gap: 50px;
}

.about-message-cont {
	width: 100%;
	max-width: 1000px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 30px;
	align-items: flex-start;
}
.about-message-cont .txt-box {
	font-size: 16px;
	color: #23527c;
	line-height: 1.5;
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 30px;
}
.about-message-cont .txt-box > p:nth-of-type(2) {
	align-self: flex-end;
	font-size: 16px;
}

.about-message-img {
	width: 34.35%;
	max-width: 550px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.about-message-img > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 999px) {
	.sec-about-message {
		padding: 0 7.7%;
		margin-bottom: 50px;
	}
	.about-message-cont .txt-box {
		font-size: 14px;
		line-height: 1.8;
		gap: 20px;
	}
	.about-message-cont .txt-box > p:nth-of-type(2) {
		font-size: 12px;
	}
}

@media screen and (max-width: 768px) {
	.sec-about-message-flex {
		gap: 30px;
		flex-flow: column;
	}

	.about-message-cont {
		max-width: none;
	}
	.about-message-img {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
}
.sec-about-detail {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 4.167%;
	margin-bottom: 200px;
}
.sec-about-detail .sec-inner {
	background: #fff;
	padding: 100px;
}

.about-detail-cont {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 30px;
	align-items: flex-start;
}
.about-detail-cont .txt-box {
	font-size: 16px;
	color: #23527c;
	line-height: 2;
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 30px;
}

@media screen and (max-width: 999px) {
	.sec-about-detail {
		padding: 0 7.7%;
		margin-bottom: 50px;
	}
	.sec-about-detail .sec-inner {
		padding: 20px;
	}

	.about-detail-cont .h2-box {
		gap: 20px;
	}
	.about-detail-cont .h2-box > h2 {
		font-size: 24px;
	}

	.about-detail-cont .txt-box {
		font-size: 14px;
		line-height: 1.8;
	}
}

.sec-laboratory-list {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 4.167%;
	margin-bottom: 100px;
	margin-top: -100px;
	padding-top: 100px;
}

.laboratory-list-cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 30px;
	align-items: flex-start;
}
.laboratory-list-cont .h2-box {
	flex-flow: row;
	align-items: flex-end;
	justify-content: space-between;
}
.laboratory-list-cont .h2-box > small {
	flex-shrink: 0;
	font-size: 14px;
}
.laboratory-list-area {
	width: 100%;
	position: relative;
	background: #fff;
	padding: 0 50px;
	display: flex;
	flex-flow: column;
	gap: 0;
}
.laboratory-member-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 15px;
	column-gap: 20px;
	margin-bottom: 50px;
}
.laboratory-member-card {
	display: flex;
	align-items: flex-start;
	background: #f5f5f5;
	width: 100%;
	transition: all ease 0.33s;
	cursor: pointer;
}
.laboratory-member-card.no-link {
	pointer-events: none;
	cursor: initial;
}
.laboratory-member-card:hover {
	opacity: 0.6;
}
.laboratory-member-card.no-link:hover {
	opacity: 1;
}
.laboratory-member-card > figure {
	width: 80px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
}
.laboratory-member-card > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.laboratory-member-card > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	padding: 15px;
	gap: 5px;
	letter-spacing: 0;
	line-height: 1.2;
}
.laboratory-member-card > div > h4 {
	font-size: 14px;
	font-weight: bold;
	color: #23527c;
}
.laboratory-member-card > div > p {
	font-size: 13px;
	font-weight: 400;
}
.laboratory-member-card > div > span {
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 400;
	background: #23527c;
	color: #fefefe;
	padding: 2px 5px;
	border-radius: 3px;
	margin-top: 5px;
}
.laboratory-member-card > div > span.badge-chief {
	background: #23527c;
}
.laboratory-member-card > div > span.badge-hakubi {
	background: #1c583c;
}
.laboratory-member-card > div > span.badge-ecl {
	background: #800000;
}

@media screen and (max-width: 1400px) {
	.laboratory-member-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 999px) {
	.sec-laboratory-list {
		padding: 0 7.7%;
		margin-bottom: 50px;
		padding-top: 70px;
		margin-top: -70px;
	}

	.laboratory-list-cont {
		gap: 10px;
	}

	.laboratory-list-cont .h2-box {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 20px;
	}
	.laboratory-list-cont .h2-box > small {
		font-size: 12px;
	}
	.laboratory-list-area {
		padding: 0 20px;
	}
	.laboratory-member-grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 10px;
		column-gap: 10px;
		margin-bottom: 20px;
	}
	.laboratory-member-card > figure {
		width: 60px;
	}
	.laboratory-member-card > div {
		padding: 10px;
	}
	.laboratory-member-card > div > h4 {
		font-size: 14px;
	}
	.laboratory-member-card > div > p {
		font-size: 13px;
	}
	.laboratory-member-card > div > span {
		margin-top: 0px;
	}
}

@media screen and (max-width: 600px) {
	.laboratory-member-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}
/* Concept */

.sec-concept-target {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 4.167%;
	margin-bottom: 150px;
}
.sec-concept-target-flex {
	display: flex;
	align-items: flex-start;
	width: 100%;
	gap: 90px;
}

.concept-target-cont {
	width: 100%;
	max-width: 1000px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 30px;
	align-items: flex-start;
}
.concept-target-cont .h2-box > h2 {
	letter-spacing: 0;
}
.concept-target-cont .txt-box {
	font-size: 16px;
	color: #23527c;
	line-height: 1.5;
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 30px;
	margin-bottom: 20px;
	max-width: 600px;
}

.concept-target-img {
	width: 50%;
	max-width: 800px;
	aspect-ratio: 800 / 550;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.concept-target-img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1700px) {
	.concept-target-cont .h2-box > h2 {
		font-size: 36px;
	}
}
@media screen and (max-width: 1600px) {
	.concept-target-cont .h2-box > h2 {
		font-size: 34px;
	}
}
@media screen and (max-width: 1600px) {
	.concept-target-cont .h2-box > h2 {
		font-size: 30px;
	}
}
@media screen and (max-width: 1400px) {
	.concept-target-cont .h2-box > h2 {
		font-size: 26px;
	}
}
@media screen and (max-width: 1200px) {
	.concept-target-img {
		width: 40%;
	}
}
@media screen and (max-width: 999px) {
	.sec-concept-target {
		padding: 0 7.7%;
		margin-bottom: 50px;
	}

	.sec-concept-target-flex {
		gap: 50px;
	}
	.concept-target-cont {
		gap: 20px;
	}
	.concept-target-cont .h2-box > h2 {
		font-size: 18px;
	}
	.concept-target-cont .txt-box {
		font-size: 14px;
		line-height: 1.8;
		gap: 10px;
		margin-bottom: 10px;
		max-width: none;
	}
}
@media screen and (max-width: 768px) {
	.sec-concept-target-flex {
		gap: 30px;
		flex-flow: column;
	}
	.concept-target-img {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
}

.sec-concept-introduce {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 4.167%;
	margin-bottom: 100px;
}
.concept-introduce-cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 50px;
	align-items: flex-start;
}
.concept-introduce-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 50px;
	column-gap: 40px;
}
.concept-introduce-card {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 20px;
	transition: all ease-in-out 0.33s;
}
.concept-introduce-card:hover {
	opacity: 0.6;
}
.concept-introduce-card > figure {
	width: 100%;
	aspect-ratio: 780 / 440;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.concept-introduce-card > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.concept-introduce-body {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 10px;
	align-items: flex-start;
}
.concept-introduce-body > .lab-flex {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 15px;
}
.concept-introduce-body > .lab-flex > span {
	display: flex;
	width: auto;
	height: auto;
	background: #444;
	max-width: 100px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	justify-content: center;
	align-items: center;
	color: #fff;
	padding: 10px 10px 8px;
	border-radius: 5px;
	flex-shrink: 0;
}
.concept-introduce-body > .lab-flex > p {
	font-size: 16px;
	font-weight: 500;
	color: #23527c;
}
.concept-introduce-body > .lab-flex > span.badge-physics {
	background: #23527c;
}
.concept-introduce-body > .lab-flex > span.badge-biology {
	background: #1c583c;
}
.concept-introduce-body > .lab-flex > span.badge-engineering {
	background: #800000;
}
.concept-introduce-body > .lab-flex > span.badge-chemistry {
	background: #61397f;
}

.concept-introduce-body > h3 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.33;
	color: #23527c;
}
.concept-introduce-body > p {
	font-size: 18px;
	font-weight: bold;
	line-height: 2;
	color: #23527c;
}

@media screen and (max-width: 999px) {
	.sec-concept-introduce {
		padding: 0 7.7%;
		margin-bottom: 50px;
	}
	.concept-introduce-cont {
		width: 100%;
		display: flex;
		flex-flow: column;
		justify-content: center;
		gap: 20px;
		align-items: flex-start;
	}
	.concept-introduce-body > span {
		height: 25px;
		font-size: 12px;
	}
	.concept-introduce-body > h3 {
		font-size: 18px;
	}
	.concept-introduce-body > p {
		font-size: 14px;
		line-height: 1.8;
	}
}

@media screen and (max-width: 768px) {
	.concept-introduce-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
	}
	.concept-introduce-card {
		gap: 10px;
	}
}

/* Recruit */
.recruit .lower-heading {
	margin-bottom: 0;
}
.sec-recruit-mv {
	width: 100%;
	position: relative;
	height: 630px;
	background-image: url(../images/recruit/recruit-mv.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-bottom: 100px;
}
.recruit-mv-inner {
	position: relative;
	width: 100%;
	height: 100%;
	background: linear-gradient(-90deg, rgb(0 0 0 / 50%), transparent);
	z-index: 0;
}
.recruit-mv-txt {
	position: absolute;
	bottom: 80px;
	right: 4.167%;
	width: 41.67%;
	max-width: 800px;
	color: #fefefe;
	display: flex;
	flex-flow: column;
	gap: 30px;
	align-items: flex-start;
}
.recruit-mv-txt > h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
}
.recruit-mv-txt > p {
	font-size: 14px;
	line-height: 1.5;
}

.sec-recruit-system {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 4.167%;
	margin-bottom: 126px;
}
.sec-recruit-system-flex {
	display: flex;
	align-items: flex-start;
	width: 100%;
	gap: 50px;
}

.recruit-system-cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 30px;
	align-items: flex-start;
}
.recruit-system-cont .h2-box > h2 {
	letter-spacing: 0;
}
.recruit-system-cont .txt-box {
	font-size: 16px;
	color: #23527c;
	line-height: 2;
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 30px;
	margin-bottom: 20px;
	max-width: 750px;
}
.recruit-system-img {
	width: 50%;
	max-width: 800px;
	aspect-ratio: 800 / 550;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.recruit-system-img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sec-recruit-desc {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 4.167%;
	margin-bottom: 100px;
}
.recruit-desc-cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 30px;
	align-items: flex-start;
}
.recruit-desc-cont .h2-box {
	flex-flow: row;
	align-items: flex-end;
	justify-content: space-between;
}
.recruit-desc-cont .h2-box > small {
	flex-shrink: 0;
	font-size: 14px;
}
.recruit-desc-cont .h2-box > small > span {
	display: none;
}
.recruit-desc-tbl-area {
	width: 100%;
	position: relative;
}

.c-table {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 5px;
}
.c-table-head {
	width: 100%;
	display: grid;
	grid-template-columns: 6fr 3fr 7fr;
	gap: 5px;
}
.c-table-head div {
	background: #23527c;
	color: #fefefe;
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 1;
}
.c-table-body {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
}
.c-table-row {
	width: 100%;
	display: grid;
	grid-template-columns: 6fr 3fr 7fr;
	gap: 5px;
	background: #fff;
}
.c-table-row > div {
	color: #23527c;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 1.8;
	padding: 20px;
}
.c-table-row > div > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 5px;
}
.c-table-row > div > div > p {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.78;
}
.c-table-row > div > div > span {
	font-size: 16px;
	line-height: 1.4;
}

.c-table-row > div a {
	width: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: underline;
	text-underline-offset: 3px;
	position: relative;
	transition: all ease-in-out 0.33s;
}
.c-table-row > div a:hover {
	opacity: 0.6;
}
.c-table-row > div a::after {
	content: "";
	width: 12px;
	height: 12px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/icons/icon-external-link.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all ease 0.33s;
	flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
	.c-table-head div {
		height: 40px;
		font-size: 14px;
	}
	.c-table-row > div {
		font-size: 13px;
		padding: 10px;
	}
	.c-table-row > div > div > p {
		font-size: 14px;
	}
	.c-table-row > div > div > span {
		font-size: 13px;
	}

	.c-table-row > div a {
		font-size: 13px;
	}
	.c-table-row > div a::after {
		width: 10px;
		height: 10px;
	}
}
@media screen and (max-width: 999px) {
	.sec-recruit-mv {
		padding: 0;
		aspect-ratio: 390 / 394;
		max-height: 46.7vh;
		margin-bottom: 40px;
		background-position: 35% center;
	}

	.recruit-mv-inner {
		background: linear-gradient(0deg, rgb(0 0 0 / 50%), transparent);
	}
	.recruit-mv-txt {
		bottom: 30px;
		right: 0;
		width: 100%;
		max-width: none;
		gap: 20px;
		padding: 0 7.7%;
	}
	.recruit-mv-txt > h2 {
		font-size: 24px;
		letter-spacing: 0.1em;
	}
	.recruit-mv-txt > p {
		font-size: 14px;
		line-height: 1.8;
	}

	.sec-recruit-system {
		padding: 0 7.7%;
		margin-bottom: 50px;
	}
	.sec-recruit-system-flex {
		gap: 50px;
	}
	.recruit-system-cont {
		gap: 20px;
	}
	.recruit-system-cont .txt-box {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 10px;
		max-width: none;
	}
	.recruit-system-cont .btn-box {
		justify-content: flex-end;
	}

	.sec-recruit-desc {
		padding: 0 7.7%;
		margin-bottom: 50px;
	}
	.recruit-desc-cont {
		gap: 20px;
	}

	.recruit-desc-cont .h2-box {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 20px;
	}
	.recruit-desc-cont .h2-box > small {
		font-size: 12px;
	}
	.recruit-desc-cont .h2-box > small > span {
		display: inline;
	}
	.recruit-desc-tbl-area {
		overflow-x: auto;
	}

	.c-table {
		width: 900px;
	}
}

@media screen and (max-width: 768px) {
	.sec-recruit-system-flex {
		flex-flow: column;
		gap: 30px;
	}
	.recruit-system-img {
		width: 100%;
		max-width: none;
	}
}

/* News */

.sec-news {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 4.167%;
	margin-bottom: 100px;
}
.news-cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 100px;
	align-items: center;
}
.news-cont .btn-box {
	justify-content: center;
}

.news-filter-box {
	margin-bottom: 30px;
}

@media screen and (max-width: 999px) {
	.sec-news {
		padding: 0 7.7%;
		margin-bottom: 50px;
	}
	.news-cont {
		gap: 50px;
	}
}

/* Story */

.sec-story-list {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 4.167%;
	margin-bottom: 100px;
}

@media screen and (max-width: 999px) {
	.sec-story-list {
		padding: 0 7.7%;
		margin-bottom: 50px;
	}
}

/* Story_info */

.story_info .lower-heading {
	margin-bottom: 0;
}
.sec-story-info-mv {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 4.167%;
	width: 100%;
	position: relative;
	height: auto;
	margin-bottom: 80px;
	aspect-ratio: 1600 / 900;
	max-height: 900px;
}

.story-info-mv-inner {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1600px;
	margin: 0 auto;
}
.story-info-mv-inner::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: 10;
	background: linear-gradient(0deg, rgb(0 0 0 / 50%), transparent);
}
.story-info-mv-inner img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: 0;
}
.story-info-mv-inner .notes {
	bottom: 10px;
    color: #fff;
	font-size: .8rem;
	position: absolute;
	right: 10px;
    z-index: 11;
}
.story-info-mv-txt {
	position: absolute;
	bottom: 8.89%;
	left: 5%;
	width: 90%;
	color: #fefefe;
	display: flex;
	flex-flow: column;
	gap: 5px;
	align-items: flex-start;
	z-index: 20;
}
.story-info-mv-txt > span {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
}
.story-info-mv-txt > h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.story-info-mv-txt > p {
	font-size: 18px;
	line-height: 1.8;
}
.story-info-mv-txt > p > span {
	border-left: 1px solid #fff;
	font-weight: bold;
    margin-left: 10px;
    padding-left: 15px;
}
.sec-story-info-mv .mv-pc {
	display: block;
}
.sec-story-info-mv .mv-sp {
	display: none;
}

.sec-story-info-content {
	width: 100%;
	position: relative;
	padding: 0 4.167%;
	margin-bottom: 126px;
}
.story-info-content-flex {
	display: flex;
	align-items: flex-start;
	width: 100%;
	gap: 80px;
}
.story-info-content {
	width: 100%;
	max-width: 1040px;
	padding-right: 3.125%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
	overflow: hidden;
	position: relative;
}
.story-info-content > section {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
.story-info-content > section h2 {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #23527c;
}
.story-info-content > section > p {
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.8;
}
.story-info-content > section > p.narration {
	font-weight: bold;
}
.story-info-content > section > figure {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 15px;
	align-items: center;
}
.story-info-content > section > figure > img {
	object-fit: contain;
}
.story-info-content > section > figure > figcaption {
	font-size: 14px;
	text-align: center;
}
.author-info-box {
	width: 100%;
	margin: 0 auto;
	max-width: 590px;
	background: #fff;
	align-items: flex-end;
	display: flex;
	padding: 30px;
	gap: 30px;
}
.author-info-box a {
	text-decoration: underline;
}
.author-info-box a:hover {
	text-decoration: none;
}
.author-info-box > figure {
	width: 28.3%;
	height: auto;
	aspect-ratio: 150 / 180;
	max-width: 150px;
	flex-shrink: 0;
}
.author-info-box > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.author-info-box > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 10px;
	align-items: flex-start;
}
.author-info-box > div > p {
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #23527c;
}
.author-info-box > div > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 5px;
	align-items: flex-start;
}
.author-info-box > div > div > p {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #23527c;
}
.author-info-box > div > div > span {
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #888888;
	font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 1400px) {
	.story-info-mv-txt > span {
		font-size: 16px;
	}
	.story-info-mv-txt > h2 {
		font-size: 30px;
	}
	.story-info-mv-txt > p {
		font-size: 18px;
	}
}
@media screen and (max-width: 1200px) {
	.story-info-content-flex {
		gap: 50px;
	}
}
@media screen and (max-width: 999px) {
	.sec-story-info-mv {
		padding: 0;
		aspect-ratio: 390 / 394;
		max-height: 46.7vh;
		margin-bottom: 40px;
	}
	.story-info-mv-inner .notes {
		font-size: 0.6rem;
	}
	.story-info-mv-txt {
		width: 100%;
		bottom: 30px;
		left: 0;
		padding: 0 7.7%;
	}
	.story-info-mv-txt > span {
		font-size: 12px;
	}
	.story-info-mv-txt > h2 {
		font-size: 20px;
	}
	.story-info-mv-txt > h2 br {
		display: none;
	}
	.story-info-mv-txt > p {
		font-size: 13px;
	}
	.sec-story-info-mv .mv-pc {
		display: none;
	}
	.sec-story-info-mv .mv-sp {
		display: block;
	}
	.sec-story-info-content {
		padding: 0 7.7%;
		margin-bottom: 50px;
	}
	.story-info-content-flex {
		gap: 0px;
		flex-flow: column;
	}
	.story-info-content {
		max-width: none;
		padding-right: 0;
		gap: 30px;
	}
	.story-info-content > section {
		gap: 20px;
	}
	.story-info-content > section h2 {
		font-size: 18px;
	}
	.story-info-content > section > p {
		font-size: 14px;
	}
	.story-info-content > section > figure {
		gap: 10px;
	}
	.story-info-content > section > figure > figcaption {
		font-size: 13px;
	}
	.author-info-box {
		padding: 20px;
		gap: 20px;
	}
	.author-info-box > div > p {
		font-size: 12px;
	}
	.author-info-box > div > div > p {
		font-size: 16px;
	}
	.author-info-box > div > div > span {
		font-size: 12px;
	}
}
