@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@500&family=Noto+Sans+JP:wght@700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul,
li {
	text-decoration: none;
}

a {
	text-decoration: none;
}

a,
img,
span {
	display: inline-block;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

:root {
	--white: #FFFFFF;
	--orange: #EB6237;
	--black: #000;
}

html {
	scroll-behavior: smooth;
	font-size: min(0.8333333333vw, 16px);
}
@media (max-width: 1024px) {
	html {
		font-size: 1.5625vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 2.0833333333vw;
	}
}
@media (max-width: 640px) {
	html {
		font-size: min(4.2666666667vw, 16px);
	}
}

body {
	color: var(--black);
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-size: 1rem;
	line-height: normal;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	font-family: sans-serif;
}

a {
	color: var(--black);
}

@-webkit-keyframes fadein {
	0% {
		opacity: 0;
		transform: translateY(rem(30));
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@keyframes fadein {
	0% {
		opacity: 0;
		transform: translateY(rem(30));
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
.fadein {
	opacity: 0;
	transition: all 1s;
	transform: translateY(rem(150));
}
@media (max-width: 768px) {
	.fadein {
		transform: translateY(rem(80));
	}
}

.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav ul li a {
	position: relative;
	font-size: 0.9375em;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.01875rem;
	color: var(--black);
}
.nav ul li a::before {
	background: var(--black);
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: auto;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform 0.3s;
}
.nav ul li a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

.header {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 1em;
	z-index: 100;
}
@media (max-width: 640px) {
	.header {
		width: 100%;
	}
}
.header__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
}
@media (max-width: 640px) {
	.header__inner {
		flex-direction: row-reverse;
		justify-content: space-between;
		padding-right: 0.5rem;
	}
}
.header__logo {
	position: relative;
	width: 5.875rem;
	font-size: max(14px, 1em);
	z-index: 1;
	padding-block: 1rem;
	padding-inline: 0.5rem 1rem;
	background: var(--white);
	border-bottom-left-radius: 2rem;
}
@media (max-width: 640px) {
	.header__logo {
		border-radius: 0;
		border-bottom-right-radius: 2rem;
	}
}
.header__nav ul li {
	position: absolute;
	transition: scale 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275), top 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275), left 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 200ms;
	top: 0;
	left: 0;
	opacity: 0;
	scale: 0;
	white-space: nowrap;
}
@media (max-width: 640px) {
	.header__nav ul li img {
		font-size: 0.5rem;
	}
}
@media (max-width: 640px) {
	.header__nav ul li span {
		font-size: 0.875rem;
	}
}
.header__nav ul li:nth-of-type(1) img {
	width: 6.5625em;
	min-width: 6.5625em;
}
.header__nav ul li:nth-of-type(2) img {
	width: 4.921875em;
	min-width: 4.921875em;
}
.header__nav ul li:nth-of-type(3) img {
	width: 5.234375em;
	min-width: 5.234375em;
}
.header__nav ul li:nth-of-type(4) img {
	width: 5.15625em;
	min-width: 5.15625em;
}
.header__nav ul li:nth-of-type(5) img {
	width: 5em;
	min-width: 5em;
}
.header__nav ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.header__nav ul li a::before {
	display: none;
}
.header__btn {
	position: relative;
}
.header__btn .btn {
	position: relative;
	z-index: 3;
}
.header__btn .btn__icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header__btn .btn__icon span {
	width: 80%;
	height: 0.2rem;
	position: absolute;
	display: block;
	background: #fff;
	transition: 0.2s;
}
.header__btn .btn__icon span:nth-of-type(1) {
	top: 0.2rem;
}
.header__btn .btn__icon span:nth-of-type(3) {
	top: 1.1rem;
}
@media (max-width: 768px) {
	.header__btn .btn {
		padding: 0 !important;
		width: 3.75rem !important;
		height: 3.75rem !important;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.header__btn .btn__text {
		display: none;
	}
}
@media (max-width: 640px) {
	.header__btn .btn {
		width: 3rem !important;
		height: 3rem !important;
	}
}

#sp-menu-button + .bluer {
	display: none;
}

#sp-menu-button:checked + .bluer {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

#sp-menu-button:checked + .bluer + .header__nav ul li {
	opacity: 1;
	scale: 1;
}
#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(1) {
	top: 5.5rem;
	left: -8rem;
}
@media (max-width: 768px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(1) {
		top: 0rem;
		left: -9rem;
	}
}
@media (max-width: 640px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(1) {
		top: 0rem;
		left: -7rem;
	}
}
@media screen and (max-width: 440px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(1) {
		top: 0.5rem;
		left: -5rem;
	}
}
#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(2) {
	top: 13rem;
	left: -3rem;
}
@media (max-width: 768px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(2) {
		top: 8rem;
		left: -8rem;
	}
}
@media (max-width: 640px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(2) {
		top: 4rem;
		left: -11rem;
	}
}
@media screen and (max-width: 440px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(2) {
		top: 6.5rem;
		left: -9rem;
	}
}
#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(3) {
	top: 5rem;
	left: 3rem;
}
@media (max-width: 768px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(3) {
		top: 6rem;
		left: -1rem;
	}
}
@media (max-width: 640px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(3) {
		top: 4rem;
		left: -5rem;
	}
}
@media screen and (max-width: 440px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(3) {
		top: 5rem;
		left: -3.25rem;
	}
}
#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(4) {
	top: 14rem;
	left: 5rem;
}
@media (max-width: 768px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(4) {
		top: 14rem;
		left: -1rem;
	}
}
@media (max-width: 640px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(4) {
		top: 10rem;
		left: -11rem;
	}
}
@media screen and (max-width: 440px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(4) {
		top: 13rem;
		left: -11rem;
	}
}
#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(5) {
	top: 5.25rem;
	left: 12rem;
}
@media (max-width: 768px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(5) {
		top: 6.25rem;
		left: 7rem;
	}
}
@media (max-width: 640px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(5) {
		top: 8rem;
		left: -2rem;
	}
}
@media screen and (max-width: 440px) {
	#sp-menu-button:checked + .bluer + .header__nav ul li:nth-of-type(5) {
		top: 10rem;
		left: -2rem;
	}
}

