@charset "utf-8";
/* reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
word-break: break-all;
word-wrap: break-word;
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
font-size: 15px;
line-height: 1.3;
}
body {
padding: 0;
margin: 0;
background: #fff;
color: var(--body_txt_c);
font-size: 1rem;
font-family: 'Noto Sans JP', sans-serif;
font-weight: normal;
width: 100%;
height: 100%;
}
li{
list-style: none;
}
#wrap *::before,
#wrap *::after {
visibility: inherit;
}
*::before,
*::after,
ul::before,
ul::after,
ol::before,
ol::after,
dl::before,
dl::after {
display: none;
}
#wrap .box {
margin-top: 0;
}
img {
max-width: 100%;
vertical-align: top;
}
a {
color: var(--link_color);
}
/* reset end */

/* wrap */
	@media screen and (max-width: 768px) {
	html {
	font-size: 14px;
	}
	}
#wrap {
min-width: 320px;
padding-top: 80px;
overflow: hidden;
background: #fff;
background:  url("../images/visual_bg.jpg") no-repeat left top / 100% auto var(--base_c);
background-attachment: fixed;
}
	@media screen and (min-width: 768px) and (max-width: 3000px) {
	#wrap {
	}
	}
	@media screen and (max-width: 1200px) {
    #wrap {
	}
    }
    @media screen and (max-width: 768px) {
    #wrap {
    background-image:  url("../images/visual_sp_bg.jpg");
    padding-top: 60px!important;
    }
    }
#wrap * {
box-sizing: border-box;
}
#wrap img {
vertical-align: top;
}
#wrap .area {
position: relative;
clear: both;
display: block;
z-index: 10;
padding: clamp(30px, 3.47vw, 50px) 0;
}
#wrap .area_in {
display: flex;
flex-flow: column;
row-gap: clamp(30px, 3.47vw, 50px);
position: relative;
clear: both;
margin: 0 auto;
padding: 0 20px;
width: 100%;
max-width: 1020px;
}
.pc {
display: block;
}
.sp {
display: none;
}
	@media screen and (max-width: 768px) {
	.pc {
	display: none;
	}
	.sp {
	display: block;
	}
	}
.contents.type1 {
background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}
.contents.type2 {
background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}
	@media screen and (max-width: 1200px) {
	}
	@media screen and (max-width: 768px) {
	}
.contents.type3 {
background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}
/* wrap end */

/* header */
#header {
position: fixed;
top: 0;
left: 0;
min-width: 320px;
width: 100%;
height: 80px;
z-index: 1;
z-index: 999;
background: #000;
background: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
transition: 0.2s;
}
#header * {
transition: 0.2s;
}
#header .area_in {
height: 100%;
max-width: 100%;
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
align-items: stretch;
padding: 0;
}
#header .branding {
position: relative;
flex: 0 0 300px;
align-self: center;
display: flex;
}
#header .logo {
align-self: center;
padding-left: 10px;
}
#header .logo a {
display: flex;
height: 100%;
}
#header .logo img {
max-height: inherit;
width: auto;
height: 40px;
}
#header .logo.my img {
width: auto;
height: 40px;
}
	@media screen and (max-width: 768px) {
	#header {
	height: 60px;
    position: absolute;
	}
	#header .logo img {
	width: auto;
	height: 30px;
	}
	#header .area_in {
	padding-left: 0;
	padding-right: 50px;
	}
	}
	@media screen and (max-width: 500px) {
	#header .logo img {
	height: 28px;
	}
	}
/* header end */

/* menu */
#menubtn {
display: none;
position: absolute;
width: 50px;
height: 100%;
right: 0;
top: 0;
cursor: pointer;
transition: .3s;
background: var(--burger_icon);
z-index: 99999;
}
#menubtn.active {
background: var(--cross_icon);
}
	@media screen and (max-width: 768px) {
	#menubtn {
	display: block;
	}
	}
.menu li a {
display: inline-block;
text-decoration: none;
font-weight: bold;
text-align: center;
}
	@media screen and (min-width: 768px) {
	#menu {
	flex: 1 0 0%;
	display: flex;
	column-gap: 20px;
	align-items: center;
	padding: 0 20px;
	}
	#menu ul.menu {
	flex: 1 0 0%;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	align-items: center;
	font-size: 0.9rem;
	font-size: 1rem;
	gap: 5px 30px;
	}
	#menu ul.menu li a {
	width: 100%;
	height: 100%;
	padding: 0;
	color: var(--menu_txt_c);
	}
	#menu ul.menu li a:hover {
	color: var(--menu_txt_hover_c);
	}
	}
	@media screen and (min-width: 768px) and (max-width: 1000px) {
	#menu {
	padding: 0 10px;
	}
	#menu ul.menu  {
	font-size: 0.8rem;
	gap: 5px 20px;
	}
	}
	@media screen and (max-width: 768px) {
	#menu {
	position: fixed;
	left: 100%;
	top: 0;
	height: 100%;
	width: 100%;
	padding: 60px 0 0 0;
	padding: 60px 20px 0;
	background: var(--menu_sp_bg_c);
	transition: all 0.3s linear;
	z-index: 100;
	border-right: none;
	height: 100%;
	display: flex;
	flex-flow: column nowrap;
	row-gap: 20px;
	}
	#menu.active {
	left: 0;
	}
	#menu ul.menu {
	display: block;
	}
	#menu ul.menu li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	text-align: center;
	padding: 10px;
	color: var(--menu_sp_link_c);
	}
	}
