﻿/* 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: var(--fontsize_base);
line-height: 1.3;
}
body {
padding: 0;
margin: 0;
background: var(--main_c);
color: var(--txt_c);
font-family: 'Noto Sans JP', sans-serif;
font-weight: normal;
width: 100%;
height: 100%;
}
li{
list-style: none;
}
ul::before,
ul::after,
ol::before,
ol::after,
dl::before,
dl::after {
display: none;
}
img {
max-width: 100%;
vertical-align: top;
}
a {
color: var(--main_c);
}
/* reset end */

/* wrap */
#wrap {
min-width: 320px;
padding-top: 80px;
overflow: hidden;
background: none;
}
	@media screen and (min-width:768px) and ( max-width:1400px) {
	}
	@media screen and (max-width: 768px) {
	#wrap {
	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: var(--area_space) 0;
}
#wrap .area_in {
display: grid;
row-gap: var(--area_space);
position: relative;
clear: both;
margin: 0 auto;
padding: 0 20px;
width: 100%;
max-width: 1040px;
max-width: 1140px;
}
.area_txt {
font-size: var(--fontsize_18);
line-height: 1.6;
}
.area_txt b {
font-weight: 500;
font-size: var(--fontsize_20);
display: inline-block;
margin-bottom: 0.3rem;
}
.pc {
display: block;
}
.sp {
display: none;
}
	@media screen and (max-width: 768px) {
	.pc {
	display: none;
	}
	.sp {
	display: block;
	}
	}
/* wrap end */

/* effect */
    @media screen and (min-width: 768px) {
    .effectdelay {
    opacity: 0;
    transition: 0.8s;
    }
    .effectdelay.effect_active {
    opacity: 1;
    transform: translateY(0);
    }
    .effect {
    opacity: 0;
    transition: 1.2s;
    transform: translateY(-70px);
    }
    .effect.effect_active {
    opacity: 1;
    transform: translateY(0);
    }
    }
.effect {
opacity: 0;
transform: translate(0, 100px);
transition: 0.6s;
}
.effect.effect_active {
opacity: 1;
transform: translate(0, 0);
}
/* effect end */

/* header */
#header {
position: fixed;
top: 0;
left: 0;
min-width: 320px;
width: 100%;
height: 80px;
z-index: 1;
z-index: 999;
background: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.0);
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 {
width: 100%;
max-width: clamp(100px, 20vw, 120px);
aspect-ratio: 360 / 120;
}
	@media screen and (max-width: 768px) {
	#header {
	height: 60px;
	}
	#header .area_in {
	padding-left: 0;
	padding-right: 50px;
	}
	}
/* 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: var(--fontsize_14);
	gap: 5px 30px;
	}
	#menu ul.menu li a {
	width: 100%;
	height: 100%;
	padding: 0;
	color: var(--txt_c);
	}
	#menu ul.menu li a:hover {
	color: var(--main_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(--base_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: #fff;
	}
	}
#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_w);
background: var(--fb_icon);
}
#menu .sns .x span {
background: var(--x_icon_w);
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);
	}
	}
@media screen and (min-width: 768px) {
#menu .menu.snswrap {
position: relative;
padding-right: 100px;
}
#menu .menu.snswrap .sns {
position: absolute;
right: 0;
}
}
#button .button_box > a.comp {
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 40px;
border-radius: 20px;
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: #fff;
	transition: .3s;
	border: 2px solid var(--base_c);
	border: none;
	}
	#button .button_box > a.comp:hover {
	opacity: 0.7;
	}
	}
	@media screen and (max-width: 768px) {
	#button .button_box > a.comp {
	background: #fff;
	color: var(--base_c);
	}
	}
#button .button_box > a.comp.contact_end {
background: #999!important;
}
#button .button_box > a.comp b {
display: flex;
flex-flow: column;
align-items: center;
font-weight: 700;
}
#button .button_box > a.comp b * {
font-style: normal;
}
#button .button_box > a.comp b em {
font-size: 0.9rem;
}
#button .button_box > a.comp b small {
font-size: 0.7rem;
}
	@media screen and (max-width: 768px) {
    #button .button_box > a.comp b em {
    font-size: 1.1rem;
    }
    #button .button_box > a.comp b small {
    font-size: 0.8rem;
    }
    }
/* menu end */