#sp-menu-button {
	display: none;
}

#sp-menu-button:checked + .bluer + .header__nav + .btn .btn__icon span:nth-of-type(1) {
	top: auto;
	rotate: 45deg;
}

#sp-menu-button:checked + .bluer + .header__nav + .btn .btn__icon span:nth-of-type(2) {
	opacity: 0;
}

#sp-menu-button:checked + .bluer + .header__nav + .btn .btn__icon span:nth-of-type(3) {
	rotate: -45deg;
	top: auto;
}

#sp-menu-button:checked + .bluer + .header__nav + .btn .btn__icon span {
	width: 100%;
}

.footer {
	background-color: #3B8884;
}
.footer__inner {
	width: 93%;
	border-radius: 0 5em 0 0;
	padding: 3.5% 7.25%;
}
.footer__address {
	padding: 4em 0 2.5em;
	color: #F9FFFF;
	font-family: Noto Sans JP;
	font-size: 1em;
	font-style: normal;
	font-weight: 700;
	line-height: 1.875em;
	letter-spacing: 0.1em;
}
.footer__flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 3rem;
}
.footer__dl {
	display: flex;
	align-items: center;
	gap: 1em;
}
.footer__dl + .footer__dl {
	margin-top: 0.5em;
}
.footer__dl dt,
.footer__dl dd {
	color: #F9FFFE;
	font-family: Noto Sans JP;
	font-size: 1em;
	font-style: normal;
	font-weight: 700;
	/* 175% */
	letter-spacing: 0.1em;
}
.footer__dl dt {
	width: 5.5em;
	text-align: center;
	padding: 0.625em 0;
	border: 1px solid #fff;
	border-radius: 3em;
	line-height: 1;
}
.footer__dl dd {
	line-height: 1.75;
}
.footer__nav {
	max-width: 900px;
	display: flex;
	flex-direction: column;
	gap: 3.5em;
	flex: 1;
}
.footer__nav ul {
	display: flex;
	justify-content: flex-end;
}
.footer__nav ul li a {
	color: #F9FFFF;
	font-family: Noto Sans JP;
	font-size: 1.125em;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.1em;
	display: block;
}
.footer__nav .sponsor {
	margin-left: auto;
}

@media screen and (max-width: 1440px) {
	.footer__inner {
		width: 80%;
	}
	.footer__flex {
		flex-direction: column;
	}
}
@media (max-width: 1024px) {
	.footer__nav ul {
		gap: 1em;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}
@media (max-width: 1024px) {
	.footer__inner {
		width: 100%;
		border-radius: 0;
	}
	.footer__address {
		display: none;
	}
	.footer__dl {
		display: none;
	}
	.footer__nav ul {
		display: none;
	}
}
@media (max-width: 640px) {
	.footer__flex {
		gap: 1rem;
	}
	.footer__nav .sponsor {
		margin: 0 auto;
	}
}
.btn__list {
	display: flex;
	align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: calc(100% - 3rem);
    margin-inline: auto;
}
}
@media (max-width: 1024px) {
	.btn__list {
		max-width: 34rem;
		gap: 1rem;
	}
}
@media (max-width: 768px) {
	.btn__list {
		max-width: 100%;
		justify-content: center;
	}
}
@media (max-width: 640px) {
	.btn__list {
		justify-content: center;
		gap: 0.5rem;
	}
}

.btn {
	background: var(--black);
	color: var(--white);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0.625rem 2rem;
	display: flex;
	align-items: center;
	gap: 0.875rem;
	border-radius: 3rem;
}

