@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: 16px;
line-height: 1.3;
}
body {
padding: 0;
margin: 0;
background: #fff;
color: #222;
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_c);
}
/* reset end */

/* wrap */
	@media screen and (max-width: 768px) {
	html {
	font-size: 14px;
	}
	}
#wrap {
min-width: 320px;
padding-top: 80px;
overflow: hidden;
/*
background: url("../images/visual_bg.jpg") repeat-x center top / 100% auto #fff;
background-attachment: fixed;
*/
background: #fff;
}
	@media screen and (max-width: 1200px) {
	/*
	#wrap {
	background-size: auto 100%;
	}
	}
	*/
	}
	@media screen and (max-width: 768px) {
	#wrap {
	/*
    background-image: url("../images/visual_bg_sp.jpg");
	*/
	background: none;
	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: 50px 0;
}
	@media screen and (max-width: 768px) {
	#wrap .area {
	padding: 30px 0;
	}
	}
#wrap .area_in {
display: grid;
row-gap: 50px;
position: relative;
clear: both;
margin: 0 auto;
padding: 0 20px;
width: 100%;
max-width: 1040px;
}
.pc {
display: block;
}
.sp {
display: none;
}
	@media screen and (max-width: 768px) {
	#wrap .area_in {
	row-gap: 30px;
	}
	.pc {
	display: none;
	}
	.sp {
	display: block;
	}
	}
.contents.type1 {
position: relative;
background: linear-gradient(to bottom, rgba(255,255,255,0.0), rgba(255,255,255,0.0));
background: rgba(255,255,255,0.5);
background: none;
}
.contents.type1 .contact_area {
background: none;
}
.contents.type2 {
background: #fff;
}
.contents.type3 {
background: #fff;
}
/* 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;
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 {
max-height: inherit;
height: auto;
height: 35px;
}
	@media screen and (max-width: 768px) {
	#header {
	height: 60px;
	}
	#header .area_in {
	padding-left: 0;
	padding-right: 50px;
	}
	}
	@media screen and (min-width: 768px) {
	#header .logo.tech img {
	height: 50px;
	}
	}
	@media screen and (max-width: 768px) {
	#header .logo.tech img {
	height: 40px;
	}
	}
/* 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: 0;
border: 2px solid #fff;
padding: 5px;
font-weight: 600;
}
	@media screen and (min-width: 768px) {
	#button {
	flex: 0 1 150px;
	flex: 0 1 180px;
	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;
background: #F0F0F0;
padding: 0!important;
}
	@media screen and (min-width: 2000px) {
	#visual {
	background: linear-gradient(to right, #444 0%, #444 49%, #f4f4f4 50%, #f4f4f4 100%);
	}
	}
#visual .area_in {
justify-content: center;
background: url("../images/visual.png") no-repeat center top / 100% auto;
height: 630px;
width: 1200px;
max-width: 100%;
padding: 0;
}
#visual .area_in img {
opacity: 0;
height: 630px;
width: 1200px;
max-width: 100%;
}
	@media screen and (min-width: 2000px) {
	#visual .area_in {
	}
	#visual .area_in,
	#visual .area_in img {
	height: calc(100vw * (630 / 2000));
	width: 100%;
	}
	}
	@media screen and (min-width: 1200px) {
	#visual .area_in {
	background-image: url("../images/visual_2000.png");
	background-size: auto 100%;
	}
	#visual .area_in,
	#visual .area_in img {
	height: 630px;
	width: 100%;
	}
	}
	@media screen and (min-width: 768px) and (max-width: 1200px) {
	#visual {
	background: none;
	background: #F0F0F0;
	}
	#visual .area_in,
	#visual .area_in img {
	max-width: 100%;
	width: 100%;
	height: calc(100vw * (630 / 1200));
	height: calc(100vw * (620 / 1200));
	}
	}
	@media screen and (max-width: 768px) {
	#visual {
/*	background: url("../images/visual_bg_sp.jpg") repeat center top / 100% auto;*/
	background: none;
	background: #F0F0F0;
	}
	#visual .area_in,
	#visual .area_in img {
	max-width: 100%;
	width: 100%;
	height: calc(100vw * (630 / 800));
	height: calc(100vw * (610 / 800));
	}
	#visual .area_in {
	background-image:  url("../images/visual_sp.png");
	}

	/*
	@media screen and (max-width: 768px) {
	#visual .area_in,
	#visual .area_in img {
	width: 100%;
	max-width: 100%;
	height: calc(100vw * (800 / 1200));
	height: calc(100vw * (630 / 1200));
	}*/
	#visual .area_in img {
	opacity: 0;
	}
	}
