@charset "utf-8";



/* ----------------------------------------------------------------------------------------------------
Set

@media screen and (max-width: 1920px) {}
@media screen and (max-width: 1536px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1280px) {}
@media print, screen and (max-width: 1024px) {}
@media screen and (max-width: 560px) {}


---------------------------------------------------------------------------------------------------- */


:root {
	--color-default: #212121;

	--color-white: #ffffff;
	--color-black: #212121;
	--color-lightgray: #F5F5F5;
	--color-gray: #9E9E9E;
	--color-darkgray: #424242;
	--color-bluegray: #ECEFF1;

	--color-bg: #ffffff;

	--color-red: #EF5350;
	--color-yellow: #FFEE58;
	--color-navy: #081644;

	--ease-xfast: all 0.04s ease-out;
	--ease-fast: all 0.08s ease-out;
	--ease-normal: all 0.12s ease-out;
	--ease-slow: all 0.16s ease-out;
	--ease-xslow: all 0.20s ease-out;

	--size-normal: 1em;
	--size-large: 1.13em;
	--size-xlarge: 1.27em;
	--size-2xlarge: 1.42em;
	--size-3xlarge: 1.60em;
	--size-4xlarge: 1.80em;
	--size-5xlarge: 2.03em;
	--size-6xlarge: 2.28em;
	--size-7xlarge: 2.57em;
	--size-8xlarge: 2.89em;

	--size-small: 0.89em;
	--size-xsmall: 0.79em;
	--size-2xsmall: 0.70em;
	--size-3xsmall: 0.62em;
	--size-4xsmall: 0.55em;

	--weight-thin: 400;
	--weight-normal: 500;
	--weight-bold: 700;
	--weight-xbold: 800;

	--line-height-xnarrow: 1.4;
	--line-height-narrow: 1.6;
	--line-height-normal: 1.8;
	--line-height-wide: 2.0;
	--line-height-xwide: 2.2;

	--border-radius-xnarrow: 0.2rem;
	--border-radius-narrow: 0.4rem;
	--border-radius-normal: 0.8rem;
	--border-radius-wide: 1.2rem;
	--border-radius-xwide: 1.6rem;

	--border-width-thin: 1px;
	--border-width-normal: 2px;
	--border-width-thick: 3px;

	--padding-section-narrow: 6.4em;
	--padding-section-normal: 8em;
	--padding-section-wide: 9.6em;

}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {

	:root {
		--padding-section-narrow: 4.8em;
		--padding-section-normal: 6.4em;
		--padding-section-wide: 8em;
	}

}


/* ----------------------------------------------------------------------------------------------------
 * Common
---------------------------------------------------------------------------------------------------- */
html,
body {
	width: 100%;
	text-align: center;
	color: var(--color-default);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 108%;
	font-weight: var(--weight-normal);
	line-height: var(--line-height-normal);
	overflow-wrap: anywhere;
	letter-spacing: 0.02em;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	font-family: inherit;
	font-weight: inherit;
}

body.loadAct * {
	transition: none !important;
}

