@charset "UTF-8";
@import url('simplebar.css');

/* ==================================================

WEB FONT

*/
@font-face {
	font-family: 'icon';
	src: url('../fonts/icon.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

/* ==================================================

CONFIG

*/
:root {
	--color-black: #262626;
	--color-primary: #CD7FB8;
	--icon-link-arrow: "\e900";
	--icon-link-blank: "\e901";
	--icon-link-download: "\e902";
}

/* ==================================================

RESET

*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
ul, ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a, button {
	cursor: pointer;
}
img {
	vertical-align: top;
	width: 100%;
	height: auto;
}
input, select, textarea, button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	resize: none;
}

::placeholder {
	color: #ccc;
}
::-ms-input-placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #ccc;
}

/* ==================================================

HTML

*/
html {
	background-color: #FFF;
	/* 1rem = 10px */
	font-size: 62.5%;
}
@media screen and (max-width: 1180px) {
	html {
		/* 幅1180px 1rem = 10px */
		font-size: calc(10 / 1180 * 100vw);
	}
}
@media screen and (max-width: 980px) {
	html {
		/* 幅980px 1rem = 10px */
		font-size: 62.5%;
	}
}
@media screen and (max-width: 768px) {
	html {
		/* 幅375px 1rem = 10px */
		font-size: calc(10 / 375 * 100vw);
	}
}

body {
	font-family: "Shippori Mincho", serif;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.75;
	color: var(--color-black);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body::before {
	content: '';
	display: block;
	position: fixed;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: 50% 0%;
	background-image: url(../img/bg.jpg?v=1);
	background-size: 1920px auto;
}
@media screen and (min-width: 1920px) {
  body::before {
    background-size: 100% auto;
  }
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
		line-height: 1.7;
		letter-spacing: 0;
	}
  body::before {
    background-position: 50% 0%;
    background-image: url(../img/bg-sp.jpg);
    background-size: cover;
  }
}

a {
	color: #1A55C4;
}

main {
	position: relative;
	overflow: hidden;
}
@media screen and (max-width: 980px) {
	main {
		padding: 7.4rem 0 0 0;
	}
}

/* ==================================================

ICON

*/
[class^="icon-"],
[class*=" icon-"] {
	font-family: 'icon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
}
.icon-link-arrow:before {
	content: "\e900";
}
.icon-link-blank:before {
	content: "\e901";
}
.icon-link-download:before {
  content: "\e902";
}

/* ==================================================

[ LAYOUT ] header

*/
.l-header {
	display: none;
	position: fixed;
	z-index: 990;
	top: 0;
	left: 0;
	width: 100%;
}
.l-header__container {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 1.8rem;
	z-index: 999;
	height: 7.4rem;
	background-color: #F3F2EC;
}
.l-header__logo a {
	display: block;
}
.l-header__logo img {
	width: auto;
	height: 4.4rem;
}
.l-header button {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 7.4rem;
	height: 100%;
}
.l-header button i {
	display: block;
	position: absolute;
	left: 1.4rem;
	top: 50%;
	height: 1px;
	background-color: #CD7FB8;
	transition: all 0.4s ease;
}
.l-header button i:nth-child(1) {
	margin-top: -0.7rem;
	width: 4rem;
}
.l-header button i:nth-child(2) {
	width: 3rem;
}
.l-header button i:nth-child(3) {
	margin-top: 0.7rem;
	width: 2rem;
}
.l-header button[aria-expanded='true'] i:nth-child(1) {
	margin-top: 0;
	width: 3.4rem;
	transform: rotate(45deg);
}
.l-header button[aria-expanded='true'] i:nth-child(2) {
	opacity: 0;
}
.l-header button[aria-expanded='true'] i:nth-child(3) {
	margin-top: 0;
	width: 3.4rem;
	transform: rotate(-45deg);
}
@media screen and (max-width: 980px) {
	.l-header {
		display: block;
	}
}

/* ==================================================

[ LAYOUT ] megamenu

*/
.l-megamenu {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 7.4rem;
	left: 0;
	width: 100%;
	bottom: 100%;
	background-color: #fff;
	font-weight: 600;
	transition: bottom 0.4s ease;
}
.l-megamenu__outer {
	overflow-y: auto;
	height: 100%;
	overscroll-behavior: none;
	padding: 0 2rem 5rem 2rem;
}
@media screen and (max-width: 980px) {
	.l-megamenu[aria-hidden='false'] {
		display: block;
	}
	.l-megamenu.opened {
		bottom: 0;
	}
}
@media screen and (max-width: 768px) {
	.l-megamenu .l-side-lang {
		padding: 2rem 0;
	}
	.l-megamenu .l-side-lang ul li span,
	.l-megamenu .l-side-lang ul li a {
		width: 8rem;
	}
	.l-megamenu .l-side-home a {
		padding: 0 2rem 0 1rem;
		height: 5rem;
	}
	.l-megamenu .l-side-nav > ul > li > ul > li a {
		padding: 0.2em 2rem 0.2em 1rem;
		min-height: 5rem;
	}
	.l-megamenu .l-side-foot {
		margin-bottom: 0;
    padding: 1rem;
	}
}

/* ==================================================

[ LAYOUT ] footer

*/
.l-footer {
	position: relative;
	padding: 4rem 4rem;
	background-color: #CD7FB8;
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	color: #fff;
}
.l-footer__container {
	margin: 0 auto;
	max-width: 120rem;
}
.l-footer__row {
	display: flex;
}
.l-footer__item {
	display: flex;
	position: relative;
	margin-right: 6rem;
	padding-right: 6rem;
}
.l-footer__item:last-child {
	margin-right: 0;
	padding-right: 0;
}
.l-footer__item::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 1px;
	background-color: #fff;
}
.l-footer__item:last-child::before {
	content: none;
}
.l-footer__detail {
	font-size: 1.4rem;
	line-height: 1.6;
}
.l-footer__detail a {
	text-decoration: underline;
	color: inherit;
}
.l-footer__label {
	display: flex;
	margin-bottom: 1rem;
	font-weight: 500;
	font-family: "Shippori Mincho", serif;
	font-size: 1.4rem;
	line-height: 1.4;
}
.l-footer__label span {
	display: block;
	padding: 0.2em 0.6em 0.3em 0.6em;
	border: 1px solid #FFF;
}
.l-footer__name {
	font-weight: 600;
	font-size: 1.6rem;
}
.l-footer small {
	display: block;
	margin-top: 6rem;
	font-size: 1.2rem;
}
@media (any-hover: hover) {
	.l-footer__detail a:hover {
		text-decoration: none;
	}
}
@media screen and (max-width: 980px) {
	.l-footer__row {
		display: block;
	}
	.l-footer__item {
		margin: 0 0 5rem 0;
		padding: 0;
	}
	.l-footer__item::before {
		content: none;
	}
}
@media screen and (max-width: 768px) {
	.l-footer {
		padding: 3rem 2rem 9rem 2rem;
	}
	.l-footer__container {
		max-width: initial;
	}
	.l-footer__item {
		margin: 0 0 3rem 0;
	}
	.l-footer__detail {
		font-size: 1.2rem;
	}
	.l-footer__label {
		font-size: 1.4rem;
	}
	.l-footer__name {
		font-size: 1.4rem;
	}
	.l-footer small {
		margin-top: 0;
		text-align: center;
		font-size: 1rem;
	}
}

/* ==================================================

[ LAYOUT ] column

*/
.l-column {
	display: flex;
	margin: 0 auto;
	max-width: 120rem;
}
.l-column__side {
	flex-basis: 29rem;
	margin: 0 3rem 0 0;
	padding-bottom: 5rem;
	background-color: #fff;
	font-weight: 600;
}
.l-column__body {
	flex: 1;
	padding-bottom: 10rem;
	background-color: #fff;
}
.p-home .l-column__body {
	background-color: transparent;
}
.l-column__body a {
	text-decoration: underline;
}
@media (any-hover: hover) {
	.l-column__body a:hover {
		text-decoration: none;
	}
}
@media screen and (max-width: 980px) {
	.l-column {
		display: block;
	}
	.l-column__side {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.l-column__body {
		padding-bottom: 2rem;
	}
}

/* ==================================================

[ LAYOUT ] side

*/
/* lang */
.l-side-lang {
	display: flex;
	justify-content: center;
	padding: 1.5rem 0;
}
.l-side-lang ul {
	overflow: hidden;
	display: flex;
	justify-content: center;
	border: 1px solid #D2D2D2;
	border-radius: 0.4rem;
}
.l-side-lang ul li:first-child {
	border-right: 1px solid #D2D2D2;
}
.l-side-lang ul li span,
.l-side-lang ul li a,
.l-side-lang ul li div {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 0.1em;
	width: 5.6rem;
	height: 3.6rem;
	text-align: center;
	font-size: 1.4rem;
	color: #7D7D7D;
}
.l-side-lang ul li span {
	background-color: #CD7FB8;
	color: #FFF;
}
.l-side-lang ul li div {
	color: #CCC;
}
/* home */
.l-side-home {
	background-color: #CD7FB8;
}
.l-side-home a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 2rem;
	height: 6.2rem;
	border-top: 1px solid #d5d5d5;
	border-bottom: 1px solid #d5d5d5;
	background-color: rgba(255,255,255,1);
	font-size: 1.4rem;
	color: #1E1E1E;
}
.l-side-home a::after {
	font-family: 'icon';
	content: var(--icon-link-arrow);
	position: absolute;
	top: 50%;
	right: 1.2rem;
	font-size: 1rem;
	line-height: 1;
	transform: translateY(-50%);
	font-weight: normal;
}
.p-home .l-side-home a {
	background-color: #CD7FB8;
	color: #fff;
	pointer-events: none;
}
/* nav */
.l-side-nav {
	font-size: 1.4rem;
	line-height: 1.4;
}
.l-side-nav > ul > li > div {
	padding: 0.5em 2rem 0.5em 2rem;
	background-color: #E6E2C6;
	text-align: center;
}
.l-side-nav > ul > li > ul {
	border-top: 1px solid #d5d5d5;
	font-weight: 500;
}
.l-side-nav > ul > li > ul > li {
	background: #CD7FB8;
	border-bottom: 1px solid #d5d5d5;
}
.l-side-nav > ul > li > ul > li a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0.2em 2rem;
	min-height: 6.2rem;
	background-repeat: no-repeat;
	background-image: url(../img/nav-bg.png);
	background-position: 100% 0%;
	background-size: 300% 100%;
	color: #1E1E1E;
}
.l-side-nav > ul > li > ul > li a::after {
	font-family: 'icon';
	content: var(--icon-link-arrow);
	position: absolute;
	top: 50%;
	right: 1.2rem;
	font-size: 1rem;
	line-height: 1;
	transform: translateY(-50%);
	font-weight: normal;
	color: #CD7FB8;
}
.l-side-nav > ul > li > ul > li a[href="#"] {
	color: #ccc;
	pointer-events: none;
}
.l-side-nav > ul > li > ul > li a[href="#"]::after {
	content: none;
}
.l-side-nav > ul > li > ul > li .small {
	display: block;
	font-size: 1.3rem;
}
.l-side-nav > ul > li > ul > li .new {
	position: absolute;
	top: 50%;
	right: 2.8rem;
	padding: 0.3em 0.5em;
	background-color: #E61F19;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.1;
	color: #FFF;
	transform: translateY(-50%);
}
.l-side-isct {
	padding: 1rem;
	border-bottom: 1px solid #d5d5d5;
}
.l-side-isct a {
	display: block;
	padding: 1px;
	background-image: linear-gradient(90deg,#9D5B8B 0%, #7E48AA 100%);
	font-size: 1.4rem;
	color: #FFF;
}
.l-side-isct a span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.6rem;
}
.l-side-isct a span::after {
	font-family: 'icon';
	content: var(--icon-link-arrow);
	position: absolute;
	top: 50%;
	right: 1.2rem;
	font-size: 1rem;
	line-height: 1;
	transform: translateY(-50%);
	font-weight: normal;
}
.l-side-foot {
	padding: 1rem;
}
.l-side-foot li:not(:last-child) {
	margin-bottom: 1rem;
}
@media (any-hover: hover) {
	.loaded .l-side-lang a {
		transition: all 0.3s ease;
	}
	.loaded .l-side-lang a:hover {
		background-color: #fff;
		color: #CD7FB8;
	}
	.loaded .l-side-home a {
		transition: all 0.3s ease;
	}
	.loaded .l-side-home a:hover {
		background-color: rgba(255,255,255,0);
		color: #fff;
	}
	.loaded .l-side-nav > ul > li > ul > li a {
		transition: all 0.6s ease;
	}
	.loaded .l-side-nav > ul > li > ul > li a:hover {
		background-position: 0% 0%;
		color: #fff;
	}
	.loaded .l-side-nav > ul > li > ul > li a::after {
		transition: color 0.6s ease;
	}
	.loaded .l-side-nav > ul > li > ul > li a:hover::after {
		color: #FFF;
	}
	.loaded .l-side-isct a span {
		transition: all 0.3s ease;
	}
	.loaded .l-side-isct a:hover span {
		background-color: #FFF;
		color: #CD7FB8;
	}
}
@media screen and (max-width: 980px) {
	.l-side-nav br {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.l-side-bnr {
		margin: 0 auto;
		padding: 1rem 0 2rem 0;
		width: 60%;
	}
	.l-side-nav {
		padding: 0;
	}
	.l-side-foot {
		margin-bottom: 4rem;
		padding: 0 2rem;
	}
}

.p-home .l-side-nav .f-home {
	background: linear-gradient(90deg, #E61F19 38%, #77110E 100%);
	color: #fff;
	pointer-events: none;
}

.p-outline-detail .l-side-nav .f-outline-detail,
.p-outline-greeting .l-side-nav .f-outline-greeting,
.p-outline-venue .l-side-nav .f-outline-venue,
.p-sponsors .l-side-nav .f-sponsors,
.p-contact .l-side-nav .f-contact {
	background-position: 0% 0% !important;
	color: #fff !important;
	pointer-events: none;
}
.p-outline-detail .l-side-nav .f-outline-detail::after,
.p-outline-greeting .l-side-nav .f-outline-greeting::after,
.p-outline-venue .l-side-nav .f-outline-venue::after,
.p-sponsors .l-side-nav .f-sponsors::after,
.p-contact .l-side-nav .f-contact::after {
	color: #FFF;
}

/* ==================================================

[ LAYOUT ] container

*/
.l-container {
	margin-left: auto;
	margin-right: auto;
	padding-left: 4rem;
	padding-right: 4rem;
	max-width: 81.2rem;
}
@media screen and (max-width: 768px) {
	.l-container {
		padding-left: 2rem;
		padding-right: 2rem;
		max-width: initial;
	}
}

/* ==================================================

[ LAYOUT ] block

*/
.l-block {
	margin-bottom: 3rem;
}

/* ==================================================

[ LAYOUT ] row-left

*/
/*
.l-row-left {
	display: flex;
}
@media screen and (max-width: 768px) {
	.l-row-left {
		display: block;
	}
}
*/

/* ==================================================

[ LAYOUT ] row-center

*/
.l-row-center {
	display: flex;
	justify-content: center;
}

/* ==================================================

[ LAYOUT ] row-col2

*/
/*
.l-row-col2 {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2rem;
}
.l-row-col2 > div {
	flex-basis: 50%;
	padding: 0 2rem;
}
@media screen and (max-width: 768px) {
	.l-row-col2 {
		display: block;
		margin: 0;
	}
	.l-row-col2 > div {
		margin-bottom: 2rem;
		padding: 0;
	}
}
*/

/* ==================================================

[ LAYOUT ] row-col3

*/
/*
.l-row-col3 {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2rem;
}
.l-row-col3 > div {
	flex-basis: 33.333%;
	padding: 0 2rem;
}
@media screen and (max-width: 768px) {
	.l-row-col3 {
		display: block;
		margin: 0;
	}
	.l-row-col3 > div {
		margin-bottom: 2rem;
		padding: 0;
	}
}
*/

/* ==================================================

[ LAYOUT ] row-col3

*/
/*
.l-btn-center {
	display: flex;
	gap: 3rem;
	justify-content: center;
}
@media screen and (max-width: 768px) {
	.l-btn-center {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}
}
*/

/* ==================================================

[ LAYOUT ] inline

*/
/*
.l-layout-inline {
	display: flex;
	align-items: center;
}
.l-layout-inline > * {
	margin-right: 1.5rem;
}
@media screen and (max-width: 768px) {
	.l-layout-inline {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
}
*/

/* ==================================================

[ COMPONENT ] main

*/
.c-main {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 5rem;
	height: 20rem;
	background-image: url(../img/main.jpg);
	background-size: cover;
	text-align: center;
}
.c-main h1 {
	font-weight: 500;
	font-size: 2.2rem;
	letter-spacing: 0.14em;
}
@media screen and (max-width: 768px) {
	.c-main {
		margin-bottom: 3rem;
		height: 12rem;
	}
	.c-main h1 {
		font-size: 2rem;
	}
}

/* ==================================================

[ COMPONENT ] heading

*/
.c-heading1 {
	position: relative;
	overflow: hidden;
	margin-bottom: 1.2rem;
	padding: 0.3em 0 0.43em 1.6rem;
	background-color: #F7F4F6;
	border-radius: 0.4rem;
	font-weight: 600;
	font-size: 1.7rem;
	line-height: 1.3;
}
.c-heading1::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0.4rem;
	background-color: #CD7FB8;
}

/* ==================================================

[ COMPONENT ] btn

*/
.c-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5rem 3rem;
	min-height: 5.8rem;
	background-color: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 0.6rem;
	text-decoration: none !important;
	text-align: center;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #fff;
}
.c-btn > span {
	position: relative;
	display: block;
	padding-right: 2em;
}
.c-btn > span i {
	position: absolute;
	top: 50%;
	right: 0;
	font-size: 110%;
	transform: translateY(-50%);
}
@media (any-hover: hover) {
	.c-btn {
		transition: opacity 0.4s ease;
	}
	.c-btn:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 768px) {
	.c-btn > span {
		padding-right: 1.5em;
	}
}