#visual + .contact_area {
padding-bottom: 0;
}
/* visual end */

#wrap #campaign_area {
position: relative;
display: flex;
justify-content: center;
align-items: center;
padding: 0;
width: 100%;
background: url(../images/bg_present_kira.svg) no-repeat center / cover #06A890;
}
#campaign_area::before {
content: "";
display: block;
width: 100%;
height: 50px;
position: absolute;
left: 0;
top: 0;
z-index: 1;
background: url(../images/bg_present_pattern_top.svg) repeat-x bottom center / auto 80px;
}
#campaign_area::after {
content: "";
display: block;
width: 100%;
height: 50px;
position: absolute;
left: 0;
bottom: 0;
z-index: 1;
background: url(../images/bg_present_pattern_bottom.svg) repeat-x top center / auto 80px;
}
.campain_img {
position: relative;
text-align: center;
z-index: 2;
}
/* footer */
#footer {
padding: 50px 0;
background: var(--footer_bg_c);
color: var(--footer_txt_c);
}
#footer .area_in {
display: grid;
gap: 20px;
}
.company_logo {
padding: 30px;
text-align: center;
max-width: 260px;
margin: 0 auto;
}
#footer .text {
text-align: center;
}
#footer .copy {
text-align: center;
font-size: 0.9rem;
}
#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: rgba(255,255,255,0.1);
position: absolute;
right: -20px;
top: 50%;
transform: translate(0,-50%);
}
#nav li a {
display: inline-block;
text-decoration: none;
color: var(--footer_link_c);
}
	@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 + .flogo {
padding-top: 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 */

/* lead */
#wrap #lead_area {
position: relative;
text-align: center;
background: url("../images/bg_keynote_1.svg") no-repeat right top / 40% auto, url("../images/bg_keynote_2.svg") no-repeat left bottom / 40% auto, #F0F0F0;
padding-bottom: calc(100vw * (400 / 2000) + 50px);
}
#lead_area::before {
display: block;
position: absolute;
left: 0;
bottom: -1px;
content: "";
background: url("../images/lead_bg.png") no-repeat bottom center / 100% auto;
width: 100%;
height: calc(100vw * (400 / 2000));
}
.lead_box {
display: flex;
flex-flow: column;
align-items: center;
gap: 20px;
}
.lead_tit {
font-family: var(--font_en);
text-align: center;
font-weight: bold;
font-size: 1.5rem;
}
.lead_txt {
text-align: center;
max-width: 900px;
margin: 0 auto;
line-height: 1.6;
font-size: 1.2rem;
font-family: var(--font_en);
}

	@media screen and (max-width: 768px) {
	.lead_txt {
	font-size: 100%;
	}
	}
/* lead end */


/* contact */
.contact_area {
background: var(--contact_bg_c);
}
.contact_btn {
position: relative;
display: flex;
width: 100%;
height: 100px;
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: 0;
border: 2px solid #fff;
transition: .3s;
background: var(--btn_bg_c);
box-shadow: 0 0 10px rgba(0,0,0,0.0);
}
.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: 0;
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;
}
	@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 {
	border-radius: 40px;
	border-radius: 0;
	}
	}
	@media screen and (max-width: 520px) {
	.contact_btn {
	height: 60px;
	font-size: 1.3rem;
	}
	.contact_btn::before {
	width: 30px;
	height: 30px;
	}
	.contact_btn::after {
	border-radius: 30px;
	border-radius: 0;
	}
	}
/* contact end */

