@charset "utf-8";

/* CSS Document */
/* ----------------------------------------------------------------------------------------------------
 * Set
@media screen and (max-width: 1920px) {}
@media screen and (max-width: 1536px) {}
@media screen and (max-width: 1280px) {}
@media print, screen and (max-width: 1024px) {}
@media screen and (max-width: 560px) {}
---------------------------------------------------------------------------------------------------- */
:root {

	--color-white: #FFFFFF;
	--color-black: #212121;

	--color-yellow: #f9e700;
	--color-red: #e63477;
	--color-blue: #008caf;
	--color-green: #009042;



	--ease-fast: all 0.08s ease;
	--ease-normal: all 0.16s ease;
	--ease-slow: all 0.24s ease;

	--size-normal: 1em;
	--size-large: 1.13em;
	--size-xlarge: 1.27em;
	--size-xxlarge: 1.42em;
	--size-xxxlarge: 1.60em;
	--size-xxxxlarge: 1.80em;
	--size-xxxxxlarge: 2.03em;
	--size-small: 0.89em;
	--size-xsmall: 0.79em;
	--size-xxsmall: 0.70em;
	--size-xxxsmall: 0.62em;

	--weight-normal: 500;
	--weight-bold: 700;
	--weight-xbold: 900;

	--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-narrow: 0.4rem;
	--border-radius-normal: 0.8rem;
	--border-radius-wide: 1.2rem;


	--padding-xnarrow: 4.0em;
	--padding-narrow: 5.6em;
	--padding-normal: 7.2em;
	--padding-wide: 8.8em;

	--border-width-narrow: 0.08rem;
	--border-width-normal: 0.12rem;
	--border-width-wide: 0.16rem;
	--border-width-xwide: 0.20rem;
}

/* ----------------------------------------------------------------------------------------------------
 * Common
---------------------------------------------------------------------------------------------------- */
html,
body {
	width: 100%;
	text-align: center;
	color: var(--color-black);
	font-family: "Roboto", "Noto Sans JP", '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
	font-size: 19px;
	font-weight: var(--weight-normal);
	line-height: var(--line-height-normal);
	letter-spacing: 0.02em;
	overflow-wrap: break-word;
	background-color: var(--color-yellow);
}

*,
*::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-black);
}

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(64%);
}

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: linear-gradient(transparent 50%, var(--color-yellow) 50%);
	color: var(--color-black);
}

label {
	display: inline-block;
}

sup {
	font-weight: var(--weight-normal);
	font-size: var(--size-xxsmall);
	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-xxsmall {
	font-size: var(--size-xxsmall);
}

.text-xxxsmall {
	font-size: var(--size-xxxsmall);
}

.text-large {
	font-size: var(--size-large);
}

.text-xlarge {
	font-size: var(--size-xlarge);
}

.text-xxlarge {
	font-size: var(--size-xxlarge);
}

.text-xxxlarge {
	font-size: var(--size-xxxlarge);
}

.text-gray {
	color: var(--color-darkgray);
}

.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-gray);
}

.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;
}

.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: 1px 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-black) !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-gray) !important;
}

select {
	border: 1px 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-black) !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: 8rem;
	padding-right: 8rem;
	width: 100%;
	max-width: 88rem;
}

.pd.narrow {
	max-width: 72rem;
}

.pd.wide {
	max-width: 104rem;
}

.pd.full {
	max-width: none;
}

.show-tb,
.show-sp {
	display: none !important;
	/* default inline */
}

.hide-tb,
.hide-sp {}

@media screen and (max-width: 1920px) {

	html,
	body {
		font-size: 16px;
	}
}

@media screen and (max-width: 1280px) {
	.pd {
		padding-left: 4.8rem;
		padding-right: 4.8rem;
		max-width: 64em;
	}

	.pd.wide,
	.pd.narrow {
		max-width: 64em;
	}
}