#menu .sns {
display: flex;
justify-content: center;
column-gap: 20px;
}
#menu .sns a span {
display: inline-block;
text-indent: -9999px;
width: 30px;
height: 30px;
}
#menu .sns .fb span {
background: var(--fb_icon);
}
#menu .sns .x span {
background: var(--x_icon);
}
	@media screen and (max-width: 768px) {
	#menu .sns .fb span {
	background: var(--fb_icon_w);
	}
	#menu .sns .x span {
	background: var(--x_icon_w);
	}
	}
#button .button_box > a.comp {
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 40px;
border-radius: 20px;
border-radius: 5px;
padding: 5px;
font-weight: 600;
}
	@media screen and (min-width: 768px) {
	#button {
	flex: 0 1 150px;
	height: 100%;
	}
	#button .button_box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	}
	#button .button_box > a.comp {
	background: var(--btn_bg_c);
	color: var(--btn_txt_c);
	transition: .3s;
	}
	#button .button_box > a.comp:hover {
	opacity: 0.7;
	}
	}
	@media screen and (max-width: 768px) {
	#button .button_box > a.comp {
	background: var(--menu_sp_btn_bg_c);
	color: var(--menu_sp_btn_txt_c);
	}
	}
#button .button_box > a.comp.contact_end {
background: #999!important;
}
/* menu end */

/* visual */
#visual {
width: 100%;
height: auto;
padding: 0!important;
}
#visual::after {
display: block;
width: 100px;
}
#visual .area_in {
justify-content: center;
background: url("../images/visual.png") no-repeat center center / 100% auto;
max-width: 100%;
width: 1000px;
height: auto;
aspect-ratio: 1200 / 300;
padding: 0;
}
#visual .area_in.bottom {
background-image: url("../images/visual2.png");
aspect-ratio: 1200 / 200;
margin-top: -40px;
}
#visual .area_in img {
opacity: 0;
max-width: 100%;
width: 100%;
height: 100%;
}
.visual_slide {
position: relative;
max-width: 100%;
width: 100%;
height: 100%;
aspect-ratio: 2500 / 600;
overflow: hidden;
margin-top: -30px;
}
.visual_slide > * {
position: relative;
display: block;
width: 100%;
height: 100%;
}
.visual_slide > * img {
opacity: 0;
}
.visual_slide > *::before {
content: "";
position: absolute;
display: block;
width: 200%;
height: 100%;
left: 0;
top: 0;
background: url(../images/visual_photo.png) repeat-x center 0 / contain;
animation: scroll-bg-x 50s linear infinite;
}
    @keyframes scroll-bg-x {
    from {
    transform: translateX(0);
    }
    to {
    transform: translateX(-50%);
    }
    }
    @keyframes scroll-bg-x {
    from {
    transform: translateX(-50%);
    }
    to {
    transform: translateX(0);
    }
    }
    @media screen and (max-width: 768px) {
    .visual_slide,
    #visual .area_in.bottom {
    margin-top: 0;
    }
    .visual_slide {
    aspect-ratio: 1250 / 600;
    }
    }
#visual .area_in.nophoto {
justify-content: center;
background: url("../images/visual_nophoto.png") no-repeat center center / 100% auto;
max-width: 100%;
width: 1000px;
height: auto;
aspect-ratio: 1200 / 500;
padding: 0;
}

/* visual end */