/* title */
.base_tit {
position: relative;
text-align: center;
display: flex;
flex-flow: column;
align-items: center;
gap: 10px;
}
.base_tit::before {
content: "";
position: relative;
background: url("../images/icon_title.svg") no-repeat center / contain;
display: block;
width: 88px;
height: 49px;
order: 3;
margin-top: 10px;
}
.base_tit b {
position: relative;
display: block;
font-weight: 600;
font-size: 1.1rem;
letter-spacing: 0.5rem;
color: #fff;
order: 2;
}
.base_tit b::before,
.base_tit b::after {
content: "";
background: var(--main_c);
display: block;
position: absolute;
margin: 0 1rem;
width: 1rem;
height: 1px;
top: 50%;
}
.base_tit b::before {
left: 100%;
}
.base_tit b::after {
right: 100%;
}
.base_tit span {
display: block;
font-family: var(--font_en);
font-weight: 600;
font-size: 4rem;
color: #fff;
order: 1;
}
.base_tit span::first-letter {
color: var(--main_c);
}
	@media screen and (max-width: 768px) {
	.base_tit {
	margin-bottom: 30px;
	}
	.base_tit b {
	font-size: 130%;
	}
	.base_tit span {
	font-size: 110%;
	}
	}
/* title 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);
}
.mfp-arrow:before,
.mfp-arrow:after {
display: none;
}
.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: 10px;
display: grid;
gap: 10px;
}
	@media screen and (max-width: 768px) {
	.popup_box_in {
	padding: 20px;
	}
	}

.popup_box_in .date {
display: flex;
flex-flow: row wrap;
column-gap: 10px;
font-family: var(--font_en);
align-items: baseline;
}
.popup_box_in .date > span:nth-child(1) {
font-size: 1.2rem;
color: var(--main_c);
font-weight: bold;
}
.popup_box_in .date > span:nth-child(2) {
font-size: 1rem;
font-weight: bold;
}
.popup_box_in .i {
display: inline-block;
background: #333;
margin-bottom: 10px;
padding: 3px 10px;
font-size: 1rem;
color: #fff;
font-family: var(--font_en);
margin-bottom: 5px;
}
.popup_box_in .data {
background: var(--main_c);
color: #fff;
justify-self: flex-start;
display: flex;
gap: 10px;
padding: 5px 10px;
}
.popup_box_in .title {
display: flex;
flex-flow: column;
align-items: flex-start;
gap: 5px;
}
.popup_box_in .title .i {
font-size: 1rem;
font-weight: 500;
border-radius: 4px;
padding: 4px 10px 4px 10px;
border: 1px solid #000;
line-height: 1;
}
.popup_box_in .title b {
display: block;
font-weight: 600;
font-size: 1.5rem;
}
.popup_box_in .tag {
display: flex;
flex-flow: row wrap;
gap: 10px;
}
.popup_box_in .tag * {
display: inline-block;
font-size: 0.8rem;
font-weight: 700;
line-height: 1.4444444444;
padding: 4px 18px 3px 18px;
border: 1px solid #053A5D;
border-radius: 100rem;
color: #053A5D;
}
.popup_box_in .txt.gaiyou {
padding-bottom: 10px;
line-height: 1.6;
padding: 20px;
background: #f4f4f4;
}
.popup_box_in .lo img {
width: auto;
height: 40px;
}
	@media screen and (max-width: 768px) {
	.popup_box_in .lo {
	text-align: center;
	}
	}
.popup_box_in .layout_box {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 20px;
padding-top: 10px;
}
.popup_box_in .layout {
display: flex;
gap: 20px;
}
.popup_box_in .layout .photo {
text-align: center;
flex: 0 1 200px;
}
.popup_box_in .layout .photo img {
flex: 1 0 0%;
border-radius: 0;
max-width: 200px;
}
.popup_box_in .layout .info {
display: flex;
flex-flow: column nowrap;
gap: 20px;
}
.popup_box_in .layout .info .lay {
display: flex;
flex-flow: column;
gap: 10px;
}
.popup_box_in .layout .info .txt:not(.prof) {
display: flex;
flex-flow: column nowrap;
line-height: 1.3;
gap: 5px;
}
.popup_box_in .com {
font-size: 1rem;
color: #333;
}
.popup_box_in .com a {
color: #333;
}
.popup_box_in .job {
color: #333;
font-size: 1rem;
}
.popup_box_in .name {
font-size: 1.5rem;
font-weight: bold;
}
.popup_box_in .txt.prof {
font-size: 0.9rem;
}
	@media screen and (max-width: 768px) {
	.popup_box_in .layout_box {
	grid-template-columns: auto;
	gap: 40px;
	}
	.popup_box_in .layout {
	position: relative;
	flex-flow: column nowrap;
	}
	.popup_box_in .layout + .layout::before {
	content: "";
	position: absolute;
	left: 0;
	top: -20px;
	display: block;
	width: 100%;
	height: 1px;
	background: #ddd;
	}
	.popup_box_in .layout .photo {
	flex: 1 0 0%;
	}
	.popup_box_in .layout .photo img {
	flex: 1 0 0%;
	border-radius: 0;
	max-width: 200px;
	}
	}
/* popup end */


