/* ページタイトル */
.page__title h1 {
	border-bottom: 5px solid var(--orange);
}

/* footerのイラスト */

.footer__img {
	filter: brightness(0) saturate(100%) invert(62%) sepia(80%) saturate(372%) hue-rotate(341deg) brightness(100%) contrast(96%);
}

/* 内容 */

.activity__wrap {
	width: 100%;
	max-width: 1500px;
	padding: 1em;
	margin: 0 auto;
}

.activity__img {
	width: 100%;
	max-width: 400px;
	text-align: center;
	margin: 0 auto;
}

.activity__img img {
	width: 100%;
	border-radius: 1em;
}

.activity__title h2 {
	font-size: clamp(1.1rem, 0.918rem + 0.91vw, 1.6rem);
	text-align: center;
}

.activity__price {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 2em 1em;
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

.activity__price h2 {
	font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
}

.activity__price h3 {
	font-size: clamp(2rem, 1.273rem + 3.64vw, 4rem);
	text-align: center;
}

.activity__price small {
	width: fit-content;
	margin-left: auto;
}

.activity__price p {
	text-align: right;
}

.activity__inner {
	padding: 2em 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
}

.activity__inner a {
	width: fit-content;
}

.activity__item {
	width: 400px;
	background: var(--base__color2);
	padding: 1em 1em 0 1em;
	border-radius: 1em;
	display: flex;
	flex-direction: column;
	gap: 1em;
	align-items: center;
	box-shadow: 0px 0px 10px var(--box__shadow);
	transition: all 0.3s;
}

.activity__item:hover {
	box-shadow: none;
}

.activity__item:hover img {
	transform: scale(1.1);
}

.activity__item .link {
	padding: 0.2em 1em;
	border-radius: 0.5em 0.5em 0 0;
}

.activity__item img {
	width: 150px;
	aspect-ratio: 1/1;
	transition: all 0.3s;
}

.activity__item h3 {
	font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
}

.sdg__wrap {
	width: 100%;
	text-align: center;
	padding: 2em 1em;
}

.sdg__wrap img {
	width: 100%;
	max-width: 1100px;
	margin: 2em auto;
	border-radius: 1em;
}

/* メンバー */

.member__wrap {
	width: 100%;
	padding: 2em 1em;
	display: flex;
	flex-direction: column;
	gap: 2em;
}

.member__wrap img {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	border-radius: 1em;
}

.member__wrap h2 {
	font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
	text-align: center;
	line-height: 1.6em;
}

.member__wrap h3 {
	font-size: clamp(1.1rem, 0.955rem + 0.73vw, 1.5rem);
	text-align: center;
	line-height: 1.6em;
}

.members {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1em;
}

.member {
	width: 305px;
	height: 100%;
	background: var(--base__color2);
	border-radius: 1em;
	padding: 0 0 1em 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1em;
	overflow: hidden;
}

.member__img {
	width: 100%;
	overflow: hidden;
}

.member img {
	border-radius: 0px;
	transition: all 0.3s;
}

.members a:hover img {
	transform: scale(1.1);
}

.member h3 {
	font-size: 1.3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 2em;
}

.category1 {
	background: var(--heavy__pink);
}

.category2 {
	background: var(--red);
}

.category3 {
	background: var(--heavy__green);
}

.category4 {
	background: var(--heavy__yellow);
}

.category5 {
	background: var(--heavy__orange);
}

.category6 {
	background: var(--blue);
}

.category7 {
	background: var(--purple);
}

.category8 {
	background: var(--heavy__base);
}

@media screen and (max-width:900px) {
	.activity__inner {
		flex-direction: column;
	}

	.activity__inner a {
		width: 100%;
	}

	.activity__item {
		width: 100%;
	}
}

@media screen and (max-width:560px) {
	.members {
		flex-direction: column;
	}

	.members a {
		width: 100%;
	}

	.member {
		width: 100%;
	}

	.activity__img img {
		border-radius: 0;
	}
}