.btn[data-attr=アカデミック] {
	background: #be1c1e;
}
.btn[data-attr=サイエンス] {
	background: #f6bd4d;
}
.btn[data-attr=SDGs] {
	background: #58b17f;
}
.btn[data-attr=スポーツ・健康] {
	background: #00A0E9;
}
.btn[data-attr=パフォーマンス] {
	background: #9e6aeb;
}
.btn[data-attr=地域とのつながり] {
	background: #ea5515;
}
.btn[data-attr=マルシェ（食）] {
	background: #d68f78;
}
.btn__icon {
	width: 1.5rem;
	height: 1.5rem;
}
.btn__icon svg {
	width: 100%;
	height: 100%;
}
.btn__text {
	font-size: max(14px, 1.375rem);
	line-height: 1;
	font-weight: 500;
}
@media (max-width: 1024px) {
	.btn__text {
		font-size: 1.25rem;
	}
}
@media (max-width: 768px) {
	.btn__text {
		font-size: 1rem;
	}
}

.fade-up {
	opacity: 0;
	visibility: hidden;
	transition: all 1s;
	transform: translateY(100px);
}

.load-up {
	opacity: 0;
	visibility: hidden;
	transition: all 1s;
	transform: translateY(50px);
}

.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.loading {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	transition: all 1s;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: white;
}
.loading__bgs {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
}
.loading__bgs div {
	flex: 1;
	height: 0%;
	-webkit-animation: bgUp 0.25s ease-in-out forwards;
	animation: bgUp 0.25s ease-in-out forwards;
}
.loading__bgs div:nth-of-type(1) {
	background: #72c2cf;
}
.loading__bgs div:nth-of-type(2) {
	background: #e5b265;
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.loading__bgs div:nth-of-type(3) {
	background: #c95049;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.loading__icons {
	font-size: 1.5rem;
	opacity: 0;
	-webkit-animation: fade 0.25s ease-in-out forwards;
	animation: fade 0.25s ease-in-out forwards;
	-webkit-animation-delay: 0.45s;
	animation-delay: 0.45s;
}
.loading__icons img {
	-webkit-animation: bounce 1s ease-in-out infinite;
	animation: bounce 1s ease-in-out infinite;
}
.loading__icons img:nth-of-type(1) {
	-webkit-animation-delay: 0.125s;
	animation-delay: 0.125s;
}
.loading__icons img:nth-of-type(2) {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}
.loading__icons img:nth-of-type(3) {
	-webkit-animation-delay: 0.375s;
	animation-delay: 0.375s;
}
.loading__icons img:nth-of-type(5) {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.loading.loaded {
	opacity: 0;
	visibility: hidden;
}

@-webkit-keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes bgUp {
	0% {
		height: 0;
	}
	100% {
		height: 100%;
	}
}
@keyframes bgUp {
	0% {
		height: 0;
	}
	100% {
		height: 100%;
	}
}
@-webkit-keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}
@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}
.fv {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fv__fig {
	position: absolute;
	z-index: 97;
}
.fv__fig--01 {
	top: 10rem;
	right: -4.5rem;
	width: 18rem;
}
.fv__fig--02 {
	bottom: -3.5rem;
	left: 6.5rem;
	width: 12rem;
}
.fv__fig--03 {
	bottom: -4.9rem;
	right: 4rem;
	width: 16rem;
}
@media (max-width: 1024px) {
	.fv__fig--01 {
		width: 9rem;
		right: -1.5rem;
	}
	.fv__fig--02 {
		width: 7rem;
	}
	.fv__fig--03 {
		width: 7rem;
		bottom: -2rem;
	}
}
@media (max-width: 640px) {
	.fv__fig--01 {
		right: 0;
		top: auto;
		bottom: -1rem;
	}
	.fv__fig--02 {
		left: 1rem;
	}
	.fv__fig--03 {
		bottom: -2rem;
		right: auto;
	}
}
.fv__title {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	width: 65rem;
	z-index: 99;
}
@media (max-width: 1024px) {
	.fv__title {
		width: 35rem;
	}
}
@media (max-width: 768px) {
	.fv__title {
		width: 25rem;
	}
}
@media (max-width: 640px) {
	.fv__title {
		width: 18rem;
		top: 30%;
		left: auto;
	}
}
.fv__news {
	position: absolute;
	z-index: 98;
	bottom: 6.25rem;
	left: 20rem;
	color: var(--black);
	font-size: max(14px, 1.375rem);
	font-style: normal;
	line-height: normal;
	font-weight: 900;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	border-radius: 2.25rem;
	background: #FFE100;
	max-width: 55%;
	min-width: 45.875rem;
}
.fv__news .icon {
	width: 2.875rem;
	height: 2.875rem;
	margin-left: auto;
}
.fv__news .icon svg {
	width: 100%;
	height: 100%;
}
.fv__news .title {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}
@media (max-width: 1024px) {
	.fv__news {
		left: auto;
		font-size: 1.125rem;
		padding: 0.5rem 1rem;
	}
}
@media (max-width: 768px) {
	.fv__news {
		font-size: 1rem;
		min-width: 30rem;
	}
	.fv__news .icon {
		width: 2rem;
		height: 2rem;
	}
}
@media (max-width: 640px) {
	.fv__news {
		font-size: 1rem;
		min-width: 16rem;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		text-align: left;
		border-radius: 1rem;
		gap: 0.5rem;
	}
}
.fv__frame {
	position: relative;
	width: 100%;
}
.fv__frame::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 53.125%;
}
.fv__frame img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.fv__video {
	position: absolute;
	width: 92%;
	height: 88%;
	border-radius: 3rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fv__video:empty {
	background: #c2c2c2;
}
.fv__video iframe {
	position: absolute;
	width: 100vw;
	height: 60vw;
}
@media (max-width: 1024px) {
	.fv__frame::before {
		padding-top: 66.66666%;
	}
	.fv__frame img {
		-o-object-fit: inherit;
		object-fit: inherit;
	}
	.fv__video iframe {
		width: 120vw;
		height: 70vw;
	}
}
@media (max-width: 768px) {
	.fv__frame::before {
		padding-top: 75%;
	}
	.fv__video iframe {
		width: 150vw;
		height: 80vw;
	}
}
@media (max-width: 640px) {
	.fv__frame::before {
		padding-top: 100vh;
	}
	.fv__video iframe {
		width: 250vw;
		height: 200vw;
	}
}

.top-section01 {
	margin-top: 9rem;
	width: 100%;
	padding-bottom: 1.4rem;
	overflow: hidden;
}
@media (max-width: 1024px) {
	.top-section01 {
		margin: 0;
		padding-bottom: 0;
		overflow: inherit;
	}
}
.top-section01__inner {
	background: #F4FAF9;
	border-radius: 2rem;
	padding: 6rem 6rem 10rem 11rem;
	display: flex;
	align-items: flex-start;
	gap: 6.5rem;
	position: relative;
	left: 18.75rem;
}
@media (max-width: 1024px) {
	.top-section01__inner {
		left: auto;
		padding: 6rem 3rem;
		border-radius: 0;
		gap: 2rem;
	}
}
@media (max-width: 768px) {
	.top-section01__inner {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}
}
@media (max-width: 640px) {
	.top-section01__inner {
		padding: 6rem 1rem 3rem;
	}
}
.top-section01__body {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	flex-direction: column;
	gap: 10rem;
}
@media (max-width: 1024px) {
	.top-section01__body {
		gap: 3rem;
	}
}
@media (max-width: 768px) {
	.top-section01__body {
		align-items: center;
		gap: 2rem;
	}
}
@media (max-width: 640px) {
	.top-section01__body {
		gap: 1rem;
	}
}
.top-section01__title {
	width: 44rem;
}
@media (max-width: 1024px) {
	.top-section01__title {
		width: 28rem;
	}
}
@media (max-width: 768px) {
	.top-section01__title {
		width: 24rem;
	}
}
@media (max-width: 640px) {
	.top-section01__title {
		width: 20rem;
	}
}
.top-section01__text {
	width: 45rem;
	color: var(--black);
	font-size: 1.9375rem;
	font-style: normal;
	font-weight: 900;
	line-height: 2;
	letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
	.top-section01__text {
		width: 100%;
		font-size: 1.5rem;
	}
}
@media (max-width: 768px) {
	.top-section01__text {
		font-size: 1.25rem;
	}
}
.top-section01__panel {
	width: 52.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 3.7rem;
}
@media (max-width: 1024px) {
	.top-section01__panel {
		width: 50rem;
	}
}
@media (max-width: 768px) {
	.top-section01__panel {
		width: 24rem;
	}
}
@media (max-width: 640px) {
	.top-section01__panel {
		width: 18rem;
		margin-top: 2rem;
	}
}
.top-section01__fig {
	position: absolute;
	bottom: -1.4rem;
	width: 18rem;
	left: 40rem;
}
@media (max-width: 1024px) {
	.top-section01__fig {
		width: 9rem;
		left: 35%;
		bottom: -4rem;
	}
}
@media (max-width: 768px) {
	.top-section01__fig {
		left: auto;
		right: 1rem;
	}
}

@media (max-width: 1024px) {
	.pickup {
		padding-top: 5rem;
	}
}
.pickup__head {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	margin-top: -5.5rem;
	padding-top: 10rem;
}
@media (max-width: 1024px) {
	.pickup__head {
		margin-top: 0;
		padding: 0 2rem;
	}
}
@media (max-width: 768px) {
	.pickup__head {
		flex-direction: column;
		gap: 2rem;
	}
}
.pickup__title {
	width: 43rem;
}
@media (max-width: 768px) {
	.pickup__title {
		width: 22rem;
	}
}
@media (max-width: 640px) {
	.pickup__title {
		width: 18rem;
	}
}
.pickup__list {
	position: relative;
	padding-block: 6rem;
}
.pickup__list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: calc(100% - 12.5rem);
	margin-inline: auto;
	gap: 4rem 0;
}
.pickup__list ul li {
	position: relative;
	width: 22%;
}
.pickup__list ul li:nth-of-type(1) {
	z-index: 1;
	transform: rotate(-8.679deg);
}
.pickup__list ul li:nth-of-type(2) {
	z-index: 2;
	transform: rotate(7.12deg);
	top: -5rem;
}
.pickup__list ul li:nth-of-type(3) {
	z-index: 3;
	transform: rotate(-2.675deg);
	top: -2rem;
}
.pickup__list ul li:nth-of-type(4) {
	z-index: 4;
	transform: rotate(7.879deg);
	top: -5rem;
}
.pickup__list ul li:nth-of-type(5) {
	z-index: 5;
	transform: rotate(11.286deg);
}
.pickup__list ul li:nth-of-type(6) {
	z-index: 6;
	transform: rotate(-2.28deg);
}
.pickup__list ul li:nth-of-type(7) {
	z-index: 7;
	transform: rotate(4.115deg);
}
.pickup__list ul li:nth-of-type(8) {
	z-index: 8;
	transform: rotate(-2.267deg);
}
@media (max-width: 768px) {
	.pickup__list {
		padding-block: 8rem 6rem;
	}
	.pickup__list ul li {
		width: 44%;
	}
}
@media (max-width: 640px) {
	.pickup__list {
		padding-block: 3rem 6rem;
	}
	.pickup__list ul {
		width: calc(100% - 4rem);
		gap: 3rem 0;
	}
	.pickup__list ul li {
		top: auto !important;
	}
}
.pickup__fig {
	position: absolute;
	z-index: 2;
}
.pickup__fig--01 {
	width: 19.25rem;
	top: 25%;
	left: -1rem;
	z-index: -1;
}
.pickup__fig--02 {
	top: 25%;
	width: 12rem;
	right: 3rem;
	z-index: 10;
}
@media (max-width: 1024px) {
	.pickup__fig--01 {
		width: 12rem;
	}
	.pickup__fig--02 {
		width: 8rem;
	}
}
@media (max-width: 640px) {
	.pickup__fig--01 {
		width: 12rem;
	}
	.pickup__fig--02 {
		top: auto;
		bottom: -4rem;
		right: 1rem;
	}
}

