﻿@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_color);
}
/* 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 / auto 100%, var(--base2_c);
background-attachment: fixed;
animation: bg 300s infinite linear;
}
	@media screen and (min-width:1400px) and ( max-width:1700px) {
	#wrap {
	background-size: 1500px auto;
	}
	}
	@media screen and (min-width:768px) and ( max-width:1400px) {
	#wrap {
	background-size: auto 100%;
	background-size: 1500px auto;
	}
	}
	@media screen and (max-width: 768px) {
	#wrap {
	background-size: 100px auto;
	background-size: 1000px auto;
	animation: bg_sp 300s infinite linear;
	}
	}
@keyframes bg {
0% {
background-position: 0 0;
}
100% {
background-position: -3000px 0;
background-position: -1500x 0;
}
}
@keyframes bg_sp {
0% {
background-position: 0 0;
}
100% {
background-position: -1500px 0;
}
}
#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) {
	.pc {
	display: none;
	}
	.sp {
	display: block;
	}
	}
.contents.type1 {
background: rgba(255,255,255,0.5);
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
}
.contents.type4,
.contents.type2 {
overflow: hidden;
background: url("../images/bg01.jpg") repeat-x center top / auto 100%, var(--base_c);
background-attachment: fixed;
animation: bg 300s infinite linear;
}
	@media screen and (min-width:1400px) and ( max-width:1700px) {
	.contents.type4,
	.contents.type2 {
	background-size: 1500px auto;
	}
	}
	@media screen and (min-width:768px) and ( max-width:1400px) {
	.contents.type4,
	.contents.type2 {
	background-size: auto 100%;
	background-size: 1500px auto;
	}
	}
	@media screen and (max-width: 768px) {
	.contents.type4,
	.contents.type2 {
	background-size: 100px auto;
	background-size: 1000px auto;
	animation: bg_sp 300s infinite linear;
	}
	}

.contents.type3 {
background: rgba(255,255,255,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: var(--header_bg_c);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
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 200px;
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: 80px;
}
#header .logo.tech img {
height: 50px;
}
	@media screen and (max-width: 768px) {
	#header {
	height: 60px;
	}
	#header .area_in {
	padding-left: 0;
	padding-right: 50px;
	}
	#header .logo img {
	height: 40px;
	height: 60px;
	}
	#header .logo.tech img {
	height: 40px;
	}
	}
	@media screen and (max-width: 500px) {
	}
/* 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;
	gap: 5px 30px;
	}
	#menu ul.menu li a {
	width: 100%;
	height: 100%;
	padding: 0;
	color: var(--menu_txt_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);
	}
	}
@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: 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 ul.menu li a {
display: flex;
flex-flow: column;
}
#menu ul.menu li a em {
font-weight: normal;
font-style: normal;
font-family: var(--font_en);
color: var(--main_c);
font-size: 0.8rem;
letter-spacing: 0.05rem;
}
#menu ul.menu li a b {
font-weight: normal;
font-size: 1.1rem;
color: var(--menu_txt_c);
}
#menu ul.menu li a:hover em {
opacity: 0.5;
}
#menu ul.menu li a:hover,
#menu ul.menu li a:hover b {
color: var(--menu_txt_hover_c);
}
/* menu end */

/* visual */
#visual.area {
padding: 0;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
}
#wrap #visual .area_in {
background: url("../images/visual.png") no-repeat center / 100% auto;
height: 800px;
width: 1200px;
max-width: 1200px;
padding: 0;
}
#wrap #visual .area_in img {
opacity: 0;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
	#wrap #visual .area_in,
	#wrap #visual .area_in img {
	width: 100%;
	max-width: 100%;
	height: calc(100vw * (800 / 1200));
	}
}
@media screen and (max-width: 768px) {
	#wrap #visual .area_in {
	background-image: url("../images/visual_sp.png");
	}
	#wrap #visual .area_in,
	#wrap #visual .area_in img {
	width: 100%;
	max-width: 100%;
	height: calc(100vw * (600 / 800));
	}
}
/* visual end */