.noselect,
.noselect * {
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

h1,
h2,
h3,
h4,
th,
small {
	font-weight: var(--weight-normal);
	font-size: 100%;
}

a,
button {
	outline: none;
	transition: var(--ease-normal);
}

*:focus {
	outline: none;
}

a {
	color: var(--color-default);
}

a:not(.not):hover {
	color: var(--color-red);
}

a:not(.not) .photo,
a:not(.not) .image,
a:not(.not) img {
	transition: var(--ease-normal);
}

a:not(.not):hover .photo,
a:not(.not):hover .image,
a:not(.not):hover img {
	filter: brightness(80%);
}

ol,
ul {
	list-style: none;
}

img,
svg {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

header,
footer,
div,
ul,
li,
h1,
h2,
h3,
nav,
button,
blockquote,
dt,
dd,
figure,
section {
	position: relative;
}

p,
a,
span {
	position: relative;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.clear::after {
	content: '';
	display: block;
	clear: both;
}

.none {
	display: none;
}

p {
	margin-bottom: 1.6em;
}

p:not(.not):last-child,
ul:not(.not):last-child,
ol:not(.not):last-child,
li:not(.not):last-child,
figure:not(.not):last-child,
table:not(.not):last-child,
blockquote:not(.not):last-child {
	margin-bottom: 0 !important;
}

mark {
	background-color: var(--color-yellow);
}

label {
	display: inline-block;
}

sup {
	font-weight: var(--weight-normal);
	font-size: var(--size-2xsmall);
	padding: 0 0.2em;
	vertical-align: middle;
}

strong,
.text-bold {
	font-weight: var(--weight-bold);
}

cite {
	font-style: normal;
}

.text-normal {
	font-weight: var(--weight-normal);
}

.text-underline {
	text-decoration: underline;
}

.text-small {
	font-size: var(--size-small);
}

.text-xsmall {
	font-size: var(--size-xsmall);
}

.text-2xsmall {
	font-size: var(--size-2xsmall);
}

.text-3xsmall {
	font-size: var(--size-3xsmall);
}

.text-4xsmall {
	font-size: var(--size-4xsmall);
}


.text-large {
	font-size: var(--size-large);
}

.text-xlarge {
	font-size: var(--size-xlarge);
}

.text-2xlarge {
	font-size: var(--size-2xlarge);
}

.text-3xlarge {
	font-size: var(--size-3xlarge);
}

.text-4xlarge {
	font-size: var(--size-4xlarge);
}

.text-5xlarge {
	font-size: var(--size-5xlarge);
}

.text-5xlarge {
	font-size: var(--size-6xlarge);
}

.text-7xlarge {
	font-size: var(--size-7xlarge);
}

.text-8xlarge {
	font-size: var(--size-8xlarge);
}

.text-gray {
	color: var(--color-gray);
}

.text-red {
	color: var(--color-red);
}

.text-white {
	color: var(--color-white);
}

.text-vertical {
	writing-mode: vertical-rl;
	text-align: left;
}

.in-center {
	text-align: center !important;
}

.in-right {
	text-align: right !important;
}

.in-left {
	text-align: left !important;
}

.pos-center {
	display: flex;
	justify-content: center;
	align-items: center;
}


.nowrap {
	white-space: nowrap;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.inline {
	display: inline;
}

.block-note {
	padding-left: 1em;
	text-indent: -1em;
}

.block-note::before {
	content: '※';
}

.bg-white {
	background-color: var(--color-white);
}

.bg-gray {
	background-color: var(--color-lightgray);
}

.margin-bt0 {
	margin-bottom: 0 !important;
}

.margin-bt02 {
	margin-bottom: 0.2em !important;
}

.margin-bt04 {
	margin-bottom: 0.4em !important;
}

.margin-bt06 {
	margin-bottom: 0.6em !important;
}

.margin-bt08 {
	margin-bottom: 0.8em !important;
}

.margin-bt10 {
	margin-bottom: 1.0em !important;
}

.margin-bt12 {
	margin-bottom: 1.2em !important;
}

.margin-bt14 {
	margin-bottom: 1.4em !important;
}

.margin-bt16 {
	margin-bottom: 1.6em !important;
}

.margin-bt18 {
	margin-bottom: 1.8em !important;
}

.margin-bt20 {
	margin-bottom: 2.0em !important;
}

.margin-bt22 {
	margin-bottom: 2.2em !important;
}

.margin-bt24 {
	margin-bottom: 2.4em !important;
}

.list-disc {
	list-style: disc;
	margin-left: 1.4em;
	margin-bottom: 1.6em;
}

.list-decimal {
	list-style: decimal;
	margin-left: 1.6em;
	margin-bottom: 1.6em;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
	border: var(--border-width-thin) solid var(--color-black) !important;
	background-color: var(--color-white) !important;
	line-height: var(--line-height-narrow) !important;
	border-radius: var(--border-radius-narrow) !important;
	color: var(--color-default) !important;
	padding-left: 0.6em !important;
	padding-right: 0.6em !important;
	padding-top: 0.4em !important;
	padding-bottom: 0.4em !important;
	max-width: 100% !important;
	transition: var(--ease-normal) !important;
	display: inline-block !important;
	font-size: inherit !important;
}

textarea {
	width: 100% !important;
	height: 12.0em !important;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
	box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.16);
	background-color: var(--color-lightgray) !important;
}

select {
	border: var(--border-width-thin) solid var(--color-black) !important;
	background-color: var(--color-white) !important;
	line-height: var(--line-height-narrow) !important;
	border-radius: var(--border-radius-narrow) !important;
	color: var(--color-default) !important;
	padding-left: 0.6em !important;
	padding-right: 0.6em !important;
	padding-top: 0.6em !important;
	padding-bottom: 0.6em !important;
	max-width: 100% !important;
	transition: var(--ease-normal) !important;
	display: inline-block !important;
	font-size: inherit !important;
}

.pd {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	padding-left: min(6.4vw, 120px);
	padding-right: min(6.4vw, 120px);
	width: 100%;
	max-width: 84rem;
}

.pd.narrow {
	max-width: 60rem;
}

.pd.wide {
	max-width: 108rem;
}

.pd.full {
	max-width: none;
}

.show-tb,
.show-sp {
	display: none !important;
}

.hide-tb,
.hide-sp {}

@media screen and (max-width: 1920px) {

	html,
	body {
		font-size: 104%;
	}
}

@media screen and (max-width: 1536px) {

	html,
	body {
		font-size: 100%;
	}
}


@media print,
screen and (max-width: 1024px) {

	.show-tb {
		display: inline !important;
	}

	.show-tb.block {
		display: block !important;
	}

	.show-tb.inline-block {
		display: inline-block !important;
	}

	.hide-tb {
		display: none;
	}
}

@media screen and (max-width: 560px) {

	html,
	body {
		font-size: 96%;
	}

	.show-sp {
		display: inline !important;
	}

	.show-sp.block {
		display: block !important;
	}

	.show-sp.inline-block {
		display: inline-block !important;
	}

	.hide-sp {
		display: none;
	}
}

#wrap {
	width: 100%;
	max-width: 100vw;
	overflow: clip;
	display: grid;
	grid-template-rows: auto 1fr auto;
	min-height: 100vh;
	min-height: 100lvh;
}



/* ----------------------------------------------------------------------------------------------------
Common-add
---------------------------------------------------------------------------------------------------- */
.text-en {
	font-family: "Dosis", sans-serif;

}

/* ----------------------------------------------------------------------------------------------------
Header
---------------------------------------------------------------------------------------------------- */
header {
	background-color: var(--color-white);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	padding: 0.8em;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
	transform: translate(0, -104%);
	transition: all 0.32s cubic-bezier(0.33, 1, 0.68, 1);
}

body.down-menu header {
	transform: translate(0, 0);

}

header ul {
	display: flex;
	justify-content: center;
	gap: 2.4em;
}

header a {
	text-decoration: none;
	font-size: var(--size-small);
	font-weight: var(--weight-bold);
}

@media screen and (max-width: 1366px) {}

@media print,
screen and (max-width: 1024px) {
	body.down-menu header {
		transform: translate(0, -104%);

	}

}

@media screen and (max-width: 560px) {}

/* ----------------------------------------------------------------------------------------------------
Footer
---------------------------------------------------------------------------------------------------- */

footer {
	padding-top: 4.8em;
	background-image: url(../images/bg-bluegray.svg);
	background-position: center top;

}

.block-footer {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	padding-left: min(6.4vw, 4.8em);
	padding-right: min(6.4vw, 4.8em);
	text-align: left;
	gap: 3.2em;
	padding-bottom: 3.2em;

}


.block-footer-sponsor .title {
	font-weight: var(--weight-bold);
	font-size: var(--size-large);
	margin-bottom: 0.2em;
}

.list-sponsor {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.2em 0;

}

.list-sponsor dt {
	text-align-last: justify;
	padding-right: 1.4em;
}

.list-sponsor dt::after {
	content: '：';
	position: absolute;
	top: 0;
	right: 0.2em;
}


.list-sponsor-more {
	display: flex;
	flex-wrap: wrap;
	padding-left: 1em;
}

.list-sponsor-more li:first-child {
	text-indent: -1em;
}

.list-sponsor-more li:first-child::before {
	content: '［';
}

.list-sponsor-more li::after {
	content: '、';
}

.list-sponsor-more li:last-child::after {
	content: '］';
}

.list-sponsor-more2 {
	display: flex;
	flex-wrap: wrap;
}

.list-sponsor-more2 li::after {
	content: '、';
}

.list-sponsor-more2 li:last-child:after {
	display: none;
}

.block-footer-contact {
	border: var(--border-width-normal) dotted var(--color-black);
	border-radius: var(--border-radius-narrow);
	padding: 1.0em 1.2em 1.1em;
}

.block-footer-contact .title {
	font-weight: var(--weight-bold);
	margin-bottom: 0.2em;
}

.block-footer-contact .mail {
	margin-bottom: 0.4em;
	line-height: var(--line-height-narrow);
	font-weight: var(--weight-bold);
}

.block-footer-contact .note {
	font-size: var(--size-xsmall);
	font-weight: var(--weight-normal);
}

.block-footer-contact .note-mail {
	font-size: var(--size-xsmall);
	display: inline-block;
}


.list-sponsor-banner {
	display: flex;
	margin-top: 0.3em;
	margin-left: 0.1em;
	gap: 0.4em;
	flex-wrap: wrap;
}

.list-sponsor-banner a {
	background-color: var(--color-white);
	display: block;
	padding: 0.8em;
	border: var(--border-width-normal) solid var(--color-bluegray);

}

.list-sponsor-banner a img {
	height: 1.4em;
	width: auto;
}


.block-footer-company {
	background-color: var(--color-white);
	padding-top: 2.4em;

	padding-bottom: 2.4em;

}

.list-footer-company {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.2em 2.0em;
	font-weight: var(--weight-xbold);
	line-height: 1.2;
	text-align: center;
	margin-top: 1.6em;
	margin-bottom: 1.6em;

}

.list-footer-company.line01 {
	font-size: var(--size-xlarge);
}

.list-footer-company.line02 {}

.list-footer-company.line03 {
	font-size: var(--size-xsmall);
}

.list-footer-company.line04 {
	font-size: var(--size-small);
	gap: 1.2em 2.0em;
}

.list-footer-company a {
	display: inline-block;
	color: var(--color-black);
	text-decoration: none;
}

.list-footer-company img.w1 {
	width: 1em;
}

.list-footer-company img.w2 {
	width: 2em;
}

.list-footer-company img.w3 {
	width: 3em;
}

.list-footer-company img.w4 {
	width: 4em;
}

.list-footer-company img.w5 {
	width: 5em;
}

.list-footer-company img.w54 {
	width: 5.4em;
}

.list-footer-company img.w6 {
	width: 6em;
}

.list-footer-company img.w7 {
	width: 7em;
}

.list-footer-company img.w8 {
	width: 8em;
}

.list-footer-company img.w9 {
	width: 9em;
}

.list-footer-company img.w10 {
	width: 10em;
}

.title-company {
	text-align: center;
	margin-bottom: 1.6em;
}

.title-company .ja {
	display: block;
	font-weight: var(--weight-bold);
	font-size: var(--size-xsmall);
	margin-bottom: 0.1em;
}

.title-company .en {
	display: block;
	font-weight: 600;
	line-height: 1.0;
	font-size: var(--size-5xlarge);
}









@media screen and (max-width: 1366px) {}

@media print,
screen and (max-width: 1024px) {



	.block-footer {
		grid-template-columns: 1fr;

	}

	.block-footer-contact .note br {
		display: none;
	}




}

@media screen and (max-width: 560px) {
	footer {
		padding-top: 4.0em;
		padding-bottom: 2.4em;
		font-size: var(--size-small);
	}

	.block-footer {
		padding-bottom: 2.4em;

	}


	.list-sponsor {
		grid-template-columns: 1fr;
		gap: 0;

	}

	.list-sponsor dt {
		text-align-last: left;
		padding-right: 0;
		padding-top: 0.4em;
	}

	.list-sponsor dt:first-child {
		padding-top: 0.2em;
	}

	.list-sponsor dt::after {
		position: relative;
		right: auto.1em;
	}

	.list-sponsor dd {
		padding-left: 1.0em;
	}

	.list-sponsor-banner {
		margin-top: 0.6em;
		font-size: var(--size-small);
		gap: 0.6em;
	}

}

/* ----------------------------------------------------------------------------------------------------
Loading
---------------------------------------------------------------------------------------------------- */

body {
	overflow: hidden;
}

body.load-end {
	overflow: visible;
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100lvh;
	background-color: var(--color-white);
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.load-end #loading {
	opacity: 0;
	visibility: hidden;
	transition: all 0.40s linear;
	transition-delay: 0.64s;
}


#loading .inner {
	width: 11em;
	aspect-ratio: 1;
	background-image: linear-gradient(135deg, #5b6fe3, #8291e9 32%, #77e1df);
	border-radius: 100vh;
	animation: loading 2.4s linear infinite;
	transition: all 0.32s cubic-bezier(0.11, 0, 0.5, 0);

}

body.load-end #loading .inner {
	width: calc(11em * 1.2);
	opacity: 0;
}


@keyframes loading {

	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);

	}
}

