@charset "utf-8";

/* Voice Styles */


/* Article
------------------------------------------------------------- */

.voice_article_box {
	margin: 0 0 60px 0;
	padding: 0;
}

.voice_article_box::after {
	content:"";
	display:block;
	clear:both;
}

.voice_article_box > h2 {
	margin: 0;
	padding: 8px 2px;
	line-height: 1.4;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0;
	border-top: 5px solid #067d9b;
	position: relative;
}

.voice_article_box > h2 a,
.voice_article_box > h2 a:hover,
.voice_article_box > h2 a:active {
	text-decoration: none;
	color: #151515;
}

.voice_article_box > h2 a:hover,
.voice_article_box > h2 a:active {
	text-decoration: underline;
}

.voice_organizer {
	margin: 0 0 20px 0;
	padding: 0;
	display: grid;
	grid-template-columns: 120px 1fr;
}

.voice_organizer::after {
	content:"";
	display:block;
	clear:both;
}

.voice_organizer img {
	width: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
	float: left;
	vertical-align: bottom;
}

.voice_organizer .organizer_name {
	font-size: 1.4rem;
	align-self: end;
	padding-left: 20px;
}

.voice_organizer .organizer_name .katagaki {
	font-size: 1.35rem;
	line-height: 1.6;
	margin-bottom: 3px;
}

.voice_organizer .organizer_name .name {
	font-size: 1.4rem;
	line-height: 1.6;
}

.voice_organizer .organizer_name .name span {
	display: inline-block;
	font-size: 1.6rem;
	margin-left: 0.8em;
}

dl.voice_list {
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 1.5rem;
	background-color: #f9f5ed;
	border-bottom: 1px solid #d5d5d5;
}

dl.voice_list dt {
	font-weight: 500;
	width: 6em;
	padding: 6px 15px 6px 0;
	text-align: right;
	white-space: nowrap;
	float: left;
	clear: left;
	border-top: 1px solid #d5d5d5;
}

dl.voice_list dd {
	width: calc(100% - 6em);
	margin-left: 6em;
	padding: 6px 10px 6px 15px;
	background-color: #fff;
	border-top: 1px solid #d5d5d5;
}

dl.voice_list dd a::after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -0.2em;
	margin-left: 0.2em;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/icon_extlink_blue.svg);
}

.voice_img {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}

.voice_img > a {
	margin-bottom: 20px;
}

.voice_img img {
	width: 100%;
}

.voice_comment {
	background-color: #f2f2f2;
	padding: 20px;
}

.voice_notes {
	font-size: 1.4rem;
	color: #808080;
	background-color: #f2f2f2;
	padding: 0 20px 20px 20px;
}


/* Details
------------------------------------------------------------- */

.voice_details_box {
	margin: 0 0 40px 0;
	padding: 0;
}

.voice_details_box::after {
	content:"";
	display:block;
	clear:both;
}

.voice_details_box > h2 {
	width: 100%;
	margin: 0 0 20px 0;
	padding: 8px 15px;
	line-height: 1.6;
	font-size: 2.2rem;
	font-weight: 400;
	text-align: left;
	color: #fff;
	background-color: #006865;
	background: linear-gradient(45deg,#067d9b 0%, #36c6c1 50%, #069b69 100%);
}



/* for SmallSize
--------------------------------------------------------------------------------- */
@media print, screen and (min-width:360px) {



}





/* for MiddleSize(480-)
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:640px) {

	/* Details
	------------------------------------------------------------- */

	.voice_details_box > .voice_img {
		width: 100%;
		max-width: 760px;
		margin: 30px auto;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
		gap: 20px;
		align-items: flex-start;
	}

	.voice_details_box > .voice_img > a {
		margin: 0;
	}


}





/* for MiddleSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:788px) {

	/* Article
	------------------------------------------------------------- */

	.voice_article_box > h2 {
	font-size: 2rem;
	}

	.voice_article_box {
		display: grid;
		grid-template-areas: "title title" "organizer img" "list img" "comment comment" "note note";
		grid-template-columns: 1fr 240px;
		grid-template-rows: auto 165px auto auto auto;
		align-content: start;
		align-items: start;
	}

	.voice_article_box h2 {
		grid-area: title;
	}

	.voice_organizer {
		grid-area: organizer;
	}

	.voice_article_box .voice_img {
		max-width: none;
		width: 100%;
		grid-area: img;
		align-items: start;
	}

	.voice_article_box dl.voice_list {
		margin-right: 40px;
		grid-area: list;
		align-items: start;
	}

	.voice_comment {
		grid-area: comment;
	}

	.voice_notes {
		grid-area: note;
	}


}





/* for LargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:980px) {

	/* Article
	------------------------------------------------------------- */

	.voice_article_box {
		grid-template-columns: 1fr 300px;
		grid-template-rows: auto 200px auto auto auto;
	}

	.voice_article_box dl.voice_list {
		font-size: 1.6rem;
	}

	.voice_organizer {
		grid-template-columns: 150px 1fr;
	}

	.voice_organizer .organizer_name {
		font-size: 1.5rem;
		padding-left: 30px;
	}

	.voice_organizer .organizer_name .katagaki {
		font-size: 1.45rem;
	}

	.voice_organizer .organizer_name .name {
		font-size: 1.5rem;
	}

	.voice_organizer .organizer_name .name span {
		font-size: 1.7rem;
	}



	/* Details
	------------------------------------------------------------- */

	.voice_details_box > h2 {
		font-size: 2.4rem;
	}


}





/* for LargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:1080px) {

	/* Details
	------------------------------------------------------------- */

	.voice_details_box > .voice_img {
		width: 100%;
		max-width: 960px;
		grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
		gap: 30px ;
	}


}





/* for ExtraLargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:1280px) {

	/* Article
	------------------------------------------------------------- */

	.voice_article_box > h2 {
		font-size: 2.2rem;
	}


	/* Details
	------------------------------------------------------------- */

	.voice_details_box > h2 {
		font-size: 2.6rem;
	}




}





/*** Print Styles ***/

@media print {

	.voice_article_box {
		break-inside: avoid;
		grid-template-columns: 1fr 200px;
		grid-template-rows: auto 140px auto auto auto;
	}

	.voice_article_box:first-child {
		margin-top: 0;
	}

	.voice_organizer {
		grid-template-columns: 100px 1fr;
	}

	.voice_organizer .organizer_name {
		padding-left: 20px;
	}

	dl.voice_list {
		font-size: 1.4rem;
	}
	.voice_article_box .voice_img {
		display: block;
	}

	.voice_img img {
		width: 100%;
		margin-bottom: 10px;
	}

	.voice_article_box .voice_img > a {
		width: 100%;
	}

	/* Details
	------------------------------------------------------------- */

	.voice_details_box > .voice_img {
		max-width: 90%;
		grid-template-columns: 1fr 1fr;
		gap: 20px ;
	}


}