/* contact */
.contact_area {
}
.contact_area {
background: var(--contact_bg_c);
}
.contact_btn {
position: relative;
display: flex;
width: 100%;
height: 80px;
max-width: 600px;
margin: 0 auto;
align-items: center;
justify-content: center;
font-weight: 500;
text-decoration: none;
text-align: center;
color: var(--btn_txt_c);
font-size: 1.8rem;
border-radius: 50px;
border-radius: 10px;
transition: .3s;
background: var(--btn_bg_c);
box-shadow: 0 0 10px rgba(0,0,0,0.6);
border: 2px solid var(--btn_bg_c2);
}
.contact_btn span {
display: inline-block;
}
.contact_btn::before {
content: "";
display: block;
position: absolute;
right: 10px;
top: 50%;
width: 50px;
height: 50px;
background: var(--btn_icon_arrow);
transform: translate(0,-50%);
}
.contact_btn::after {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: block;
background: rgba(255,255,255,0.0);
border-radius: 50px;
border-radius: 10px;
transition: .3s;
visibility: inherit;
}
.contact_btn:hover {
/*transform: translate(0,-10px);*/
}
.contact_btn:hover::after {
background: rgba(255,255,255,0.2);
}
.contact_btn.contact_end {
background: #999;
}
.contact_btn_box .contact_txt {
display: block;
text-align: center;
margin-top: 20px;
}
	@media screen and (max-width: 768px) {
	.contact_btn {
	width: 100%;
	height: 80px;
	font-size: 1.5rem;
	}
	.contact_btn::before {
	width: 40px;
	height: 40px;
	}
	.contact_btn::after {
	}
	}
	@media screen and (max-width: 520px) {
	.contact_btn {
	height: 60px;
	font-size: 1.3rem;
	}
	.contact_btn::before {
	width: 30px;
	height: 30px;
	}
	.contact_btn::after {
	}
	}
/* contact end */

/* footer */
#wrap #footer {
background: var(--footer_bg_c);
padding-bottom: 100px;
}
#footer .area_in {
display: grid;
gap: 20px;
}
.company_logo {
padding: 30px;
text-align: center;
max-width: 260px;
margin: 0 auto;
}
.footer_link {
text-align: center;
}
.footer_link a {
color: #fff;
}
#footer .text {
text-align: center;
}
#footer .copy {
text-align: center;
font-size: 0.9rem;
color: #fff;
}
#nav {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: stretch;
line-height: 1;
gap: 40px;
}
#nav li {
position: relative;
}
#nav li:not(:last-child)::before {
content: "";
display: block;
width: 1px;
height: 100%;
background: #ccc;
position: absolute;
right: -20px;
top: 50%;
transform: translate(0,-50%);
}
#nav li a {
display: inline-block;
text-decoration: none;
color: #fff;
}
	@media screen and (min-width: 768px) {
	#nav li a:hover {
	text-decoration: underline;
	}
	}
	@media screen and (max-width: 768px) {
    #nav {
	gap: 0;
    flex-flow: column wrap;
    justify-content: flex-start;
    }
	#nav li:not(:last-child)::before {
	width: 100%;
	height: 1px;
	top: inherit;
	bottom: 0;
	right: inherit;
	left: 0;
	transform: none;
	}
    #nav li a {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    }
	}
#footer .flogo {
text-align: center;
padding: 40px 0;
}
#footer .flogo img {
height: 40px;
}
#footer .bottom .bottom_nav {
flex: 1 0 0%;
display: flex;
justify-content: center;
gap: 20px;
font-size: 0.9rem;
}
#footer .bottom a {
text-decoration: none;
}
#footer .bottom_nav {
display: flex;
flex: 1 0 0%;
align-items: center;
justify-content: center;
flex-flow: row wrap;
}
#footer .bottom_nav a {
text-decoration: none;
color: var(--footer_link_c);
}
	@media screen and (max-width: 768px) {
	#footer .bottom {
	flex-flow: column nowrap;
	}
	}
/* footer end */

/* pagetop */
#pagetop {
position: fixed;
right: 10px;
bottom: -100px;
transition: all 0.3s linear;
opacity: 0;
z-index: 100;
}
#pagetop.active {
bottom: 10px;
opacity: 0.9;
}
#pagetop:hover {
opacity: 0.6;
}
#pagetop a {
display: block;
width: 60px;
height: 60px;
border-radius: 30px;
background: var(--pagetop_bg_C);
text-indent: -9999px;
}
#pagetop a:before {
display: block!important;
content: "";
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
width: 80%;
height: 80%;
background: var(--top_arrow_w);
}
	@media screen and (max-width: 768px) {
	#pagetop.active,
	#pagetop:hover {
	opacity: 0.8;
	}
	#pagetop a {
	width: 40px;
	height: 40px;
	border-radius: 20px;
	}
	}
/* pagetop end */


/* bar */
.base_tit {
display: flex;
gap: 10px;
flex-flow: column nowrap;
align-items: center;
font-family: var(--font_en);
color: #fff;
line-height: 1.1;
}
.base_tit > b {
color: rgba(255,255,255,0.20);
color: #fff;
font-weight: 600;
text-shadow: 0 0 10px rgba(0,0,0,0.5);
text-shadow: 0 0 10px rgba(255,255,255,0.5);
font-size: 4rem;
}
.base_tit > span {
display: inline-block;
font-size: 1.5rem;
}
	@media screen and (max-width: 768px) {
	.base_tit > b {
	font-size: 3rem;
	}
	.base_tit > span {
	font-size: 1.2rem;
	}
	}