#loading .inner::before {
	content: '';
	display: block;
	position: absolute;
	top: 16%;
	right: 16%;
	bottom: 16%;
	left: 16%;
	background-color: var(--color-white);
	border-radius: 100vh;
	font-size: var(--size-small);
}

#loading::after {
	content: 'Loading...';
	font-family: sans-serif;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	letter-spacing: 0.04em;
}

body.load-end #loading::after {
	transition: all 0.16s linear;
	opacity: 0;

}

@media screen and (max-width: 1366px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {
	#loading .inner {
		width: 10em;

	}

	body.load-end #loading .inner {
		width: calc(10em * 1.2);
	}

}

/* ----------------------------------------------------------------------------------------------------
Inview
---------------------------------------------------------------------------------------------------- */
.inview {
	opacity: 0;
	transform: translate(0, 2.0em);
}

.inview.show {
	opacity: 1;
	transition: all 0.64s cubic-bezier(0.33, 1, 0.68, 1);
	transform: translate(0, 0);
}

@media screen and (max-width: 1366px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}

/* ----------------------------------------------------------------------------------------------------
Home
---------------------------------------------------------------------------------------------------- */
.bg-koshien {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100lvh;
	background-image: url(../images/bg-koshien.png);

}

.wrap-main {
	background-image: url(../images/bg-white.svg);
	background-position: bottom center;
}