/* ==================================================

[ COMPONENT ] text

*/
.c-text-left {
	text-align: left;
}
.c-text-center {
	text-align: center;
}
.c-text-right {
	text-align: right;
}

/* ==================================================

[ COMPONENT ] accordion

*/
.c-pagetop {
	position: fixed;
	z-index: 10;
	bottom: 2rem;
	right: 2rem;
}
.c-pagetop a {
	display: block;
	width: 8rem;
	height: 8rem;
	overflow: hidden;
	border-radius: 50%;
}
@media screen and (max-width: 768px) {
	.c-pagetop {
		bottom: 1.5rem;
		right: 1.5rem;
	}
	.c-pagetop a {
		width: 6rem;
		height: 6rem;
	}
}

/* ==================================================

[ UTILITY ] visible

*/
@media screen and (max-width: 768px) {
	.u-visible-pc {
		display: none;
	}
}
@media screen and (min-width: 769px) {
	.u-visible-sp {
		display: none;
	}
}

/* ==================================================

[ UTILITY ] hidden

*/
.u-hidden {
	visibility: hidden;
}

/* ==================================================

[ UTILITY ] display

*/
.u-d-block {
	display: block !important;
}

/* ==================================================

[ UTILITY ] link

*/
.u-link {
	display: flex;
}
.u-link a {
	display: block;
	text-decoration: none !important;
	color: var(--color-black) !important;
}
.u-link em {
	display: block;
	text-decoration: underline;
}
.u-link span {
	display: block;
	color: #606060;
	word-break: break-all;
}
@media (any-hover: hover) {
	.u-link a em {
		transition: color 0.4s ease;
	}
	.u-link a:hover em {
		color: var(--color-primary);
	}
}