/* popup_box * /
.mfp-content {
height: 100%;
}
.popup_box {
display: flex;
align-items: center;
height: 100%;
}
.popup_box_in {
margin: 60px 10px 10px 10px;
background: #fff;
border-radius: 0px;
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;
font-size: 120%;
border-radius: 10px;
}
.popup_box_in {
background: #fff;
border-radius: 5px;
}
.popup_box_in.program .layout .photo {
flex: 0 1 250px;
}
@media screen and (max-width: 768px) {
.popup_box_in.program .layout {
flex-flow: column nowrap;
}
.popup_box_in.program .layout .photo {
text-align: center;
flex: 1 0 0%;
}
.popup_box_in.program .layout .info {
padding: 20px 0 0 0;
}
}

.popup_box.program .ico b {
display: none;
}
.program_table .program .ico b {
transform: translate(10px,-10px);
}


.popup_box.program .lo img {
height: 60px;
width: auto;
}
.popup_box.program .date > * {
font-family: "poppins";
font-weight: normal;
font-size: 120%;
}
.popup_box.program .data {
background: #08CDC1;
padding: 10px 20px;
margin-bottom: 10px;
}
.popup_box.program .data > * {
font-weight: normal;
}
.popup_box.program .data > b {
color: #fff;
display: inline-block;
margin-right: 10px;
}
.popup_box.program.D2 .data {
background: #EE7D7D;
}
/* popup_box end */

/* program */

/* program end */

/* timetable_area */
#timetable_area {
background: url("../images/bg_timetable.svg") top center / 100rem auto repeat, #F5F5F5;;
}
#timetable_area .base_tit span,
#timetable_area .base_tit b {
color: #333;
}
.timetable_box {
display: flex;
flex-flow: column;
gap: 20px;
}

.timetable_box .contact_btn_wrap {
padding: 50px 0;
}

.program_nav {
display: flex;
flex-flow: row wrap;
justify-content: center;
margin: 0 auto;
width: 100%;
max-width: 600px;
gap: 10px 20px;
}
.program_nav li {
flex: 0 1 calc(50% - 10px);
}
.program_nav li a {
text-decoration: none;
background: #393939;
color: #fff;
display: flex;
width: 100%;
height: 50px;
border-radius: 25px;
border: 3px solid var(--sub_c);
align-items: center;
justify-content: center;
font-family: var(--font_en);
transition: .3s;
}
.program_nav li a:hover {
opacity: 0.7;
}
.program_nav li a b {
display: flex;
gap: 5px;
align-items: baseline;
}
.program_nav li a b span:nth-child(1) {
font-size: 1.1rem;
color: var(--sub_c2);
}
.program_nav li a b span:nth-child(2) {
font-size: 1.1rem;
}
.program_nav li a b span:nth-child(3) {
font-size: 0.8rem;
}
	@media screen and (max-width: 768px) {
	.program_nav {
	flex-flow: column wrap;
	}
	}
.program_box {
display: flex;
flex-flow: column;
gap: 20px;
}
.program_table_head {
text-align: center;
color: #333;
font-family: var(--font_en);
display: flex;
justify-content: center;
}
.program_table_head > b {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: baseline;
gap: 0 10px;
background: url("../images/decoration_timetable_headline_1.svg") no-repeat left center / auto 50px, url("../images/decoration_timetable_headline_2.svg") no-repeat right center / auto 50px;
padding: 0 70px;
}
.program_table_head > b > span:nth-child(1) {
font-size: 3rem;
color: var(--main_c);
}
.program_table_head > b > span:nth-child(2) {
font-size: 3rem;
}
.program_table_head > b > span:nth-child(3) {
font-size: 1.5rem;
}
.program_table_head > b > span:nth-child(4) {
font-size: 1.5rem;
}
	@media screen and (max-width: 768px) {
	}
	@media screen and (max-width: 520px) {
	.program_table_head > b > span:nth-child(1) {
	font-size: 2rem;
	}
	.program_table_head > b > span:nth-child(2) {
	font-size: 2rem;
	}
	}