/* header menu type_t * /
    @media screen and (min-width: 768px) {
    #header.type_t #menu {
    padding-right: 0;
    gap: 0;
    height: 100%;
    }
    #header.type_t #menu .menu {
    height: 100%;
    gap: 0;
    }
    #header.type_t #menu .menu li {
    width: 140px;
    height: 100%;
    border-left: 1px solid #ddd;
    }
    #header.type_t #menu .menu li {
    width: clamp(110px, 11vw, 140px);
    }
    #header.type_t #menu .menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    }
    #header.type_t #button .button_box > a.comp {
    border-radius: 0;
    height: 100%;
    }
    }
	@media screen and (min-width: 768px) and (max-width: 860px) {
    }
/* header menu type_t end */


/* footer */
#footer {
}
#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;
background: rgba(255,255,255,0.4);
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: 0;
}
#footer .flogo img {
height: 40px;
}
.ftext {
text-align: center;
line-height: 1.6;
font-size: var(--fontsize_14);
color: #fff;
}
.copy {
text-align: center;
font-size: var(--fontsize_14);
color: #fff;
}
/*
#footer .bottom {
display: flex;
border-top: 1px solid #ddd;
padding: 30px 0 0;
margin-top: 30px;
}
#footer .bottom a {
text-decoration: none;
color: #222!important;
}
#footer .bottom .bottomlogo {
flex: 0 1 220px;
font-size: 80%;
text-align: center;
}
#footer .bottom .bottomlogo span {
display: block;
text-align: center;
padding: 10px 0;
}
#footer .bottom img {
width: 200px;
}
#footer .bottom ul {
display: flex;
flex: 1 0 0%;
align-items: center;
justify-content: center;
flex-flow: row wrap;
font-size: 90%;
}
#footer .bottom ul li {
padding: 10px;
}
    @media screen and (max-width: 768px) {
    #footer .bottom {
    flex-flow: column-reverse;
    }
    #footer .bottom .bottomlogo {
    flex: 1 0 auto;
    }
    }*/
#nav .comp b {
display: flex;
align-items: center;
}
#nav .comp b * {
font-style: normal;
font-weight: 600;
}
#nav .comp b small {
font-size: 0.8rem;
}
#nav .comp b small::before {
content:"[";
display: inline-block;
margin: 0 0.2rem;
}
#nav .comp b small::after {
content:"]";
display: inline-block;
margin: 0 0.2rem;
}
/* footer end */

/* pagetop */
#pagetop {
position: fixed;
right: 10px;
bottom: -100px;
transition: .3s;
opacity: 0;
z-index: 100;
}
#pagetop.active {
bottom: 10px;
opacity: 0.9;
}
#pagetop:hover {
opacity: 0.6;
}
#pagetop a {
display: block;
width: var(--size_60);
height: var(--size_60);
border-radius: 999px;
background: var(--base_c);
text-indent: -9999px;
}
#pagetop a:before {
content: "";
position: absolute;
left: 50%;
top: 50%;
width: var(--size_40);
aspect-ratio: 50 / 50;
object-fit: cover;
transform: translate(-50%,-50%);
background: var(--top_arrow_w);
}
/* pagetop end */

/* contact */
#wrap .contact_area {
padding-top: 0;
}
#wrap .contact_area .area_in {
gap: var(--size_30);
}
.contact_btn {
position: relative;
display: flex;
width: 100%;
height: var(--size_100);
max-width: 600px;
margin: 0 auto;
align-items: center;
justify-content: center;
font-weight: 500;
text-decoration: none;
text-align: center;
color: #fff;
font-size: var(--fontsize_30);
border-radius: 999px;
transition: .3s;
background: var(--btn_bg_c);
background: #222;
border: 3px solid #222;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.contact_btn span {
display: inline-block;
}
.contact_btn::before {
content: "";
display: block;
position: absolute;
right: 10px;
top: 50%;
width: var(--size_50);
height: var(--size_50);
background: var(--btn_icon_arrow_w);
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: 999px;
transition: .3s;
visibility: inherit;
}
.contact_btn:hover {
background: #fff;
color: #222;
}
.contact_btn:hover::before {
background: var(--btn_icon_arrow);
}
.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: var(--size_20);
}
	@media screen and (max-width: 768px) {
	.contact_btn {
	width: 100%;
	height: var(--size_80);
	}
	}
.contact_btn span b {
display: flex;
flex-flow: column;
align-items: center;
font-weight: 700;
}
.contact_btn span b * {
font-style: normal;
}
.contact_btn span b em {
font-size: 1.6rem;
}
.contact_btn span b small {
font-size: 1rem;
color: var(--main_c);
}
/* contact end */

