@charset "UTF-8";

/* pageContentArea
================================================== */
#pageContentArea {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 5% 5%;
}

/* pagetop
================================================== */
#pagetop {
	padding: 5% 0 1rem;
	color: #282e60;
}
#pagetop h1{
	font-size: 220%;
	line-height: 130%;
	font-weight: 700;
	padding: 0 0 1rem;
}
@media screen and (max-width: 1000px) {
	#pagetop h1{
		font-size: 3.5vw;
	}
}
@media screen and (max-width: 767px) {
	#pagetop h1{
		font-size: 120%;
	}
}
#pagetop .day{
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0 0 1rem;
}
#pagetop .topTxt{
	font-weight: 700;
	font-size: 120%;
	line-height: 1.8;
}
@media screen and (max-width: 767px) {
	#pagetop .topTxt{
		font-size: 100%;
	}
}

/* contentBox
================================================== */
.contentBox {
	padding: 0 0 5%;
}
.contentBox h2{
	font-size: 160%;
	line-height: 130%;
	font-weight: 700;
	padding: 5% 0 10px;
}
@media screen and (max-width: 1000px) {
	.contentBox h2{
		font-size: 2.5vw;
	}
}
@media screen and (max-width: 767px) {
	.contentBox h2{
		font-size: 120%;
	}
}
.contentBox p{
	font-size: 120%;
	line-height: 1.8;
	padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
	.contentBox p{
		font-size: 100%;
	}
}


/* runCardArea
================================================== */
.runCardArea {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.runCard {
	overflow: hidden;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .22);
	border: solid 1px #fff;
}

/* 写真 */
.runCard .phBox {
	width: 100%;
}

.runCard .phBox img {
	width: 100%;
	height: auto !important;
	display: block;
}

/* テキスト */
.runCard .txtBox {
	padding: 15px;
	box-sizing: border-box;
	text-align: center;
}

.runCard .runComment {
	margin-top: 12px;
	padding-top: 12px;
	border-top: solid 1px #ddd;
	font-size: 0.85rem;
	line-height: 1.6;
	text-align: left;
	color: #282e60;
	font-weight: 600;
}

@media screen and (max-width: 767px) {
	.runCard .runComment {
		margin-top: 8px;
		padding-top: 8px;
		font-size: 0.7rem;
		line-height: 1.5;
	}
}

.runCard .runName {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.4;
}

.runCard .runName span {
	display: block;
	margin-top: 5px;
	font-size: 70%;
	font-weight: 400;
	line-height: 1.5;
}

.runCard .runDistance {
	display: inline-block;
	margin-top: 10px;
	padding: 3px 10px;
	border-radius: 20px;
	background: #282e60;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1.5;
}

@media screen and (max-width: 767px) {
	.runCard .runDistance {
		margin-top: 7px;
		padding: 2px 7px;
		font-size: 0.6rem;
	}
}

/* Mobile
================================================== */
@media screen and (max-width: 767px) {

	.runCardArea {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.runCard .txtBox {
		padding: 10px 5px;
	}

	.runCard .runName {
		font-size: 0.8rem;
	}

	.runCard .runName span {
		font-size: 80%;
	}

}

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

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

.reportPhotos figure {
	margin: 0;
	padding: 0 0 1rem 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;
}

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

	/* 写真 */

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

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

}