/* ==================================================

[ UTILITY ] indent

*/
.u-indent-half {
	display: inline-block;
	text-indent: -0.5em;
}

/* ==================================================

[ UTILITY ] color

*/
.u-color-primary {
	color: var(--color-primary) !important;
}

/* ==================================================

[ UTILITY ] font size

*/
*/
.u-fs20 {
	font-size: 2rem !important;
}
.u-fs18 {
	font-size: 1.8rem !important;
}
.u-fs17 {
	font-size: 1.7rem !important;
}
.u-fs16 {
	font-size: 1.6rem !important;
}
.u-fs15 {
	font-size: 1.5rem !important;
}
.u-fs14 {
	font-size: 1.4rem !important;
}
.u-fs12 {
	font-size: 1.2rem !important;
}
.u-fw-normal {
	font-weight: 400 !important;
}
.u-fw-medium {
	font-weight: 500 !important;
}
.u-fw-bold {
	font-weight: 700 !important;
}

@media screen and (max-width: 768px) {
	.u-fs20 {
		font-size: 1.8rem !important;
	}
}

/* ==================================================

[ UTILITY ] margin

*/
.u-mt-0 {
	margin-top: 0 !important;
}
.u-mt-1em {
	margin-top: 1em;
}
.u-mt-2em {
	margin-top: 2em;
}
.u-mt-05rem {
	margin-top: 0.5rem;
}
.u-mt-1rem {
	margin-top: 1rem;
}
.u-mt-15rem {
	margin-top: 1.5rem;
}
.u-mt-2rem {
	margin-top: 2rem;
}
.u-mt-3rem {
	margin-top: 3rem;
}
.u-mt-4rem {
	margin-top: 4rem;
}
.u-mt-5rem {
	margin-top: 5rem;
}