/* title */
.base_tit {
display: flex;
flex-flow: column;
align-items: flex-start;
gap: var(--size_20);
}
.base_tit b {
display: flex;
align-items: center;
height: var(--size_26);
padding: 0 10px;
border: 2px solid #fff;
border-radius: 999px;
color: #fff;
font-size: var(--fontsize_14);
font-weight: 700;
line-height: 1;
letter-spacing: 0.08em;
}
.base_tit span {
display: block;
font-size: var(--fontsize_80);
font-weight: 900;
line-height: 0.85;
letter-spacing: 0.04em;
font-family: var(--font_en);
color: #fff;
}
/* title end */

/* visual */
#wrap #visual {
background: var(--main_c);
padding: 0;
padding-bottom: clamp(80px, 6.94vw, 100px);
margin-bottom: var(--size_30);
}
    @media screen and (min-width: 768px) {
    #wrap #visual .txt {
    position: relative;
    max-width: clamp(150px, 50vw, 600px);
    margin-top: calc(clamp(60px, 5.55vw, 80px) * -1);
    z-index: 10;
    }
    #wrap #visual .txt img {
    aspect-ratio: 1600 / 400;
    width: 100%;
    }
    }
    @media screen and (max-width: 768px) {
    #wrap #visual .txt {
    max-width: 70%;
    }
    }
    @media screen and (max-width: 600px) {
    #wrap #visual .txt {
    max-width: 100%;
    }
    }

#wrap #visual .area_in {
max-width: 1200px;
width: 100%;
height: auto;
background: url("../images/visual.png") no-repeat center center / contain;
padding: 0;
aspect-ratio: 1200 / 630;
object-fit: cover;
margin: 0 auto;
}
#visual .area_in img {
max-width: 100%;
width: 100%;
height: auto;
aspect-ratio: 1200 / 630;
object-fit: cover;
opacity: 0;
}
/*
	@media screen and (max-width: 1200px) {
    #wrap #visual .area_in {
    max-width: 1800px;
    background-image: url("../images/visual_1800.png");
    aspect-ratio: 1800 / 630;
    }
    #visual .area_in img {
    aspect-ratio: 1800 / 630;
    }
    }
*/
	@media screen and (min-width: 1200px) {
    #wrap #visual .area_in {
    max-width: 100%;
    background-image: url("../images/mv.webp");
    aspect-ratio: 3840 / 1536;
    }
    #visual .area_in img {
    aspect-ratio: 3840 / 1536;
    }
    }
	@media screen and (min-width: 768px) and (max-width: 860px) {
    }
	@media screen and (max-width: 768px) {
    #wrap #visual {
    padding-top: clamp(60px, 5.55vw, 80px);
    }
    #wrap #visual .area_in {
    background-image: url("../images/visual_sp.png");
    aspect-ratio: 800 / 800;
    }
    #visual .area_in img {
    aspect-ratio: 800 / 800;
	}
    }
/* visual end */

/* benefits_area * /
/* benefits_area end */

/* lead */
#lead_area {
}
#lead_area .area_in {
}
.lead_box {
display: grid;
gap: var(--box_space);
margin: 0 auto;
}
.lead_tit {
font-size: var(--fontsize_26);
font-weight: 600;
text-align: left;
line-height: 2;
}
.lead_txt {
font-weight: 600;
text-align: left;
line-height: 2;
}
    @media screen and (max-width: 500px) {
    }
/* lead end */