/* lead */
#lead_area {
text-align: center;
}
.lead_txt {
text-align: center;
max-width: 900px;
margin: 0 auto 20px;
line-height: 1.8;
font-size: 1.3rem;
font-weight: bold;
}
.lead_txt em {
font-style: normal;
display: block;
font-size: 150%;
font-weight: 600;
color: #222;
text-align: center;
line-height: 1.4;
}
/*
.lead_txt b {
background: var(--main_c);
display: inline-block;
color: #fff;
}
*/
.lead_txt b {
position: relative;
display: inline-block;
margin: 0 0.2rem;
font-weight: bold;
}
.lead_txt b::before {
display: block;
content: "";
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
height: calc(100% - 20%);
width: calc(100% + 3px);
z-index: -1;
background: rgba(91,167,255,0.4);
}

.lead_txt span {
font-size: 80%;
font-weight: 400;
line-height: 1.2;
}
	@media screen and (max-width: 768px) {
	.lead_txt {
	font-size: 100%;
	}
	}
.lead_img {
text-align: center;
margin-bottom: 20px;
}
/* lead end */

/* footer */
#footer {
padding: 50px 0;
background: var(--footer_bg_c);
}
#footer .area_in {
display: grid;
gap: 20px;
}
.flogo {
text-align: center;
}
.flogo img {
width: 250px;
}
#footer .text {
text-align: center;
color: var(--footer_txt_c);
}
#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;
    }
	}
#nav li a {
display: flex;
flex-flow: column;
align-items: center;
gap: 10px;
}
#nav li a em {
font-weight: normal;
font-style: normal;
font-family: var(--font_en);
color: var(--main_c);
font-size: 0.8rem;
letter-spacing: 0.05rem;
}
#nav li a b {
font-weight: normal;
font-size: 1.1rem;
color: var(--menu_txt_c);
}
#nav li a:hover em {
opacity: 0.5;
}
#nav li a:hover,
#nav li a:hover b {
color: var(--menu_txt_hover_c);
text-decoration: none;
}
/* 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 */

/* contact */
.contact_area {
background: var(--contact_bg_c);
}
.contact_btn_wrap {
display: flex;
flex-flow: column;
align-items: center;
gap: 20px;
}
.contact_btn_box {
display: block;
width: 100%;
}
.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: 10px;
border-radius: 50px;
transition: .3s;
background: var(--btn_bg_c);
box-shadow: 0 0 10px rgba(0,0,0,0.2);
box-shadow: none;
}
.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;
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;
	}
	}
	@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;
	}
	}
.contact_txt {
text-align: center;
color: #fff;
}
#timetable_area .contact_txt {
color: #000;
}
/* contact end */

/* title */

