@charset "utf-8";

/* ////////////////////////////////////////////////////////////
	File Name	report.css
*/

.unit-headline {
	padding-bottom: 30px;
}

/*============================================================
	 見出し
*/
.headline {
	margin: 0 0 60px 0;
}
.headline .head {
	text-align: center;
	font-size: 34px;
	line-height: 1.5;
}
.headline .head .h span {
	display: inline-block;
}
.headline .head .line {
	margin: 30px auto 0 auto;
	width: 100px;
	height: 1px;
}
.headline .head .line::after {
	content: '';
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	background-color: #00a09b;
}

/* ANIM */
.headline .head .h {
	opacity: 0;
	transform: translateY(30px);
	transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0.8s linear 0s;
}
.loaded .headline .head .h {
	opacity: 1;
	transform: translateY(0px);
}
.headline .head .line::after {
	width: 0%;
	transition: width 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0s;
}
.loaded .headline .head .line::after {
	width: 100%;
}

/* SP */
@media screen and (max-width: 768px) {
	.headline {
		margin: 0 0 40px 0;
	}
	.headline .head {
		font-size: 24px;
	}
	.headline .line {
		margin-top: 20px;
		width: 80px;
	}
}

/*============================================================
	 コンテンツ
*/
.content {
	padding: 0;
	max-width: 100%;
}
.container {
	position: relative;
	margin: 0 auto;
	padding: 0 50px;
	max-width: 942px;
}

/* SP */
@media screen and (max-width: 768px) {
	.container {
		padding: 0 25px;
	}
}

/*============================================================
	 メイン
*/

/* SP */
@media screen and (max-width: 768px) {
	.report-main .container {
		padding: 0;
	}
}

/*============================================================
	 基本記事
*/
.report-article {
	margin: 80px 0 90px 0;
	font-size: 16px;
	line-height: 2.2;
}
.report-article:last-child {
	margin-bottom: 120px;
}
.report-article .heading {
	margin: 0 0 40px 0;
	text-align: center;
	font-size: 24px;
	line-height: 1.7;
	color: #00a09b;
}
.report-photo {
	margin: 80px 0 110px 0;
}
.report-photo .container {
	max-width: 730px;
}
.report-photo .caption {
	margin: 10px 0 0 0;
}

/* SP */
@media screen and (max-width: 768px) {
	.report-article {
		margin: 40px 0 50px 0;
		font-size: 15px;
		line-height: 2;
	}
	.report-article:last-child {
		margin-bottom: 50px;
	}
	.report-article .heading {
		margin: 0 0 20px 0;
	}
	.report-photo {
		margin: 40px 0 50px 0;
	}
	.report-photo .caption {
		font-size: 13px;
		line-height: 1.7;
	}
}

/*============================================================
	座談会
*/
/* メンバー */
.report-talk .member {
	position: relative;
	margin: 0 0 90px 0;
	background-color: #e6e6e6;
}
.report-talk .member::before {
	content: '';
	display: block;
	position: absolute;
	top: -2px;
	left: 0;
	width: 100%;
	height: 70px;
	background-color: #f0f0f0;
}
.report-talk .member .list {
	padding: 70px 0 40px 0;
}
.report-talk .member .list ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	max-width: 690px;
}
.report-talk .member .list ul li {
	flex-basis: 33.333%;
	max-width: 33.333%;
	margin: 0 0 40px 0;
	padding: 0 20px;
	line-height: 1.5;
}
.report-talk .member .list ul li .portrait {
	position: relative;
}
.report-talk .member .list ul li .portrait span {
	overflow: hidden;
	display: block;
	margin: 0 auto;
	width: 100px;
	border-radius: 50%;
}
.report-talk .member .list ul li .portrait i {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: 48px;
	font-size: 10px;
	line-height: 1.2;
}
.report-talk .member .list ul li .name {
	margin: 10px 0;
	text-align: center;
	font-size: 20px;
}
.report-talk .member .list ul li p {
	font-size: 13px;
}

/* SP */
@media screen and (max-width: 768px) {
	.report-talk .member {
		margin: 0 0 50px 0;
	}
	.report-talk .member .container {
		padding: 0;
	}
	.report-talk .member .list {
		padding: 40px 0 20px 0;
	}
	.report-talk .member .list ul {
		padding: 0 13px;
	}
	.report-talk .member .list ul li {
		margin: 0 0 20px 0;
		padding: 0 12px;
	}
}
@media screen and (max-width: 500px) {
	.report-talk .member .list ul li {
		flex-basis: 50%;
		max-width: 50%;
	}
	.report-talk .member .list ul li .portrait i {
		margin-left: 35px;
		white-space: nowrap;
	}
}

/* 本文 */
.report-talk .section {
	margin: 0 0 90px 0;
}
.report-talk .section .h {
	padding: 0 0 10px 0;
	font-size: 24px;
	line-height: 1.7;
	color: #00a09b;
}
.report-talk .section .text {
	font-size: 16px;
	line-height: 2.2;
}
.report-talk .section .text p {
	margin-top: 2em;
}
.report-talk .section .text p.last {
	margin-top: 4em;
}
.report-talk .section .text p .name {
	color: #00a09b;
}

/* SP */
@media screen and (max-width: 768px) {
	.report-talk .section {
		margin: 0 0 50px 0;
	}
	.report-talk .section .h {
		padding: 0;
		font-size: 18px;
	}
	.report-talk .section .text {
		font-size: 15px;
		line-height: 2;
	}
}

/* 画像 */
.report-talk .photo {
	margin: 0 0 90px 0;
}

/* SP */
@media screen and (max-width: 768px) {
	.report-talk .photo {
		margin: 0 0 50px 0;
	}
	.report-talk .photo .container {
		padding: 0;
	}
}