@media print,
screen and (max-width: 1024px) {
	.pd {
		padding-left: min(4.8rem, 8.0vw);
		padding-right: min(4.8rem, 8.0vw);
	}

	.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: 15px;
	}

	.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%;
	overflow: clip;
	display: grid;
	min-height: 100vh;
	min-height: 100lvh;
	display: grid;
	grid-template-rows: 1fr auto;
}


@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}

/* ----------------------------------------------------------------------------------------------------
 * Common (add)
---------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------------------
 * Loading
---------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------------------
 * Header
---------------------------------------------------------------------------------------------------- */

header {
	z-index: 10000;

}

body.show-menu {
	overflow: hidden;
}

header .toggle {
	position: fixed;
	top: 1.6em;
	right: 1.6em;
	width: 4.0em;
	aspect-ratio: 1;
	background-color: var(--color-black);
	border-radius: 100vh;

}

header .toggle::before,
header .toggle::after {
	content: "";
	display: block;
	position: absolute;
	left: 24%;
	right: 24%;
	border-bottom: var(--border-width-wide) solid var(--color-white);
	transition: all 0.48s cubic-bezier(0.33, 1, 0.68, 1);

}

header .toggle::before {
	top: 40%;
}

header .toggle::after {
	bottom: 40%;
}

body.show-menu header .toggle::before {
	transform: rotate(225deg);
	top: 48%;
}

body.show-menu header .toggle::after {
	transform: rotate(-225deg);
	bottom: 48%;
}

header nav {
	position: fixed;
	top: calc(100% + 1px);
	left: 0;
	width: 100%;
	height: 100vh;
	transition: all 0.48s cubic-bezier(0.33, 1, 0.68, 1);

}

body.show-menu header nav {
	top: 0;

}

header nav ul {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 3fr 1fr;
	line-height: var(--line-height-narrow);
}

header nav ul li a {
	display: grid;
	align-items: center;
	width: 100%;
	height: 100%;
	color: var(--color-white) !important;
	text-decoration: none;
	font-size: var(--size-xxxlarge);
}

header nav ul li a>.inner {
	background-image: url(../images/icon-arrow.svg);
	background-size: 1.6em;
	padding-bottom: 1.8em;
	background-position: center bottom;
}

header nav ul li:nth-child(1) a {
	background-color: var(--color-red);
}

header nav ul li:nth-child(2) a {
	background-color: var(--color-blue);
}

header nav ul li:nth-child(3) a {
	background-color: var(--color-green);
}

header nav ul li:nth-child(4) a {
	background-color: var(--color-yellow);
}




@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {


	header .toggle {
		top: 1.2em;
		right: 1.2em;
		width: 3.2em;


	}



	header nav ul {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: 2fr 2fr 1fr 1fr;
	}

	header nav ul li a {
		font-size: var(--size-xxlarge);
	}


}

@media print,
screen and (max-width: 1024px) {
	header nav ul li a {
		font-size: var(--size-xlarge);
	}

}

@media screen and (max-width: 560px) {

	header .toggle {
		top: 0.8em;
		right: 0.8em;

	}


	header nav ul li a {
		font-size: var(--size-large);
	}

}




/* ----------------------------------------------------------------------------------------------------
 * Footer
---------------------------------------------------------------------------------------------------- */

footer {
	background-color: var(--color-white);
	font-size: var(--size-small);
	padding-top: 1.6em;
	padding-bottom: 1.6em;
}

/* ----------------------------------------------------------------------------------------------------
 * Common
---------------------------------------------------------------------------------------------------- */
.link-button {
	text-decoration: none;
	border: var(--border-width-wide) solid;
	display: block;
	text-align: center;
	padding: 0.8em;
	font-weight: var(--weight-bold);
	margin-left: auto;
	margin-right: auto;
	font-size: var(--size-small);
}

.link-button.large {
	font-size: var(--size-normal);
}

.link-button::before>.inner {
	z-index: 1;
}