.u-mb-0 {
	margin-bottom: 0 !important;
}

/* ==================================================

[ PROJECT ] home

*/
.c-home-heading {
	margin-bottom: 3rem;
	text-align: center;
	font-weight: 500;
	font-size: 2.4rem;
}
.c-home-heading::after {
	content: '';
	display: block;
	margin: 1.2rem auto 0 auto;
	width: 2rem;
	height: 0.2rem;
	background-color: #CD7FB8;
}
@media screen and (max-width: 768px) {
	.c-home-heading {
		font-size: 2rem;
		line-height: 1.5;
	}
}

.p-home-main {
	padding: 3rem 0 10rem 0;
}
.p-home-main img {
	display: block;
}
.p-home-main__outer {
	position: relative;
	margin: 0 auto;
	padding: 9rem 0 0 0;
	width: 80rem;
}
.p-home-main h1 {
	position: relative;
	margin-bottom: 8rem;
	width: 36.4rem;
}
.p-home-main h2 {
	position: relative;
	width: 51.2rem;
}
.p-home-main h2 em {
	display: block;
	margin-bottom: 2.5rem;
}
.p-home-main h2 span {
	display: block;
}
.p-home-main h2.sp {
	display: none;
}
.p-home-main__kv {
	position: absolute;
	top: 1rem;
	right: -16rem;
	width: 55rem;
	height: 100%;
}
.p-home-main__kv span {
	display: block;
}
.p-home-main__kv em {
	display: block;
	position: absolute;
	top: 0;
	left: -1rem;
}
.p-home-main__kv em img {
	opacity: 0.45;
}
.p-home-main__copy-en {
	margin-top: 5rem;
	width: 28.4rem;
}
.p-home-main__copy-en em,
.p-home-main__copy-en span {
	display: block;
}

