@charset "utf-8";


:root {
	--blue: #0068b7;
	--red: #e60012;
}


.hr {
	display: block;
	width: 90%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;

	border-top: 1px solid #707070;
}


.footerComment {
	display: flex;
	justify-content: center;

	width: 100%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;

	padding-top: 0.3em;
	padding-bottom: 0.2em;
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;

	font-size: calc(14rem / 16);
	font-weight: 700;
}


.textBlue {
	color: var(--blue);
}

.textRed {
	color: var(--red);
}


.backBlue {
	background-color: var(--blue);
}

.backRed {
	background-color: var(--red);
}


.cover {
	overflow: hidden;
}


.coverKey {
	margin-bottom: calc(30rem / 16);
}


.coverSection {
	display: grid;
}


.coverSectionSep {
	background-color: #707070;
}


.coverSectionItemTitle {
	display: flex;
	align-items: center;
	column-gap: calc(10rem / 16);
	margin-bottom: calc(30rem / 16);
}

.coverSectionItemTitle h2 {
	flex: 1;
	margin-bottom: 0;

	font-size: calc(18rem / 16);
	font-weight: 700;
	line-height: calc(38em / 30);
	text-align: left;
}


.coverSectionItem p {
	text-align: justify;
	text-justify: inter-character;
}

.coverSectionItem p:last-child {
	margin-bottom: 0
	;
}


.coverBoxItem {
	position: relative;
	z-index: 0;
}


.coverBoxItem h2 {
	position: relative;
	margin-right: 5px;
	padding: 0.5em;

	color: #fff;
	font-size: calc(18rem / 16);
	font-weight: 700;
}


.coverBoxItem h2::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;

	border: 1px solid;
	background-color: #fff;

	transform: translate(5px, 5px);
}

.coverBoxItem h2.backBlue::after {
	border-color: var(--blue);
}

.coverBoxItem h2.backRed::after {
	border-color: var(--red);
}


.coverBoxItem p:not(.coverBoxDoubleLine) {
	text-align: justify;
	text-justify: inter-character;
}


.coverBoxGuest dt {
	margin-bottom: calc(12rem / 16);
	color: #fff;
	font-size: calc(18rem / 16);
	font-weight: 700;
	text-align: center;
}


.coverBoxAccess {
	padding-left: 10%;
	padding-right: 10%;
}


.coverBoxAccess a {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	height: calc(56em / 18);

	margin: calc(24rem / 16) auto;
	padding-left: calc(36em / 18);
	padding-right: calc(36em / 18);

	border: 2px solid;
	border-radius: calc(28em / 18) / 50%;

	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.coverBoxAccess a:nth-child(2n+1) {
	color: var(--red);
}

.coverBoxAccess a:nth-child(2n) {
	color: var(--blue);
}


.coverBoxAccess a::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: calc(30em / 18);

	display: block;
	width: calc(10em / 18);
	height: calc(10em / 18);

	margin-top: auto;
	margin-bottom: auto;

	border-top: 2px solid;
	border-right: 2px solid;

	transform: rotate(45deg);
}


.coverBoxDoubleLine {
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;

	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;

	font-size: calc(17rem / 16);
	font-weight: 700;
	text-align: center;
}

.coverBox + .coverBoxDoubleLine {
	margin-top: calc(16rem / 16);
}


.coverBoxContact {
	font-weight: 700;
	line-height: calc(30em / 18);
	text-align: center;
}

.coverBoxContact p span {
	display: inline-block;
}

.coverBoxContact a {
	color: currentColor;
	text-decoration: none;
}


.essay-competition *:not(.link) {
	color: #fff;
}


.essay-competition .layout {
	padding: calc(50rem / 16) calc(50rem / 16);
}


.essay-competition .title {
	font-size: calc(40rem / 16);
	font-weight: 700;
	margin-bottom: calc(35rem / 16);
}


.essay-competition .lead {
	margin-bottom: calc(25rem / 16);

	text-align: justify;
	text-justify: inter-character;
}


.essay-competition .list {
	margin-bottom: calc(30rem / 16);
}


.essay-competition .note {
	display: flex;
	justify-content: center;
	margin-bottom: calc(30rem / 16);

	font-size: calc(20rem / 16);
	font-weight: 700;
}


.essay-competition .link {
	text-align: center;
}


.essay-competition .link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: calc(345rem / 16);
	height: calc(30rem / 16);

	border-radius: calc(30rem / 16);
	background-color: #fff;

	color: var(--blue);
	font-size: calc(18rem / 16);
	font-weight: 700;
	text-decoration: none;
}


.essay-competition + .topEvent {
	padding-top: 0;
}


.topEventLead {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;

	font-size: calc(17rem / 16);
	font-weight: 700;
}