.block-main {
	background-image: url(../images/bg-main.png);
	background-color: var(--color-white);
	height: 140vh;
	height: 140lvh;
	background-position: center bottom;
}

.block-main>.inner {
	display: flex;
	height: 100vh;
	height: 100svh;
	justify-content: center;
	align-items: center;
}

.block-main h1 {
	width: 50vw;
	transform: translate(0, -10%);
}

.block-main .date {
	position: absolute;
	right: 2.4em;
	bottom: 2.0em;
	display: grid;
	grid-template-columns: auto 1fr;
	line-height: 1.0;
	font-weight: var(--weight-bold);
	align-items: center;
	gap: 0.4em;
}

.block-main .date .year {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 2.57em;
	letter-spacing: 0.04em;
	padding-bottom: 0.2em;

}

.block-main .date .more {
	font-size: 7.41em;

}

.block-main .date .more .week {
	font-size: var(--size-4xsmall);
	transform: translate(0, -0.05em);
	display: inline-block;
	padding-left: 0.1em;

}


@media screen and (max-width: 1366px) {
	.block-main .date {
		font-size: var(--size-small);
	}

}

@media print,
screen and (max-width: 1024px) {
	.block-main {
		height: 100vh;
		height: 100lvh;
	}

	.block-main>.inner {
		height: 88vh;
		height: 88svh;
	}

	.block-main h1 {
		max-width: 40em;
		width: 80vw;
		transform: translate(0, -32%);
	}

	.block-main .date {
		font-size: var(--size-xsmall);
		bottom: 4.0em;
	}

}