.base_tit {
display: flex;
flex-flow: column nowrap;
text-align: center;
text-align: center;
}
.base_tit b {
position: relative;
display: inline-block;
font-weight: 500;
font-size: 1.5rem;
padding-top: 10px;
color: #fff;
}
.base_tit em {
position: relative;
display: inline-block;
font-weight: 500;
font-size: 4rem;
font-style: normal;
font-family: var(--font_en);
color: #fff;
background: linear-gradient(to top, #fff 0%, var(--main_c) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.base_tit b::before {
position: absolute;
left: 50%;
top: 0;
transform: translate(-50%,0);
content: "";
display: block;
width: 300px;
height: 2px;
background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
z-index: 1;
}
	@media screen and (max-width: 768px) {
	.base_tit b {
	font-size: 150%;
	}
	.base_tit span {
	font-size: 200%;
	}
	}
/* title end */

/* program * /
.program .date {
display: flex;
flex-flow: row wrap;
padding: 0 0 10px;
margin-bottom: 20px;
border-bottom: 1px solid #222;
}
.program .s {
display: inline-block;
font-weight: 500;
padding: 5px 10px;
margin-right: 10px;
line-height: 1;
background: #222;
color: #fff;
font-size: 80%;
}
.program .i {
display: inline-block;
font-weight: 500;
padding: 5px 10px;
margin-right: 10px;
line-height: 1;
background: #222;
color: #fff;
font-size: 80%;
}
.program .d {
display: inline-block;
line-height: 1.4;
}
.program .d > * {
display: inline-block;
font-weight: bold;
font-style: normal;
margin-right: 10px;
}
.program .t {
display: inline-block;
font-weight: bold;
font-style: normal;
}
.program .title {
font-weight: 400;
line-height: 1.2;
padding: 0 0 20px 0;
}
.program .nolayout .title {
padding: 0;
}
.program .layout_box {
display: flex;
flex-flow: row wrap;
}
.program .layout {
display: flex;
flex: 1 0 100%;
}
.program .layout_box .layout + .layout {
padding-top: 20px;
margin-top: 20px;
border-top: 1px solid #ddd;
}
.program .layout .photo {
flex: 0 1 200px;
}
.program .layout .info {
flex: 1 0 0%;
}
.program .layout .photo + .info {
padding-left: 10px;
}
.program .txt {
display: flex;
flex-flow: column wrap;
align-items: flex-start;
justify-content: center;
font-weight: 400;
}
.program .txt.gaiyou {
padding: 20px;
margin-bottom: 20px;
background: #f2f2f2;
}
.program .txt.prof {
font-size: 80%;
margin-top: 20px;
}
.program .name {
display: block;
font-style: normal;
font-size: 110%;
font-weight: bold;
}
.program .com {
line-height: 1.3;
display: inline-block;
margin-right: 5px;
font-size: 90%;
}
.program .job {
line-height: 1.3;
display: inline-block;
margin-right: 5px;
font-size: 90%;
}
.program.col1 .layout {
flex: 1 0 50%;
}
@media screen and (min-width: 768px) {
.program.col1 .layout_box .layout:first-child + .layout {
padding-top: 0;
margin-top: 0;
border-top: none;
}
}
@media screen and (min-width:768px) and ( max-width:1100px) {
}
@media screen and (max-width: 768px) {
.program.col1 .layout {
flex: 1 0 100%;
}
}
/* program 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;
}
.mfp-close {
position: fixed!important;
top: 15px!important;
right: 15px!important;
width: 30px!important;
height: 30px!important;
opacity: 1!important;
text-indent: -9999px;
position: relative;
}
.mfp-close:before,
.mfp-close:after {
position: absolute;
left: 0;
top: 50%;
content: "";
width: 30px;
height: 2px;
background: #fff;
}
.mfp-close:before {
transform: rotate(45deg);
}
.mfp-close:after {
transform: rotate(-45deg);
}
.mfp-close:hover {
opacity: 0.7!important;
}
button.mfp-arrow.mfp-arrow-left {
background: url(../js/prev_w.png) no-repeat center center / cover;
width: 50px;
height: 50px;
}
button.mfp-arrow.mfp-arrow-right {
background: url(../js/next_w.png) no-repeat center center / cover;
width: 50px;
height: 50px;
}
/*
左右矢印を中央に寄せる
	@media screen and (min-width: 768px) {
	button.mfp-arrow.mfp-arrow-left {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-370px, -25px);
	}
	button.mfp-arrow.mfp-arrow-right {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(320px, -25px);
	}
	}
*/
/*	
.mfp-arrow:after,
.mfp-arrow:before {
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: url(../js/prev_w.png) no-repeat center center / cover;
}
.pop_next {
right: 10px;
background: url(../js/next_w.png) no-repeat center center / cover;
}
.pop_prev:hover,
.pop_next:hover {
opacity: 0.7;
}
button.mfp-arrow.mfp-arrow-left,
button.mfp-arrow.mfp-arrow-right {
display: none;
}
/* 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;
width: 100%;
min-height: 300px;
}
.popup_box_in {
}
.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 end */

/* timetable_area * /
#timetable_area {
padding: 50px 0;
}
.timetable_box {
padding-bottom: 50px;
}
.program_box {
}
	@media screen and (max-width: 768px) {
	#timetable_area {
	padding: 30px 0;
	}
	.timetable_box {
	padding-bottom: 30px;
	}
	}
	@media screen and (max-width: 420px) {
	#timetable_area {
	padding: 20px 0;
	}
	.timetable_box {
	padding-bottom: 20px;
	}
	}
/* timetable_area end */

/* program_nav * /
.program_nav {
display: flex;
flex-flow: row wrap;
justify-content: center;
padding-bottom: 0;
margin: 0 auto;
padding: 5px;
}
.program_nav li {
display: flex;
flex: 1 0 0%;
padding: 5px;
}
.program_nav li > * {
display: flex;
flex: 1 0 0%;
flex-flow: row wrap;
background: #fff;
text-decoration: none;
transition: 0.3s;
cursor: pointer;
padding: 10px;
box-shadow: 0 0 10px rgb(0,0,0,0.1);
color: #444;
}
	@media screen and (max-width: 768px) {
	.program_nav {
	flex-flow: column wrap;
	}
	.program_nav li {
	padding: 0 5px;
	}
	.program_nav li > * {
	width: 100%;
	padding: 10px;
	}
	}
.program_nav li > * > * {
display: inline-block;
font-weight: bold;
font-style: normal;
font-size: 100%;
padding: 5px;
}
.program_nav li > * > b {
margin-right: 10px;
}
.program_nav li > * > span {
}
.program_nav li > * > em {
font-style: normal;
display: block;
}
	@media screen and (max-width: 768px) {
	.program_nav li > * > span {
	margin-right: 10px;
	}
	.program_nav li > * > em {
	display: inline-block;
	margin: 0;
	}
	}
.program_nav li > *.active {
background: #444;
color: #fff;
}
.program_nav li > *:not(.active):hover {
background: #444;
color: #fff;
}
/* program_nav end */

/* timetable_area */
#timetable_area {
}
#timetable_area .area_in {
}
#timetable_area .base_tit b {
color: #000;
}
#timetable_area .base_tit em {
color: var(--base_c);
background: linear-gradient(to top, var(--base_c) 0%, var(--main_c) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#timetable_area .base_tit b::before {
background: linear-gradient(90deg, rgba(45,84,126, 0) 0%, rgba(45,84,126, 1) 50%, rgba(45,84,126, 0) 100%);
}