/* bar end */

/* lead */
#lead_area {
padding: 0;
}
#wrap #lead_area .area_in {
max-width: inherit;
}
.lead_box {
max-width: 800px;
margin: 0 auto;
color: #fff;
margin-top: 20px;
}
.lead_box .txt {
line-height: 2;
text-align: left;
font-size: 1rem;
text-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.lead_box .txt b {
font-size: clamp(20px, 2.77vw, 40px);
line-height: 1.6;
}
.about_box_in {
position: relative;
display: flex;
flex-flow: column;
gap: 50px;
width: 100%;
margin: 0 auto;
}

	@media screen and (max-width: 1000px) {
	.about_box_in {
	grid-template-columns: auto;
	width: 100%;
	}
	}
	@media screen and (max-width: 768px) {
	.lead_txt {
	font-size: 1.1rem;
	}
	.lead_txt b {
	font-size: 1.5rem;
	}
	}
.schedule_list {
display: flex;
gap: 20px;
margin: 0 auto;
}
.schedule_list > *:nth-child(1) {
border: 2px solid var(--main_c);
}
.schedule_list > *:nth-child(2) {
border: 2px solid var(--sub_c);
}
	@media screen and (max-width: 768px) {
    .schedule_list {
    flex-flow: column;
    }
    }
.benefits_box {
max-width: 900px;
margin: 0 auto;
color: #fff;
margin-top: 20px;
border: 2px solid var(--main_c3);
background: rgba(0,0,0,0.7);
padding: clamp(14px, 1.38vw, 20px);
}
.benefits_box .txt {
line-height: 1.4;
text-align: left;
font-size: 1rem;
text-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.benefits_box .txt b {
font-size: 1.2rem;
}
.benefits_box .txt span {
font-size: 1.2rem;
}
.benefits_box .txt b + br,
.benefits_box .txt span + br {
display: none;
}
.benefits_box .txt b {
font-weight: bold;
color: var(--main_c2);
display: block;
font-size: 1.2rem;
text-align: center;
}
.benefits_box .txt span {
display: block;
line-height: 1.6;
}
.benefits_box .txt small {
display: block;
margin-top: 10px;
}
/* benefits_area end */


/* overview_area */
#overview_area {
}
.overviewe_box {
position: relative;
width: 100%;
margin: 0 auto;
height: 100%;
padding: clamp(20px, 3.47vw, 50px);
background: var(--box_c);
border-radius: 0;
border: 2px solid var(--main_c2);
z-index: 1;
}
.dlist {
color: #fff;
display: grid;
gap: 40px;
}
.dlist dl {
position: relative;
line-height: 1.8;
display: grid;
grid-template-columns: 180px 1fr;
}
.dlist dl:not(:last-child)::before {
content: "";
display: block;
position: absolute;
left: 0;
bottom: -20px;
width: 100%;
height: 1px;
background: rgba(255,255,255,0.2);
}
.dlist dl dt {
font-weight: bold;
font-size: 1rem;
}
.dlist a {
color:#fff;
text-decoration: underline;
}
.dlist a.end {
color:#999;
}
.dlist dd {
font-weight: 300;
font-size: 1rem;
}
.dlist dd b {
font-weight: bold;
}
	@media screen and (max-width: 768px) {
	.dlist dl {
	grid-template-columns: auto;
	gap: 10px;
	}
	}
/* overview_area end */

/* sponsor_area */
#sponsor_area {
}
.sponsor_box {
display: flex;
flex-flow: column;
gap: 20px;
position: relative;
width: 100%;
margin: 0 auto;
height: 100%;
padding: clamp(20px, 3.47vw, 50px);
background: #fff;
border-radius: 0;
border: 2px solid var(--main_c2);
z-index: 1;
}
.logolist {
display: flex;
flex-flow: column;
gap: 20px;
}
.logolist .bar {
text-align: center;
}
.logolist ul {
display: flex;
flex-flow: row wrap;
gap: 20px;
justify-content: center;
}
.logolist ul > * {
flex: 0 1 calc(33.33% - 20px);
text-align: center;
background: #fff;
border-radius: 0;
overflow: hidden;
}
.logolist_box a img {
transition: .3s;
}
.logolist_box a:hover img {
opacity: 0.7;
}
.logolist_txt {
text-align: right;
padding: 0 20px;
}
@media screen and (max-width: 1000px) {
.logolist ul > * {
flex: 0 1 calc(50% - 10px);
}
}
@media screen and (max-width: 768px) {
.logolist ul > * {
flex: 0 1 calc(50% - 10px);
}
}
@media screen and (max-width: 520px) {
.logolist ul > * {
flex: 0 1 100%;
}
}
/* sponsor_area end */
	