.link-button::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: var(--color-black);
	transition: all 0.48s cubic-bezier(0.33, 1, 0.68, 1);
	mix-blend-mode: soft-light;
}

.link-button:hover:before {
	width: 100%;
}


.link-button::after {
	content: '';
	display: block;
	position: absolute;
	right: 1.2em;
	top: 50%;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	width: 0.6em;
	aspect-ratio: 3 / 4;
	transform: translate(0, -50%);

}

.link-button.white {
	border-color: var(--color-white);
	color: var(--color-white) !important;
}

.link-button.white::after {
	background-color: var(--color-white);
}

.link-button.yellow {
	border-color: var(--color-yellow);
	color: var(--color-yellow) !important;
}

.link-button.yellow::after {
	background-color: var(--color-yellow);
}

.link-button.black {
	border-color: var(--color-black);
	color: var(--color-black) !important;
}

.link-button.black::before {
	mix-blend-mode: normal;
	opacity: 0.1;
}

.link-button.black::after {
	background-color: var(--color-black);
}

.block-copy {}

.block-copy::before,
.block-copy::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3.2em;
	background-image: url(../images/site-copy.png);
	background-size: contain;
	background-position: center bottom 4.8em;
}

.block-copy::before {
	left: 0;
}

.block-copy::after {
	right: 0;
	transform: rotate(180deg);

}


@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {

	.block-copy::before,
	.block-copy::after {
		width: min(2.4em, 5.6vw);
		background-position: center bottom 3.2em;
	}

}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}




/* ----------------------------------------------------------------------------------------------------
 * HOME
---------------------------------------------------------------------------------------------------- */

.block-home-main {
	background-image: url(../images/home-main-bg.png);
	padding-top: var(--padding-narrow);
}

.block-home-main h1 {
	background-color: var(--color-white);
	display: grid;
	grid-template-columns: 1.8fr 3fr;
	align-items: center;
	padding: 6.4em;
	gap: 4.8em;
	text-align: center;
}

.block-home-main .yellow {
	height: 3.2em;
}

.block-home-main .yellow::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	top: -1px;
	bottom: -1px;
	background-color: var(--color-yellow);
}


@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {
	.block-home-main h1 {
		padding: 4.8em;
		gap: 3.2em;
	}
}

@media screen and (max-width: 1280px) {

	.block-home-main>.pd {
		max-width: 64rem;
	}

	.block-home-main h1 {
		grid-template-columns: 1fr;
		padding: 4.8em;
		gap: 4.0em;
	}

	.block-home-main h1 .logo img {
		width: 320px;
		max-width: 45%;
	}

}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {
	.block-home-main h1 {
		padding: 2.0em;
		gap: 2.0em;
	}

}

.block-home-about {
	padding-top: var(--padding-xnarrow);
	padding-bottom: var(--padding-normal);
}


.block-home-about h2 {
	text-align: center;
	margin-bottom: 1.0em;
}

.block-home-about h2>.inner {
	font-weight: var(--weight-bold);
	display: inline-block;
	border-bottom: var(--border-width-wide) solid var(--color-black);
	padding-bottom: 0.2em;
	margin-bottom: 0.4em;
	font-size: var(--size-xlarge);
}

.block-home-about h2>.inner::before,
.block-home-about h2>.inner::after {
	content: '';
	display: block;
	width: 0.6em;
	aspect-ratio: 1;
	position: absolute;
	top: 100%;
	left: 50%;
	transform-origin: top center;
}

.block-home-about h2>.inner::before {
	background-color: var(--color-black);
	transform: translate(calc(-50%), calc(-20%)) rotate(45deg);
}

.block-home-about h2>.inner::after {
	background-color: var(--color-yellow);
	transform: translate(calc(-50%), calc(-20% - var(--border-width-xwide))) rotate(45deg);

}