.program_table_txt {
text-align: right;
padding-bottom: 10px;
}

.program_table {
display: flex;
flex-flow: column;
gap: 30px;
}
.program_table > dl {
display: flex;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
box-shadow: 0 0 20px rgba(255,255,255,1);
}
.program_table > dl dt {
flex: 0 1 200px;
padding: 20px;
font-size: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-family: var(--font_en);
font-weight: normal;
background: var(--header_bg_c);
}
.program_table > dl dd {
flex: 1 0 0%;
}
	@media screen and (max-width: 768px) {
	.program_table > dl {
	flex-flow: column;
	}
	.program_table > dl dt {
	flex: 0 1 auto;
	}
	}
.program_table > dl dd > *.popup,
.program_table > dl dd > *.nolink {
display: flex;
flex-flow: column;
padding: 0;
height: 100%;
border-radius: 0;
background: var(--base2_c);
gap: 20px;
padding: 20px;
}
.program_table .layout .photo {
flex: 0 1 80px;
}
.program_table .layout_box .layout + .layout {
padding-top: 10px;
margin-top: 10px;
border: none;
}
.program_table .date {
}
.program_table .txt.prof {
}
.program_table > dl dd > *.popup {
cursor: pointer;
transition: .3s;
}
.program_table > dl dd > *.popup:hover {
transform: translate(0,-10px);
opacity: 0.7;
}


.program_table .layout .photo {
flex: 0 1 100px;
}
.program_table .layout {
align-items: center;
}
.program_table .layout .photo img {
width: 100%;
border-radius: 50%;
border-radius: 5px;
}


.program_table .title {
display: flex;
flex-flow: column;
align-items: flex-start;
gap: 5px;
}
.program_table .title b {
display: block;
font-weight: bold;
font-size: 1.3rem;
color: var(--base_c2);
}
.program_table .s {
display: inline-block;
text-align: center;
color: #fff;
background: var(--base_c2);
padding: 5px 10px;
border-radius: 5px;
font-weight: bold;
font-size: 0.9rem;
}
.program_table .txt.gaiyou {
}
.program_table .layout_box {
display: flex;
flex-flow: column;
gap: 20px;
}
.program_table .layout {
display: flex;
gap: 20px;
padding: 20px;
background: rgba(255,255,255,0.6);
border-radius: 10px;
}
.program_table .layout .info {
flex: 1 0 0%;
display: flex;
flex-flow: column;
gap: 10px;
}
.program_table .layout .txt.prof {
font-size: 0.9rem;
}
.program_table .layout .txt {
display: flex;
flex-flow: column;
}
.program .com {
font-size: 0.9rem;
order: 1;
font-weight: normal;
}
.program .job {
font-size: 0.9rem;
order: 2;
}
.program .name {
font-size: 1.2rem;
order: 3;
font-weight: bold;
}












