/*! ========================================================================
===========================================================================

	report.css
	---------------------------
	// Last modified: 2022/08/24

===========================================================================
======================================================================== */

.report .page-ttl-box {
	height: 205px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	position: relative;
	background: #c6c2b2;
}
.report .page-ttl-box::after {
	position: absolute;
	content: "";
	width: 1px;
	height: 50px;
	top: 80%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #fff;
}
.report .page-ttl {
	font-size: 3rem;
	line-height: 1.6;
	color: #fff;
	text-align: center;
	letter-spacing: .2em;
}
.report .page-ttl span{
	display: block;
	font-size: 1.8rem;
	color: #fff;
	letter-spacing: 0;
}

@media screen and (max-width: 1029px){
	.report .page-ttl-box {
		margin-top: 60px;
	}
}
@media screen and (max-width: 767px){
	.report .page-ttl-box {
		padding-top: 12px;
		height: 100px;
		align-items: flex-start;
	}
	.report .page-ttl-box::after {
		width: 1px;
		height: 28px;
		top: unset;
		bottom: -3px;
	}
	.report .page-ttl {
		font-size: 2rem;
		line-height: 1.2;
	}
	.report .page-ttl .en-font{
		font-size: 1.6rem;
	}
}

body.-report{
	padding-top: 0;
}
@media (max-width: 700px){
	body.-report{
		padding-top: 50px;
	}
}
.report-area{
	padding-bottom: 100px;
}
.report-box{
	margin: 70px 0 0;
	line-height: 1.8;
}
.report .sec_ttl_area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}
.report .sec_ttl_area .sec_ttl {
  font-size: 35px;
  font-weight: normal;
}
.report .sec_ttl_area .date {
  font-size: 18px;
  padding-bottom: 4px;
}
.report .txt {
  font-size: 18px;
  line-height: 1.6;
}
.new-report{
	padding: 2px 8px;
	margin-right: 10px;
	display: inline-block;
	background: #8D2041;
	font-size: 1.3rem;
	color: #fff;
}
.report .col-2{
	gap: 38px;
	margin: 20px auto 0;
	width: 100%;
}
.col-2 > .flex-item {
    width: calc(50% - 19px);
    position: relative;
    z-index: 2;
	margin: 0;
}
.report-box .caption {
    margin: 8px 0;
    font-size: 1.5rem;
    line-height: 1.4;
}
@media screen and (max-width: 700px){
	.report-area{
		padding-bottom: 50px;
	}
	.report-box{
		margin: 40px 0;
	}
	.report .sec_ttl_area {
	  margin-bottom: 24px;
	  display: block;
	}
	.report .sec_ttl_area .sec_ttl {
	  font-size: 18px;
	}
	.report .sec_ttl_area .date {
	  font-size: 11px;
	  padding-bottom: 2px;
	}
	.report .txt {
	  font-size: 15px;
	}
	.new-report {
		padding: 1px 6px;
		font-size: 1.1rem;
	}
	.col-2 {
		gap: 16px;
	}
	.col-2 > .flex-item {
		width: 100%;
	}
	.report-box .caption {
		font-size: 1.3rem;
	}
}




.inline-block{
	display: inline-block;
}
@keyframes fI {
	0%{
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}