.real {
	background: #FFD000;
	padding: 1.75rem 2rem 3.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (max-width: 640px) {
	.real {
		padding: 1.75rem 1rem 3rem;
	}
}
.real__title {
	width: 47.25rem;
	margin-left: 2rem;
}
@media (max-width: 1024px) {
	.real__title {
		width: 28rem;
	}
}
@media (max-width: 768px) {
	.real__title {
		width: 24rem;
	}
}
@media (max-width: 640px) {
	.real__title {
		width: 16rem;
	}
}
.real__list {
	background: var(--white);
	border-radius: 3rem;
	padding: 4rem;
}
.real__list ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}
.real__list ul li {
	flex: 1;
}
@media (max-width: 1024px) {
	.real__list {
		padding: 2rem;
	}
}
@media (max-width: 768px) {
	.real__list ul li {
		flex: 1 0 calc(50% - 1rem);
	}
}
@media (max-width: 640px) {
	.real__list {
		padding: 1rem;
		border-radius: 1.5rem;
	}
	.real__list ul {
		gap: 1rem;
	}
}

.header--page {
	position: relative;
	top: auto;
	right: auto;
	width: 100%;
}
.header--page .header__inner {
	align-items: flex-start;
}
@media (max-width: 640px) {
	.header--page .header__inner {
		flex-direction: row;
		align-items: center;
		padding-block: 0.5rem;
		width: 100%;
	}
}
.header--page .header__content-wrap {
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.header--page .header__content {
	display: flex;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	z-index: 2;
}
@media (max-width: 640px) {
	.header--page .header__logo {
		width: 6.5rem;
		padding: 0;
	}
}
.header--page .header__title {
	width: 34.375rem;
}
@media (max-width: 768px) {
	.header--page .header__title {
		width: 20rem;
	}
}
.header--page .fv__news {
	position: relative;
	bottom: auto;
	left: auto;
	min-width: inherit;
	max-width: 37.5rem;
	width: 100%;
	right: -1rem;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	z-index: 1;
}
@media (max-width: 768px) {
	.header--page .fv__news {
		max-width: 25rem;
		font-size: 0.875rem;
		padding: 0.25em 1em;
		right: -0.5em;
	}
}
@media (max-width: 640px) {
	.header--page .fv__news {
		border-radius: 1rem;
		right: auto;
		max-width: 16rem;
		max-width: calc(100% - 2rem);
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
	}
}

.page {
	margin-block: 7.5rem;
}
.page__header {
	width: 100%;
}
@media (max-width: 768px) {
	.page {
		margin-block: 3.75rem 5rem;
	}
}
@media (max-width: 640px) {
	.page {
		margin-block: 6.875rem 5rem;
	}
	.page__news {
		margin-block: 1rem 3rem;
	}
}

.breadcrumb {
	max-width: 103.75rem;
	width: calc(100% - 2.5rem);
	margin-inline: auto;
}
.breadcrumb ul {
	display: flex;
	align-items: flex-end;
	gap: 6.25rem;
}
.breadcrumb ul li {
	font-size: 1.375rem;
	line-height: normal;
	letter-spacing: 0;
	font-weight: 700;
}
.breadcrumb ul li a {
	display: flex;
	align-items: flex-end;
	gap: 0.3125rem;
}
.breadcrumb ul li a img {
	width: 3.125rem;
}
.breadcrumb ul li + li {
	position: relative;
}
.breadcrumb ul li + li::before {
	content: "";
	width: 5rem;
	height: 1px;
	position: absolute;
	top: 50%;
	right: calc(100% + 0.625rem);
	background: var(--black);
}
@media (max-width: 1024px) {
	.breadcrumb ul {
		flex-wrap: wrap;
	}
	.breadcrumb ul li {
		font-size: 1.125rem;
	}
}
@media (max-width: 768px) {
	.breadcrumb ul {
		gap: 1rem 3rem;
	}
	.breadcrumb ul li {
		font-size: 1.125rem;
	}
	.breadcrumb ul li + li::before {
		width: 2rem;
		right: calc(100% + 0.5rem);
	}
	.breadcrumb ul li:last-of-type {
		margin-left: 3rem;
		width: 100%;
	}
}
@media (max-width: 640px) {
	.breadcrumb {
		width: calc(100% - 1rem);
	}
	.breadcrumb ul {
		gap: 0.5rem 2rem;
		flex-wrap: wrap;
	}
	.breadcrumb ul li {
		font-size: 0.75rem;
	}
	.breadcrumb ul li + li {
		position: relative;
	}
	.breadcrumb ul li + li::before {
		width: 1.5rem;
		right: calc(100% + 0.25rem);
	}
	.breadcrumb ul li:last-of-type {
		margin-left: 2rem;
	}
	.breadcrumb ul li a img {
		width: 2rem;
	}
}

.archive__head {
	display: flex;
	align-items: flex-end;
	gap: 6.25rem;
	padding-left: 7.25rem;
	margin-top: 3rem;
}
.archive__num {
	flex: 1;
}
.archive__num p {
	font-size: 3rem;
	line-height: normal;
	letter-spacing: 0;
	padding-left: 1.25rem;
	font-weight: 700;
}
.archive__num p span {
	font-size: 15.25rem;
	line-height: 1;
	margin-top: 3.4375rem;
	position: relative;
	left: -1.25rem;
}
.archive__list {
	margin-top: 7.5rem;
	max-width: calc(100% - 9.375rem);
	margin-inline: auto;
}
.archive__list h2 {
	font-size: 3rem;
	font-weight: 700;
	line-height: normal;
}
.archive__list h2 + ul {
	margin-top: 4rem;
}
.archive__list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5rem 1.875rem;
}
.archive__list ul li {
	width: calc(25% - 1.40625rem);
	display: flex;
}
.archive__list ul li a {
	display: flex;
	flex-direction: column;
	height: auto;
	width: 100%;
	padding: 0.5rem;
	box-shadow: 0px 0px 29.9348678589px 0px rgba(107, 128, 183, 0.25);
}
.archive__list ul li .img {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 2rem;
}
.archive__list ul li .img::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 100%;
}
.archive__list ul li .img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.archive__list ul li .meta {
	margin-top: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.archive__list ul li .meta p {
	font-size: 0.875rem;
	line-height: 1;
	padding: 0.8125rem 0.625rem;
	border: 1px solid var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 1rem;
}
.archive__list ul li .meta .cat {
	color: var(--white);
	background: var(--black);
}
.archive__list ul li .meta .cat[data-attr=アカデミック] {
	background: #be1c1e;
}
.archive__list ul li .meta .cat[data-attr=サイエンス] {
	background: #f6bd4d;
}
.archive__list ul li .meta .cat[data-attr=SDGs] {
	background: #58b17f;
}
.archive__list ul li .meta .cat[data-attr=スポーツ・健康] {
	background: #00A0E9;
}
.archive__list ul li .meta .cat[data-attr=パフォーマンス] {
	background: #9e6aeb;
}
.archive__list ul li .meta .cat[data-attr=地域とのつながり] {
	background: #ea5515;
}
.archive__list ul li .meta .cat[data-attr=マルシェ（食）] {
	background: #d68f78;
}
.archive__list ul li .text {
	margin-top: 1em;
	font-size: 1.25rem;
	line-height: 1.9;
	flex: 1;
}
@media (max-width: 1024px) {
	.archive__head {
		gap: 3.125rem;
		padding-left: 1rem;
		margin-top: 2rem;
	}
	.archive__num p {
		font-size: 2rem;
	}
	.archive__num p span {
		font-size: 6.25rem;
		margin-top: 1.25rem;
	}
	.archive__list {
		max-width: calc(100% - 5rem);
	}
	.archive__list ul li {
		width: calc(33.3333333333% - 1.25rem);
	}
	.archive__list ul li .meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	.archive__list ul li .meta p {
		padding: 0.5rem;
	}
	.archive__list ul li .text {
		font-size: 1.125rem;
	}
}
@media (max-width: 768px) {
	.archive__head {
		align-items: flex-start;
		gap: 1.5rem;
		padding-left: 1rem;
		margin-top: 2rem;
	}
	.archive__num p {
		font-size: 1.5rem;
	}
	.archive__num p span {
		left: -0.5rem;
		font-size: 4rem;
		margin-top: 0.25rem;
	}
	.archive__list {
		max-width: calc(100% - 2.5rem);
		margin-top: 3.75rem;
	}
	.archive__list h2 {
		font-size: 2rem;
	}
	.archive__list h2 + ul {
		margin-top: 2rem;
	}
	.archive__list ul li {
		width: calc(50% - 0.9375rem);
	}
	.archive__list ul li .text {
		font-size: 1rem;
	}
}
@media (max-width: 640px) {
	.archive__list {
		max-width: calc(100% - 1rem);
		margin-top: 1rem;
		gap: 1rem;
	}
	.archive__list h2 {
		font-size: 1.25rem;
	}
	.archive__list h2 + ul {
		margin-top: 1rem;
	}
	.archive__list ul {
		margin-top: 1rem;
		gap: 1rem;
	}
	.archive__list ul li {
		width: calc(50% - 0.5rem);
		max-width: inherit;
		margin-inline: auto;
	}
	.archive__list ul li .meta {
		margin-top: 0.5rem;
	}
	.archive__list ul li .meta p {
		padding: 0.25rem 0.5rem;
		font-size: 0.75rem;
		line-height: 1.2;
	}
	.archive__list ul li .text {
		margin-top: 0.5rem;
		font-size: 0.875rem;
		line-height: 1.5;
	}
	.archive__head {
		gap: 0.5rem;
	}
}

.tags {
	width: 80rem;
	background: #F4F4F4;
	border-radius: 6.25rem 0 0 6.25rem;
	padding: 5.125rem 6.25rem;
}
.tags ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem 4rem;
}
.tags ul li a {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 2rem;
	font-weight: 700;
}
.tags ul li a span {
	width: 3.75rem;
	height: 3.75rem;
	background-color: var(--black);
	border-radius: 50%;
	font-size: 1.5rem;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 1024px) {
	.tags {
		padding: 2.5rem 3.125rem;
		border-radius: 3.125rem 0 0 3.125rem;
	}
	.tags ul {
		gap: 1.25rem 2rem;
	}
	.tags ul li a {
		font-size: 1.5rem;
		gap: 0.75rem;
	}
	.tags ul li a span {
		width: 2.5rem;
		height: 2.5rem;
		font-size: 0.875rem;
	}
}
@media (max-width: 768px) {
	.tags {
		width: 100%;
		padding: 1.25rem;
	}
	.tags ul {
		gap: 0.875rem;
	}
	.tags ul li a {
		font-size: 1.25rem;
	}
}
@media (max-width: 640px) {
	.tags ul {
		gap: 0.5rem;
	}
	.tags ul li a {
		font-size: 0.875rem;
		gap: 0.25rem;
	}
	.tags ul li a span {
		width: 1.5rem;
		height: 1.5rem;
		font-size: 0.5rem;
	}
}