/*.timetable_tit {
background: #000;
padding: 70px 0 30px;
}
	@media screen and (max-width: 768px) {
	.timetable_tit {
	padding: 40px 0 10px;
	}
	}
	* /
.program_table_head {
display: flex;
justify-content: space-between;
font-size: 130%;
padding: 0;
margin-bottom: 20px;
}
.program_table_head > b {
display: block;
text-align: center;
color: #FA4616;
background: #fff;
border: 2px solid #FA4616;
padding: 10px;
}
.program_table_head.col1 > b {
flex: 0 1 100%;
}
.program_table_head.col2 > b {
flex: 0 1 49%;
}
.program_table_head.col3 > b {
flex: 0 1 32%;
}
	@media screen and (max-width: 768px) {
	.program_table_head {
	font-size: 110%;
	display: none;
	}
	}
.program_table {
padding: 0;
border-radius: 0;
}
.program_table_txt {
margin: 0;
margin-bottom: 0;
font-size: 90%;
}
*/

/*
.program_table > dl.col2 dd {
flex: 0 1 49%;
}
.program_table > dl.col3 dd {
flex: 0 1 32%;
}
*/


/*
	@media screen and (max-width: 768px) {
	.popup_box.program .layout .photo img {
	max-width: 250px;
	}
	}
	@media screen and (max-width: 500px) {
	.popup_box.program .layout {
	flex-flow: column nowrap;
	align-items: center;
	}
	.popup_box.program .layout .photo {
	margin-bottom: 10px;
	}
	.popup_box.program .layout .info {
	width: 100%;
	}
	}
*/


/*
.popup_box.program .layout .photo {
flex: 0 1 160px;
}
.popup_box {
}
.popup_box_in {
border-radius: 0;
padding: 0;
}
.popup_box_in .date {
background: #FA4616;
color: #fff;
padding: 10px 20px;
}
.popup_box .layout {
align-items: center;
}


*/


/* program_table end */

/* program_table_head * /
.program_table_head {
padding: 30px 0;
font-size: 150%;
text-align: center;
}
.program_table_head > * {
text-align: center;
}
@media screen and (max-width: 768px) {
.program_table_head {
padding: 20px 0;
}
}
@media screen and (max-width: 420px) {
.program_table_head {
padding: 10px 0;
}
}
/* program_table_head end */

/* speakers_area * /
#speakers_area {
padding: 50px 0;
}
.photolist_box {
padding: 0 0 50px;
}
.photolist_box .bar {
position: relative;
margin-bottom: 20px;
padding-top: 20px;
padding-bottom: 10px;
color: #fff;
text-align: center;
font-size: 150%;
}
	@media screen and (max-width: 768px) {
	#speakers_area {
	padding: 30px 0;
	}
	.photolist_box {
	padding: 0 0 30px;
	}
	.photolist_box .bar {
	font-size: 120%;
	}
	}
	@media screen and (max-width: 420px) {
	#speakers_area {
	padding: 20px 0;
	}
	.photolist_box {
	padding: 0 0 20px;
	}
	.photolist_box .bar {
	font-size: 120%;
	}
	}
.photolist {
display: flex;
flex-flow: row wrap;
justify-content: center;
}
.photolist li {
padding: 10px;
flex: 0 1 33.33%;
}
.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;
overflow: hidden;
}
.photolist li > *.nolink {
cursor: default;
transform: translate(0,0)!important;
opacity: 1!important;
}
.photolist li > *:hover {
opacity: 0.6;
transform: translate(0,-10px);
}
.photolist li > *:hover img {
opacity: 1;
}
.photolist img {
width: 100%;
height: auto;
transition: .3s;
}
.photolist .layout {
padding-bottom: 10px;
display: block;
}
.photolist .layout .photo + .info {
padding: 0;
}
.photolist .txt {
align-items: center;
justify-content: flex-start;
padding-top: 10px;
line-height: 1.6;
}
.photolist .program .txt .com,
.photolist .program .txt .job,
.photolist .program .txt .name {
margin: 0;
padding: 0;
}
	@media screen and (max-width: 768px) {
	.photolist li {
	flex: 0 1 50%;
	}
	}
	@media screen and (max-width: 520px) {
	.photolist li {
	flex: 0 1 100%;
	}
	}
/* speakers_area end */