.block-home-about .copy {
	font-size: min(3.10em, 4.6vw);
	font-weight: var(--weight-bold);
	text-align: center;
	line-height: var(--line-height-xnarrow);
	white-space: nowrap;
	margin-bottom: 0;
	letter-spacing: 0.04em;
}

.block-home-about .copy+p {
	margin-top: 2.0em;
}


@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {

	.block-home-about h2>.inner {
		font-size: var(--size-normal);
	}


	.block-home-about .copy {
		font-size: min(2.28em, 7.0vw);
	}

}


.block-home-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--border-width-xwide);
}


.block-home-info .badge {
	position: absolute;
	right: 1.6em;
	top: -2.4em;
	aspect-ratio: 320 / 317;
	background-image: url(../images/site-badge.png);
	text-align: center;
	width: 10.5em;
	line-height: var(--line-height-narrow);
	color: var(--color-blue);
	font-weight: var(--weight-bold);
	transform: rotate(10deg);
	font-size: var(--size-small);
}

.block-home-info .badge .title {
	color: var(--color-black);
	display: block;
	font-size: var(--size-xlarge);
	margin-bottom: 0.2em;
	padding-top: 1.4em;
}

.block-home-info>.item>.pd {
	padding-top: var(--padding-xnarrow);
	padding-bottom: var(--padding-xnarrow);
	display: grid;
	gap: 2.4em;
	grid-template-rows: 1fr auto;
	text-align: left;
}



.block-home-info>.item01 {
	background-color: var(--color-red);
}

.block-home-info>.item02 {
	background-color: var(--color-blue);
}

.title-home-info .main {
	font-weight: var(--weight-bold);
	color: var(--color-white);
	font-size: var(--size-xxxxxlarge);
	line-height: var(--line-height-narrow);
}

.title-home-info .sub {
	background-color: var(--color-yellow);
	color: var(--color-red);
	position: absolute;
	top: calc(-1 * var(--padding-xnarrow) - 1px);
	left: -1.2em;
	padding: 0.2em 1.2em;
	line-height: var(--line-height-narrow);
	clip-path: polygon(0 0, calc(100% - 0.4em) 0, 100% 100%, 0.4em 100%);
	font-weight: var(--weight-bold);

}

.block-home-infomore {}

.block-home-infomore h4 {
	font-size: var(--size-xxlarge);
	line-height: var(--line-height-narrow);
	font-weight: var(--weight-bold);
	color: var(--color-white);
	border-bottom: var(--border-width-xwide) dotted var(--color-white);
	padding-bottom: 0.2em;
	margin-top: 1.2em;
	margin-bottom: 0.8em;
}

.block-home-infomore .block-home-infomore-inner+h4 {
	margin-top: 1.6em;
}


.block-home-infomore-inner {
	display: grid;
	grid-template-columns: 13em 1fr;
	align-items: start;
}

.block-home-infomore-inner .info {
	color: var(--color-yellow);
	line-height: var(--line-height-xnarrow);

}

.block-home-infomore-inner .info .date {
	font-size: 4.62em;
	line-height: 1.0;
	letter-spacing: 0em;

}

.block-home-infomore-inner .info .date .week {
	display: inline-block;
	font-size: 1rem;
	background-color: var(--color-yellow);
	font-weight: var(--weight-bold);
	text-align: center;
	width: 1.8em;
	line-height: 1.0;
	padding-top: 0.45em;
	height: 1.8em;
	border-radius: 100vh;
	transform: translate(0, -0.4em);
}

.block-home-infomore-inner .info .date .week.red {
	color: var(--color-red);
}

.block-home-infomore-inner .info .date .week.blue {
	color: var(--color-blue);
}

.block-home-infomore-inner .info .time {
	font-size: var(--size-xxlarge);

}

.block-home-infomore-inner .info .schedule {
	font-size: var(--size-large);
	margin-bottom: 0.05em;

}

.block-home-infomore-inner .info .schedule .week {
	margin-left: -0.4em;
}