/* timetable_area */
.timetable {
display: flex;
flex-flow: column;
gap: clamp(20px, 2.77vw, 40px);
}

.timetable_box_in {
position: relative;
display: flex;
flex-flow: column;
align-items: flex-start;
gap: 10px;
background: var(--main_c3);
border-radius: 0;
padding: 10px;
border: 2px solid var(--main_c);
}
.timetable_box_in.d2 {
border-color: var(--sub_c);
background: var(--sub_c3);
}
.program_table_head {
color: #fff;
font-family: var(--font_en);
display: flex;
flex-flow: column;
align-items: flex-start;
justify-content: center;
}
.program_table_head > b {
font-size: 1.5rem;
line-height: 1.2;
font-weight: 500;
}
.program_table_head > span {
}
.program_table_head > span > span {
font-size: 3rem;
line-height: 1;
font-weight: 600;
}
.program_table_head > span > small {
font-size: 1.5rem;
line-height: 1.2;
font-weight: 500;
}
    @media screen and (max-width: 768px) {
    .program_table_head {
    flex: 0 1 100%;
    }
    }
.program_table {
flex: 1 0 0%;
}
.program_list {
display: flex;
flex-flow: row wrap;
gap: 2px;
}
.program_list > * {
flex: 1 0 calc(50% - 1px);
position: relative;
background: #fff;
padding: 10px;
}
    @media screen and (max-width: 768px) {
    .program_list > * {
    flex: 1 0 100%;
    }
    }
.program_list .popup {
display: flex;
flex-flow: column nowrap;
gap: 10px;
cursor: pointer;
background: none;
transition: .3s;
}
.program_list .nolink {
display: flex;
flex-flow: column nowrap;
gap: 10px;
}
.program_table .popup:hover {
opacity: 0.7;
}
.program_list .date {
display: flex;
gap: 10px;
}
.program_list .date .t {
font-family: var(--font_en);
font-weight: 600;
order: 3;
flex: 1 0 0%;
text-align: right;
}
.program_list .date .i {
background: var(--main_c2);
color: #fff;
font-family: var(--font_en);
font-weight: 600;
display: inline-block;
font-size: 0.9rem;
padding: 0 10px;
border-radius: 0;
vertical-align: top;
line-height: 1.5rem;
order: 1;
}
.program_list .date .s {
background: var(--main_c2);
color: #fff;
font-weight: 600;
display: inline-block;
font-size: 0.9rem;
padding: 0 10px;
border-radius: 0;
vertical-align: top;
line-height: 1.5rem;
order: 2;
}
.timetable_box_in.d2 {
border-color: var(--sub_c);
}
.d2 .program_table_head {
color: #fff;
}
.d2 .program_list .date .t {
}
.d2 .program_list .date .i,
.d2 .program_list .date .s {
background: var(--sub_c2);
}
.program_list .title b {
font-size: 1.6rem;
font-weight: 500;
line-height: 1.2;
}
.program_list .gaiyou {
line-height: 1.6;
font-size: 1rem;
display: none;
}
.program_list .layout_box {
display: flex;
flex-flow: column;
gap: 20px;
}
.program_list .layout {
display: flex;
flex-flow: row wrap;
gap: 20px;
}
.program_list .layout .photo {
flex: 0 1 100px;
}
.program_list .layout .photo img {
width: 100%;
border-radius: 0;
}
.program_list .layout .info {
flex: 1 0 0%;
}
.program_list .txt {
display: flex;
flex-flow: column;
line-height: 1.5;
}
.program_list .txt .com, 
.program_list .txt .job, 
.program_list .txt .director {
font-size: 0.9rem;
}
.program_list .txt .name {
font-size: 1.1rem;
}
.program_list .txt.prof {
margin-top: 10px;
line-height: 1.4;
font-size: 0.9rem;
}
.program .txt.prof b + br {
display: none;
}
.program_list .txt.prof {
display: none;
}







/* popup */
.mfp-bg {
opacity: 0.9;
background: #000;
}
.popup_contents {
display: none;
}
.mfp-content {
max-width: 700px!important;
max-width: inherit!important;
padding: 50px 50px;
height: 100%;
}
.mfp-close {
position: fixed!important;
top: 10px!important;
right: 10px!important;
width: 50px!important;
height: 50px!important;
opacity: 1!important;
text-indent: -9999px;
position: relative;
}
.mfp-close:before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
width: 50px;
height: 50px;
background: var(--cross_icon);
}
.pop_prev,
.pop_next {
position: fixed;
top: 50%;
z-index: 100;
display: block;
width: 50px;
height: 50px;
cursor: pointer;
text-indent: -9999px;
transition: .3s;
}
.pop_prev {
left: 10px;
background: var(--prev_arrow);
}
.pop_next {
right: 10px;
background: var(--next_arrow);
}
	@media screen and (max-width: 768px) {
	.mfp-content {
	padding: 40px;
	}
	.mfp-close {
	top: 0!important;
	right: 0!important;
	}
	.pop_prev {
	left: 0;
	}
	.pop_next {
	right: 0;
	}
	}