/* overview_area */
#overview_area {
background: linear-gradient(to bottom, rgba(21,31,43,0), rgba(21,31,43,0), rgba(21,31,43,1));
}
.overviewe_box {
}
	@media screen and (max-width: 768px) {
	}
.dlist {
color: #fff;
}
.dlist dl {
display: flex;
gap: 10px 20px;
padding-bottom: 40px;
margin-bottom: 40px;
width: 100%;
border-bottom: 1px solid rgba(0,0,0,0.3);
border-bottom: 1px solid rgba(255,255,255,0.3);
}
.dlist dl dt {
flex: 0 1 220px;
font-weight: 600;
font-size: 1.1rem;
position: relative;
vertical-align: middle;
text-align: left;
}
.dlist dl dd {
flex: 1 0 0%;
position: relative;
word-break: break-all;
}
.dlist a {
text-decoration: underline;
}
.dlist_txt {
text-align: center;
margin-top: 20px;
color: #fff;
}
	@media screen and (max-width: 768px) {
	.dlist {
	padding: 0;
	}
	.dlist dl {
	flex-flow: column;
	padding-bottom: 20px;
	margin-bottom: 20px;
	}
	.dlist dl dt {
	flex: 1 0 auto;
	}
	.dlist dl dd {
	}
	}
	@media screen and (max-width: 420px) {
	.dlist {
	}
	}
/* overview_area end */

/* flow_area * /
#flow_area {
padding: 50px 0;
background: #fff;
}
.flow {
text-align: center;
clear: both;
}
.flowlist {
display: flex;
flex-flow: row nowrap;
align-items: flex-start;
justify-content: center;
padding: 20px 0 0;
}
.flowlist .item {
position: relative;
width: 25%;
padding: 0 20px;
}
.flowlist .item:not(:last-child)::after {
content: "";
position: absolute;
right: 0;
top: 50%;
transform: rotate(-45deg) translate(50%,-10%);
width: 15px;
height: 15px;
border-right: 3px solid #ccc;
border-bottom: 3px solid #ccc;
}
.flowlist .item .title {
position: relative;
background: #111;
background: linear-gradient(transparent, rgba(255,255,255,0.3)),#666;
width: 200px;
height: 200px;
color: #fff;
text-align: center;
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
border-radius: 100px;
padding: 20px;
margin: 0 auto;
}
.flowlist .item .title > * {
display: block;
text-align: center;
}
.flowlist .item .title > span {
font-size: 200%;
padding-bottom: 10px;
}
.flowlist .item .title > b {
width: 100%;
border-top: 1px solid #fff;
padding: 20px 0 0 0;
min-height: 100px;
font-weight: normal;
}
.flowlist .item .text {
text-align: left;
padding: 20px 0 0;
font-size: 110%;
}
	@media screen and (max-width: 1000px) {
    .flowlist .item .title {
    width: 160px;
    height: 160px;
    border-radius: 80px;
    padding: 10px;
    }
    .flowlist .item:not(:last-child)::after {
    top: 80px;
    }
    .flowlist .item .title > span {
    font-size: 150%;
    padding-bottom: 10px;
    }
    .flowlist .item .title > b {
    padding: 10px 0 0 0;
    min-height: 80px;
    }
    .flowlist .item .text {
    padding: 10px 0;
    }
    }
	@media screen and (max-width: 768px) {
	#flow_area {
	padding: 30px 0 0;
	}
	.flowlist {
	padding-top: 0;
	}
    .flowlist {
    flex-flow: column nowrap;
    }
    .flowlist .item {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 20px 0;
    }
    .flowlist .item .image {
	flex: 0 1 40%;
	}
    .flowlist .item .txt {
	flex: 1 0 0%;
	}
    .flowlist .item .title {
    width: 160px;
    flex: 0 0 160px;
    }
    .flowlist .item .text {
    flex: 1;
    padding: 10px 20px;
    }
    .flowlist .item .title > * {
    line-height: 1.3;
    }
	.flowlist .item:not(:last-child)::after {
	right: 50%;
	top: inherit;
	bottom: 0;
	transform: rotate(45deg) translate(50%,-100%);
	width: 15px;
	height: 15px;
	border-right: 3px solid #ccc;
	border-bottom: 3px solid #ccc;
	}
    }
/* flow_area end */