.block-home-infomore-inner .info .capacity {
	font-size: var(--size-large);

}

.block-home-infomore-inner .more {}


.block-home-infomore-inner .more h5 {
	font-size: var(--size-xxlarge);
	font-weight: var(--weight-bold);
	color: var(--color-white);
	margin-bottom: 0.4em;
	line-height: var(--line-height-narrow);
}

.block-home-infomore-inner .more dl {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 0.5em 0.8em;
	line-height: var(--line-height-xnarrow);
}

.block-home-infomore-inner .more dl dt {
	background-color: var(--color-yellow);
	text-align: center;
	border-radius: 100vh;
	padding: 0.4em 1.2em;
	font-size: var(--size-small);
}

.block-home-infomore-inner .more dl dd {
	color: var(--color-yellow);
}

.block-home-infomore-inner .more dl dd .name {
	font-size: var(--size-xxlarge);
	padding-right: 0.2em;
}

.block-home-infomore-inner .more dl dd .cross {
	height: 2.0em;
	width: 6em;
}

.block-home-infomore-inner .more dl dd .cross::before,
.block-home-infomore-inner .more dl dd .cross::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 0.2em;
	bottom: 0.2em;
	border-left: var(--border-width-normal) solid var(--color-yellow);
}

.block-home-infomore-inner .more dl dd .cross::before {
	transform: rotate(45deg);
}

.block-home-infomore-inner .more dl dd .cross::after {
	transform: rotate(-45deg);

}

@media screen and (max-width: 1920px) {
	.block-home-info .badge {
		top: -3.6em;

	}

}

@media screen and (max-width: 1536px) {

	.title-home-info .main {
		font-size: var(--size-xxxxlarge);
	}

	.block-home-info .badge {
		right: 1.0em;
		top: -4.0em;

	}


}

@media screen and (max-width: 1280px) {
	.block-home-info {
		grid-template-columns: repeat(1, 1fr);
	}


	.block-home-info .badge {
		font-size: var(--size-xsmall);
		right: 1.2em;
		top: 1.6em;

	}

	.title-home-info {
		padding-right: 6.4em;
	}

	.title-home-info .main .inline-block {
		display: inline;
	}


}

@media print,
screen and (max-width: 1024px) {
	.block-home-info .badge {
		font-size: var(--size-xsmall);

	}

}

@media screen and (max-width: 560px) {
	.title-home-info .main {
		font-size: var(--size-xxxlarge);
	}


	.block-home-infomore-inner {
		grid-template-columns: 1fr;
		gap: 0.4em;
	}

	.block-home-infomore h4 {
		font-size: var(--size-xlarge);
	}

	.block-home-infomore-inner .more h5 {
		font-size: var(--size-xlarge);
	}

	.block-home-infomore-inner .more h5 .inline-block {
		display: inline;
	}

	.block-home-info .badge {
		font-size: var(--size-xxsmall);
		right: -1.2em;

	}

	.title-home-info {
		padding-right: 5.8em;
	}


}



















.block-home-topics {
	padding-top: var(--padding-normal);
}

.block-home-topics h2 {
	text-align: center;
	margin-bottom: 2.8em;
}

.block-home-topics h2>.inner {
	font-size: var(--size-xxxxxlarge);
	letter-spacing: 0.04em;
	display: inline-block;
	line-height: var(--line-height-narrow);
	font-weight: var(--weight-bold);
	color: var(--color-black);
	border-bottom: var(--border-width-xwide) dotted var(--color-black);
}


.list-topics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2em;
	margin-bottom: 3.2em;
	line-height: var(--line-height-narrow);

}

.list-topics li {
	background-color: var(--color-white);
	border-radius: var(--border-radius-narrow);
}

.list-topics li a {
	display: block;
	height: 100%;
	padding: 0.4em;
	text-decoration: none;
}