.p-home-main__kv span img {
	transition: opacity 2.6s linear 0.4s, transform 2.6s ease 0.4s;
	transform: scale(0.84);
	opacity: 0;
}
.p-home-main__kv em {
	transition: opacity 1s linear 0.4s;
	-webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 40%);
	mask-image: linear-gradient(180deg, #000 0%, transparent 40%);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: auto 400%;
	mask-size: auto 400%;
}
.loaded .p-home-main__kv em {
	animation: main-anim 3s linear;
}
@keyframes main-anim {
  0% {
    -webkit-mask-position: 0 50%;
		mask-position: 0 50%;
  }
  100% {
    -webkit-mask-position: 0 0;
		mask-position: 0 0;
  }
}

@media screen and (min-width: 769px) {
	.p-home-main h2 em {
		transition: opacity 0.8s linear 1s, transform 0.8s ease 1s;
		transform: translateX(2rem);
		opacity: 0;
	}
}
@media screen and (max-width: 768px) {
	.p-home-main h2 em {
		transition: opacity 0.8s linear 1s, transform 0.8s ease 1s;
		transform: translateY(2rem);
		opacity: 0;
	}
}

.p-home-main__copy-en em {
	transition: opacity 0.8s linear 1s, transform 0.8s ease 1s;
	transform: translateX(2rem);
	opacity: 0;
}
.p-home-main h2 span,
.p-home-main__copy-en span {
	transition: opacity 0.8s linear 1.8s;
	opacity: 0;
}
.p-home-main h1 {
	transition: opacity 0.8s linear 2.4s, transform 0.8s ease 2.4s;
	transform: translateY(1rem);
	opacity: 0;
}