.topEventLead::before,
.topEventLead::after {
	content: "｜";
	display: inline-block;
	color: #707070;
	font-size: 1.2em;
	transform-origin: bottom center;
}

.topEventLead::before {
	transform: rotate(-28deg);
}

.topEventLead::after {
	transform: rotate(28deg) translate(-0.5em,0.28em);
}


.topEventTitle {
	margin-bottom: calc(8rem / 16);
	font-size: calc(20rem / 16);
	font-weight: 700;
}


.topEventHeading {
	margin-bottom: calc(24rem / 16);
	font-weight: 700;
}


.topEventLink {
	margin-top: calc(24rem / 16);
	font-weight: 700;
}


#step .flex {
	padding-top: 1.5rem;
}

#step .step1Txt .flex {
    justify-content: center;
    gap: 0 1rem;
    font-weight: bold;
}


@media not (max-width: 768px) {
	.footerComment {
		font-size: calc(20rem / 16);
	}

	.cover {
		padding-bottom: calc(100rem / 16);
	}

	.coverKey {
		width: 90%;
		max-width: 1000px;
		margin-bottom: calc(60rem / 16);
		margin-left: auto;
		margin-right: auto;
	}

	.coverKeyLayout {
		margin-left: -6.7%;
		margin-right: -6.7%;
	}

	.coverSection {
		grid-template-columns: 1fr 1px 1fr;
		column-gap: calc(25rem / 16);
	}

	.coverSectionItemTitle img {
		flex: 0 0 78px;
	}

	.coverSectionItemTitle h2 {
		font-size: calc(24rem / 16);
		font-weight: 700;
	}


	.coverBox {
		margin-top: calc(50rem / 16);
		column-gap: calc(50rem / 16);
	}

	.coverBoxItem {
		flex: 0 0 calc(50% - calc(20rem / 16));
		margin-top: 0;
	}

	.coverBoxItem h2 {
		font-size: calc(20rem / 16);
	}

	.coverBoxItem h2::after {
		border-width: 2px;
	}

	.coverBoxGuest dt {
		font-size: calc(20rem / 16);
	}

	.coverBoxAccess a {
		border-width: 4px;
		font-size: calc(18rem / 16);
	}

	.coverBoxDoubleLine {
		font-size: calc(20rem / 16);
	}

	.coverBox + .coverBoxDoubleLine {
		margin-top: calc(36rem / 16);
	}

	.coverBoxContact {
		display: flex;
		justify-content: center;
		column-gap: 0.5em;

		font-size: calc(18rem / 16);
	}

	.coverBoxContact p {
		flex: 0 0 auto;
	}


	.topEventLayout {
		display: flex;
		align-items: center;
		column-gap: calc(40rem / 16);
	}

	.topEventFigure {
		flex: 0 0 19%;
	}

	.topEventDesc {
		flex: 1;
	}

	.topEventLead {
		font-size: calc(20rem / 16);
	}

	.topEventTitle {
		font-size: calc(32rem / 16);
		text-align: left;
	}

	.topEventHeading {
		font-size: calc(18rem / 16);
	}


	#step .flex {
		column-gap: calc(30rem / 16);
	}
}

@media not (max-width: 1000px) {
	.coverSectionItemTitle h2 {
		font-size: calc(30rem / 16);
	}

	.flex.column-3 > * {
		width: calc(calc(100% - 4rem) / 3);
	}
}

@media (max-width: 680px) {
	#sec1 .team-list .reportBox {
		width: calc(50% - 0.5rem);
	}
}

@media (max-width: 768px) {
	.cover {
		padding-bottom: calc(40rem / 16);
	}

	.coverSection {
		row-gap: calc(40rem / 16);
	}

	.coverSectionSep {
		width: 100%;
		height: 1px;
	}

	.coverBox.flex {
		flex-direction: column;
		row-gap: calc(40rem / 16);
		margin-top: calc(40rem / 16);
	}

	.coverBoxContact p:nth-child(2) {
		display: none;
	}


	.essay-competition {
		margin: 0 0 calc(25rem / 16);
	}

	.essay-competition .layout {
		padding: calc(25rem / 16) calc(25rem / 16);
	}

	.essay-competition .title {
		font-size: calc(20rem / 16);
		margin-bottom: calc(20rem / 16);
	}

	.essay-competition .note {
		font-size: calc(17rem / 16);
	}


	.topEventFigure {
		text-align: center;
	}

	.topEventFigure img {
		max-width: 240px;
	}

	.topEventHeading {
		text-align: center;
	}

	.topEventTitle span,
	.topEventHeading span {
		display: inline-block;
	}


	#step > .flex {
		flex-direction: column;
	}

	#step .step1Txt {
		width: 100%;
	}
}
