@charset "utf-8";

/*------------------------------------------------------------
  Main Visual
------------------------------------------------------------*/

.mvSec {
	position: relative;
}

.mvInner h1 img {
	width: 100%;
}


/*------------------------------------------------------------
  Pickup
------------------------------------------------------------*/

.pickupSec {
	position: relative;
	z-index: 2;
	margin-top: -20rem;
}

.pickupInner {
	width: 91rem;
	margin: 0 0 0 50%;
	transform: translateX(-50%);
}

.pickupInner img {
	width: 100%;
	filter: drop-shadow(0 0.4rem 1rem rgba(0, 0, 0, 0.22));
}


/*------------------------------------------------------------
  Information
------------------------------------------------------------*/

.infoSec {
	padding: 6.4rem 5rem 5.4rem;
}

.infoInner {
}

.infoTitle {
	margin-bottom: 4.4rem;
	font-family: Arial, sans-serif;
	font-size: 5.4rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.04em;
	text-align: center;
	color: #d9312b;
}

.infoList {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4.6rem 5rem;
}

.infoItem a {
	display: block;
}

.infoItem .photoBox {
	margin-bottom: 1.8rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.infoItem .photoBox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.infoItem time {
	display: block;
	margin-bottom: 0.7rem;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.4;
}

.infoItem h3 {
	margin-bottom: 0.8rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}

.infoItem p {
	display: -webkit-box;
	overflow: hidden;
	font-size: 1.6rem;
	line-height: 1.7;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.btnWrap {
	display: flex;
	justify-content: center;
	margin-top: 4.8rem;
}

.moreBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30rem;
	min-height: 6rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	color: #fff !important;
	border-radius: 10rem;
	background: #252b8f;
	transition: 0.3s;
}

.moreBtn:hover {
	opacity: 1;
	transform: translateY(-0.2rem);
	box-shadow: 0 0.6rem 1.2rem rgba(37, 43, 143, 0.25);
}


/*------------------------------------------------------------
  SNS
------------------------------------------------------------*/

.snsSec {
	padding: 0 5rem 5.8rem;
}

.snsList {
	display: flex;
	justify-content: center;
	gap: 8rem;
}

.snsList li {
	width: 12rem;
}

.snsList a {
	display: block;
}


/*------------------------------------------------------------
  Map
------------------------------------------------------------*/

.mapSec iframe {
	display: block;
	width: 100%;
	height: 42rem;
	border: 0;
}


/*------------------------------------------------------------
  Footer
------------------------------------------------------------*/

#gFooter {
	width: 71rem;
	margin: 0 auto;
	padding: 3.2rem 2rem 3.6rem;
	text-align: center;
	background: #fff;
	box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.16);
}

#gFooter .address {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
}

#gFooter .copyright {
	margin-top: 1.6rem;
	font-size: 1.4rem;
	font-weight: 900;
	line-height: 1.5;
}


/*------------------------------------------------------------
  Archive
------------------------------------------------------------*/

#archive #main {
	padding-top: 2rem;
}


/*------------------------------------------------------------
  Single
------------------------------------------------------------*/

.singleSec {
	padding: 6.4rem 5rem 6rem;
}

.singleInner time {
	display: block;
	margin-bottom: 1rem;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.5;
}

.singleInner h1 {
	margin-bottom: 3rem;
	font-size: 3rem;
	font-weight: 900;
	line-height: 1.45;
}

.singleBody {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

.singleBody p {
	margin-bottom: 2.8rem;
}

.singleBody figure {
	margin-bottom: 2.8rem;
}

.singleBody figure img {
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}

.singleBody .wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.singleBody .wp-block-gallery img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}


/*------------------------------------------------------------
  SP
------------------------------------------------------------*/

@media all and (max-width: 896px) {

	body {
		background: #fff;
	}

	#main {
		width: 100%;
		box-shadow: none;
	}

	.mvInner h1 img {
		width: 100%;
	}

	.pickupSec {
		margin-top: -12rem;
	}

	.pickupInner {
		width: calc(100% - 3rem);
		margin: 0 auto;
		transform: none;
	}

	.infoSec {
		padding: 4.4rem 2.4rem 4.4rem;
	}

	.infoTitle {
		margin-bottom: 3.2rem;
		font-size: 3.2rem;
	}

	.infoList {
		display: block;
	}

	.infoItem + .infoItem {
		margin-top: 3.4rem;
	}

	.infoItem .photoBox {
		margin-bottom: 1.4rem;
	}

	.infoItem time {
		font-size: 1.1rem;
	}

	.infoItem h3 {
		font-size: 1.5rem;
	}

	.infoItem p {
		font-size: 1.3rem;
	}

	.btnWrap {
		margin-top: 3.8rem;
	}

	.moreBtn {
		width: 17rem;
		min-height: 3.6rem;
		font-size: 1.3rem;
	}

	.snsSec {
		padding: 0 2.4rem 4.6rem;
	}

	.snsList {
		gap: 4.4rem;
	}

	.snsList li {
		width: 7.8rem;
	}

	.mapSec iframe {
		height: 34rem;
	}

	#gFooter {
		width: 100%;
		padding: 2.8rem 2rem 3rem;
		box-shadow: none;
	}

	#gFooter .address {
		font-size: 1.2rem;
	}

	#gFooter .copyright {
		margin-top: 1.4rem;
		font-size: 1rem;
	}

	#archive #main {
		padding-top: 0;
	}

	.singleSec {
		padding: 4.4rem 2.4rem 5rem;
	}

	.singleInner time {
		font-size: 1.2rem;
	}

	.singleInner h1 {
		margin-bottom: 2.4rem;
		font-size: 2.4rem;
	}

	.singleBody {
		font-size: 1.5rem;
		line-height: 1.9;
	}

	.singleBody .wp-block-gallery {
		gap: 1.2rem;
	}
}

/*------------------------------------------------------------
  Sub Header
------------------------------------------------------------*/

.subHeader {
	padding: 0.5rem;
}

.subHeaderLogo {
	width: 20rem;
	margin: 0 auto -2.5rem auto;
}

.subHeaderLogo a {
	display: block;
}

.subHeaderLogo img {
	width: 100%;
}


/*------------------------------------------------------------
  SP
------------------------------------------------------------*/

@media all and (max-width: 896px) {

	.subHeader {
		padding: 2.8rem 2rem 0;
	}

	.subHeaderLogo {
		width: 24rem;
	}
}