.program_table {
display: flex;
flex-flow: column;
gap: 20px;
}
.program_table > dl {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
gap: 20px;
}
.program_table > dl dt {
flex: 1 0 100%;
line-height: 1;
font-size: 1.3rem;
font-weight: bold;
text-align: center;
font-family: var(--font_en);
color: var(--main_c);
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 10px;
align-items: center;
letter-spacing: 0.1rem;
}
.program_table > dl dt::before,
.program_table > dl dt::after {
content: "";
display: block;
height: 2px;
border-radius: 1px;
background: #C2C2C2;
}
.program_table > dl dt > * {
display: block;
}
.program_table > dl dd {
flex: 1 0 20%;
}
.program_table > dl.col1 dd {
flex: 0 1 100%;
}
.program_table > dl.col2 dd {
flex: 0 1 calc(50% - 10px);
}
.program_table > dl dd > *.popup,
.program_table > dl dd > *.nolink {
display: flex;
flex-flow: row nowrap;
padding: 0;
height: 100%;
border-radius: 0;
background: #333;
gap: 20px;
}
.program_table > dl dd > *.popup {
cursor: pointer;
transition: .3s;
}
.program_table > dl dd > *.popup:hover {
transform: translate(0,-10px);
opacity: 0.7;
}
.program_table > dl.col2 dd > *.popup {
flex-flow: column nowrap;
}
.program_table > dl dd > *.nolink {
background: none;
}
.program_table .date {
display: none;
}
.program_table dd .data {
flex: 0 1 150px;
background: url("../images/decoration_timetable_category_2.svg") no-repeat left top / 24px auto, url("../images/decoration_timetable_category_1.svg") no-repeat right bottom / 24px auto, var(--main_c);
padding: 10px 20px;
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
color: #fff;
}
.program_table dd .data b {
font-weight: normal;
font-family: var(--font_en);
}
.program_table dl.col2 dd .data {
flex: 0 1 0%;
}
.program_table .i {
display: inline-block;
background: #000;
margin-bottom: 10px;
padding: 3px 10px;
font-size: 1rem;
color: var(--sub_c2);
font-family: var(--font_en);
margin-bottom: 5px;
}
.program_table > dl dd > *.nolink .title {
text-align: center;
color: #333;
}
.program_table dd .title {
flex: 1 0 0%;
width: 100%;
color: #fff;
align-self: center;
}
.program_table .title b {
font-weight: normal;
display: block;
}
.program_table .title > b > span {
display: inline-block;
font-size: 0.9rem;
}
.program_table .title > b > b {
font-size: 1.4rem;
display: block;
margin-top: 5px;
}
.program_table dl.col2 dd .title {
width: 100%;
padding: 0 20px;
}
.program_table .txt.gaiyou {
display: none;
}
.program_table .layout_box {
padding: 10px;
flex: 0 1 40%;
display: flex;
flex-flow: column;
gap: 10px;
}
.program_table .layout_box .layout {
background: #fff;
display: flex;
flex-flow: row wrap;
}
.program.col1 .layout {
flex: 1 0 100%;
}
.program_table .layout .photo {
flex: 0 1 120px;
background: #333;
}
.program_table .layout .info {
flex: 1 0 0%;
padding: 10px;
}
#wrap .program_table .lo img {
width: auto;
height: 30px;
}
.program_table .txt {
display: flex;
flex-flow: column wrap;
align-items: flex-start;
justify-content: center;
font-weight: 500;
}
.program_table .txt.prof {
display: none;
}
.program_table .name {
display: block;
font-size: 1rem;
font-weight: bold;
}
.program_table .com {
color: #333;
font-size: 0.9rem;
}
.program_table .com a {
color: #333;
text-decoration: none;
}
.program_table .job {
display: none;
}
.program_table .txt.gaiyou {
display: none;
}
.program_txt {
margin-top: 30px;
}
	@media screen and (max-width: 768px) {
	.program_table > dl.col2 dd {
    flex: 0 1 100%;
}
	.program_table > dl dd > *.popup {
    flex-flow: column nowrap;
	}
.program_table dl dd .data {
    flex: 0 1 0%;
}
	.program_table dl dd .title {
    width: 100%;
    padding: 0 20px;
}
	}