.pop_prev:hover,
.pop_next:hover {
opacity: 0.7;
}
.popup_box {
display: flex;
align-items: center;
height: 100%;
}
.popup_box_in {
margin: 60px 10px 10px 10px;
background: #fff;
padding: 30px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
max-width: 900px;
margin: 0 auto;
max-height: 100%;
overflow-y: scroll;
font-weight: 400;
width: 100%;
border-radius: 0;
display: grid;
gap: 20px;
}
	@media screen and (max-width: 768px) {
	.popup_box_in {
	padding: 20px;
	}
	}
.popup_box .popup {
display: flex;
flex-flow: column nowrap;
gap: 10px;
cursor: pointer;
background: none;
transition: .3s;
}
.program_table .popup:hover {
opacity: 0.7;
}
.popup_box .date {
display: flex;
flex-flow: row wrap;
gap: 10px;
}
.popup_box .date .t {
color: var(--main_c);
font-family: var(--font_en);
font-weight: 600;
font-size: 1.2rem;
}
.popup_box .date .d {
display: flex;
gap: 10px;
background: var(--main_c);
color: #fff;
padding: 0 10px;
}
.popup_box .date .d b {
font-family: var(--font_en);
font-weight: 600;
display: inline-block;
font-size: 0.9rem;
border-radius: 3px;
vertical-align: top;
line-height: 1.5rem;

}
.popup_box .date .d > span {
display: flex;
gap: 5px;
font-family: var(--font_en);
font-weight: 600;
align-items: baseline;
font-size: 0.9rem;
line-height: 1.5rem;
}
.popup_box .date .d > span > span {
font-size: 0.9rem;
line-height: 1.5rem;
}
.popup_box .date .d > span > small {
font-size: 0.9rem;
line-height: 1.5rem;
}
.popup_box .date .i {
background: var(--main_c);
color: #fff;
font-family: var(--font_en);
font-weight: 600;
display: inline-block;
font-size: 0.9rem;
padding: 0 10px;
border-radius: 0;
vertical-align: top;
line-height: 1.5rem;
}
.popup_box .date .s {
background: var(--main_c);
color: #fff;
font-weight: 600;
display: inline-block;
font-size: 0.9rem;
padding: 0 10px;
border-radius: 0;
vertical-align: top;
line-height: 1.5rem;
}
.popup_box .d2 > *::before {
background: var(--sub_c);
}
.popup_box .d2 .date .d {
background: var(--sub_c);
}
.popup_box .d2 .date .d > span {
}
.popup_box .d2 .date .t {
color: var(--sub_c);
}
.popup_box .d2 .date .i,
.popup_box .d2 .date .s {
background: var(--sub_c);
}
.popup_box .title b {
font-size: 1.8rem;
font-weight: 500;
line-height: 1.2;
}
.popup_box .gaiyou {
line-height: 1.6;
font-size: 1rem;
}
.popup_box .layout_box {
display: flex;
flex-flow: column;
gap: 20px;
}
.popup_box .layout {
display: flex;
flex-flow: row wrap;
gap: 20px;
}
.popup_box .layout .photo {
flex: 0 1 200px;
}
.popup_box .layout .photo img {
width: 100%;
border-radius: 0;
}
.popup_box .layout .info {
flex: 1 0 0%;
}
.popup_box .txt {
display: flex;
flex-flow: column;
line-height: 1.5;
}
.popup_box .txt .com, 
.popup_box .txt .job, 
.popup_box .txt .director {
font-size: 0.9rem;
}
.popup_box .txt .name {
font-size: 1.1rem;
}
.popup_box .txt.prof {
margin-top: 10px;
line-height: 1.4;
font-size: 0.9rem;
}
	@media screen and (max-width: 768px) {
    .popup_box .date .d {
    }
    .popup_box .layout .photo {
    flex: 0 1 100%;
    text-align: center;
    }
    .popup_box .layout .photo img {
    width: 80%;
    max-width: 200px;
    }
    .popup_box .layout .info {
    flex: 1 0 100%;
    }
    .popup_box .layout .txt:not(.prof) {
    max-width: 200px;
    width: 80%;
    margin: 0 auto;
    }
    }
/* popup end */


/* bottom_list */
.bottom_list {
display: flex;
flex-flow: column nowrap;
align-items: flex-end;
position: fixed;
right: -600px;
bottom: 10px;
z-index: 99;
transition: .3s;
grid-row-gap: 5px;
}
body.effect_active .bottom_list {
right: 0;
}
.bottom_list li {
}
.bottom_list li > * {
display: flex;
height: 50px;
align-items: center;
font-weight: 600;
padding: 5px 0 5px 20px;
border-radius: 5px 0 0 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
text-decoration: none;
color: #fff;
border: 2px solid #ccc;
border-right: none;
}
	@media screen and (min-width: 768px) {
	.bottom_list li > * {
	min-width: 190px;
	}
	}