/* sponsor_area * /
#sponsor_area {
padding: 50px 0;
}
.sponsor_box {
border-radius: 0;
background: #fff;
box-shadow: 0 0 10px rgb(0,0,0,0.1);
padding: 50px;
}
.sponsor_box .bar {
text-align: center;
padding-bottom: 10px;
font-weight: bold;
}
	@media screen and (max-width: 768px) {
	#sponsor_area {
	padding: 30px 0;
	}
	.sponsor_box {
	padding: 30px;
	}
	}
	@media screen and (max-width: 420px) {
	#sponsor_area {
	padding: 20px 0;
	}
	.sponsor_box {
	padding: 20px;
	}
	.sponsor_box .bar {
	padding-bottom: 20px;
	}
	}
.logolist > ul {
display: flex;
flex-flow: row wrap;
justify-content: center;
margin: 0 auto 30px;
align-items: center;
}
.logolist.type1 > ul {
max-width: 1200px;
gap: 20px;
}
.logolist.type2 > ul {
max-width: 1000px;
gap: 30px;
}
.logolist.type2 > ul li {
flex: 0 1 15%;
}
.logolist.type3 > ul li {
flex: 0 1 15%;
}
.logolist > ul > * {
flex: 0 1 22%;
padding: 0;
text-align: center;
align-items: center;
}
.logolist a {
display: block;
transition: all 0.2s linear;
}
.logolist a:hover {
opacity: 0.7;
}
.logolist img {
max-width: 100%;
}
.logolist_txt {
text-align: right;
padding: 0 20px;
}
	@media screen and (max-width: 768px) {
	.logolist_box {
	}
	.logolist_box .bar {
	}
	.logolist > ul {
	gap: 10px!important;
	}
	.logolist > ul > * {
	flex: 0 1 40%;
	}
	.logolist.type2 > ul li {
	flex: 0 1 28%;
	}
	.logolist.type3 > ul li {
	flex: 0 1 28%;
	}
	}
	@media screen and (max-width: 500px) {
	.logolist > ul > * {
	flex: 0 1 45%;
	}
	}
/* sponsor_area end */

/* benefits_area */
#benefits_area {
padding: 50px 0;
}
.benefits_box {
border-radius: 0;
background: #fff;
box-shadow: 0 0 10px rgb(0,0,0,0.1);
padding: 50px;
}
.benefits_box .benefits_tit {
text-align: center;
font-size: 180%;
font-weight: bold;
line-height: 1.4;
}
.benefits_box .benefits_txt {
text-align: center;
font-size: 110%;
margin-top: 20px;
line-height: 1.8;
	font-weight: bold;
}
	@media screen and (max-width: 768px) {
	#benefits_area {
	padding: 30px 0;
	}
	.benefits_box {
	padding: 30px;
	}
	.benefits_box .benefits_tit {
	font-size: 140%;
	}
	.benefits_box .benefits_txt {
	font-size: 100%;
	margin-top: 10px;
	}
	}
	@media screen and (max-width: 500px) {
	#benefits_area {
	padding: 20px 0;
	}
	.benefits_box {
	padding: 10px;
	}
	}
/* benefits_area end */