/* speakers_area * /
#speakers_area {
}
#speakers_area .area_in {
max-width: 2000px;
}
ul.photolist {
display: flex;
flex-flow: row wrap;
gap: 20px;
}
ul.photolist > li {
flex: 0 1 calc(25% - 15px);
}
.photolist > li > * {
display: flex;
flex-flow: column;
background: #fff;
gap: clamp(6px, 1.38vw, 10px);
border-radius: clamp(6px, 1.38vw, 10px);
height: 100%;
padding: clamp(20px, 2.08vw, 30px);
}
.photolist > li > * .layout {
flex: 1 0 0%;
display: flex;
flex-flow: column;
gap: clamp(6px, 1.38vw, 10px);
}
.photolist > li > * .photo_logo {
flex: 0 1 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.photolist > li > * .photo_logo img {
max-width: 70%;
max-height: 100%;
}
.photolist .photo {
overflow: hidden;
width: 70%;
border-radius: 50%;
aspect-ratio: 1 / 1;
object-fit: cover;
margin: 0 auto;
}
.photolist .photo img {
width: 100%;
height: 100%;
object-fit: cover;
}
.photolist > li > * .layout .info .txt {
text-align: center;
display: flex;
flex-flow: column;
}
.photolist > li > * .layout .info .txt .com {
font-size: .9rem;
color: #666;
order: 2;
}
.photolist > li > * .layout .info .txt .job {
font-size: .9rem;
color: #666;
order: 3;
}
.photolist > li > * .layout .info .txt .name {
font-weight: bold;
order: 1;
}
@media screen and (min-width: 1200px) {
ul.photolist > li {
flex: 0 1 calc(20% - 16px);
}
}
@media screen and (max-width: 900px) {
ul.photolist > li {
flex: 0 1 calc(33.33% - 14px);
}
}
@media screen and (max-width: 700px) {
ul.photolist > li {
flex: 0 1 calc(50% - 10px);
}
}
@media screen and (max-width: 500px) {
ul.photolist > li {
flex: 0 1 100%;
}
}
/* speakers_area end */



/* timetable_area */
#timetable_area {
}
#timetable_area .area_in {
}
.timetable_box {
display: flex;
flex-flow: row wrap;
width: 100%;
}
.timetable_txt {
}
.timetable_box > .timetable {
flex: 0 1 50%;
}
.timetable {
background: var(--MM_c2);
}
	@media screen and (max-width: 768px) {
    .timetable_box > .timetable {
    flex: 0 1 100%;
    }
	}
.timetable_head {
display: flex;
align-items: center;
justify-content: center;
height: var(--size_60);
font-size: var(--fontsize_26);
background: var(--MM_c);
color: #fff;
font-weight: bold;
font-family: var(--font_en);
}
.timetable.SS {
background: var(--SS_c2);
}
.timetable.MM {
border-radius: var(--box_corner) 0 0 var(--box_corner);
}
.timetable.MM .timetable_head {
border-radius: var(--box_corner) 0 0 0;
}
.timetable.SS {
border-radius: 0 var(--box_corner) var(--box_corner) 0;
}
.timetable.SS .timetable_head {
border-radius: 0 var(--box_corner) 0 0;
background: var(--SS_c);
}
	@media screen and (max-width: 768px) {
    .timetable_box {
    gap: var(--box_space);
    }
    .timetable.MM,
    .timetable.SS {
    border-radius: var(--box_corner);
    }
    .timetable.MM .timetable_head,
    .timetable.SS .timetable_head {
    border-radius: var(--box_corner) var(--box_corner) 0 0;
    }
    }
.timetable_body {
display: flex;
flex-flow: column;
gap: var(--box_space);
padding: var(--box_space);
width: 100%;
}
.program {
}
.program > .program_popup,
.program > .nolink {
display: flex;
flex-flow: column nowrap;
background: #fff;
border-radius: var(--box_corner);
padding: var(--box_space);
height: 100%;
}
.program > .nolink {
position: relative;
}
.program > .program_popup {
cursor: pointer;
transition: .3s;
position: relative;
}
	@media screen and (min-width: 768px) {
	.program > .program_popup:hover {
	transform: translate(0,-5px);
	opacity: 0.7;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
	}
	}
.program .program_in {
display: flex;
flex-flow: column wrap;
gap: var(--box_gap);
}
.program .data {
display: flex;
flex-flow: row wrap;
gap: var(--box_gap);
}
.program .data .day {
font-size: var(--fontsize_18);
font-weight: 600;
font-family: var(--font_en);
}
.program .data .i {
display: flex;
align-items: center;
height: var(--size_24);
padding: 0 10px;
border: 2px solid var(--MM_c);
border-radius: 999px;
color: var(--MM_c);
font-size: var(--fontsize_12);
font-weight: 700;
line-height: 1;
letter-spacing: 0.08em;
}
.program .SS .data .i {
color: var(--SS_c);
border-color: var(--SS_c);
}
.program .title {
font-size: var(--fontsize_30);
}
.timetable .photo img:nth-child(2) {
display: none;
}
.program .gaiyou {
font-weight: 600;
line-height: 1.6;
}
.timetable .gaiyou {
display: none;
}
.timetable .pop_next,
.timetable .pop_prev {
display: none;
}
.program_box_in .photo_logo img {
height: 48px;
width: auto;
}
	@media screen and (max-width: 768px) {
	.program_box_in .photo_logo {
	text-align: center;
	}
	}