.bottom_list li:nth-child(1) > * {
background: var(--main_c);
border-color: var(--main_c2);
}
.bottom_list li:nth-child(2) > * {
background: var(--sub_c);
border-color: var(--sub_c2);
}
.bottom_list li:nth-child(3) > * {
background: var(--btn_bg_c);
border-color: var(--btn_bg_c2);
}
.bottom_list b {
display: inline-block;
font-weight: 600;
font-family: var(--font_en);
letter-spacing: 0;
margin-right: 20px;
border-right: 1px solid rgba(255,255,255,0);
font-size: 1.2rem;
}
.bottom_list a {
transition: .3s;
}
.bottom_list a:hover {
opacity: 0.7;
}
.bottom_list a > span {
display: inline-block;
font-weight: 600;
font-family: var(--font_en);
letter-spacing: 0;
font-size: 1.2rem;
}
.bottom_list a > span > span {
display: inline-block;
margin-right: 5px;
}
.bottom_list a.all b {
border: none;
}
.bottom_list a.comp b {
border: none;
font-size: 1.2rem;
font-weight: 500;
}
.bottom_list li > * b span:nth-child(2) {
}
.bottom_list em {
opacity: 0;
font-style: normal;
font-weight: normal;
padding-right: 10px;
transform: translate(-100px,0);
opacity: 0;
font-size: 0;
transition: .3s;
}
	@media screen and (min-width: 768px) {
	.bottom_list li > *:hover em {
	transform: translate(0,0);
	opacity: 1;
	font-size: 1.2rem;
	font-weight: 300;
	}
	}
	@media screen and (max-width: 768px) {
	#footer {
	padding-bottom: 100px;
	}
	.bottom_list {
	display: flex;
    flex-flow: row nowrap;
	position: fixed;
	width: 100%;
	right: 0;
	bottom: -200px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	gap: 0;
	}
	.bottom_list > * {
    flex: 0 1 33.33%;
    }
	body.effect_active .bottom_list {
	right: 0;
	bottom: 0;
	}
	.bottom_list li > * {
	display: flex;
    flex-flow: row wrap;
	height: 60px;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	text-decoration: none;
	border-radius: 0;
	color: #fff;
	position: relative;
	z-index: 1;
	padding: 5px;
    column-gap: 10px;
	}
	.bottom_list em {
	display: none;
	}
	.bottom_list b {
	margin: 0;
	text-align: center;
	display: grid;
	line-height: 1;
	}
	.bottom_list b span:nth-child(1) {
	font-size: 0.8rem;
	font-weight: bold;
	}
	.bottom_list b span:nth-child(2) {
	font-size: 1.2rem;
	font-weight: bold;
	}
	.bottom_list a.comp b {
	font-size: 1rem;
	font-weight: bold;
	}
	}

/* root */