.list-topics li a img {
	width: 100%;
	aspect-ratio: 3 / 2;
	border-radius: var(--border-radius-narrow);
	object-fit: cover;
}

.list-topics li a .date {
	position: absolute;
	top: calc(0.4em - 1px);
	right: calc(0.4em - 1px);
	background-color: var(--color-white);
	font-size: var(--size-small);
	padding: 0.1em 0.3em 0.2em 0.5em;
	border-bottom-left-radius: var(--border-radius-narrow);
}

.list-topics li a .title {
	padding: 0.8em 0.6em 0.6em;

}


.block-home-topics .link-button {
	max-width: 40em;
}

@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {

	.block-home-topics {
		padding-bottom: var(--padding-normal);
	}

	.list-topics {
		grid-template-columns: repeat(2, 1fr);

	}

}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {
	.list-topics {
		grid-template-columns: repeat(1, 1fr);
		margin-bottom: 2.0em;

	}

}












.block-home-other {
	padding-top: var(--padding-wide);
	padding-bottom: var(--padding-normal);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4.8em 6.4em;
	text-align: center;
}

.block-home-other .fb-page,
.block-home-other .fb-page span,
.block-home-other .fb-page iframe {
	height: 100% !important;
	width: 100% !important;
}

.block-home-other .download .link {
	margin-top: 1.2em;
}

.block-home-other .download .link-button {
	font-size: min(0.89em, 3.2vw);
}

.block-home-other .note {
	transform: translate(calc(50% + 3.2em), 0);
}

.block-home-other .note a {}

.block-home-other .note a::after {
	right: 0.4em;
	top: 0.4em;
	clip-path: none;
	width: 0.8em;
	aspect-ratio: 1;
	transform: translate(0, 0);
	background-color: transparent;
	background-image: url(../images/icon-blank.svg);
}



@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {
	.block-home-other {
		grid-template-columns: repeat(1, 1fr);
		gap: var(--padding-normal);
		max-width: 32.0em !important;
		margin-left: auto;
		margin-right: auto;
		gap: 3.2em;

	}

	.block-home-other .fb-page,
	.block-home-other .fb-page span,
	.block-home-other .fb-page iframe {
		height: 320px !important;
	}


	.block-home-other .note {
		transform: translate(0, 0);
	}

}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}



/* ----------------------------------------------------------------------------------------------------
 * TOPICS
---------------------------------------------------------------------------------------------------- */
.block-topics {
	padding-top: var(--padding-xnarrow);
	padding-bottom: var(--padding-narrow);
}

.block-page-title {
	text-align: center;
	padding-bottom: 2.8em;


}

.block-page-title img {
	width: 10em;
	max-width: 32%;

}

.block-entry {
	border-radius: var(--border-radius-normal);
	background-color: var(--color-white);
	padding: 3.2em;

}

.block-entry .block-date {
	text-align: center;
	line-height: var(--line-height-narrow);
}

.block-entry h1 {
	text-align: center;
	line-height: var(--line-height-narrow);
	font-size: var(--size-xxxxxlarge);
	font-weight: var(--weight-bold);
	margin-bottom: 0.8em;
}

.block-entry .block-eyecatch {
	text-align: center;
	margin-bottom: 2.4em;
}


@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {
	.block-entry {
		padding: 3.2em 2.4em;

	}

	.block-entry h1 {
		font-size: var(--size-xxxxlarge);
	}


}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {
	.block-entry {
		padding: 2.4em 1.6em;

	}

	.block-entry h1 {
		font-size: var(--size-xxxlarge);
	}

}




.block-more {
	border-radius: var(--border-radius-normal);
	background-color: var(--color-white);
	padding: 3.2em;

}

.block-more h1 {
	font-size: 2.57em;
	font-weight: bold;
	line-height: var(--line-height-narrow);
	margin-bottom: 0.2em;

}

.block-more h1.red {
	color: var(--color-red);

}