.program .layout_box {
display: flex;
flex-flow: column;
gap: var(--box_gap);
}
.timetable .program .layout_box {
flex-flow: row wrap;
}
.program .layout_box .layout {
display: flex;
gap: var(--box_gap);
}
.timetable .program .layout_box .layout {
flex: 1 0 calc(50% - 10px);
}
	@media screen and (max-width: 1000px) {
    .timetable .program .layout_box .layout {
    flex: 1 0 100%;
	}
	}
.program .photo {
max-width: 60px;
}
.program .logo {
display: flex;
flex-flow: row wrap;
gap: var(--size_10) var(--size_50);
}
.program .logo img {
height: 50px;
}
.program .info {
display: flex;
flex-flow: column;
gap: var(--box_gap);
}
.program .txt {
font-weight: 600;
display: flex;
flex-flow: column;
}
.program .txt .com {
font-size: var(--fontsize_14);
}
.program .txt .nameicon {
display: inline-block;
padding: 2px 10px;
margin-bottom: 3px;
border-radius: 999px;
color: #fff;
background: var(--SS_c);
font-size: var(--fontsize_10);
font-weight: 700;
line-height: 1;
letter-spacing: 0.08em;
}
.program .txt .job {
font-size: var(--fontsize_14);
}
.program .txt .name {
font-size: var(--fontsize_18);
}
.program .txt .name small {
display: inline-block;
margin-left: 0.1rem;
}
.timetable .program .txt .com {
font-size: var(--fontsize_12);
}
.timetable .program .txt .job {
font-size: var(--fontsize_12);
}
.timetable .program .txt .name {
font-size: var(--fontsize_14);
}
.program .txt.prof {
font-weight: 600;
line-height: 1.6;
}
.timetable .txt.prof {
display: none;
}
/* timetable_area end */

/* 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 {
background: #fff;
padding: var(--box_space);
gap: var(--box_gap);
border-radius: var(--box_corner);
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%;
display: flex;
flex-flow: column;
}
.popup_box_in .layout {
border: 5px solid #EDEAED;
padding: var(--box_space);
border-radius: var(--box_corner);
}
.popup_box_in .logo {
display: none;
}
.program .popup_box_in .photo {
max-width: 150px;
flex: 0 1 150px;
text-align: center;
display: flex;
flex-flow: column;
align-items: center;
gap: var(--box_gap);
}
.program .popup_box_in .photo img:nth-child(2) {
max-height: 50px;
}
.program .popup_box_in .info {
flex: 1 0 0%;
align-self: center;
}
	@media screen and (max-width: 768px) {
    .program .popup_box_in .layout {
    flex-flow: column;
    }
    .program .popup_box_in .photo {
    align-self: center;
    }
	}
.program .popup_box_in .txt .nameicon {
font-size: var(--fontsize_12);
padding: 3px 10px;
margin-bottom: 5px;
}
/* popup end */


/* overview_area */
.overviewe_box {
width: 100%;
display: flex;
flex-flow: column;
gap: 20px;
border-radius: var(--box_corner);
background: #fff;
line-height: 1.6;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.0);
padding: var(--size_60);
text-align: left;
margin: 0 auto;
}
.overview_txt {
text-align: center;
}
	@media screen and (max-width: 768px) {
	.overview_txt {
	}
	.overviewe_box {
	padding: 30px;
	}
	}
	@media screen and (max-width: 420px) {
	#overview_area {
	}
	.overviewe_box {
	padding: 20px;
	}
	}
.dlist {
display: grid;
gap: 80px;
}
.dlist a {
color: var(--base_c);
}
.dlist dl {
position: relative;
display: grid;
grid-template-columns: 200px 1fr;
gap: 20px;
font-size: 1rem;
}
.dlist dl:not(:last-child)::before {
content: "";
display: block;
width: 100%;
height: 1px;
background: rgba(255,255,255,0.3);
background: rgba(0,0,0,0.1);
position: absolute;
left: 0;
bottom: -40px;
}
.dlist dl dt {
font-weight: bold;
line-height: 1.6;
}
.dlist dl dd {
line-height: 1.6;
}
.dlist dl dd .layout {
display: grid;
grid-template-columns: 1fr calc(50% - 10px);
gap: 20px;
}
.dlist dl dd .layout .image img {
border-radius: 5px;
}
	@media screen and (max-width: 768px) {
	.overviewe_box {
	padding: 30px;
	}
	.dlist {
	gap: 40px;
	}
	.dlist dl {
	grid-template-columns: auto;
	gap: 10px;
	}
	.dlist dl:not(:last-child)::before {
	bottom: -20px;
	}
	.dlist dl dd .layout {
	grid-template-columns: auto;
	}
	.dlist dl dd .layout .image {
	text-align: center;
	}
	.dlist dl dd .layout .image img {
	width: 100%;
	max-width: 400px;
	}
	}
	@media screen and (max-width: 420px) {
	.overviewe_box {
	padding: 20px;
	}
	.dlist {
	}
	.dlist .txt_head {
	margin: 0 0 20px;
	}
	}