/* 1440px最大
vw = px ÷ 14.4
100px ÷ 14.4 = 6.94vw
50px ÷ 14.4 = 3.47vw
40px ÷ 14.4 = 2.77vw
30px ÷ 14.4 = 2.08vw
20px ÷ 14.4 = 1.38vw
10px ÷ 14.4 = 0.69vw

padding: clamp(80px, 6.94vw, 100px) 0;
padding: clamp(40px, 4.16vw, 60px) 0;
padding: clamp(30px, 3.47vw, 50px) 0;
padding: clamp(20px, 2.77vw, 40px) 0;
font-size: clamp(16px, 2.08vw, 30px);
font-size: clamp(14px, 1.38vw, 20px);

*/
:root {
/*
--font_en: 'Figtree','Noto Sans JP', sans-serif;
--font_en: 'Barlow','Noto Sans JP', sans-serif;
*/
--font_en: 'Inter', 'Noto Sans JP', sans-serif;

--main_c: #465FB9;
--main_c2: #698FDC;
--main_c3: rgba(70,95,185,0.7);

--sub_c: #664899;
--sub_c2: #996CCC;
--sub_c3: rgba(102,72,153,0.7);

--base_c: #010721;
--box_c: rgba(0,0,0,0.7);

--body_txt_c: var(--base_c);
--wrap_bg_c: var(--base_c);
--link_color: var(--main_c);
--txt_c: var(--base_c);

--btn_bg_c: linear-gradient(to right, var(--main_c2), var(--sub_c2));
--btn_bg_c2: #B7B3E7;
--btn_txt_c: #fff;
--btn_icon_arrow: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M60.61 42.93 39.39 21.72 32.32 28.79 53.54 50 32.32 71.21 39.39 78.28 67.68 50 60.61 42.93z" fill="%23ffffff" /%3E%3C/svg%3E') no-repeat center / contain;
--btn_icon_arrow: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M34.44 24.54 37.27 21.72 62.73 47.17 65.56 50 62.73 52.83 62.73 52.83 37.27 78.28 34.44 75.46 59.9 50 34.44 24.54Z" fill="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;

--menu_txt_c: #fff;
--menu_txt_c: #000;
--menu_txt_hover_c: var(--main_c);
--menu_sp_bg_c: #000;
--menu_sp_btn_bg_c: #fff;
--menu_sp_btn_txt_c: #000;
--menu_sp_link_c: #fff;

--footer_bg_c: rgba(0,0,0,0.9);
--footer_txt_c: #fff;
--footer_link_c: #fff;
--pagetop_bg_C: rgba(0,0,0,0.9);
--footer_logo_w: 150px;







--fb_icon_w: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M73.09,55.83l2.75-17.96h-17.23v-11.66c0-4.91,2.41-9.7,10.13-9.7h7.84V1.21s-7.11-1.21-13.91-1.21c-14.19,0-23.47,8.6-23.47,24.17v13.69h-15.78v17.96h15.78v44.17h19.42v-44.17h14.48Z" fill="%23ffffff" /%3E%3C/svg%3E') no-repeat center / contain;
--x_icon_w: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M59.31,42.34L95.74,0h-8.63l-31.63,36.77L30.21,0H1.08l38.2,55.6L1.08,100h8.63l33.4-38.83,26.68,38.83h29.14l-39.62-57.66h0ZM47.49,56.09l-3.87-5.54L12.82,6.5h13.26l24.85,35.55,3.87,5.54,32.31,46.21h-13.26l-26.36-37.71h0Z" fill="%23ffffff"  /%3E%3C/svg%3E') no-repeat center / contain;
--fb_icon: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M73.09,55.83l2.75-17.96h-17.23v-11.66c0-4.91,2.41-9.7,10.13-9.7h7.84V1.21s-7.11-1.21-13.91-1.21c-14.19,0-23.47,8.6-23.47,24.17v13.69h-15.78v17.96h15.78v44.17h19.42v-44.17h14.48Z" fill="%23021D40" /%3E%3C/svg%3E') no-repeat center / contain;
--x_icon: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M59.31,42.34L95.74,0h-8.63l-31.63,36.77L30.21,0H1.08l38.2,55.6L1.08,100h8.63l33.4-38.83,26.68,38.83h29.14l-39.62-57.66h0ZM47.49,56.09l-3.87-5.54L12.82,6.5h13.26l24.85,35.55,3.87,5.54,32.31,46.21h-13.26l-26.36-37.71h0Z" fill="%23021D40"  /%3E%3C/svg%3E') no-repeat center / contain;

--prev_arrow: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M65.6 24.57 62.77 21.75 37.32 47.2 34.49 50.03 37.32 52.86 37.32 52.86 62.77 78.31 65.6 75.49 40.14 50.03 65.6 24.57Z" fill="%23cccccc"  /%3E%3C/svg%3E') no-repeat center / contain;
--next_arrow: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M34.44 24.54 37.27 21.72 62.73 47.17 65.56 50 62.73 52.83 62.73 52.83 37.27 78.28 34.44 75.46 59.9 50 34.44 24.54Z" fill="%23cccccc"  /%3E%3C/svg%3E') no-repeat center / contain;
--prev_arrow_w: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M65.6 24.57 62.77 21.75 37.32 47.2 34.49 50.03 37.32 52.86 37.32 52.86 62.77 78.31 65.6 75.49 40.14 50.03 65.6 24.57Z" fill="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;
--next_arrow_w: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M34.44 24.54 37.27 21.72 62.73 47.17 65.56 50 62.73 52.83 62.73 52.83 37.27 78.28 34.44 75.46 59.9 50 34.44 24.54Z" fill="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;
--top_arrow_w: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M24.54 65.56 21.72 62.73 47.17 37.27 50 34.44 52.83 37.27 52.83 37.27 78.28 62.73 75.46 65.56 50 40.1 24.54 65.56Z" fill="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;

--cross_icon: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M70.55 32.35 67.72 29.52 50.04 47.2 32.37 29.52 29.54 32.35 47.22 50.03 29.54 67.71 32.37 70.54 50.04 52.86 67.72 70.54 70.55 67.71 52.87 50.03 70.55 32.35z" fill="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;
--burger_icon: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M72,32H28v-4h44v4ZM72,48H28v4h44v-4ZM72,68H28v4h44v-4Z" fill="%23ddd"  /%3E%3C/svg%3E') no-repeat center / contain;
}
/* root end */