.block-more h1.blue {
	color: var(--color-blue);

}

.block-more h1+p {
	margin-bottom: 1.0em;
}


.block-more>.link {
	margin-top: 3.6em;

}


.block-more .title-page {
	margin-left: calc(-1 * 3.2rem - 1px);
	margin-top: 3.6em;
	margin-bottom: 2.0em;
}









.block-more .title-page::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: -3.2rem;
	border-bottom: var(--border-width-xwide) dotted var(--color-yellow);
}

.block-more .title-page>.inner {
	background-color: var(--color-yellow);
	display: inline-block;
	font-size: var(--size-xxxlarge);
	line-height: var(--line-height-narrow);
	padding: 0.5em 1.6rem 0.4em 3.2rem;
	font-weight: var(--weight-bold);
}

.block-more .title-page.red>.inner {
	color: var(--color-red);
}

.block-more .title-page.blue>.inner {
	color: var(--color-blue);
}


.block-more .title-page>.inner::before {
	content: '';
	display: block;
	position: absolute;
	left: calc(100% - 1px);
	top: 0;
	bottom: 0;
	background-color: var(--color-yellow);
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	width: 1.6em;


}

.list-column2 {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.8em;
	align-items: center;
}

.list-column2.profile {
	gap: 1.2em;
	margin-bottom: 1.2em;

}


.list-column2 dt {
	color: var(--color-white);
	text-align: center;
	border-radius: 100vh;
	padding: 0.4em 1.2em;
	font-size: var(--size-small);
	font-weight: var(--weight-normal);

}

.list-column2.red dt {
	background-color: var(--color-red);

}

.list-column2.blue dt {
	background-color: var(--color-blue);

}

.block-page-column2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3.2em;
}

.block-page-column2.workshop {
	padding-top: 2.4em;
	margin-top: 3.2em;
}

.block-page-column2.workshop::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: -3.2em;
	right: -3.2em;
	border-bottom: var(--border-width-xwide) dotted var(--color-yellow);
}

.block-page-column2 .title-seminar {
	font-weight: bold;
	line-height: var(--line-height-narrow);
	margin-bottom: 1.2em;
}

.block-page-column2 .title-seminar .main {
	display: block;
	font-size: var(--size-xxxlarge);
	margin-bottom: 0.2em;
}

.block-page-column2 .title-seminar .sub {
	display: block;
}

.block-page-column2 .title-workshop {
	font-weight: bold;
	line-height: var(--line-height-narrow);
	margin-bottom: 1.2em;
}

.block-page-column2 .title-workshop .main {
	display: block;
	font-size: var(--size-xxxlarge);
	margin-bottom: 0.2em;
}

.block-page-column2 .title-workshop .main mark {
	color: var(--color-blue);
}

.block-page-column2 .title-workshop .sub {
	display: block;
	font-size: var(--size-xxlarge);
}



.block-profile {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 1.0em;
	line-height: var(--line-height-narrow);

}

.block-profile .photo img {
	width: 4.8em;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 100vh;
}

.block-profile.red .text {
	color: var(--color-red);
}

.block-profile.blue .text {
	color: var(--color-blue);
}

.block-profile .text .name {
	font-size: var(--size-xxlarge);
	padding-right: 0.2em;
}



.block-profile+.cross {
	height: 2.0em;
	width: 4.8em;
}

.block-profile+.cross::before,
.block-profile+.cross::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 0.2em;
	bottom: 0.2em;
	border-left: var(--border-width-normal) solid var(--color-red);
}

.block-profile+.cross::before {
	transform: rotate(45deg);
}

.block-profile+.cross::after {
	transform: rotate(-45deg);

}


.block-special {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 1.6em;
}

.block-special .block-profile .photo img {
	width: 6.4em;
}



.block-info {
	display: grid;
	grid-template-columns: auto 1fr;
	line-height: var(--line-height-narrow);
	margin-bottom: 2.0em;
	font-weight: var(--weight-bold);
	gap: 2.0em;
	align-items: center;
}