#overview_area + .contact_area {
}
/* overview_area end */

/* sponsor_area */
#sponsor_area {
}
.sponsor_box {
width: 100%;
display: flex;
flex-flow: column;
border-radius: var(--box_corner);
background: #fff;
padding: var(--size_60);
gap: var(--box_space);
}
	@media screen and (max-width: 768px) {
	}
.sponsor_txt {
text-align: center;
}
.logolist {
display: flex;
flex-flow: column;
justify-content: center;
gap: var(--size_50);
}
.logolist > ul {
justify-content: center;
display: flex;
flex-flow: row wrap;
gap: var(--size_20) var(--size_50);
margin: 0 auto;
}
.logolist .bar {
display: flex;
justify-content: center;
}
.logolist .bar > * {
display: flex;
align-items: center;
background: #E5C007;
border-radius: 999px;
padding: 0 var(--size_20);
height: var(--size_40);
font-size: var(--fontsize_18);
color: #fff;
font-weight: 600;
}
.logolist.GG .bar > * {
}
.logolist.SS .bar > * {
background: #777577;
}
.logolist.BB .bar > * {
background: #AF8550;
}
.logolist.GG img {
max-height: 80px;
}
.logolist.SS ul {
max-width: 640px;
}
.logolist.SS img {
max-height: 60px;
}
.logolist.BB img {
max-height: 40px;
}
	@media screen and (max-width: 1000px) {
    .logolist > ul li {
    }
    }
	@media screen and (max-width: 768px) {
	.logolist > ul li {
	}
	}
	@media screen and (max-width: 600px) {
	.logolist > ul li {
	flex: 1 0 100%;
    text-align: center;
	}
	}
/* sponsor_area end */

:root {
/*--font_en:'Noto Sans JP', sans-serif;
--font_en:'Inter', 'Noto Sans JP', sans-serif;*/
--font_en:'Poppins', 'Noto Sans JP', sans-serif;

--txt_c: #000;
--base_c: #000;
--main_c: #00D1FF;
--btn_bg_c: linear-gradient(to right, var(--main_c), var(--main_c));

--MM_c: #FF6EA9;
--MM_c2: #FFCEE8;
--SS_c: #FF9D07;
--SS_c2: #FEE1C9;

--fontsize_80: clamp(40px, 5.55vw, 80px);
--fontsize_30: clamp(20px, 2.08vw, 30px);
--fontsize_26: clamp(18px, 1.80vw, 26px);
--fontsize_20: clamp(16px, 1.80vw, 20px);
--fontsize_18: clamp(14px, 1.38vw, 18px);
--fontsize_base: clamp(13px, 1.38vw, 16px);
--fontsize_14: clamp(12px, 1.11vw, 14px);
--fontsize_12: clamp(10px, 1vw, 12px);
--fontsize_10: clamp(6px, 0.9vw, 10px);

--size_100: clamp(80px, 6.94vw, 100px);
--size_80: clamp(60px, 5.55vw, 80px);
--size_60: clamp(40px, 4.16vw, 60px);
--size_50: clamp(30px, 3.47vw, 50px);
--size_40: clamp(20px, 2.77vw, 40px);
--size_30: clamp(15px, 2.08vw, 30px);
--size_26: clamp(20px, 1.80vw, 26px);
--size_20: clamp(12px, 1.38vw, 20px);
--size_16: clamp(10px, 1.38vw, 16px);
--size_10: clamp(8px, 1.11vw, 10px);

--area_space: var(--size_50);
--box_space: var(--size_30);
--box_gap: var(--size_20);
--box_gap: var(--size_20);
--box_corner: var(--size_16);



/* bold arrow * /
--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;
/* nomal arrow */
--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="%23222"  /%3E%3C/svg%3E') no-repeat center / contain;
--btn_icon_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;

--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="%23172037" /%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="%23172037"  /%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;

｝

/* css end */