@charset "UTF-8";


/* ==================================================
	pageContentArea
================================================== */

#pageContentArea {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 5% 7%;
	color: #282e60;
}


/* ==================================================
	記事タイトル
================================================== */

#pagetop {
	padding: 5% 0;
}

#pagetop .day {
	padding: 0 0 1rem;
	font-size: .7rem;
	font-weight: 700;
	color: #282e60;
}

#pagetop h1 {
	margin: 0;
	padding: 0 0 22px;
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 700;
	color: #282e60;
}


/* ==================================================
	開催概要
================================================== */

.trainingInfo {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 18px;
	padding: 14px 1em;
	background-color: #efefef;
	border-radius: 4px;
}

.trainingInfoItem {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0 24px;
	box-sizing: border-box;
	border-right: 1px solid #b7c8db;
}

.trainingInfoItem:first-child {
	padding-left: 0;
}

.trainingInfoItem:last-child {
	border-right: 0;
}

.trainingIcon {
	flex: 0 0 auto;
	margin-right: 14px;
	color: #0068a9;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
	font-variation-settings:
		'FILL' 0,
		'wght' 500,
		'GRAD' 0,
		'opsz' 32;
}

.trainingInfoTxt {
	display: flex;
	flex-direction: column;
	line-height: 1.4;
}

.trainingInfoTxt span {
	margin-bottom: 2px;
	font-size: .75rem;
	font-weight: 700;
	color: #477aa9;
}

.trainingInfoTxt strong {
	font-weight: 700;
	color: #173d70;
}


/* リード
================================================== */

#pagetop .topTxt {
	margin: 0;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.8;
	color: #334f73;
}


/* ==================================================
	レポート
================================================== */

.reportSection {
	padding: 0 0 5%;
}

.reportHeading {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.reportNum {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 56px;
	height: 38px;
	margin-right: 20px;
	background: #0064a8;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 1.1rem;
	line-height: 1;
	font-weight: 700;
}

.reportHeading h2 {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: 700;
	color: #075797;
}

.reportHeading h2::after {
	content: "";
	flex: 1;
	height: 1px;
	margin-left: 20px;
	background: #75a0c4;
}


/* 本文
================================================== */

.reportText {
}

.reportText p {
	margin: 0;
	padding: 0 0 1em;
	font-size: 1.2rem;
	line-height: 1.8;
}


/* ==================================================
	写真
================================================== */

.reportPhotos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.reportPhotos figure {
	margin: 0;
	padding: 0;
}

.reportPhotos img {
	display: block;
	width: 100%;
	height: auto;
}

.reportPhotos figcaption {
	margin-top: 7px;
	line-height: 1.6;
}
.reportPhotos figcaption::before {
	content: "■";
	padding-right: 3px;
}


/* ==================================================
	03
================================================== */

.reportLast {
	padding-top: 6px;
	padding-bottom: 10px;
}

.reportLast .reportHeading {
	margin-bottom: 10px;
}

.reportTextWide {
}

.reportTextWide p {
	max-width: none;
}


/* ==================================================
	Tablet
================================================== */

@media screen and (max-width: 1000px) {

	#pagetop h1 {
		font-size: 3vw;
	}

	.reportHeading h2 {
		font-size: 2.2vw;
	}

}


/* ==================================================
	Mobile
================================================== */

@media screen and (max-width: 767px) {

	#pageContentArea {
		padding: 0 5% 12%;
	}

	#pagetop h1 {
		padding-bottom: 16px;
		font-size: 1.35rem;
		line-height: 1.45;
	}


	/* 開催概要 */

	.trainingInfo {
		grid-template-columns: 1fr;
		padding: 0 1rem;
	}

	.trainingInfoItem {
		min-height: 0;
		padding: 12px 4px;
		border-right: 0;
		border-bottom: 1px solid #d4e0ea;
	}

	.trainingInfoItem:first-child {
		padding-left: 4px;
	}

	.trainingInfoItem:last-child {
		border-bottom: 0;
	}

	.trainingIcon {
		width: 34px;
		margin-right: 8px;
		font-size: 1.15rem;
	}

	.trainingInfoTxt span {
		font-size: .65rem;
	}

	.trainingInfoTxt strong {
		font-size: .85rem;
	}


	/* リード */

	#pagetop .topTxt {
		padding-bottom: 30px;
		font-size: 1rem;
	}

	.pc {
		display: none;
	}


	/* 見出し */

	.reportSection {
		padding-bottom: 34px;
	}

	.reportHeading {
		align-items: stretch;
		margin-bottom: 12px;
	}

	.reportNum {
		flex-basis: 42px;
		height: 34px;
		margin-right: 12px;
		font-size: .9rem;
	}

	.reportHeading h2 {
		align-items: center;
		font-size: 1.05rem;
		line-height: 1.45;
	}

	.reportHeading h2::after {
		display: none;
	}


	/* 本文 */

	.reportText,
	.reportTextWide {
		padding-left: 0;
	}

	.reportText p {
		padding-bottom: 16px;
		font-size: 1rem;
	}


	/* 写真 */

	.reportPhotos {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.reportPhotos figcaption {
		font-size: .8rem;
	}

}