.block-info.workshop {
	grid-template-columns: 1fr;
	gap: 0.2em;
	align-items: start;
}

.block-info.red {
	color: var(--color-red);
}

.block-info.blue {
	color: var(--color-blue);
}

.block-info .list-column2 {
	gap: 0.6em 0.8em;
}

.block-info .date {
	font-size: 7.41em;
	line-height: 1.0;
	letter-spacing: 0em;
}


.block-info .date .week {
	display: inline-block;
	font-size: 1.13rem;
	font-weight: var(--weight-bold);
	text-align: center;
	width: 1.8em;
	line-height: 1.0;
	padding-top: 0.45em;
	height: 1.8em;
	border-radius: 100vh;
	transform: translate(0, -0.4em);
	color: var(--color-white);
}

.block-info .date .week.red {
	background-color: var(--color-red);
}

.block-info .date .week.blue {
	background-color: var(--color-blue);
}




.title-workshop {}

@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {
	.block-more h1 {
		font-size: var(--size-xxxxxlarge);

	}

}

@media screen and (max-width: 1280px) {
	.block-more {
		padding: 3.2em 2.4em;

	}

	.block-more h1 {
		font-size: var(--size-xxxxlarge);

	}

	.block-more .title-page>.inner {
		font-size: var(--size-xxlarge);
	}

	.block-page-column2 {
		grid-template-columns: repeat(1, 1fr);
		gap: 2.8em;
	}

	.block-page-column2.workshop {
		gap: 0;

	}

	.block-info {
		grid-template-columns: 1fr;
		gap: 0.4em;
		margin-bottom: 2.8em;
	}


	.block-special {
		grid-template-columns: 1fr;
		gap: 0;
	}


	.block-info .date {
		font-size: 5.85em;
	}



}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {
	.block-more {
		padding: 2.4em 1.6em;

	}

	.block-more h1 {
		font-size: var(--size-xxxlarge);

	}

	.block-more .title-page>.inner {
		font-size: var(--size-xlarge);
	}

	.block-info .date {
		font-size: 4.62em;
	}


	.block-profile {
		grid-template-columns: 1fr;
		gap: 0.2em;

	}



}


/* ----------------------------------------------------------------------------------------------------
 * NEWS
---------------------------------------------------------------------------------------------------- */
.wp-pagenavi {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2.4em;
	font-size: var(--size-small);
	gap: 0.2em;
}

.wp-pagenavi * {
	background-color: var(--color-white);
	border: var(--border-width-narrow) solid var(--color-black);
	padding: 0.2em 0.6em;
	text-decoration: none;
}

.wp-pagenavi .current {
	background-color: var(--color-black);
	color: var(--color-white);
}





.block-entry ul {
	list-style: disc;
	margin-left: 1.4em;
	margin-bottom: 1.6em;
}

.block-entry ol {
	list-style: decimal;
	margin-left: 1.6em;
	margin-bottom: 1.6em;
}

.block-entry h2 {
	font-size: var(--size-xxxlarge);
	font-weight: var(--weight-bold);
	line-height: var(--line-height-narrow);
	margin-top: 1.6em;
	margin-bottom: 0.6em;
}

.block-entry .wp-block-image {
	margin-top: 2.0em;
	margin-bottom: 2.0em;
	width: 100%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.block-entry .wp-block-image figcaption {
	text-align: center;
	font-size: var(--size-small);
	line-height: var(--line-height-narrow);
	padding-top: 0.4em;
}


.block-entry .wp-block-embed-youtube {
	margin-top: 2.0em;
	margin-bottom: 2.0em;
	width: 100%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;

}

.block-entry .wp-block-embed-youtube iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	vertical-align: bottom;
}



@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {

	.block-entry h2 {
		font-size: var(--size-xxlarge);
	}

}