@charset "utf-8";

/****************************************
          report 内
*****************************************/

/* team_title */
.team_title {
	margin-top: 50px;
	line-height: 1;
}
.team_title p {
	width: 45%;
	margin: 0 0 0 auto;
}
.team_title img {
	display: inline-block;
	width: 100%;
	max-width: 460px;
	height: auto;
}

@media screen and (max-width: 669px) {
	.team_title h1 {
		width: 50%;
	}
}


/* report_tit */
.report_tit {
	font-size: 2.6rem;
	margin: 80px 0 50px;
	text-align: center;
}

/* report_content_txt */
.report_content_txt {
	margin-top: 30px;
}
.report_content_txt p {
	margin-bottom: 2em;
	font-size: 1.6rem;
	line-height: 2;
}
/* c-text-note */
.report_content .c-text-note {
  margin-left: 1em;
}
.report_content .c-text-note:before {
    display: inline-block;
    content: "※";
    text-indent: -1em;
  }

/* report_content_pic */
.report_content_pic {
	margin-top: 30px;
}
.report_content_pic .cap {
	display: block;
	font-size: 1.4rem;
	text-align: center;
}
.report_content_pic img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.report_content_pic.w80 {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}
.report_copyright {
	font-size: 1.4rem;
	text-align: right;
}

/* flex_area */
.flex_area {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

.report_content_txt_flex_3 {
	flex: 3;
}

.report_content_pic_flex_1 {
	flex: 1;
	margin: 0 20px;
}

.report_content_pic_flex_1,.report_content_pic_flex_1 p {
		text-align: center;
	}

.report_content_pic_flex_1 img {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 669px) {
	.flex_area {
		flex-direction: column;
	}
	.report_content_pic_flex_1 img{
		max-width: 60%;
    height: auto;
	}
	.report_content_txt_flex_3 .report_content_pic_flex_1 {
		flex: 1 1 100%;
	}
}

/* flex_2 */
.flex_2 {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 80%;
	margin: 0 auto;
	padding: 0;
}
.flex_2 li {
	width: 49%;
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 669px) {
	.flex_2 li {
		width: 100%;
	}
}


/* pref_block */
.pref_block {
	margin-top: 50px;
}
.pref_block h2 {
	border-bottom: 1px solid #09f;
	padding-bottom: 10px;
	font-size: 1.8rem;
}
.pref_block_list {
	list-style: disc;
	margin: 15px 0 0;
}
.pref_block_list li {
	margin: 3px 0;
}
.pref_block_btn {
	margin-top: 15px;
	text-align: right;
}
.pref_block_btn a {
	position: relative;
	display: inline-block;
	border-radius: 100vh;
	border: 2px solid #09f;
	padding: 8px 40px 8px 30px;
	color: #09f;
}
.pref_block_btn a .fa-angle-right {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
.pref_block_btn a .fa-file-pdf {
	padding-left: 5px;
	color: red;
}
.pref_block_btn a:hover {
	opacity: 0.70;
	text-decoration: none;
}

/* back_to_top */
.back_to_top {
	margin-top: 50px;
	text-align: right;
}
.back_to_top a {
	position: relative;
	display: inline-block;
	border-radius: 100vh;
	background-color: #09f;
	padding: 8px 30px 8px 40px;
	color: #fff;
}
.back_to_top a i {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}
.back_to_top a:hover {
	opacity: 0.70;
	text-decoration: none;
}