.loaded .p-home-main__kv span img {
	transform: scale(1);
	opacity: 1;
}
@media screen and (min-width: 769px) {
	.loaded .p-home-main h2 em {
		transform: translateX(0);
		opacity: 1;
	}
}
@media screen and (max-width: 768px) {
	.loaded .p-home-main h2 em {
		transform: translateY(0);
		opacity: 1;
	}
}
.loaded .p-home-main__copy-en em {
	transform: translateX(0);
	opacity: 1;
}
.loaded .p-home-main h2 span,
.loaded .p-home-main__copy-en span {
	opacity: 1;
}
.loaded .p-home-main__kv em {
	opacity: 1;
}
.loaded .p-home-main h1 {
	transform: translateY(0);
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.p-home-main {
		padding: 0 0 5rem 0;
	}
	.p-home-main__outer {
		padding: 38rem 2rem 0 2rem;
		width: auto;
	}
	.p-home-main h1 {
		margin-bottom: 0;
		width: 100%;
	}
	.p-home-main h2 {
		position: absolute;
		top: 2rem;
		right: 2rem;
		flex-direction: row-reverse;
		width: auto;
	}
	.p-home-main h2 img {
		width: auto;
		height: 32.6rem;
	}
	.p-home-main h2 em {
		margin: 0 0 0 1.8rem;
	}
	.p-home-main h2.sp {
		display: flex;
	}
	.p-home-main h2.pc {
		display: none;
	}
	.p-home-main__kv {
		left: 0;
		right: -4rem;
		width: auto;
	}
	.p-home-main__kv span {
		position: absolute;
		top: -4.6rem;
		right: 0;
		width: 37rem;
	}
	.p-home-main__kv em {
		left: 0.6rem;
		width: 44rem;
	}
	.p-home-main__copy-en {
		position: absolute;
		top: 30rem;
		left: 2rem;
		margin: 0;
		width: 18.6rem;
	}
}

