@charset "utf-8";

.pc{display:none;}

:root{
	--dot-left-h: 800px;
	--dot-right-h: 550px;
	--dot-opacity: 1;
	--dot-size: 4px 4px;
	--keycolor: #0ed567;
	--en-font: 'Roboto', 'Noto Sans JP', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.num,
time,
.news__date {
	font-family: 'Lato', 'Noto Sans JP', sans-serif;
	font-variant-numeric: tabular-nums;
}

.green{
	color:var(--keycolor);
	font-weight:600;
}
.green_it{
	color:var(--keycolor);
	font-weight:600;
	font-style: italic;
}

body{
	background:#0e0e0e;
	letter-spacing: 0.05rem;
	font-size:16px;
	line-height: 1.7;
}

.logo{
	width: 45vw;
	max-width: 250px;
}

.global-header{
	margin: 0px auto 0 auto;
	padding-top: 16px;
	padding-left: 22px;
}

.global-header .container{
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.global-nav{
	color:#fff;
	display: none;
}

.global-nav ul{
	display: flex;
	justify-content: space-between;
	gap: 30px;
	font-size: 16px;
	margin-top: 6px;
}

.global-nav ul li{

}



.has-dot-top{ position:relative; }
.has-dot-top::before{
	content:"";
	position:absolute;
	inset:0 0 auto 0;
	height:max(var(--dot-left-h), var(--dot-right-h));
	z-index:0;
	pointer-events:none;
	background-image:url("../../assets/images/bg_dot.png");
	background-repeat:repeat;
	background-size:var(--dot-size);
	opacity:var(--dot-opacity);

	clip-path:polygon(
		0 0,
		100% 0,
		100% var(--dot-right-h),
		0 var(--dot-left-h)
	);
	-webkit-clip-path:polygon(0 0,100% 0,100% var(--dot-right-h),0 var(--dot-left-h));
}


.global-header{
	position: fixed;
	z-index:2;
	width: 100%;
}

.kv,main,footer{
	position:relative;
	z-index:1;
}



.kv{
	position: relative;
	width: 100%;
	height: 88vh;
	color: #fff;
	margin: 0px auto;
	border-radius: 0px 0px 20px 20px;
	overflow: hidden;
}
.kv__bg{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}
.kv__content{
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
}

.kv__catch1{
	font-size: clamp(14px, 1.9vw, 16px);
	font-weight: 500;
	margin-bottom: 30px;
	padding-top: 15px;
	letter-spacing: 0.1rem;
}

.kv__logo{
	max-width: 1000px;
	width: 80%;
	height: auto;
	margin-bottom: 15px;
}

.kv__catch2{
	font-size: clamp(16px, 1.9vw, 25px);
	font-weight: 400;
	line-height: 1.9;
}



.kv__overlay{
	position:absolute; inset:0; z-index:1;
	background: linear-gradient(
		rgba(0,0,0,.30) 0%,
		rgba(0,0,0,.70) 50%,
		rgba(0,0,0,.70) 100%
	);
}

.btn-style01{
	background:#46924d;
	padding: 10px 15px 12px 15px;
	border-radius: 8px;
	font-weight: 600;
	white-space: nowrap;
	color: #fff;
	position: relative;
	padding-right: 60px;
	font-size: 16px;
}

.btn-style01:after{
	content:"";
	background: url("../../assets/images/arrow_wt.png" ) no-repeat center right;
	width: 45px;
	height: 27px;
	display:inline-block;
	background-size: 30px;
	position: absolute;
	right: 14px;
	top: 12px;
}


.kv__content > *{
	opacity: 0;
	transform: translateY(20px);
	will-change: opacity, transform;
}


.kv__content.is-active .kv__catch1{
	animation: kvFadeUp .6s ease-out forwards;
	animation-delay: .0s;
	font-size: 3vw;
	line-height: 1.8;
}
.kv__content.is-active .kv__logo{
	animation: kvFadeUp .7s ease-out forwards;
	animation-delay: .0s;
	width: 90%;
}
.kv__content.is-active .kv__catch2{
	animation: kvFadeUp .7s ease-out forwards;
	animation-delay: .0s;
	font-size: 3.8vw;
	width: 95vw;
}

@keyframes kvFadeUp{
	from{ opacity:0; transform:translateY(10px); }
	to  { opacity:1; transform:translateY(0); }
}





.scroll-cue{
	position: relative;
	left:50%;
	top: -40px;
	transform:translateX(-50%);
	width:1px;
	height: 80px;
	z-index:3;
	pointer-events:none;
	overflow:hidden;
}


.scroll-cue::before{
	content:"";
	position:absolute; inset:0;
	background:linear-gradient(
		to bottom,
		rgba(255,255,255,.28),
		rgba(255,255,255,.18)
	);
	border-radius:1px;
}


.scroll-cue::after{
	content:"";
	position:absolute; left:0;
	width:1px;
	height:40px;
	background:#fff;
	border-radius:1px;
	animation:cueSlide 2.6s linear infinite;
}

@keyframes cueSlide{
	0%   { transform: translateY(-40px); opacity:1; }
	85%  { opacity:1; }
	100% { transform: translateY(300px); opacity:0; }
}







section{
	position: relative;
	margin: 60px auto 60px auto;
	color: #fff;
}

.news{
	max-width: 1400px;
	margin: 0px auto 60px auto;
}

.news__left{
	min-width: 260px;
	text-align: center;
}

.news__right{
	width: 100%;
}

.news__inner{
	gap: 20px;
	justify-content: left;
	width: calc(100% - 60px);
	margin:0 auto;
}

.sublabel{
	color: var(--keycolor);
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 14px;
	position: relative;
	margin-bottom: 15px;
	display: inline-block;
}

.sublabel:before{
	content:"";
	width: 14px;
	height: 14px;
	display: block;
	background-size: 14px;
	position: absolute;
	top: -15px;
	left: -18px;
}
.news__more{
	display: inline-block;
	margin-top: 20px;
	width: 200px;
	display: none;
}

.news__list{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.news__list li{
	border-bottom: 1px solid rgba(255,255,255,0.15);
	padding-bottom: 15px;
}

.news__list li:last-child{
	border-bottom: none;
}

.news__list a{
	display: flex;
	align-items: center;
	gap: 20px;
	text-decoration: none;
	color: inherit;
}

.news__thumb{
	flex-shrink: 0;
	object-fit: contain;
	border-radius: 4px;
}

.news__list time{
	font-size: 14px;
	color: rgba(255,255,255,0.75);
	min-width: 100px;
	font-style: italic;
	font-weight: 600;
	color: #999999;
	display: block;
	padding-bottom: 5px;
	letter-spacing: 0.02rem;
}

.news__text{
	font-size: clamp( 14px,3vw,16px);
	font-weight: 500;
	line-height: 1.7;
}


#partners.ttl_sub01{
	padding:0 20px;
}

.ttl_sub01{
	margin-bottom: 20px;
}

.ttl_sub01 img{
	min-height:40px;
	max-height:55px;
	width: auto;
	object-fit: contain;
}

.about{
	max-width:1400px;
}

.about_box{
	justify-content: space-between;
	position: relative;
	margin-bottom: 60px;
	width: calc(100% - 60px);
	margin:0 auto;
}

.flow_box{
	text-align:center;
	padding-top: 60px;
	width: calc(90% - 60px);
	margin:0 auto;
}

.flow_box img{
	max-width:1200px;
	margin:0 auto;
	width: 100%;
}


.about_left{

text-align: center;
}

.about_right{
	display: flex;
	position: relative;
	right: 0;
	top: 0;
	padding-top: 15px;
	justify-content: center;
}

.about_right li{
	max-width: 220px;
}

.about_right li:nth-child(1){
}

.about_right li:nth-child(2){

}

.subttl{
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 25px;
	letter-spacing: 0.15rem;
}

.text01{
	color: #eee;
	font-size: clamp(15px, 1.2vw, 17px);
	line-height: 2;
}

.text01 p{
	margin-bottom: 1.8em;
}

footer{
	margin: 70px auto 0 auto;
}

.footer_box{
	justify-content: space-between;
	width: calc(100% - 60px);
	max-width: 1400px;
	margin:0 auto;
}

.footer_left{
	width: 100%;
	margin:0 auto;
	text-align: center;
}


.footer_right{
	width: 100%;
	gap: 30px;
}

.snsbox{
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

.snsbox li{}

.snsbox li a{
	display:block;
	border:1px solid #fff;
	border-radius:50px;
	padding: 15px;
	line-height: 0;
}

.snsbox li a img{
	width: 18px;
	height:auto;
}

.footer_right ul{
	display: flex;
	flex-wrap: wrap;
}

.footer_right{
	padding-top:40px;
}

.footer_right ul li{
	width:50%;
}

.footer_right ul li a{
	display: block;
	height: 55px;
}

.footer_right ul li a img{
	width:auto;
	height:100%;
	object-fit: contain;
}

.copy{
	border-top:1px solid #3e3e3e;
	margin: 30px auto 0 auto;
}

.copy_box{
	color:#fff;
	padding: 30px 0;
	max-width: 1400px;
	font-size: 14px;
	margin:0 auto;
	width: calc(100% - 60px);
}

.copy_left{
	width: 100%;
	text-align: center;
	padding-bottom: 20px;
}

.copy_right{
	width: 100%;
	text-align: center;
	font-size: 12px;
}



.sec_nobg{
	padding: 60px 0 60px 0;
	width: 100%;
}

.sec_bg{
	padding: 60px 0 60px 0;
	background-image:url("../../assets/images/bg_dot.png");
	background-repeat:repeat;
	width: 100%;
}

.events_box{
	width: calc(100% - 60px);
	max-width: 1400px;
	color:#fff;
	margin:0 auto;
}

.w_unset{width:unset!important;}

.events__head{
	text-align: center;
}
.events__list{
	list-style:none;
	padding-top: 20px;
	padding-bottom: 40px;
	width: 100%;
	justify-content: space-between;
}
.event-card{
	background: transparent;
	display: flex;
	justify-content: space-between;
	padding-bottom: 30px;
}

.event-card:last-child{
}

.event-card__link{
	display:block; color:inherit; text-decoration:none;
}

.event-card__media{
	aspect-ratio: 16/11;
	overflow:hidden;
	margin-top: 10px;
	width: 40%;
}

.event-card__media img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	transition: transform .5s ease;
}

.event-card__link:hover .event-card__media img{
	transform: scale(1.05);
}

.event-card__body{
	width: 54%;
}


.event-card__tag{
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.2em;
	margin-bottom: 5px;
	padding: 0px 6px 2px 8px;
	margin-right:5px;
}
.event-card__tag.-green{
	color: #fff;
	background:#3d5b41;
}
.event-card__tag.-blue{
	color: #fff;
	background:#2d82b2;
}

.event-card__tag.-orange{
	color: #fff;
	background:#792c2c;
}


.event-card__title{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6;
	margin-bottom: 10px;
	font-style: italic;
	letter-spacing: 0.05em;
}
.event-card__meta{
	color:#cfcfcf;
	font-size: 12px;
	line-height:1.8;
	margin-bottom: 25px;
}
.event-card__meta .num{
	font-weight:500;
	color:#aaa;
}


.btn-style02{
	appearance:none;
	border:1px solid #fff;
	background:#fff;
	color: #000!important;
	border-radius: 8px;
	padding: 8px 45px 10px 12px;
	font-weight:600;
	position:relative;
	font-size: 12px;
	cursor:pointer;
	display: inline-block;
	width: 100%;
}
.btn-style02::after{
	content:"";
	position:absolute;
	right: 10px;
	top: 46%;
	transform:translateY(-50%);
	width: 32px;
	height: 14px;
	background:url("../../assets/images/arrow_bk.png") no-repeat center/28px;
}

.btn-style03{
	background:#46924d;
	font-size: 14px;
	padding: 14px 25px 16px 25px;
	border-radius: 8px;
	font-weight: 600;
	display: inline-block;
	max-width: 400px;
	text-align: left;
	color: #fff;
	position: relative;
	padding-right: 60px;
	width: 100%;
}

.btn-style03:after{
	content:"";
	background: url("../../assets/images/arrow_wt.png" ) no-repeat center right;
	width: 40px;
	height: 28px;
	display:inline-block;
	background-size: 40px;
	position: absolute;
	right: 20px;
	top: 12px;
}
.events__cta{
	text-align:center;
	margin-bottom:30px;
}
.openinv{
	width: calc(100% - 60px);
	max-width: 1400px;
	margin: 0px auto;
	padding: 0px 0 30px 0;
	color:#fff;
}

.openinv__head{
	text-align:center;
	margin-bottom: 28px;
}
.openinv__title{
	font-family: 'Lato', 'Noto Sans JP', sans-serif;
	font-size: clamp(40px, 6vw, 80px);
	font-weight: 900;
	font-style: italic;
	letter-spacing: .04em;
}

.openinv__grid{
	display: flex;
	align-items: flex-start;
	width: 100%;
	flex-wrap: wrap;
	flex-direction: column-reverse;
}


.openinv__left{width: 100%;text-align: center;}
.openinv__right{overflow: hidden;width: 65%;margin: 0 auto 25px auto;}
.openinv__right img{
	display:block; width:100%; height:auto;
	box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset;
}


.openinv__lead{
	font-size: 24px;
	font-style: italic;
	font-weight: 600;
	margin: 10px 0 20px;
	letter-spacing: .02em;
	line-height: 1.6;
}
.openinv__desc{
	color:#e9e9e9;
	line-height: 1.8;
	padding-bottom: 30px;
	text-align: left;
	font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, .25);
}


.openinv__defs{
	margin: 0 0 40px 0;
	font-size: 16px;
	text-align: left;
}
.openinv__defs .row{
	display:grid;
	grid-template-columns: 125px 1fr;
	padding: 30px 0;
	line-height: 2;
	border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.openinv__defs dt{
	color:#ddd;
	font-weight: 600;
	font-size: 18px;
}
.openinv__defs dd{
	margin:0;
	color:#e9e9e9;
}

.openinv__btn{margin-top: 18px;margin:0 auto;}
.advisors_box{
	width: calc(100% - 60px);
	max-width: 1400px;
	margin: 0 auto;
	color:#fff;
}

.advisors__head{
	text-align:center;
	margin-bottom: 40px;
}

.advisors__title{
	font-family: var(--en-font);
	font-size: clamp(48px, 7vw, 92px);
	font-weight: 900;
	font-style: italic;
	letter-spacing: .02em;
	margin: 6px 0 18px;
}

.leadtxt{
	color: #eeeeee;
	line-height: 2.5;
	max-width: 920px;
	margin: 0 auto;
}

.advisors__list{
	list-style:none;
	padding: 40px 0 0;
	display: flex;
	max-width: 1120px;
	margin:0 auto;
	justify-content: space-between;
	flex-wrap: wrap;
}

.advisor{
	width: 47%;
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
}

.advisor__media{
	overflow: hidden;
	margin:0 auto;
	box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset;
}
.advisor__media img{
	width:100%;
	height:100%;
	object-fit: cover;
	display:block;
}

.advisor__body{
	flex: 1;
	display: flex;
	flex-direction: column;
	margin: 14px auto 0 auto;
	width:100%;
}

.advisor__name{
	font-family: var(--en-font);
	font-size: clamp(14px,8vw,26px);
	line-height: 1.1;
	font-weight: 300;
	letter-spacing: .02em;
	margin-bottom: 8px;
}

.advisor__jp{
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 12px;
}

.advisor__org{
	color:#d9d9d9;
	margin-bottom: 22px;
	font-size: 12px;
	line-height: 1.7;
}

.advisor__actions {
	margin-top: auto;
}
.partners_box{
	width: 100%;
	max-width: none;
	overflow:hidden;
	padding-top:20px;
}
.partners__head{text-align:center;margin-bottom: 40px;}
.partners__title{
	font-family: var(--en-font);
	font-size: clamp(44px, 6.5vw, 86px);
	font-weight: 900;
	font-style: italic;
	letter-spacing: .02em;
	margin: 6px 0 16px;
}
.partners__lead{
	color:#ddd;
	line-height:2;
	max-width:920px;
	margin:0 auto 18px;
	width: calc(100% - 60px);
}


.marquee{
	position: relative;
	overflow: hidden;
	margin: 26px 0;
	-webkit-mask-image: none;
	mask-image: none;
	width: 100%;
}
.marquee__track{
	display: flex;
	gap: 25px;
	align-items: center;
	width: max-content;
	animation: marquee-left 32s linear infinite;
}
.marquee.-right .marquee__track{ animation-name: marquee-right; }

.marquee:hover .marquee__track{
	animation-play-state: running !important;
}


:root{
	--logo-w: 200px;
	--logo-h: 120px;
}
.p_logo{
	flex: 0 0 var(--logo-w);
	width: var(--logo-w);
	height: var(--logo-h);
	background:#fff;
	border-radius: 10px;
	display:flex;
	align-items:center;
	justify-content:center;
	padding: 10px 30px;
}

.p_logo img{
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display:block;
	transition: transform .25s ease;
}



@keyframes marquee-left{
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@keyframes marquee-right{
	0%   { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}


@media (prefers-reduced-motion: reduce){
	.marquee__track{ animation: none; }
}
.partners__cta{text-align:center;margin-top: 70px;width: calc(100% - 60px);margin: 60px auto 0 auto;}





.hamburger{

position: fixed;

right: 12px;

top: 12px;

z-index: 9999;

width: 45px;

height: 45px;

background: rgba(0,0,0,.35);

place-items: center;
}
.hamburger span{
	display:block;
	width: 34px;
	height: 1px;
	background:#fff;
	border-radius: 1px;
	transition: transform .25s ease, opacity .2s ease;
}
.hamburger span + span{margin-top: 9px;}

.menu-open .hamburger span:nth-child(1){transform: translateY(13px) rotate(45deg);}
.menu-open .hamburger span:nth-child(2){ opacity: 0; }
.menu-open .hamburger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }


.drawer{
	position: fixed;
	inset: 0;
	z-index: 9990;
	display: grid;
	background: rgba(0,0,0,.8);
	opacity: 0;
	transform: scale(1.01);
	pointer-events: none;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: opacity .25s ease, transform .25s ease;
}

@media (prefers-reduced-motion: reduce){
	.drawer{ transition: none; }
}


.menu-open .drawer{
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

.drawer__inner{
	width: min(85vw, 520px);
	margin: 0 auto;
	text-align: left;
}
.drawer__list{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	margin-top: 60px;
}
.drawer__list a{
	display: block;
	color:#fff;
	text-decoration: none;
	font-size: clamp(18px, 4vw, 24px);
	font-weight: 600;
	letter-spacing: .02em;
	padding: 12px 15px;
}
.drawer__list .btn-style01{
	display: inline-block;
	margin-top: 10px;
	border: none;
	width: 100%;
}

.menu-open{
	overflow: hidden;
	height: 100vh;
}


.global-header{z-index: 2;}




.hamburger{
	-webkit-appearance: none;
	appearance: none;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 0;
	background: none;
}

.sub section{
	margin: 0 auto;
	padding-top: 100px;
}

.sub section .subttl_right a{
	color:#0ed567;
}

.subttlbox{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column-reverse;
	flex-wrap: wrap;
	width: calc(100% - 60px);
	margin: 0 auto 0px auto;
}
.subttl_left{
	width: 100%;
}
.subttl_right{
	width: 100%;
	margin-bottom: 40px;
}
.subttl_right ul{
	display:flex;
	font-size: 11px;
	flex-wrap: wrap;
	line-height:1.9;
}

.subttl_right ul li{
	
padding-right: 1em;
}

.subttl_right ul li a{}

.subttl_right ul li a:after{
	content:">";
	width:1em;
	height:1em;
	display:inline-block;
	padding-left:10px;
}

.column-01{
	max-width:1000px;
	margin: 30px auto 0 auto;
	width: calc(100% - 60px);
}


.column-01 strong{
	display:block;
	font-weight:600;
	font-size:18px;
	margin-bottom:5px;
}

.column-01 p{
	font-weight:300;
	font-size:14px;
	margin-bottom: 2em;
	line-height:1.9!important;
}

.ft16{
	font-size: 16px!important;
	line-height:2!important;
}


.subkv{
	aspect-ratio: 2/1;
	overflow:hidden;
	box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset;
	margin-bottom: 35px;
	position: relative;
}

.subkv:before{
	content:"";
	width:100%;
	height:100%;
	display:block;
	position: absolute;
	background-image: url("../../assets/images/bg_dot.png");
	background-repeat:repeat;
	background-size:var(--dot-size);
	opacity:0.6;
}

.subkv img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	transition: transform .5s ease;
}
















.column-02{
	max-width:1400px;
	margin:70px auto;
	width: calc(100% - 60px);
}




.card_info{
    display: flex;
    padding: 3px 0;
    line-height: 1.6;
    flex-wrap: wrap;
}

.card_info .num{
    width: 100%;
}

.card_info .card_text{}


.tab_menu ul{ display:flex; gap:12px; flex-wrap:wrap; }
.tab_menu a.btn-style04{
	display:inline-block;
	width: 100%;
	padding: 8px 16px 10px 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	color:#fff;
	font-size: 16px;
	text-decoration:none;
	transition:opacity .2s ease, background .2s ease;
}
.tab_menu a.btn-style04[aria-selected="true"]{
	opacity:1;
	background: #48914b;
	border-color: #48914b;
}


.tab_box01,[id^="tab_box"]{
	transition: opacity .25s ease;
}
[hidden]{ display:none !important; }



.tab_menu ul {
display: flex;
	list-style: none;
	padding: 0;
	justify-content: space-between;
	margin:0 auto;
	flex-wrap: wrap;
}

.tab_menu ul li{
	width: 48%;
}

.tab_menu ul li a {
	display: inline-block;
	padding: 20px 50px;
	border: 2px solid #fff;
	border-radius: 8px;
	background: #111;
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 20px;
	text-decoration: none;
	transition: all 0.25s ease;
}

.tab_menu ul li a:hover {
	opacity: 1;
}




.tab_menu ul li a.active.cl01 {
	background: #cb223b;
	border-color: #cb223b;
}

.tab_menu ul li a.active.cl02 {
	background: #2d9dff;
	border-color: #2d9dff;
}


.tab_menu ul li a.active.cl03 {
	background: #ffa200;
	border-color: #ffa200;
}
.events-detail{
	max-width: 1400px;
	margin: 0px auto 50px;
	color:#fff;
	border-bottom: 1px solid #3e3e3e;
	padding-bottom: 50px;
}

.events-detail__head{
	text-align:center;
	margin-bottom: 28px;
}
.events-detail__title{
	font-family: 'Lato', 'Noto Sans JP', sans-serif;
	font-size: clamp(40px, 6vw, 80px);
	font-weight: 900;
	font-style: italic;
	letter-spacing: .04em;
}

.events-detail__grid{
	display: flex;
	gap: 60px;
	align-items: flex-start;
	flex-wrap: wrap;
}


.events-detail__left{width: 100%;}
.events-detail__right{overflow: hidden;width: 100%;}
.events-detail__right img{
	display:block; width:100%; height:auto;
	box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset;
}

.events-detail__lead{
	font-size: 28px;
	font-style: italic;
	font-weight: 600;
	margin: 10px 0 20px;
	letter-spacing: .02em;
}
.events-detail__desc{
	color:#e9e9e9;
	line-height: 1.9;
	padding-bottom: 2em;
	font-size: 16px;
}

.events-detail__defs {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 1.0em 0.5em;
	font-size: 15px;
	line-height: 1.7;
	border-top: 1px solid #3e3e3e;
	padding-top: 43px;
}

.events-detail__defs dt {
	font-weight: 600;
	color: #0ec35e;
}

.events-detail__defs dd {
	margin: 0;
	font-weight: 400;
}



.events-detail__btn{
	margin-top: 18px;
	width: unset;
}



.column-03{
	max-width:1400px;
	margin:20px auto;
	width: calc(100% - 60px);
}



.noborder{border:none;}













.pt60{
	padding-top: 40px!important;
}

.openinv_info{
    width: unset!important;
}

.openinv_box{
    margin: 0 auto;
    width: calc(100% - 60px);
    gap: 40px;
    flex-wrap: wrap;
}

.openinv_box_left{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.subttl_jp{
    font-size: 14px;
    color: #10c862;
    font-weight: 500;
    padding-bottom: 10px;
    display: block;
    letter-spacing: 0.1rem;
}

.openinv_subbox{
    background: #000;
    padding: 30px 30px 10px 31px;
    margin-top: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.openinv_subbox strong{
    font-size: 18px;
    color: #10c862;
    display: block;
    padding-bottom: 3px;
}

.openinv_subbox p{
    padding-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
}

.openinv_box_right{
    flex: 1;
    display: flex;
    flex-direction: column;
}



.openinv_subbox {
  flex: 1;
}

.openinv_box_all{
    margin: 0 auto;
    width: calc(100% - 60px);
}

.openinv_subbox02{
    margin-top: 20px;
    background: #000;
    border-radius: 8px;
    padding: 10px 30px;
}

.openinv_box02{}

.openinv_subbox02_inner{}

.openinv_subbox02_inner dl{
    justify-content: space-between;
    text-align: left;
    border-bottom: 1px solid #3e3e3e;
    padding: 25px 0;
    align-items: center;
}

.openinv_subbox02_inner dl:last-child{
    border-bottom:none!important;
}

.openinv_subbox02_inner dl dt{
    font-size: 18px;
    color: #10c862;
    font-weight: 600;
    line-height: 1.5;
    width: 35%;
}

.openinv_subbox02_inner dl dd{
    width: 100%;
    color: #eeeeee;
    line-height: 2;
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.8;
}

.openinv_subbox02_inner dl dt.no01{
}

.openinv_subbox02_inner dl dt{
	position: relative;
	display: block;
	padding-left: 60px;
	width: 100%;
}

.openinv_subbox02_inner dl dt:before{
	content:"";
	width: 45px;
	height: 45px;
	display:inline-block;
	position: absolute;
	left: 0;
	top: 6px;
}

.openinv_subbox02_inner dl dt.no01:before{
	background: url("../../assets/images/icon_no1.png") no-repeat center right;
	background-size: 45px;
}

.openinv_subbox02_inner dl dt.no02{}

.openinv_subbox02_inner dl dt.no02:before{
	background: url("../../assets/images/icon_no2.png") no-repeat center right;
	background-size: 45px;
}

.openinv_subbox02_inner dl dt.no03{}

.openinv_subbox02_inner dl dt.no03:before{
	background: url("../../assets/images/icon_no3.png") no-repeat center right;
	background-size: 45px;
}

.openinv_subbox02_inner dl dt.no04{}

.openinv_subbox02_inner dl dt.no04:before{
	background: url("../../assets/images/icon_no4.png") no-repeat center right;
	background-size: 45px;
}

.openinv_cta{

width: calc(100% - 60px);
}

.openinv_cta p{
	display: block;
	text-align: center;
	padding-bottom: 60px;
	color: #eee;
	line-height: 2.1;
}

.mg0{
	margin: 0 auto!important;
}

















.sub_toplead{
	text-align:center;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 50px;
}

.formbox {
    max-width: 800px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
}

.formbox dl {
    grid-template-columns: 280px 1fr;
    align-items: center;
    border-bottom: 1px solid #3e3e3e;
    padding-top: 20px;
}

.formbox dl dt {
    color: #fff;
    font-weight: bold;
    position: relative;
}

.formbox dl dd {
    margin: 0;
    border-bottom: 1px solid #3e3e3e;
    padding-bottom: 26px!important;
    /* line-height: 1.9; */
}

.formbox .textbox,
.formbox .tabox {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
	font-family: 'Lato', 'Noto Sans JP', sans-serif;
}

.formbox .tabox {
    height: 150px;
    resize: vertical;
}

.req {
    background: #dc0029;
    color: #fff;
    font-size: 10px;
    padding: 4px 15px 5px 15px;
    border-radius: 0;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
    line-height: 1;
}

.pp_box {
	display:block;
	text-align:center;
	padding-bottom: 38px;
	font-size:16px;
	padding-top: 30px;
}

.pp_box a {
	color: #10c862;
    text-decoration: underline;
}

.pp_box:after{
	content:"";
	background: url("../../assets/images/icon_window.png" ) no-repeat center right;
	width: 12px;
	height: 13px;
	display:inline-block;
	background-size: 12px;
	right: 14px;
	top: 12px;
}


.formbox dl dt,
.formbox dl dd {
    line-height: 1.9;
    padding-bottom: 15px;
}
.formbox dl dt:last-of-type,
.formbox dl dd:last-of-type {
    border-bottom: none;
}

.checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 3px;
    margin-right: 10px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    transition: background-color 0.2s, border-color 0.2s;
}
.checkbox:checked {
    background-color: #dc0029;
    border-color: #dc0029;
}
.checkbox:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: -8px;
    width: 12px;
    height: 20px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
}
.checkbox:hover {
    border-color: #ff3355;
}



.g_map{
	color: #10c862!important;
    text-decoration: underline;
	font-style: italic;
}

.g_map:before{
	content:"";
	background: url("../../assets/images/icon_map.png" ) no-repeat bottom left;
	width: 12px;
	height: 14px;
	display:inline-block;
	background-size: 9px;
}

.pp_box p{display:inline;}


.btn-style04{
	background:#46924d;
	font-size: 14px;
	padding: 14px 25px 16px 25px;
	border-radius: 8px;
	font-weight: 600;
	display: inline-block;
	max-width: 400px;
	text-align: left;
	color: #fff;
	position: relative;
	width: 100%;
	border:none;
}





.news__date{
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	min-width: 100px;
	font-style: italic;
	font-weight: 600;
	color: #999999;
	display: block;
	padding-bottom: 5px;
	letter-spacing: 0.02rem;
}

.news__title{
	font-size: 24px;
	font-style: italic;
	font-weight: 600;
	margin: 10px 0 20px;
	letter-spacing: .02em;
	padding-bottom: 25px;
	border-bottom: 1px solid #3e3e3e;

}

.news__content p{
	color: #e9e9e9;
	line-height: 2.1!important;
	font-size: 16px!important;
}

.top_aboutttl{
	height:200px!important;
	max-height:200px!important;
}


.formbox p{
        margin-bottom:0!important;
        line-height: 1.7 !important;
}


.comingsooncss01{
	padding-bottom:1px!important;
}

.comingsooncss02{
	padding-top:10px!important;
	padding-bottom:0px!important;
}

.comingsooncss03{
	padding-top:30px!important;
	padding-bottom:20px!important;
}

.cs{
  padding:30px 0;
  font-family: 'Lato', 'Noto Sans JP', sans-serif;
  font-size:24px;
  font-weight:400;
}