@media screen and (max-width: 560px) {
	.block-main h1 {
		width: 90vw;
	}

	.block-main .date {
		font-size: var(--size-3xsmall);
		right: 2.0em;
	}

}


.wrap-message {
	padding-bottom: var(--padding-section-normal);
	margin-top: -32vh;
}

.block-message {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 3.2em 2.4em;
	max-width: 50em !important;
}

.block-message h2 {
	writing-mode: vertical-rl;
	font-weight: var(--weight-bold);
	font-size: var(--size-6xlarge);
	line-height: var(--line-height-xnarrow);
	margin-bottom: 0.3em;
	letter-spacing: 0.04em;
	white-space: nowrap;
	text-align: left;


}


.block-message p {
	font-weight: var(--weight-bold);
	font-size: var(--size-large);
	padding-top: 1.6em;
	margin-bottom: 0.8em;

}

.block-message dl {
	gap: 0.3em 0;
	display: grid;
	grid-template-columns: auto 1fr;
	font-weight: var(--weight-bold);
	font-size: var(--size-large);
	line-height: var(--line-height-narrow);

}

.block-message dl .inline-block {
	font-size: var(--size-small);
}

.block-message .note {
	grid-column: 1 / -1;
	font-size: var(--size-small);
	border: var(--border-width-normal) dotted var(--color-black);
	padding: 1.0em 1.2em;
}


@media screen and (max-width: 1366px) {}

@media print,
screen and (max-width: 1024px) {
	.wrap-message {
		margin-top: -12vh;
	}


	.block-message h2 {
		font-size: var(--size-5xlarge);

	}


}

@media screen and (max-width: 560px) {




	.block-message {
		gap: 1.6em;
	}

	.block-message h2 {
		font-size: var(--size-3xlarge);
	}


	.block-message p {
		font-size: var(--size-normal);

	}

	.block-message dl {
		font-size: var(--size-normal);

	}


	.block-message h2 br {
		display: none;

	}

}









.wrap-event {
	padding-bottom: var(--padding-section-wide);
}

.title-event {
	text-align: center;
	margin-bottom: 3.2em;
}

.title-event .ja {
	display: block;
	font-weight: var(--weight-bold);
}

.title-event .en {
	display: block;
	font-size: 4.11em;
	font-weight: 600;
	line-height: 1.0;

}

.list-event {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3.2em;
	margin-bottom: 3.2em;

}

.list-event li {
	display: grid;
	grid-template-columns: 16em 1fr;
	gap: 1.6em;
}

.list-event li .photo {
	aspect-ratio: 1;
}

.list-event li .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list-event li:nth-child(1) .photo img {
	object-fit: contain;
}

.list-event li .photo .copy {
	font-size: var(--size-2xsmall);
	line-height: var(--line-height-xnarrow);
	padding-top: 0.3em;
	display: block;
	text-align: right;
}




.list-event .text {
	padding-top: 1.6em;
	padding-bottom: 1.6em;
}

.list-event h3 {
	margin-bottom: 0.8em;
}

.list-event h3::after {
	content: '';
	display: block;
	width: 2.4em;
	border-bottom: var(--border-width-normal) solid var(--color-black);
	margin-top: 0.8em;
}

.list-event h3 .ja {
	display: block;
	line-height: var(--line-height-narrow);
	font-weight: var(--weight-bold);
	font-size: var(--size-small);
	margin-bottom: 0.2em;
}

.list-event h3 .en {
	display: block;
	font-size: var(--size-7xlarge);
	font-weight: 600;
	line-height: 1.0;
}


.block-event-link {
	text-align: center;

}

.block-event-link a {
	width: 16em;
	display: block;
	margin-left: auto;
	margin-right: auto;
	color: var(--color-black) !important;
	text-decoration: none;
	background-color: var(--color-yellow);
	border-radius: 100vh;
	font-weight: var(--weight-bold);
	padding: 0.8em 2.0em 0.8em 3.6em;
	line-height: var(--line-height-xnarrow);
	background-image: url(../images/icon-blank-black.svg);
	background-size: 1.2em auto;
	background-position: left 1.6em center;
	font-size: var(--size-large);
	margin-bottom: 0.8em;

}

.block-event-note {
	font-size: var(--size-small);
	line-height: var(--line-height-narrow);
	text-align: left;
	display: inline-block;
}

@media screen and (max-width: 1366px) {
	.list-event li {
		grid-template-columns: 14em 1fr;
	}

}