/* program_table end */

/* speakers_area */
#wrap #speakers_area {
position: relative;
background: #333;
padding-bottom: calc(100vw * (350 / 2000) + 50px);
}
#speakers_area::before {
display: block;
position: absolute;
left: 0;
bottom: -1px;
content: "";
background: url("../images/speaker_bg.jpg") no-repeat bottom center / 100% auto;
width: 100%;
height: calc(100vw * (350 / 2000));
}
.photolist_box {
padding: 0 0 50px;
}
.photolist_box .tit {
color: #fff;
text-align: center;
font-size: 2.5rem;
font-weight: bold;
font-family: var(--font_en);
padding: 50px 0;
}
.photolist_box .tit em {
font-style: normal;
color: var(--sub_c2);
}
	@media screen and (max-width: 768px) {
	}
	@media screen and (max-width: 420px) {
	}
.photolist {
display: flex;
flex-flow: row wrap;
justify-content: center;
gap: 20px;
}
.photolist li {
flex: 0 1 calc(50% - 20px);
}
.photolist li > *.popup_prof,
.photolist li > *.link,
.photolist li > *.nolink,
.photolist li > *.popup {
transition: .3s;
position: relative;
cursor: pointer;
display: block;
padding: 0;
border-radius: 0px;
}
.photolist li > *:hover {
opacity: 0.6;
transform: translate(0,-10px);
}
.photolist li > *.nolink {
cursor: default;
}
.photolist li > *.nolink:hover {
opacity: 1;
transform: translate(0);
}
.photolist .layout {
padding-bottom: 10px;
display: block;
}
.photolist li > *:hover img {
opacity: 1;
}
.photolist li .photo {
position: relative;
text-align: center;
}
.photolist li .photo::before {
content: "";
display: block;
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: url("../images/decoration_keynote_1.svg") no-repeat center / contain;
opacity: 0.1;
}
.photolist.type1 li .photo::before {
transform: scale(1.1);
}
.photolist.type2 li .photo::before {
transform: translate(20%,20%);
}
.photolist.type1 li .photo img {
max-width: 400px;
position: relative;
z-index: 2;
}
.photolist.type2 li {
flex: 0 1 calc(33.33% - 14px);
}
.photolist.type2 li .photo img {
max-width: 200px;
}
.photolist img {
width: 100%;
height: auto;
transition: .3s;
border-radius: 50%;
}
.photolist .info {
display: flex;
flex-flow: column;
gap: 10px;
padding-top: 10px;
}
.photolist .txt {
display: flex;
flex-flow: column;
align-items: center;
justify-content: flex-start;
line-height: 1.6;
color: #fff;
}
.photolist .txt > * {
display: block;
text-align: center;
}
.photolist .txt .com,
.photolist .txt .job,
.photolist.txt .name {
margin: 0;
padding: 0;
}
.photolist .txt .job {
font-size: 0.8rem;
}
.photolist .txt .name {
font-size: 1.2rem;
font-weight: bold;
}
	@media screen and (max-width: 768px) {
	.photolist_box .tit {
	font-size: 2rem;
	}
	.photolist.type2 li {
	flex: 0 1 calc(50% - 20px);
	}
	}
	@media screen and (max-width: 520px) {
	.photolist_box .tit {
	font-size: 1.5rem;
	}
	.photolist.type1 li {
	flex: 0 1 100%;
	}
	.photolist.type2 li {
	flex: 0 1 100%;
	}
	}