.p-home-nav {
	padding: 0 3rem;
}
.p-home-nav ul {
	display: flex;
	margin: 0 -1.2rem;
}
.p-home-nav li {
	flex-basis: 50%;
	padding: 0 1.2rem;
}
.p-home-nav a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 4rem;
	height: 8.6rem;
	border: 2px solid var(--color-primary);
	text-decoration: none !important;
	text-align: center;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.3;
}
.p-home-nav a::after {
	font-family: icon;
	content: var(--icon-link-arrow);
	position: absolute;
	top: 50%;
	right: 1.2rem;
	font-size: 1.4rem;
	line-height: 1;
	transform: translateY(-50%);
	font-weight: normal;
}
.p-home-nav a em {
	color: #ff0700;
}
@media screen and (max-width: 768px) {
	.p-home-nav {
		padding: 0 2rem;
	}
	.p-home-nav ul {
		display: block;
		margin: 0;
	}
	.p-home-nav li {
		margin-bottom: 2rem;
		padding: 0;
	}
	.p-home-nav a {
		font-size: 1.6rem;
	}
}

.p-home-news {
}
.p-home-news__list {
	font-size: 1.4rem;
}
.p-home-news__wrap.simplebar-scrollable-y {
	margin: 0 -4rem;
}
.p-home-news__wrap.simplebar-scrollable-y .p-home-news__list {
	padding: 0 5rem;
}
.p-home-news__list dl {
	display: flex;
	align-items: center;
	padding: 1rem 0;
	min-height: 7rem;
	border-top: 1px solid #d5d5d5;
}
.p-home-news__list dl:last-child {
	border-bottom: 1px solid #d5d5d5;
}
.p-home-news__list dt {
	flex-basis: 13rem;
	flex-shrink: 0;
	padding: 0 1em;
	font-weight: 500;
	letter-spacing: 0.04em;
}
.p-home-news__list dd {
	font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
	.p-home-news__wrap.simplebar-scrollable-y {
		margin: 0;
	}
	.p-home-news__wrap.simplebar-scrollable-y .p-home-news__list {
		padding: 0 2rem 0 0;
	}
	.p-home-news__list dl {
		display: block;
		min-height: initial;
	}
	.p-home-news__list dt {
		padding: 0;
	}
}