@media screen and (max-width: 1280px) {
	.list-event li {
		grid-template-columns: 12em 1fr;
	}

}


@media print,
screen and (max-width: 1024px) {
	.list-event {
		grid-template-columns: repeat(1, 1fr);

	}

	.list-event li {
		grid-template-columns: 12em 1fr;
	}


}

@media screen and (max-width: 560px) {
	.title-event .ja {
		font-size: var(--size-small);
	}

	.title-event .en {
		font-size: 3.25em;

	}

	.list-event li {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.list-event li .photo {
		aspect-ratio: auto;
	}

	.list-event li .photo img {
		width: 100%;
		height: auto;
		aspect-ratio: 2 / 1;
	}

	.list-event li:nth-child(1) .photo .copy {
		margin-top: -2.0em;
	}


	.list-event h3 {
		text-align: center;
	}

	.list-event h3::after {
		margin-left: auto;
		margin-right: auto;
		margin-top: 1.0em;
	}

	.list-event .text {
		padding-top: 1.4em;
		padding-bottom: 0;
	}



}






.wrap-koshien {
	color: var(--color-white);
	padding-top: var(--padding-section-normal);
	padding-bottom: var(--padding-section-normal);
}

.block-koshien {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 6.4em;
	align-items: start;
}

.block-koshien>.title {
	position: sticky;
	top: 6.4em;
}

.block-koshien>.title h2 {
	font-size: var(--size-xlarge);
	letter-spacing: 0.08em;
	padding-top: 1.2em;
	font-weight: var(--weight-bold);

}

.block-koshien>.title .date {
	font-size: 3.65em;
	color: var(--color-yellow);
	letter-spacing: 0.08em;
	line-height: 1.1;
	font-weight: 600;
}

.block-koshien>.title .date .week {
	font-size: var(--size-4xsmall);
	padding-left: 0.2em;
	letter-spacing: 0.06em;
	display: inline-block;
	transform: translate(0, -0.1em);
}


.block-koshien>.contents {
	padding-top: 4.0em;

}

.title-koshien {
	margin-top: 2.0em;
	font-size: var(--size-6xlarge);
	font-weight: var(--weight-bold);
	line-height: var(--line-height-xnarrow);
	margin-bottom: 0.8em;
	color: var(--color-yellow);
}

.list-schedule {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 2.4em 1.2em;
	margin-bottom: 5.6em;
}

.list-schedule dt {
	font-size: var(--size-5xlarge);
	line-height: 1.0;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.list-schedule dt .hyphen {
	display: inline-block;
	transform: translate(0, -0.08em);
}

.list-schedule dd {
	border: var(--border-width-normal) dotted var(--color-white);
	border-radius: var(--border-radius-narrow);
	text-align: center;
	padding: 0.7em 1.6em 0.8em;
	line-height: var(--line-height-narrow);
	font-weight: var(--weight-bold);
	background-color: rgba(255, 255, 255, 0.08);
}

.list-schedule dd.convention {
	background-color: var(--color-white);
	color: var(--color-black);
	border: none;

}

.list-schedule dd .title {
	font-size: var(--size-large);
	font-weight: var(--weight-xbold);
}

.list-schedule dd .place {
	font-size: var(--size-small);

}

.list-schedule dd .rocket {
	font-size: var(--size-small);
}


.list-schedule dd::before {
	content: '';
	display: block;
	position: absolute;
	top: calc(100% + 0.3em);
	height: 1.6em;
	width: 0;
	left: 50%;
	border-right: var(--border-width-normal) solid var(--color-white);
	transform: translate(-50%, 0);
}

.list-schedule dd::after {
	content: '';
	display: block;
	width: 0.6em;
	aspect-ratio: 4 / 3;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background-color: var(--color-white);
	position: absolute;
	left: 50%;
	top: calc(100% + 1.7em);
	transform: translate(-50%, 0);
}

.list-schedule dd:last-child::before,
.list-schedule dd:last-child::after {
	display: none;
}

.list-schedule dd .pop {
	font-size: var(--size-xsmall);
}

.list-schedule dd .pop>.inner {
	display: inline-block;
	padding: 0 0.8em;

}

.list-schedule dd .pop>.inner::before,
.list-schedule dd .pop>.inner::after {
	content: '';
	display: block;
	position: absolute;
	top: 0.1em;
	bottom: 0;
	border-left: var(--border-width-normal) solid var(--color-black);
}

.list-schedule dd .pop>.inner::before {
	left: 0;
	transform: rotate(-20deg);
}

.list-schedule dd .pop>.inner::after {
	right: 0;
	transform: rotate(20deg);
}


.list-koshien {
	display: grid;
	grid-template-columns: auto 1fr;
	border-top: var(--border-width-thin) solid var(--color-white);
	margin-bottom: 5.6em;
}

.list-koshien dt,
.list-koshien dd {
	border-bottom: var(--border-width-thin) solid var(--color-white);
	padding-top: 0.7em;
	padding-bottom: 0.8em;
}

.list-koshien dt {
	font-weight: bold;
	padding-right: 1.4em;
}



.list-koshien .link {
	display: flex;
	gap: 0.6em;
	margin-top: 0.8em;
	margin-bottom: 0.4em;
}

.list-koshien .link a {
	background-color: var(--color-white);
	color: var(--color-navy);
	text-decoration: none;
	font-size: var(--size-small);
	line-height: var(--line-height-narrow);
	padding: 0.3em 1.2em 0.4em;
	border-radius: 100vh;
}

.list-koshien .link a img {
	width: 0.9em;
	transform: translate(0, -0.1em);
	margin-right: 0.3em;

}

.list-koshien .link a img.place {
	width: 0.85em;
}


.list-koshien ul {
	display: grid;
	gap: 0.2em;
}

.list-koshien ul li {
	padding-left: 1.3em;
}


.list-koshien ul li::before {
	position: absolute;
	left: 0;
	top: 0;
}

.list-koshien ul li:nth-child(1):before {
	content: '①';
}

.list-koshien ul li:nth-child(2):before {
	content: '②';
}

.list-koshien ul li:nth-child(3):before {
	content: '③';
}

.list-koshien ul li:nth-child(4):before {
	content: '④';
}

.list-koshien ul li:nth-child(5):before {
	content: '⑤';
}

.list-koshien ul li:nth-child(6):before {
	content: '⑥';
}



.list-koshien dd.entry {}

.list-koshien dd.entry img {
	width: 6em;
	margin-right: 1.2em;
}

.list-koshien dd.entry a {
	color: var(--color-black) !important;
	text-decoration: none;
	background-color: var(--color-yellow);
	display: inline-block;
	border-radius: 100vh;
	font-weight: var(--weight-bold);
	padding: 0.8em 2.0em 0.8em 3.6em;
	line-height: var(--line-height-xnarrow);
	vertical-align: middle;
	background-image: url(../images/icon-blank-black.svg);
	background-size: 1.2em auto;
	background-position: left 1.6em center;

}

.list-koshien dd.entry a .label {
	display: block;
}

.list-koshien dd.entry a .sub {
	display: block;
	font-size: 0.75em;
}


.block-koshien-about {
	background-color: var(--color-white);
	color: var(--color-black);
	border-radius: var(--border-radius-normal);
	padding: 2.4em 2.4em 2.8em;
}

.block-koshien-about h3 {
	font-weight: bold;
	margin-bottom: 0.5em;

}

.block-koshien-about h3::before {
	content: '';
	display: inline-block;
	width: 3.2em;
	border-bottom: var(--border-width-normal) solid var(--color-black);
	vertical-align: middle;
	margin-right: 0.4em;
	transform: translate(0, -0.05em);

}

.block-koshien-about .lead {
	font-weight: var(--weight-bold);
	line-height: var(--line-height-narrow);
	font-size: var(--size-4xlarge);
	margin-bottom: 0.6em;

}

.block-koshien-link {
	margin-top: 2.4em;
	margin-bottom: 3.2em;
}

.block-koshien-link .link {
	display: block;
	aspect-ratio: 1;
	background-color: var(--color-white);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	border-radius: 100vh;
	padding: 2.0em 2.4em 0;
	text-align: center;
}

.block-koshien-link .link img.logo {
	width: 8em;
	margin-bottom: 0.2em;
}

.block-koshien-link .link img.blank {
	width: 1.0em
}

.list-koshien-link {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.24em;
}

.list-koshien-link li a {
	display: block;
	text-decoration: none;
	color: var(--color-white) !important;
	line-height: var(--line-height-narrow);
	height: 100%;
	padding: 1.0em 1.4em 1.3em;
}

.list-koshien-link li a::before {
	display: block;
	font-family: "Dosis", sans-serif;
	position: absolute;
	font-size: 5.85em;
	line-height: 1.0;
	top: 50%;
	mix-blend-mode: soft-light;
	font-weight: 600;
	transform: translate(-50%, -50%);
}

.list-koshien-link li:nth-child(1) a {
	background-color: #00A5C4;
}

.list-koshien-link li:nth-child(1) a::before {
	content: '1';
	left: 66%;
}


.list-koshien-link li:nth-child(2) a {
	background-color: #ff7284;
	text-align: right;
}

.list-koshien-link li:nth-child(2) a::before {
	content: '2';
	left: 34%;
}

.list-koshien-link li:nth-child(3) a {
	background-color: #ffbc2e;
}

.list-koshien-link li:nth-child(3) a::before {
	content: '3';
	left: 66%;
}

.list-koshien-link li:nth-child(4) a {
	background-color: #3b5e92;
	text-align: right;
}

.list-koshien-link li:nth-child(4) a::before {
	content: '4';
	left: 34%;
}

.list-koshien-link li a .title {
	font-size: var(--size-2xlarge);
	font-weight: var(--weight-bold);
	margin-bottom: 0.2em;

}

.list-koshien-link li a .title img {
	width: 0.7em;
	margin-left: 0.35em;
	transform: translate(0, -0.05em);
}

.list-koshien-link li a .text {
	font-size: var(--size-small);

}

.block-koshien-message {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2.4em;
}

.block-koshien-message .photo {
	text-align: center;
	line-height: var(--line-height-narrow);
}

.block-koshien-message .photo img {
	width: 16em;
	border-radius: var(--border-radius-normal);
	margin-bottom: 0.6em;
}

.block-koshien-message .photo .position {
	font-size: var(--size-small);
}

.block-koshien-message .photo .name {
	font-weight: var(--weight-bold);
	font-size: var(--size-large);
}

.block-koshien-message .photo .occupation {
	font-weight: bold;
}

.block-koshien-message .text h4 {
	font-weight: var(--weight-bold);
	border-bottom: var(--border-width-normal) dotted var(--color-black);
	display: inline-block;
	font-size: var(--size-large);
	line-height: var(--line-height-narrow);
	padding-bottom: 0.2em;
	margin-bottom: 0.6em;
}


@media screen and (max-width: 1366px) {
	.block-koshien {
		gap: 5.6em;
	}

	.block-koshien>.title {
		font-size: var(--size-small);
	}

	.block-koshien-link {
		font-size: var(--size-small);
	}

	.block-koshien-link .link {
		font-size: var(--size-small);

	}

	.block-koshien-message .photo img {
		width: 14em;
	}


}

@media screen and (max-width: 1280px) {
	.block-koshien {
		gap: 4.8em;
	}

	.block-koshien>.title {
		font-size: var(--size-2xsmall);
	}

	.list-koshien-link li:nth-child(1) a,
	.list-koshien-link li:nth-child(2) a {
		padding-bottom: 3.2em;
	}

	.list-koshien-link li:nth-child(3) a,
	.list-koshien-link li:nth-child(4) a {
		padding-top: 2.9em;

	}

	.list-koshien-link li:nth-child(1) a::before {
		left: 80%;
		top: 30%;
	}



	.list-koshien-link li:nth-child(2) a::before {
		left: 20%;
		top: 30%;
	}


	.list-koshien-link li:nth-child(3) a::before {
		left: 80%;
		top: 65%;
	}


	.list-koshien-link li:nth-child(4) a::before {
		left: 20%;
		top: 65%;
	}

	.list-koshien dd.entry {
		font-size: var(--size-small);
	}


}

@media print,
screen and (max-width: 1024px) {




	.block-koshien {
		grid-template-columns: 1fr;
		gap: 2.4em;
	}

	.block-koshien>.title {
		position: relative;
		top: auto;
		margin-left: auto;
		margin-right: auto;
		font-size: var(--size-xsmall);
	}



	.block-koshien>.contents {
		padding-top: 0;

	}

	.title-koshien {
		font-size: var(--size-5xlarge);
	}


	.block-koshien-link {
		font-size: var(--size-xsmall);
	}

	.block-koshien-message .photo img {
		width: 12em;
	}





}

@media screen and (max-width: 560px) {
	.block-koshien>.title {
		font-size: var(--size-2xsmall);
	}





	.title-koshien {
		font-size: var(--size-4xlarge);
	}

	.list-schedule {
		grid-template-columns: 1fr;
		gap: 0;
		margin-top: 1.6em;
	}

	.list-schedule dt {
		font-size: var(--size-xlarge);
		transform: translate(0, -0.4em);
	}

	.list-schedule dd {
		margin-bottom: 1.6em;
	}



	.list-schedule dd::before {
		height: 2.0em;
	}

	.list-schedule dd::after {
		top: calc(100% + 2.1em);
	}







	.list-koshien {
		grid-template-columns: 1fr;
	}

	.list-koshien dt {
		border-bottom: 0;
		padding-bottom: 0;
		padding-top: 0.8em;
	}

	.list-koshien dd {
		padding-top: 0.4em;
		padding-left: 1.6em;
		padding-bottom: 0.9em;
	}

	.list-koshien dt {
		font-weight: bold;
		padding-right: 1.4em;
	}


















	.block-koshien-about {
		padding: 2.4em 6.4vw 2.8em;
	}



	.block-koshien-about .lead {
		font-size: var(--size-3xlarge);

	}


	.block-koshien-link {
		font-size: 2.6vw;
	}

	.list-koshien-link li a {
		padding-left: 1.2em;
		padding-right: 1.2em;
	}


	.list-koshien-link li a .text br {
		display: none;

	}


	.list-koshien-link li:nth-child(1) a,
	.list-koshien-link li:nth-child(2) a {
		padding-bottom: 5.6em;
	}

	.list-koshien-link li:nth-child(3) a,
	.list-koshien-link li:nth-child(4) a {
		padding-top: 5.0em;

	}





	.block-koshien-message {
		grid-template-columns: 1fr;
	}

	.block-koshien-message .photo {
		order: 2;
	}










}