/* edit */
/*
#guest_area .base_tit em,
#timetable_area .base_tit em {
color: #fff;
background: linear-gradient(90deg, #fff 0%, #fff 40%, #4A71C4 80%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#timetable_area .base_tit b {
color: #fff;
}
#guest_area .base_tit b::before,
#timetable_area .base_tit b::before {
background: linear-gradient(90deg, #fff 0%, #fff 40%, #4A71C4 80%);
}


*/
#guest_area {
}
.guest_box {
margin: 0 auto;
width: 100%;
}
.guest_box .layout_box {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
gap: 30px;
width: 100%;
}
.guest_box .layout {
display: flex;
/*
flex-flow: column;
flex: 0 0 calc((100% - 30px) / 2);
*/
flex: 1 0 100%;
gap: 20px;
align-items: center;
}
.guest_box .layout .photo {
flex: 0 1 350px;
text-align: center;
}
.guest_box .layout .photo img {
width: 100%;
max-width: 350px;
}
.guest_box .layout .info {
flex: 1 0 0%;
display: flex;
/*
align-items: center;
*/
flex-flow: column;
/*
max-width: 350px;
margin: 0 auto;
*/
gap: 20px;
background: rgba(0,0,0,0.3);
padding: 30px;
border-radius: 20px;
border: 2px solid var(--main_c);
}
.guest_box .layout .info .txt {
color: #fff;
display: flex;
flex-flow: column;
}
.guest_box .layout .info .name {
font-size: 1.5rem;
}
.guest_box .txt.prof {
font-size: 0.9rem;
line-height: 1.6;
}
.guest_box .layout:nth-child(even) {
flex-flow: row-reverse;
}
.guest_box .s {
display: inline-block;
text-align: center;
color: #fff;
background: var(--main_c);
padding: 5px 10px;
border-radius: 5px;
font-weight: bold;
font-size: 0.9rem;
}
/*
@media screen and (max-width: 600px) {
.guest_box .layout {
display: block;
}
.guest_box .layout .photo {
padding-bottom: 20px;
}
.guest_box .layout .info {
padding-left: 0;
}
}
*/
	@media screen and (max-width: 768px) {
	.guest_box .layout_box {
	display: flex;
	gap: 30px;
	flex-flow: column;
	}
	.guest_box .layout:nth-child(even),
	.guest_box .layout {
	flex: 0 0 100%;
	flex-flow: column;
	}
	.guest_box .layout .icon {
	text-align: center;
	}
	.guest_box .layout .photo {
	flex: 0 1 auto;
	text-align: center;
	}
	.guest_box .layout .photo img {
	max-width: 400px;
	}
	.guest_box .layout .info .txt {
	align-self: center;
	}
	}
	@media screen and (max-width: 500px) {
	.guest_box .layout .photo img {
	max-width: 80%;
	}
	}

.gift {
position: relative;
padding: 0 20px 50px;
text-align: center;
}
.gift::before {
position: absolute;
left: 0;
top: 0;
content: "";
width: 100%;
height: 30%;
display: block;
background: #fff;
}
.gift > * {
position: relative;
}





:root {
--base_c: #151F2B;
--base2_c: #E5EEFF;
--main_c: #5BA7FF;
--sub_c: #FA3263;

--base_c2: #2D547E;
--main_c2: #DEEDFF;
--sub_c2: #FED6E0;

--base_c3: #000;


/*--font_en: 'Inter', 'Noto Sans JP', sans-serif;*/
--font_en: 'Figtree', 'Noto Sans JP', sans-serif;

--program_c: var(--base_c);
--program_K_c: var(--main_c);
--program_T_c: var(--sub_c);
--program_K_c2: #03BD8F;


--program_bg: linear-gradient(to bottom, var(--base_c), var(--base_c));
--program_bg_K: linear-gradient(to bottom, var(--main_c), var(--main_c));
--program_bg_T: linear-gradient(to bottom, var(--sub_c), var(--sub_c));


--wrap_bg_c: #fff;
--link_color: var(--main_c);

--contact_bg_c: rgba(0, 0, 0, 0.05);
--contact_bg_c: rgba(0, 0, 0, 0);
--btn_bg_c: linear-gradient(to right, var(--main_c), var(--main_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;

--header_bg_c: linear-gradient(to right, var(--base_c), var(--base_c2));

--menu_txt_c: #fff;
--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: var(--base_c);
--footer_txt_c: #fff;
--footer_link_c: #fff;
--pagetop_bg_C: rgba(0,0,0,0.9);
--pagetop_bg_C: var(--base_c);



--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 */