/*
.photolist li {
}
.photolist li .photo {
max-width: 300px;
margin: 0 auto;
}
.photolist.type1 li {
flex: 0 1 30%;
}
.photolist.type1 li {
flex: 0 1 30%;
}
#speakers_area .tit b {
font-size: 200%;
display: block;
text-align: center;
color: #fff;
}
#speakers_area .bar span {
display: flex;
align-items: center;
}
#speakers_area .bar span b {
font-family: "poppins";
position: relative;
text-align: center;
font-size: 150%;
display: block;
color: #08CDC1;
flex: 0 1 100px;
font-weight: normal;
}
#speakers_area .bar span.D2 b {
color: #EE7D7D;
}
#speakers_area .bar span::before,
#speakers_area .bar span::after {
content: "";
display: block;
height: 0;
border-bottom: 1px dashed #fff;
width: 100%;
flex: 1 0 0%;
}
.photolist li .photo img {
border-radius: 50%;
border: 5px solid #333;
display: block;
}
.photolist .txt {
display: flex;
flex-flow: column nowrap;
align-items: center;
color: #fff;
text-align: center;
}
.photolist li.D1 .photo img {
border-color: #08CDC1;
}
.photolist li.D2 .photo img {
border-color: #EE7D7D;
}
.photolist .txt .name {
font-size: 150%;
font-weight: bold;
}
	@media screen and (max-width: 900px) {
	.photolist li {
	flex: 0 1 25%;
	}
	.photolist.type1 li {
	flex: 0 1 50%;
	}
	}
	@media screen and (max-width: 768px) {
	.photolist li {
	flex: 0 1 33.33%;
	}
	.photolist.type1 li {
	flex: 0 1 50%;
	}
	}
	@media screen and (max-width: 500px) {
	.photolist li {
	flex: 0 1 50%;
	}
	.photolist.type1 li {
	flex: 0 1 100%;
	}
	}
/* speakers_area end */

/* overview_area */
#overview_area {
background: #F5F5F5;
}
#overview_area .base_tit span,
#overview_area .base_tit b {
color: #333;
}
.overviewe_box {
}
	@media screen and (max-width: 768px) {
	.overview_txt {
	padding-top: 30px;
	}
	#overview_area {
	padding: 30px 0;
	}
	.overviewe_box {
	padding: 30px 0 60px;
	}
	}
	@media screen and (max-width: 420px) {
	#overview_area {
	padding: 20px 0;
	padding-bottom: 40px;
	}
	.overviewe_box {
	padding: 20px 20px 40px;
	}
	}
.dlist {
max-width: 700px;
margin: 0 auto;
}
.dlist dl {
display: flex;
width: 100%;
border-bottom: 1px solid rgba(0,0,0,0.3);
}
.dlist dl dt {
flex: 0 1 200px;
font-weight: bold;
position: relative;
padding: 40px 0;
vertical-align: middle;
text-align: left;
}
.dlist dl dd {
flex: 1 0 0%;
position: relative;
padding: 40px 0;
word-break: break-all;
}
.dlist a {
text-decoration: underline;
}
.dlist_txt {
text-align: center;
margin-top: 20px;
}
	@media screen and (max-width: 768px) {
	.dlist {
	padding: 0;
	}
	.dlist .txt_head {
	margin: 0 0 30px;
	}
	.dlist dl {
	display: block;
	padding: 0;
	}
	.dlist dl dt {
	padding: 20px 0;
	}
	.dlist dl dd {
	padding: 0 0 20px;
	}
	}
	@media screen and (max-width: 420px) {
	.dlist {
	}
	.dlist .txt_head {
	margin: 0 0 20px;
	}
	}
/* overview_area end */

/* sponsor_area */
#wrap #sponsor_area {
position: relative;
background: #fff;
padding-bottom: calc(100vw * (350 / 2000) + 50px);
}
#sponsor_area::before {
display: block;
position: absolute;
left: 0;
bottom: -1px;
content: "";
background: url("../images/sponsor_bg.jpg") no-repeat bottom center / 100% auto;
width: 100%;
height: calc(100vw * (350 / 2000));
}
#sponsor_area .base_tit span,
#sponsor_area .base_tit b {
color: #333;
}
.sponsor_box {
display: flex;
flex-flow: column;
gap: 30px;
}
.sponsor_box .txt {
text-align: center;
}
.sponsor_box .txt * {
font-family: var(--font_en);
font-size: 2rem;
font-weight: bold;
color: #333;
}
.sponsor_box .txt b {
color: #127566;
}
.logolist > ul {
display: flex;
flex-flow: row wrap;
justify-content: center;
margin: 0 auto;
gap: 20px;
}
.logolist > ul > * {
flex: 0 1 calc(20% - 16px);
text-align: center;
}
.logolist.type2 > ul > * {
flex: 0 1 calc(25% - 15px);
}
.logolist.col3 > ul > * {
flex: 0 1 33.33%;
}
.logolist.col4 > ul > * {
flex: 0 1 25%;
}
.logolist.col5 > ul > * {
flex: 0 1 20%;
}
.logolist.col6 > ul > * {
flex: 0 1 16.66%;
}
.logolist a {
display: block;
transition: all 0.2s linear;
}
.logolist a:hover {
opacity: 0.7;
}
.logolist img {
max-width: 100%;
width: auto%;
}
.logolist_txt {
text-align: right;
padding: 0 20px;
}
	@media screen and (max-width: 768px) {
	}
	@media screen and (max-width: 500px) {
	}