.p-home-info__detail {
	padding: 3rem 4rem;
	border: 1px solid #d5d5d5;
	font-weight: 500;
	line-height: 2;
}
@media screen and (max-width: 768px) {
	.p-home-info__detail {
		padding: 1rem 1.5rem;
	}
}

/* ==================================================

[ PROJECT ] outline greeting

*/
.p-outline-greeting-detail dl {
	display: flex;
	align-items: flex-end;
	margin-bottom: 7rem;
}
.p-outline-greeting-detail dt {
	flex-basis: 18.4rem;
}
.p-outline-greeting-detail dd {
	padding-left: 5rem;
	line-height: 2;
}
.p-outline-greeting-detail dd .name {
	display: block;
	margin-bottom: 0.5rem;
}
.p-outline-greeting-detail dd .name em {
	font-size: 2rem;
}
.p-outline-greeting-detail .text {
	line-height: 2;
}
.p-outline-greeting-detail .text p {
	margin-bottom: 2em;
	text-indent: 1em;
}
@media screen and (max-width: 768px) {
	.p-outline-greeting-detail {
		margin-bottom: 2rem;
	}
	.p-outline-greeting-detail dl {
		flex-direction: column-reverse;
		margin-bottom: 4rem;
		text-align: center;
	}
	.p-outline-greeting-detail dt {
		flex-basis: auto;
		margin: 0 auto;
		width: 50%;
		max-width: 19.9rem;
	}
	.p-outline-greeting-detail dd {
		margin-top: 1em;
		padding-right: 0;
		width: 100%;
		font-size: 1.4rem;
		line-height: 2;
	}
}

/* ==================================================

[ PROJECT ] sponsors table

*/
.p-sponsors-table table {
	width: 100%;
	line-height: 1.5;
}
.p-sponsors-table table th,
.p-sponsors-table table td {
	padding: 1.5rem;
	width: 33.333%;
	border: 1px solid #5A5757;
}
.p-sponsors-table table th {
	padding: 1rem 1.5rem;
	background-color: #E3E3E3;
	font-weight: 700;
}
.p-sponsors-table table .name {
	position: relative;
	padding-left: 1.2em;
}
.p-sponsors-table table .name i {
	position: absolute;
	top: 0;
	left: 0;
}
.p-sponsors-table table .note {
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	.p-sponsors-table {
		overflow-x: scroll;
		margin-left: -2rem;
		margin-right: -2rem;
		padding: 0 2rem 1.5rem 2rem;
	}
	.p-sponsors-table table {
		font-size: 1.3rem;
		line-height: 1.5;
		white-space: nowrap;
	}
	.p-sponsors-table table th,
	.p-sponsors-table table td {
		padding: 1rem;
		width: auto;
	}
	.p-sponsors-table table th {
		padding: 1rem 1.5rem;
		background-color: #E3E3E3;
		font-weight: 700;
	}
	.p-sponsors-table table .note {
		font-size: 1.1rem;
		white-space: normal;
	}
	.p-sponsors-table .c-btn {
    padding: 0.5rem 1rem;
    min-height: 5.8rem;
	}
}