.single {
	display: flex;
	align-items: flex-start;
	gap: 6.25rem;
	margin-top: 7.5rem;
	max-width: calc(100% - 8rem);
	margin-inline: auto;
}
.single__media {
	max-width: 100%;
	width: 50rem;
}
.single__media-thumb {
	width: 100%;
}
.single__media-thumb-item {
	padding-inline: 0.3125rem;
}
.single__media-thumb-item img {
	width: 100%;
}
.single__media-nav .slick-slide {
	padding-inline: 0.3125rem;
}
.single__media-nav-item {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
}
.single__media-nav-item::before {
	content: "";
	width: 100%;
	padding-top: 75%;
	display: block;
}
.single__media-nav-item img {
	position: absolute;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	top: 0;
	left: 0;
}
.single__body {
	flex: 1;
}
.single__organization {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	padding: 0.9375rem 1.5rem;
	color: #707070;
	border: 1px solid #707070;
	border-radius: 6.25rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.single__title {
	font-size: 2.5rem;
	line-height: 1.5;
	margin-top: 2rem;
}
.single__subTitle {
	margin-top: 2rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
	color: #F6BD4D;
}
.single__subTitle img {
	width: 1.375rem;
}
.single__content {
	margin-top: 2rem;
	font-size: 1.125rem;
	line-height: 2;
}
.single__table {
	margin-top: 2.5rem;
	border-block: 1px solid var(--black);
	padding: 1rem 0;
}
.single__table dl {
	display: flex;
	padding: 1rem 0;
	gap: 2rem;
}
.single__table dl dt, .single__table dl dd {
	font-size: 1.125rem;
	line-height: 1.5;
}
.single__table dl dt {
	width: 6.75rem;
	font-weight: 700;
}
.single__table dl dd {
	flex: 1;
}
.single__btn {
	padding: 2rem 4rem;
	margin-inline: auto;
	margin-top: 4rem;
}
.single__btn .btn__icon {
	width: 2rem;
	height: 2rem;
}
.single__btn .btn__text {
	font-size: 2rem;
}
@media (max-width: 1024px) {
	.single {
		max-width: calc(100% - 2.5rem);
		flex-direction: column;
		gap: 3.125rem;
	}
	.single__media {
		width: 36rem;
		margin-inline: auto;
	}
}
@media (max-width: 768px) {
	.single {
		margin-top: 3.75rem;
		gap: 2rem;
	}
	.single__organization {
		padding: 0.625rem 0.9375rem;
	}
	.single__title {
		font-size: 2rem;
		margin-top: 1rem;
	}
	.single__subTitle {
		margin-top: 1rem;
		font-size: 1rem;
	}
	.single__content {
		margin-top: 1rem;
		font-size: 1rem;
	}
	.single__table {
		margin-top: 1.5rem;
		padding: 0.75rem 0;
	}
	.single__table dl {
		gap: 1rem;
		padding: 0.75rem 0;
	}
	.single__table dl dt, .single__table dl dd {
		font-size: 1rem;
	}
	.single__table dl dt {
		width: 5rem;
	}
	.single__btn {
		padding: 1rem 2rem;
		margin-inline: auto;
		margin-top: 2rem;
	}
	.single__btn .btn__icon {
		width: 1.5rem;
		height: 1.5rem;
	}
	.single__btn .btn__text {
		font-size: 1.5rem;
	}
}
@media (max-width: 640px) {
	.single {
		max-width: calc(100% - 1rem);
		margin-top: 1rem;
	}
	.single__organization {
		padding: 0.5rem 0.75rem;
		font-size: 0.75rem;
	}
	.single__title {
		font-size: 1.75rem;
		margin-top: 0.5rem;
	}
	.single__table {
		padding: 0.5rem;
		margin-top: 1rem;
	}
	.single__table dl {
		padding: 0.5rem 0;
		gap: 0.25rem;
	}
	.single__table dl dt, .single__table dl dd {
		font-size: 0.875rem;
	}
	.single__table dl dt {
		width: 6rem;
	}
}

.news__head {
	padding: 4rem 0;
	text-align: center;
	font-size: 3rem;
}
.news__list {
	max-width: 60rem;
	width: calc(100% - 5rem);
	margin-inline: auto;
}
.news__list ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.news__list li {
	position: relative;
	padding-left: 5.25rem;
	display: flex;
	align-items: center;
}
.news__list li a {
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	padding: 2rem;
	background: #fff4f4;
	border-radius: 2rem;
	font-size: 1.125rem;
	width: 100%;
}
.news__list li a::before {
	content: "";
	position: absolute;
	width: 1rem;
	height: 1rem;
	right: 100%;
	background: #fef4f4;
	-webkit-clip-path: polygon(0% 50%, 100% 100%, 100% 0%);
	clip-path: polygon(0% 50%, 100% 100%, 100% 0%);
}
.news__list li .icon {
	position: absolute;
	left: 0;
	width: 4.25rem;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.news__list li .date {
	align-self: flex-start;
}
@media (max-width: 768px) {
	.news__list {
		width: calc(100% - 2.5rem);
	}
	.news__list li a {
		flex-direction: column;
		justify-content: center;
		gap: 0.5rem;
		font-size: 1rem;
	}
}
@media (max-width: 640px) {
	.news__head {
		padding: 3rem 0;
		font-size: 2rem;
	}
	.news__list ul {
		gap: 1rem;
	}
	.news__list li {
		padding-left: 0;
	}
	.news__list li .icon {
		width: 3rem;
		top: 1rem;
		left: 1rem;
		z-index: 1;
		pointer-events: none;
	}
	.news__list li a {
		padding: 1rem;
		font-size: 0.875rem;
		gap: 1.25rem;
	}
	.news__list li a .date {
		padding-left: 4rem;
		padding-top: 1rem;
		align-self: flex-start;
	}
	.news__list li a::before {
		display: none;
	}
}

.page__news .single__body {
	max-width: 60rem;
	margin-inline: auto;
}
/*# sourceMappingURL=style.css.map */