/* sponsor_area end */

/* faq_area */
#faq_area {
background: url(../images/faq.jpg);
}
.faq_box {
display: flex;
flex-flow: column;
gap: 40px;
}
.faq_box_in {
display: flex;
flex-flow: column;
gap: 40px;
}
	@media screen and (min-width: 768px) {
	}
.faq_tit {
text-align: center;
}
.faq_tit b {
color: #fff;
font-size: 1.5rem;
font-weight: normal;
font-family: var(--font_en);
}
.faq_list {
display: grid;
gap: 20px;
color: #fff;
max-width: 700px;
width: 100%;
margin: 0 auto;
}
.faq_list li {
background: #333;
border-radius: 10px;
border: 1px solid #A3A3A3;
}
.faq_list li > * {
position: relative;
display: grid;
grid-template-columns: auto 1fr;
row-gap: 20px;
padding: 0;
}
.faq_list li > * .ico {
font-size: 1.5rem;
padding: 0 20px;
color: #B89E2E;
font-family: var(--font_en);
}
.faq_list li > * .txt {
font-size: 1.1rem;
padding: 15px 10px 15px 0;
line-height: 1.6;
}
.faq_list li > * .txt .anno {
font-size: 0.9rem;
line-height: 1.3;
margin-top: 0.5rem;
display: inline-block;
}
.faq_list li > *.q {
padding-right: 50px;
cursor: pointer;
}
.faq_list li > *.q::before,
.faq_list li > *.q::after {
content: "";
display: block;
width: 15px;
height: 2px;
position: absolute;
right: 20px;
top: calc(50% - 1px);
transform: translate(0,0);
background: #ccc;
transition: .3s;
}
.faq_list li > *.q:hover {
opacity: 0.7;
}
.faq_list li > *.q.active:::before {
}
.faq_list li > *.q::after {
transform: rotate(-90deg);
}
.faq_list li > *.q.active::after {
transform: rotate(0);
}
.faq_list li > *.q.active:hover::after {
}
.faq_list li > *.q .ico {
align-self: center;
}
.faq_list li > *.a {
display: none;
margin: 0 20px;
border-top: 1px solid #aaa;
}
.faq_list li > *.a .ico {
display: none;
}
	@media screen and (max-width: 768px) {
	#faq_area {
	padding: 30px 0;
	}
	.faq_box {
	gap: 30px;
	grid-template-columns: auto;
	}
	}
	@media screen and (max-width: 520px) {
	#faq_area {
	padding: 20px 0;
	}
	.faq_box {
	gap: 20px;
	}
	}
/* faq_area end */

:root {
/*--font_en: 'Noto Sans JP', sans-serif;*/
--font_en: 'Noto Serif JP', serif;

--wrap_bg_c: #fff;
--visual_bg_c: #fff;
--main_c: #0D907C;
--main_c2: #00EBC0;
--sub_c: #B89E2E;
--sub_c2: #DDC768;
--link_c: var(--main_c);

--contact_bg_c: rgba(0, 0, 0, 0.0);
--contact_bg_c: #333;
--btn_bg_c: linear-gradient(to right, var(--sub_c), var(--sub_c));
--btn_txt_c: #fff;
/* 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="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;

--menu_txt_c: #fff;
--menu_txt_hover_c: var(--sub_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: #333;
--footer_txt_c: #fff;
--footer_link_c: #fff;
--pagetop_bg_C: rgba(0,0,0,0.9);

--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 */