@charset "utf-8";
/* ================ Reset ================= */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, var,
b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	color: #fff;
	vertical-align:baseline;
	background:transparent;
	box-sizing: border-box;
	font-weight: normal;
	font-style: normal;
}
body {
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", Meiryo, -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
	font-weight: 500;
	font-size: 16px;
	font-feature-settings: "palt";
	letter-spacing: 0;
	line-height:1;
	overflow-y: scroll;
	overflow-x: hidden;
	background: #141414;
}
article, aside, dialog, figure, footer, header, hgroup, nav, section {
	display:block;
}
nav ul, ul, nav ol, ol {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	border:0;
	vertical-align:baseline;
	background:transparent;
	-webkit-tap-highlight-color:transparent;
	-webkit-tap-highlight-color:rgba( 100, 100, 100, 0.5 );
	text-decoration: none;
	color: #000;
}
a, a:before, a:after{
	-webkit-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a img{
	-webkit-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1)
}
.circle{
	-webkit-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1)
}

button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

img{
	vertical-align: bottom;
	border: 0;
	max-width: 100%;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
input, select {
	vertical-align:middle;
}
.cf:before,
.cf:after {
	content: " ";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
	*zoom: 1;
}
.pc{display: inline-block;}
.sp{display: none;}
.pc_br{display: block;}
.sp_br{display: none;}


/* ==========PC=========== */
header{
	display: flex;
	background: #141414;
	justify-content: space-between;
	padding: 0 10px 0 50px;
	align-items: center;
	position: fixed;
	top: 0;
	width:100vw;
	z-index: 101;
}
header .logo{
	max-width: 260px;
}
header nav{
	display: flex;
	align-items: center;
	padding: 0 20px 0 0;
}
header nav .nav{
	display: flex;
	gap: 20px;
	margin: 0 25px 0 0;
}
header nav .nav li{
	position: relative;
}
header nav .nav li a{
	color: #fff;
	font-family: Inter;
	font-weight: 700;
	display: block;
	letter-spacing: 2px;
}
header nav .nav li > a:after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #a00008;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
header nav .nav li a:hover:after,
header nav .nav li.current a:after {
  transform: scale(1, 1);
}

header nav .nav li .prd{
	position: absolute;
	top: 20px;
	left: -50%;
	width: 175px;
	text-align: center;
	display: none;
	padding: 20px 0 0 0;
}
header nav .nav li.nav_contents:hover .prd{
	display: block;
}
header nav .nav li .prd a{
	display: block;
	background: #d3d3d3;
	color: #353535;
	font-weight: 300;
	font-size: 12px;
	padding: 15px 25px 15px 10px;
	margin: 0 0 5px;
	position: relative;
}
header nav .nav li .prd a:hover{
	background: #fff;
}

header nav .nav li .prd a .txt{
	display: block;
	color: #141414;
	font-weight: 600;
	font-size: 14px;
}
header nav .nav li .prd a .arrow{
  position: absolute;
  right: 5%;
  top: 50%;
  display: inline-block;
  width: 12px;
  height: 1px;
  margin-top: 3.6px;
  border-radius: 9999px;
  background-color: #b50009;
}

header nav .nav li .prd a .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 6px;
  height: 1px;
  border-radius: 9999px;
  background-color: #b50009;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

header nav .lang{
	display: flex;
	background: #e2e2e2;
	border-radius: 0 0 6px 6px;
	padding: 5px;
	gap: 10px;
	margin: 0 0 5px;
}
header nav .lang li{
	font-family: Inter;
	font-weight: 700;
	font-size: 12px;
	width: 50px;
	text-align: center;
	position: relative;
}
header nav .lang li:first-child:after{
	content: "";
	display: block;
	width: 1px;
	height: 15px;
	position: absolute;
	right: -5px;
	top: 10px;
	background: #727272;
}
header nav .lang li a.current,
header nav .lang li a:hover{
	background: #fff;
	border-radius: 6px;
	font-size: 14px;
}
header nav .lang li a{
	display: block;
	padding: 10px;
}
header nav .social{
	display: none;
}

header .sp_nav {
  display: none;
}


.fin{
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background: #a00008;
	padding: 20px 0;
	z-index: 100;
}
.fin p{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

/* kv */
.kv{
	background: url("../img/bg_mv.jpg") top center no-repeat;
	background-size: cover;
	padding: 50px 0 0 0;
}
.kv .inner{
	padding: 20px 50px;
	position: relative;
}
.kv .inner .txt01{
	font-size: 1.4vw;
	letter-spacing: 2px;
	margin: 0 0 1vw;
}
.kv .inner h1{
	width: 50%;
	margin: 0 0 1vw;
}
.kv .inner .txt02{
	font-size: 1vw;
	font-family: Inter;
	font-weight: 500;
	margin: 0 0 1vw;
	line-height: 1.5;
}
.kv .inner .info{
	width: 50%;
	border-top: 1px solid #fff;
	padding: 15px 0 0 0;
}
.kv .inner .info .date{
	font-family: Inter;
	font-weight: 700;
	font-size: 2vw;
	letter-spacing: 2px;
	margin: 0 0 10px;
}
.kv .inner .info .access{
	font-weight: 600;
	font-size: 1.3vw;
	letter-spacing: 3px;
	line-height: 1.5;
	margin: 0 0 1vw;
}
.kv .inner .info .access span{
	font-weight: 400;
	font-size: 1.1vw;
	letter-spacing: 1px;
}
.kv .inner .entry{
	width: 50%;
	background: rgba(0, 0, 0, 0.35);
	padding: 15px 0;
	margin: 0 0 20px;
}
.kv .inner .entry .ttl{
	text-align: center;
	font-size: 1.4vw;
	letter-spacing: 3px;
	font-weight: 700;
	line-height: 1.6;
}

.kv .inner .entry .detail{
	display: flex;
	justify-content: center;
	gap: 25px;
	padding: 15px 0;
}
.kv .inner .entry .detail .txt{
	border:1px solid #fff;
	border-radius: 6px;
	text-align: center;
	padding: 5px 15px;
	font-size: 1.7vw;
	letter-spacing: 3px;
	font-weight: 600;
	line-height: 1.3;
}
.kv .inner .entry .detail .txt span{
	display: block;
	letter-spacing: 0;
	font-size: 1.4vw;
}
.kv .inner .entry .detail .btn_entry{
	width: 18vw;
	font-size: 1.5vw;
	font-weight: 600;
	background: #a00008;
	border-radius: 60px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px 10px 30px;
	letter-spacing: 3px;
}
.kv .inner .entry .detail .btn_entry:hover{
	background: #b50009;
}

.kv .inner .entry .detail .btn_entry .circle{
	border-radius: 100px;
	border:1px solid #fff;
	width: 3vw;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.kv .inner .entry .detail .btn_entry .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.kv .inner .entry .detail .btn_entry .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}


.kv .inner .entry .achievements{
	background: #333;
	border-radius: 20px;
	margin: 15px 3% 13px;
	padding: 3%;
}
.kv .inner .entry .achievements h3{
	text-align: center;
	font-size: 1.4vw;
	letter-spacing: 3px;
	font-weight: 700;
	line-height: 1.6;
	margin: 0 0 3%
}
.kv .inner .entry .achievements ul{
	display: flex;
	justify-content: center;
}
.kv .inner .entry .achievements ul li{
	flex: 1;
	text-align: center;
	border-right: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kv .inner .entry .achievements ul li:last-child{
	border-right: 0;
}
.kv .inner .entry .achievements ul li p{
	line-height: 1.6;
	font-weight: 900;
	font-size: 1vw;
}
.kv .inner .entry .achievements ul li p span{
	font-size: 80%;
	font-weight: 900;
}
.kv .inner .entry .achievements ul li p b{
	font-size: 2.3vw;
	font-family: Inter;
	font-weight: 700;
	line-height: 1;
}


.kv .inner .btn_timetable{
	width: 50%;
	margin: 0 0 20px;
	display: flex;
	justify-content: space-between;
}
.kv .inner .btn_timetable li{
	width: 48%;
}
.kv .inner .btn_timetable li a{
	font-size: 1.8vw;
	font-weight: 700;
	background: #ededed;
	border:2px solid #a00008;
	border-radius: 60px;
	color: #a00008;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px .6vw 6px 1.5vw;
	letter-spacing: .1vw;
	cursor: pointer;
}
.kv .inner .btn_timetable li a:hover{
	background: #fff;
}

.kv .inner .btn_timetable li a .txt{
	font-size: 1.4vw;
	letter-spacing: 1px;
	color: #a00008;
	font-weight: 600;
}

.kv .inner .btn_timetable li a .circle{
	border-radius: 100px;
	width: 3vw;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #a00008;
}
.kv .inner .btn_timetable li a .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.kv .inner .btn_timetable li a .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
/* 9.12 */
.kv .inner .btn_pdf_wrap{
	position: fixed;
	top: 150px;
	right: 5px;
	width: 17vw;
	z-index: 100;
}

.kv .inner .btn_pdf li{
	width: 100%;
	margin: 0 0 10px;
}
.kv .inner .btn_pdf li a{
	font-size: 1vw;
	font-weight: 700;
	background: #ededed;
	border:2px solid #121e44;
	border-radius: 60px;
	color: #121e44;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px .6vw 6px 1.5vw;
	letter-spacing: .1vw;
	cursor: pointer;
}
.kv .inner .btn_pdf li a:hover{
	background: #fff;
}

.kv .inner .btn_pdf li a .txt{
	font-size: 1.4vw;
	letter-spacing: 1px;
	color: #121e44;
	font-weight: 600;
}

.kv .inner .btn_pdf li a .circle{
	border-radius: 100px;
	width: 2.3vw;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #121e44;
}
.kv .inner .btn_pdf li a .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.kv .inner .btn_pdf li a .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
/* / 9.12 */


.kv .inner .movie_bnr{
	position: absolute;
	bottom: 3vw;
	right: 3vw;
	width: 25vw;
	aspect-ratio: 16/9;
	border:1px solid #fff;
	cursor: pointer;
	-webkit-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);

}
.kv .inner .movie_bnr:hover{
	transform: scale(1.1);
}
.remodal_movie{
	max-width: 1120px;
}
.modal_movie{
	width: 100%;
	aspect-ratio: 16/9;
	position: relative;
}
.modal_movie iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* kv_social */
.kv_social{
	position: fixed;
	top: 49px;
	right: 0;
	display: flex;
	background: #fff;
	border-radius: 0 0 0 6px;
	z-index: 100;
}
.kv_social ul{
	display: flex;
	gap: 10px;
	padding: 10px 20px;
}
.kv_social ul li{
	width: 35px;
}
.kv_social .btn_entry{
	width: 16vw;
	align-items: center;
	font-size: 1.3vw;
	font-weight: 600;
	background: #a00008;
	border-radius: 0 ;
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 5px 15px 5px 15px;
	letter-spacing: 1px;
}
.kv_social .btn_entry:hover{
	background: #b50009;
}

.kv_social .btn_entry .circle{
	border-radius: 100px;
	border:1px solid #fff;
	width: 2.3vw;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.kv_social .btn_entry .arrow {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 1px;
  margin-top: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.kv_social .btn_entry .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 5px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}

/* top mypage login */
.kv_social .btn_login{
	width: 16vw;
	align-items: center;
	font-size: 1.3vw;
	font-weight: 600;
	background: #108cad;
	border-radius: 0 ;
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 8px 15px 8px 15px;
	letter-spacing: 1px;
	border-radius: 0 0 0 6px;
}
.kv_social .btn_login .txt{
	font-size: 1.3vw;
	font-weight: 600;
	text-align: left;
}
.kv_social .btn_login .txt b{
	font-size: 0.8vw;
	display: block;
	padding:0 0 5px 0;
}

.kv_social .btn_login .circle{
	border-radius: 100px;
	border:1px solid #fff;
	width: 2.3vw;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.kv_social .btn_login .arrow {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 1px;
  margin-top: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.kv_social .btn_login .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 5px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}

.kv_social .btn_login:hover{
	background: #fff;
}
.kv_social .btn_login:hover .txt{
	color: #108cad;
}
.kv_social .btn_login:hover .txt b{
	color: #108cad;
}
.kv_social .btn_login:hover .circle{
	border:1px solid #108cad;
}
.kv_social .btn_login:hover .arrow,
.kv_social .btn_login:hover .arrow:before {
	background-color: #108cad;
}

.kv_social{
	background: transparent;
	align-items: flex-start;
}
.kv_social .btn_entry{
	height: 46px;
}
.kv_social .btn_login{
	height: 66px;
}
.kv_social ul{
	background: #fff;
	border-radius: 0 0 0 6px;
}


/* ======== */

.title_wrap {
	max-width: 1100px;
	margin: 0 auto 60px;
}
.title_wrap h2{
	color: #fff;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 120px;
	font-weight: 700;
	font-family: Inter;
}
.title_wrap h3{
	color: #fff;
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 100px;
	font-weight: 700;
}
.title_wrap p{
	color: #fff;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 3px;
}
.top section{
	margin-bottom: 100px;
}

/* about */
#about .inner{
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 36%;
	gap: 50px;
}

#about .title_wrap {
	grid-area: 1 / 1 / 2 / 2;
	width: 100%;
	align-content: center;
	margin: 0;
}
#about .text_wrap {
	grid-area: 2 / 1 / 3 / 2;
}
#about .text_wrap p{
	font-weight: 400;
	line-height: 2;
	font-size: 16px;
	margin: 0 0 1vw;
}

#about .technology {
	grid-area: 1 / 2 / 3 / 3;
	height: 100%;
	display: flex;
	flex-direction: column;
}
#about .technology dt{
	text-align: center;
	font-weight: 600;
	font-size: 18px;
	position: relative;
	padding: 20px 0;
}
#about .technology dt:after{
	content: "";
	height: 1px;
	width: 100%;
	background: #fff;
	position: absolute;
	top: 50%;
	left:0;
}
#about .technology dt span{
	display: inline-block;
	background: #141414;
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

#about .technology dd{
	height: 100%;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.5;
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

#about .technology .cat01{
	background: url("../img/bg_technology01.png") top center no-repeat;
	background-size: cover;
}
#about .technology .cat02{
	background: url("../img/bg_technology02.png") top center no-repeat;
	background-size: cover;
}
#about .technology .cat03{
	background: url("../img/bg_technology03.png") top center no-repeat;
	background-size: cover;
}

#about .text_foot {
	grid-area: 3 / 1 / 4 / 3;
	font-weight: 400;
	line-height: 1.5;
	border: 1px solid #fff;
	padding: 20px;
}


#news .inner{
	max-width: 1100px;
	margin: 0 auto;
}
#news .inner ul{
	max-width: 1000px;
	margin: 0 auto;
}
#news .inner ul li{
	border-bottom: 1px solid #fff;
	padding: 0 0 20px;
	margin: 0 0 20px;
	display: flex;
	line-height: 2;
	align-items: center;
}
#news .inner ul li a{
	width: 100%;
	display: flex;
	line-height: 2;
	align-items: center;
}
#news .inner ul li a:hover .title{
	text-decoration: underline;
}

#news .inner ul li .date{
	width: 15%;
	text-align: center;
	font-family: Inter;
	font-weight: 600;
}
#news .inner ul li .title{
	width: 80%;
}

#news .inner .btn_wrap .btn_more{
	width: 260px;
	height: 40px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 600;
	border-radius: 60px;
	border:1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 40px 10px 20px;
	text-align: center;
	letter-spacing: 3px;
	position: relative;
}
#news .inner .btn_wrap .btn_more .circle{
	position: absolute;
	right: 10px;
	border-radius: 100px;
	background: #d0d0d0;
	width: 46px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
#news .inner .btn_wrap .btn_more .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #000;
}
#news .inner .btn_wrap .btn_more .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
#news .inner .btn_wrap .btn_more:hover{
	background: #fff;
	color: #141414;
}
#news .inner .btn_wrap .btn_more:hover .circle{
	background: #141414;
}
#news .inner .btn_wrap .btn_more:hover .arrow,
#news .inner .btn_wrap .btn_more:hover .arrow::before{
  background-color: #fff;
}


.top #contents{
	background: #121e44;
	padding: 120px 0;
	margin: 0 0 90px;
}
.top #contents .title_wrap h2{
	font-size: 150px;
}
.top #contents .title_wrap p{
	font-weight: 500;
}

.contents_block .box_wrap{
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contents_block .box_wrap .box{
	width: 47%;
	margin: 0 0 80px;
	display: flex;
	flex-direction: column;
}
.contents_block .box_wrap .box:nth-child(3),
.contents_block .box_wrap .box:nth-child(4){
	margin: 0;
}
.contents_block .box_wrap .box h3{
	font-family: Inter;
	font-weight: 600;
	font-size: 34px;
	letter-spacing: 3px;
	margin: 0 0 10px;
}
.contents_block .box_wrap .box h4{
	color: #fcd770;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: .2vw;
	margin: 0 0 20px;
}
.contents_block .box_wrap .box .img{
	margin: 0 0 20px;
}
.contents_block .box_wrap .box p{
	line-height: 1.5;
	font-weight: 400;
	margin: 0 0 20px;
}
.contents_block .box_wrap .box p .notice{
	display: block;
	font-weight: 400;
	font-size: 14px;
	padding: 1em 0 0 0;
}



.contents_block .btn_wrap{
	position: relative;
	margin-top: auto;
}

.contents_block .btn_wrap .btn_more{
	width: 260px;
	height: 40px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 600;
	border-radius: 60px;
	border:1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 40px 10px 20px;
	text-align: center;
	letter-spacing: 2px;
	position: relative;
}
.contents_block .btn_wrap .btn_more .circle{
	position: absolute;
	right: 10px;
	border-radius: 100px;
	border:1px solid #fff;
	width: 46px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #121e44;
}
.contents_block .btn_wrap .btn_more .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #fff;
}
.contents_block .btn_wrap .btn_more .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
.contents_block .btn_wrap .btn_more:hover{
	background: #fff;
	color: #141414;
}
.contents_block .btn_wrap.btn_clm2{
	display: flex;
	justify-content: space-between;
}
.contents_block .btn_wrap.btn_clm2 .btn_more{
	width: 35%;
}


/* speaker */
#speaker .title_wrap h2{
	/* これだけイレギュラー */
	margin: 0 0 30px;
}
#speaker .slide{
	margin: 0 0 50px;
}
#speaker .slide li{
	display: flex;
	justify-content: space-between;
	background: #fff;
	border-radius: 10px;
	position: relative;
	align-items: center;
	overflow: hidden;
	margin: 0 10px;
	aspect-ratio: 575/280;
	/*max-width: 575px;*/
	cursor: pointer;
}


#speaker .slide li .profile{
	width: 49%;
}
#speaker .slide li .profile .category{
	display: inline-block;
	padding: .3vw;
	border-radius: 3px;
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: min(16vw /16 , 16px);
	z-index: 2;
}
#speaker .slide li .profile .cat01{
	/* バイオ・ライフサイエンス/ヘルスケア */
	background: #e05b00;
}
#speaker .slide li .profile .cat02{
	/* グリーンテック */
	background: #047878;
}
#speaker .slide li .profile .cat03{
	/* デジタル */
	background: #0068b5;
}
#speaker .slide li .profile .cat04{
	/* キーノート */
	background: #ab1f26;
}
#speaker .slide li .profile .cat05{
	/* スポンサー */
	background: #141414;
}
#speaker .slide li .profile .cat06{
	/* スペシャル　エコシステム */
	background: #09a7dc;
}

#speaker .slide li .profile .company{
	color: #141414;
	padding: 0 0 10px 30px;
	font-size: 12px;
	position: relative;
	z-index: 2;
}
#speaker .slide li .profile .title{
	color: #141414;
	padding: 0 0 20px 30px;
	font-size: 12px;
	position: relative;
	z-index: 2;
}

#speaker .slide li .profile .name{
	color: #141414;
	padding: 0 0 0 30px;
	font-size: 23px;
	position: relative;
	z-index: 2;
}
#speaker .slide li .img{
	position: relative;
	aspect-ratio: 289/280;
	width: 51%;
}
#speaker .slide li .img img{
	width: 100%;
}

#speaker .slide li .img:after{
	content: "";
	width: 50px;
	background: #fff;
	height: 100%;
	position: absolute;
	left: -25px;
	top: 0;
	transform: skew(-10deg);
	z-index: 1;
}

@media (min-width: 1921px) {
	#speaker .slide li .img:after{
		content: "";
		width: 90px;
		background: #fff;
		height: 100%;
		position: absolute;
		left: -45px;
		top: 0;
		transform: skew(-10deg);
		z-index: 1;
	}
}


#speaker .btn_wrap{
	position: relative;
}

#speaker .btn_wrap .btn_more{
	width: 260px;
	height: 40px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 600;
	border-radius: 60px;
	border:1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 40px 10px 20px;
	text-align: center;
	letter-spacing: 3px;
	position: relative;
}
#speaker .btn_wrap .btn_more .circle{
	position: absolute;
	right: 10px;
	border-radius: 100px;
	border:1px solid #fff;
	width: 46px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #121e44;
}
#speaker .btn_wrap .btn_more .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #fff;
}
#speaker .btn_wrap .btn_more .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
#speaker .btn_wrap .btn_more:hover{
	background: #fff;
	color: #141414;
}


#speaker .btn_wrap .slidebtn_wrap{
	display: flex;
	position: absolute;
	right: 100px;
	top: 0;
}
#speaker .btn_wrap .slide_nav{
	position: relative;
	display: flex;
}

#speaker .btn_wrap .slide_nav .btn_prev{
	position: relative;
	width: 56px;
	cursor: pointer;
}

#speaker .btn_wrap .slide_nav .btn_prev .circle{
	position: absolute;
	right: 10px;
	border-radius: 100px;
	border:1px solid #fff;
	width: 46px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #121e44;
}
#speaker .btn_wrap .slide_nav .btn_prev .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #fff;
}
#speaker .btn_wrap .slide_nav .btn_prev .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform:  rotate(-45deg);
  transform-origin: 1px 50%;
}
#speaker .btn_wrap .slide_nav .btn_prev:hover .circle{
	background: #fff;
}
#speaker .btn_wrap .slide_nav .btn_prev:hover .arrow,
#speaker .btn_wrap .slide_nav .btn_prev:hover .arrow::before{
	background: #121e44;
}

#speaker .btn_wrap .slide_nav .btn_next{
	position: relative;
	width: 56px;
	cursor: pointer;
}

#speaker .btn_wrap .slide_nav .btn_next .circle{
	position: absolute;
	right: 10px;
	border-radius: 100px;
	border:1px solid #fff;
	width: 46px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #121e44;
}
#speaker .btn_wrap .slide_nav .btn_next .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #fff;
}
#speaker .btn_wrap .slide_nav .btn_next .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
#speaker .btn_wrap .slide_nav .btn_next:hover .circle{
	background: #fff;
}
#speaker .btn_wrap .slide_nav .btn_next:hover .arrow,
#speaker .btn_wrap .slide_nav .btn_next:hover .arrow::before{
	background: #121e44;
}

#speaker .btn_wrap .pause_wrap .slick_pause{
	border:1px solid #fff;
	width: 46px;
	aspect-ratio: 1;
	border-radius: 6px;
	position: relative;
	-webkit-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	cursor: pointer;
}
#speaker .btn_wrap .pause_wrap .slick_pause:before{
	content: "";
	display: block;
	width: 4px;
	height: 23px;
	background: #fff;
	position: absolute;
	top: 10px;
	left: 15px;
}
#speaker .btn_wrap .pause_wrap .slick_pause:after{
	content: "";
	display: block;
	width: 4px;
	height: 23px;
	background: #fff;
	position: absolute;
	top: 10px;
	left: 25px;
}
#speaker .btn_wrap .pause_wrap .slick_pause:hover{
	background: #fff;
}
#speaker .btn_wrap .pause_wrap .slick_pause:hover:before{
	background: #121e44;
}
#speaker .btn_wrap .pause_wrap .slick_pause:hover:after{
	background: #121e44;
}


#speaker .btn_wrap .pause_wrap .slick_play{
	border:1px solid #fff;
	width: 46px;
	aspect-ratio: 1;
	border-radius: 6px;
	position: relative;
	-webkit-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
	cursor: pointer;
}
#speaker .btn_wrap .pause_wrap .slick_play:after{
	content: "";
	position: absolute;
	top: calc(50% - 8px);
	left: calc(50% - 6px);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  border-right: 0;
}
#speaker .btn_wrap .pause_wrap .slick_play:hover{
	background: #fff;
}
#speaker .btn_wrap .pause_wrap .slick_play:hover:after{
  border-left: 15px solid #121e44;
}
#speaker .notice{
	padding: 30px 0 0 0;
	text-align: center;
}

.modal_speaker{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.modal_speaker .detail{
	width: 40%;
}
.modal_speaker .detail .img{
	margin: 0 auto 15px;
	max-width: 220px;
}
.modal_speaker .detail p{
	color: #141414;
	line-height: 1.4;
}
.modal_speaker .detail .company{
	font-size: 13px;
	margin: 0 0 10px;
}
.modal_speaker .detail .title{
	font-size: 13px;
	margin: 0 0 10px;
}
.modal_speaker .detail .name{
	font-size: 25px;
}



.modal_speaker .txt{
	width: 55%;
	color: #141414;
	font-weight: 500;
}
.modal_speaker .txt p{
	text-align: left;
	color: #141414 !important;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
}
.modal_speaker .txt p span{
	font-weight: 500;
}

.modal_speaker .txt *{
	color: #141414 !important;
	font-weight: 500;
}
.modal_speaker .txt em{
	color: #141414;
	font-style: italic;
	font-weight: 500;
}

.modal_speaker .txt p strong,
.modal_speaker .txt p b{
	color: #141414;
	font-weight: 800;
}


.modal_speaker .txt a{
	padding: 0 0 3px;
	border-bottom: 2px solid #c76a6e;
}



/* talk session */
#talksession .inner{
	max-width: 1100px;
	margin: 0 auto;
}

#talksession .tab_wrap{
	display: flex;
	justify-content: space-between;
	padding: 0 0 20px 0;
}
#talksession .tab_wrap .btn_tab{
	cursor: pointer;
	width: 49.5%;
	text-align: center;
	padding: 0 0 10px;
	border-bottom:7px solid #989898;
	display: flex;
	justify-content: center;
	align-items: end;
}

#talksession .tab_wrap .btn_tab h3{
	font-family: Inter;
	font-size: 42px;
	font-weight: 900;
	letter-spacing: 3px;
	color: #989898;
}
#talksession .tab_wrap .btn_tab h3 span{
	padding: 10px 0 0 0;
	display: block;
	font-family: Inter;
	font-size: 20px;
	font-weight: 700;
	color: #989898;
}
#talksession .tab_wrap .btn_tab.current,
#talksession .tab_wrap .btn_tab:hover{
	border-bottom: 7px solid #940007;
}

#talksession .tab_wrap .btn_tab.current{
	cursor: default;
}
#talksession .tab_wrap .btn_tab.current h3{
	font-size: 55px;
	color: #fff;
}
#talksession .tab_wrap .btn_tab.current h3 span{
	color: #fff;
}

#talksession .day02 {
  display: none;
}

#talksession .tab_comingsoon{
	text-align: center;
}
#talksession .tab_comingsoon p{
	font-size: 40px;
	font-family: Inter;
	font-weight: 900;
	padding: 90px 0 0;
}

#talksession .category{
	display: inline-block;
	padding: 10px 30px;
	margin: 0 0 30px;
	border-radius: 6px;
}
#talksession .category.cat01{
	/* バイオ・ライフサイエンス/ヘルスケア */
	background: #e05b00;
}
#talksession .category.cat02{
	/* グリーンテック */
	background: #047878;
}
#talksession .category.cat03{
	/* デジタル */
	background: #0068b5;
}
#talksession .category.cat04{
	/* キーノート */
	background: #ab1f26;
}
#talksession .category.cat05{
	/* スポンサー */
	background: #141414;
}
#talksession .category.cat06{
	/* スペシャル　エコシステム */
	background: #09a7dc;
}


/* 横100％ブロック */
#talksession .tab_block01{
	background: #ededed;
	border-radius: 14px;
	padding: 30px;
	display: flex;
	justify-content: space-between;
}

#talksession .tab_block01 .detail{
	width: 50%;
}

#talksession .tab_block01 .detail h4{
	font-size: 28px;
	font-weight: 600;
	color: #141414;
	margin: 0 0 30px;
	line-height: 1.4;
}
#talksession .tab_block01 .detail .txt{
	font-size: 17px;
	font-weight: 400;
	color: #141414;
	line-height: 2;
	margin: 0 0 20px
}
#talksession .tab_block01 .detail .time{
	font-family: Inter;
	font-weight: 800;
	color: #141414;
	border-top: 1px solid #000;
	font-size: 32px;
	letter-spacing: 3px;
	padding: 20px 0 0 0;
}

#talksession .tab_block01 .speaker{
	width: 45%;
	position: relative;
	display: flex;
	align-items: center;
}
#talksession .tab_block01 .speaker.sp{
	display: none;
}

#talksession .tab_block01 .speaker .profile{
	text-align: center;
	padding: 20px;
	background: #fff;
  background:linear-gradient(135deg, transparent 20px, #fff 0);
  position: absolute;
  right: 0;
  bottom: 0;
}
#talksession .tab_block01 .speaker .profile .name{
	font-size: 34px;
	font-weight: 500;
	color: #141414;
	letter-spacing: 3px;
	margin: 0 0 10px;
}
#talksession .tab_block01 .speaker .profile .title{
	color: #141414;
	margin: 0 0 10px;
}
#talksession .tab_block01 .speaker .profile .company{
	color: #141414;
	font-size: 13px;
	line-height: 1.5;
}

#talksession .tab_block02_wrap{
	display: flex;
	gap: 20px;
	padding: 20px 0 0 0;
}

/* 横50％ブロック */
#talksession .tab_block02{
	background: #ededed;
	border-radius: 14px;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	flex-basis: 49%;
}

#talksession .tab_block02 .detail .category{
	display: inline-flex;
}
#talksession .tab_block02 .detail{
	display: flex;
	flex-direction: column;
	width: 100%;
}

#talksession .tab_block02 .detail h4{
	font-size: 23px;
	font-weight: 600;
	color: #141414;
	margin: 0 0 30px;
	line-height: 1.4;
}
#talksession .tab_block02 .detail .txt{
	font-size: 17px;
	font-weight: 400;
	color: #141414;
	line-height: 2;
	margin: 0 0 20px
}
#talksession .tab_block02 .detail .time{
	font-family: Inter;
	font-weight: 800;
	color: #141414;
	border-top: 1px solid #000;
	font-size: 32px;
	letter-spacing: 3px;
	padding: 20px 0 0 0;
	margin-top: auto;
}

#talksession .tab_block02 .speaker{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 10px;
	margin: 0 0 10px;
	align-items: flex-start;
}
#talksession .tab_block02 .speaker .img{
	margin: 0 auto 20px;
	/*
	max-width: 110px;*/
	max-width: 84px;
}
#talksession .tab_block02 .speaker .profile{
	text-align: center;
	flex: 1;
}
#talksession .tab_block02 .speaker .profile p{
 color: #141414;
 font-weight: ;
}
#talksession .tab_block02 .speaker .profile .name{
	font-size: 15px;
	margin: 0 0 10px;
	font-weight: 600;
}
#talksession .tab_block02 .speaker .profile .company{
	font-size: 11px;
	line-height: 1.3;
}
#talksession .tab_block02 .speaker .profile .title{
	font-size: 11px;
	line-height: 1.3;
}

#talksession .tab_block02 .speaker.prof02{
	padding: 0 50px;
}

#talksession .inner .btn_wrap{
	position: relative;
	padding: 50px 0 0 0;
}

#talksession .inner .btn_wrap .btn_more{
	width: 340px;
	height: 40px;
	margin: 0 auto;
	font-size: 24px;
	font-weight: 600;
	border-radius: 60px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 40px 20px 20px;
	text-align: center;
	letter-spacing: 3px;
	position: relative;
	background: #a00008;
}
#talksession .inner .btn_wrap .btn_more .circle{
	position: absolute;
	right: 10px;
	border-radius: 100px;
	border:1px solid #fff;
	width: 56px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #a00008;

}
#talksession .inner .btn_wrap .btn_more .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #fff;
}
#talksession .inner .btn_wrap .btn_more .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
#talksession .inner .btn_wrap .btn_more:hover{
	background: #fff;
	color: #a00008;
}
#talksession .inner .txt_notice{
	text-align: center;
	padding: 60px 0 0 0;
	line-height: 1.4;
}

/* other contents */
#other_contents .inner{
	max-width: 1100px;
	margin: 0 auto;
}
#other_contents .inner .txt{
	margin: 0 auto 60px;
	line-height: 1.4;
}
#other_contents .inner .txt a{
	color: #fff;
	text-decoration: underline;
}
#other_contents .inner .txt a:hover{
	text-decoration: none;
}


#other_contents .inner ul{
	max-width: 1100px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 auto 60px;
	gap: 20px;
}
/*
#other_contents .inner ul li{
	flex-basis: 32%;
}
*/

/* info */
#information .inner{
	max-width: 1100px;
	margin: 0 auto 90px;
	display: flex;
	justify-content: space-between;
	background: #ededed;
	padding: 30px;
	align-items: center;
}
#information .inner ul{
	width: 55%;
}
#information .inner ul li{
	display: flex;
	align-items: center;
	margin: 0 0 20px;
}
#information .inner ul li:last-child{
	margin: 0;
}

#information .inner ul li p{
	color: #141414;
	line-height: 1.4;
}
#information .inner ul li .ttl{
	width: 20%;
	font-size: 18px;
}
#information .inner ul li .txt{
	width: 80%;
	font-size: 16px;
	border-left: 1px solid #141414;
	padding: 0 0 0 20px;
}
#information .inner ul li .txt .notice{
	font-size: 14px;
	display: block;
	margin-left: 1em;
	text-indent: -1em;
	color: #141414;
}
#information .inner .map{
	width: 43%;
}
#information .inner .map iframe{
	width: 100%;
}

#information .img_map{
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px 0;
	background: #fff;
	text-align: center;
}




/* sponsor */
#sponsor .inner{
	max-width: 1100px;
	margin: 0 auto;
}
#sponsor .inner h3{
	font-size: 24px;
	font-family: Inter;
	font-weight: 700;
	padding: 0 0 20px;
}

#sponsor .inner ul{
	display: flex;
	justify-content: space-between;
	margin: 0 0 60px;
}
#sponsor .inner ul li{
	width: 100%;
	background: #fff;
	padding: 20px;
	text-align: center;
}
#sponsor .inner ul.bnr_list_m{
	flex-basis:49%;
	gap: 2%;
}
#sponsor .inner ul.bnr_list_s{
	gap: 2%;
	flex-wrap: wrap;
	justify-content: space-between;
}
#sponsor .inner ul.bnr_list_s li{
	flex-basis: 32%;
	margin: 0 0 2%;
}
#sponsor .inner ul li.area{
	background: transparent;
}


#sponsor .inner ul li.bnr_l img{
	width: 350px;
}
#sponsor .inner ul li.bnr_m img{
	width: 400px;
}
#sponsor .inner ul li.bnr_s img{
	width: 200px;
}
#sponsor .inner ul li a:hover img{
	transform: scale(1.1);
}
#sponsor .inner ul li.txt_link{
	background: transparent;
	flex-basis: 100%;
	padding: 0;
	text-align: left;
	justify-content: flex-start;
	margin: 0 0 10px;
}

#sponsor .inner ul li.txt_link a{
	line-height: 1.4;
	text-decoration: underline;
	color: #fff;
}
#sponsor .inner ul li.txt_link a:hover{
	text-decoration: none;
}
#sponsor .inner ul li.bnr_kouen01{
	background: #763791;
}

/*
#sponsor .inner ul.txt_list{
	gap: 2%;
	flex-wrap: wrap;
	justify-content: space-between;
}
#sponsor .inner ul.txt_list li{
	flex-basis: 32%;
	margin: 0 0 10px;
}
#sponsor .inner ul.txt_list li a{
	display: block;
}
*/


/* organizer */
#organizer .inner{
	max-width: 1100px;
	margin: 0 auto 80px;
}
#organizer .inner ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 2%;
}
#organizer .inner ul li{
	margin: 0 0 2%;
  background: #fff;
  padding: 20px;
  text-align: center;
	flex-basis:32%;
}

#organizer .inner ul li a{
	display: block;
	display: flex;
	align-items: center;
	line-height: 1.6;
	border-bottom: 1px solid #fff;
	color: #fff;
}
#organizer .inner ul li a:hover img{
	transform: scale(1.1);
}

#organizer .inner ul li a img{
	width: 200px;
	margin: 0 auto;
}


#sideevent .txt_map{
	max-width: 1100px;
	margin: 0 auto 60px;
}
#sideevent .txt_map a{
	color: #fff;
	text-decoration: underline;
}
#sideevent .txt_map a:hover{
	text-decoration: none;
}

#sideevent .event_bnr{
	max-width: 1100px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 auto 60px;
	gap: 20px;
	flex-wrap: wrap;
}
#sideevent .event_bnr li{
	flex-basis: 32%;
}

#sideevent .event_bnr li a{
	display:block;
}
/*
#sideevent .event_bnr li:first-child{
	width: 400px;
}
*/
#sideevent .event_bnr a:hover img{
	transform: scale(1.1);
}
#sideevent h3{
		max-width: 1100px;
		margin: 0 auto 60px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
}



#sideevent .bnr{
	text-align: center;
	margin: 0 0 60px;	
	display: flex;
	justify-content: center;
	gap: 40px;
}
#sideevent .bnr a{
	display: block;
}
#sideevent .bnr a:hover img{
	transform: scale(1.1);
}


footer{
	background: #1e1e1e;
	padding: 60px 0 0 0;
	text-align: center;
}
footer h3{
	font-size: 40px;
	font-family: Inter;
	font-weight: 700;
	letter-spacing: 5px;
	margin: 0 0 10px;
}
footer .txt01{
	margin: 0 0 40px;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .2vw;
}
footer .txt02{
	margin: 0 0 40px;
	line-height: 2;
	letter-spacing: 1px;
	font-weight: 400;
}
footer .txt03{
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 1px;
	font-weight: 400;
}

footer .txt_link{
	color: #fff;
	display: inline-block;
	padding: 10px 0;
	margin: 0 0 20px;
}

footer .btn_mail{
	width: 260px;
	height: 36px;
	margin: 0 auto 50px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 60px;
	border:1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 40px 10px 20px;
	text-align: center;
	letter-spacing: 3px;
	position: relative;
}
footer .btn_mail .circle{
	position: absolute;
	right: 10px;
	border-radius: 100px;
	border:1px solid #fff;
	width: 36px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}
footer .btn_mail .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #141414;
}
footer .btn_mail .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #141414;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
footer .btn_mail:hover{
	background: #fff;
	color: #141414;
}
footer .btn_mail:hover .circle{
	background: #141414;
}
footer .btn_mail:hover .arrow{
	background-color: #fff;
}
footer .btn_mail:hover .arrow::before{
	background-color: #fff;
}
footer small{
	font-family: Inter;
	display: block;
	padding: 10px 0;
}


/* page ====================== */
main.page{
	margin: 0 auto;
}

main.page .header_wrap{
	background: url("../img/bg_header.jpg") top center no-repeat;
	background-size: cover;
	padding: 140px 0;
	text-align: center;
}
main.page .header_wrap h1{
	font-family: Inter;
	font-size: 70px;
	font-weight: 800;
	letter-spacing: 5px;
}
main.page .header_wrap p{
	font-size: 21px;
}

main.page .content{
	padding: 0 0 100px;
}
main.page .content .topicpath {
	padding: 20px 100px;
	margin: 0 0 60px;
}
main.page .content .topicpath ul{
	display: flex;
}
main.page .content .topicpath ul li{
	color: #ededed;
	font-weight:700;
	padding: 0 25px 0 0;
}
main.page .content .topicpath ul li a{
	color: #b2b2b2;
	font-weight:700;
}
main.page .content .topicpath ul li a:after{
	content: ">";
	margin: 0 0 0 25px;
}
main.page .content .entry_content{
	max-width: 800px;
	margin: 0 auto 60px;
}




/* news page */
main.news_page .content .entry_content h2{
	font-size: 30px;
	margin: 0 0 20px;
}
main.news_page .content .entry_content .txt_date{
	margin: 0 0 20px;
}
main.news_page .content .entry_content .txt01{
	line-height: 2;
}
main.news_page .content .entry_content .txt01 p{
	margin: 0 0 1em;
}

main.news_page .btn_wrap .btn_more{
	width: 260px;
	height: 40px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 600;
	border-radius: 60px;
	border:1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	text-align: center;
	letter-spacing: 3px;
	position: relative;
}
main.news_page .btn_wrap .btn_more .circle{
	position: absolute;
	left: 10px;
	border-radius: 100px;
	background: #d0d0d0;
	width: 46px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
main.news_page .btn_wrap .btn_more .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #000;
}
main.news_page .btn_wrap .btn_more .arrow::before {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 10px;
	height: 1px;
	border-radius: 9999px;
	background-color: #000;
	transform: rotate(-45deg);
	transform-origin: 1px 50%;
}
main.news_page .btn_wrap .btn_more:hover{
	background: #fff;
	color: #141414;
}
main.news_page .btn_wrap .btn_more:hover .circle{
	background: #141414;
}
main.news_page .btn_wrap .btn_more:hover .arrow,
main.news_page .btn_wrap .btn_more:hover .arrow::before{
  background-color: #fff;
}

main.page .content .news_list ul{
	max-width: 800px;
	margin: 0 auto;
	border-top: 2px solid #fff;
	padding: 20px 0 0 0;
}
main.page .content .news_list li{
	border-bottom: 1px solid #fff;
	padding: 0 0 20px;
	margin: 0 0 20px;
	display: flex;
	line-height: 2;
	align-items: center;
}
main.page .content .news_list li:last-child{
	border-bottom:2px solid #fff;
	margin-bottom: 0;
}

main.page .content .news_list li a{
	width: 100%;
	display: flex;
	line-height: 2;
	align-items: center;
}
main.page .content .news_list li a:hover .title{
	text-decoration: underline;
}

main.page .content .news_list li .date{
	width: 15%;
	text-align: center;
	font-family: Inter;
	font-weight: 600;
}
main.page .content .news_list li .title{
	width: 80%;
}

/* speaker page */
main.speaker_page #speaker .slide li .profile {
	padding: 5% 0 0 0;
}
main.speaker_page #speaker .slide li .profile .category{
	font-size: 14px;
}
main.speaker_page #speaker .slide{
	margin: 0 5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 0 0.5%;
}
main.speaker_page #speaker .slide li{
	width: 33%;
	margin: 0 0 20px;
}


/* recruitment page */
main.recruitment_page .content{
	padding: 0;
}
main.recruitment_page .header_wrap{
	padding: 140px 0 100px;
}
main.recruitment_page .header_wrap h1{
	font-size: 50px;
	line-height: 1.4;
	margin: 0 0 20px;
}
main.recruitment_page .header_wrap p{
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 10px;
}
main.recruitment_page .entry_wrap .container{
	max-width: 800px;
	margin: 0 auto;
	padding: 0 0 100px;
}

main.recruitment_page .entry_wrap h3{
	padding: 0 0 50px;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.6;
}
main.recruitment_page .entry_wrap .recruitment-text-wrapper{
	margin: 0 0 60px;
}
main.recruitment_page .entry_wrap .recruitment-text-wrapper-list{
	display: flex;
	border-bottom: 2px solid #fff;
	padding: 20px 0;
}
main.recruitment_page .entry_wrap .recruitment-text-wrapper-ttl {
    width: 30%;
    font-weight: bold;
    line-height: 1.6;
}
main.recruitment_page .entry_wrap .recruitment-text-wrapper-txt {
    width: 70%;
    line-height: 1.6;
}
main.recruitment_page .entry_wrap .recruitment-text-wrapper-txt strong{
	font-weight: 800;
}

.rec-merit{
  background: url("../img/bg_merit.jpg") top center no-repeat;
  background-size: cover;
  padding: 100px 0 0;
  margin: 0 0 100px;
}
.recruitment-panel{
  max-width: 800px;
  margin: 0 auto;
  gap: 40px;
}
.recruitment-panel p{
	font-size: 14px;
  border-radius: 20px;
  padding: 8% 10%;
  background: #fff;
  color: #000;
  line-height: 1.6;
  position: relative;
}
.recruitment-panel p strong{
  display: flex;
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  align-items: center;
  justify-content: center;
  background-color: #121e44;
  color: #fff;
  font-family: Inter;
  font-size: 30px;
  font-weight: 800;
  border:2px solid #fff;
}
.recruitment-panel p b{
	font-size: 20px;
	font-weight: 800;
	color: #141414;
}

.recruitment-form{
	background: #fff;
	padding: 5%;
	margin: 0 0 60px;
}
.recruitment-form p{
	color: #141414 ;
	line-height: 1.6;
}
.recruitment-form .inquiries-title{
	font-size: 18px;
	font-weight: 600;
}
.recruitment-form a{
	text-decoration: underline;
}


.nolink .wp-block-button__link{
	pointer-events: none;
	background: #a00008;
	padding: 17px 50px 17px 50px;;
}
.wp-block-button__link{
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 600;
	border-radius: 60px;
	border:1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 17px 70px 17px 50px;
	text-align: center;
	letter-spacing: 3px;
	position: relative;
}
.wp-block-button__link .circle{
	position: absolute;
	right: 10px;
	border-radius: 100px;
	border:1px solid #fff;
	width: 36px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}
.wp-block-button__link .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #141414;
}
.wp-block-button__link .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #141414;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
.wp-block-button__link:hover{
	background: #fff;
	color: #141414;
}
.wp-block-button__link:hover .circle{
	background: #141414;
}
.wp-block-button__link:hover .arrow{
	background-color: #fff;
}
.wp-block-button__link:hover .arrow::before{
	background-color: #fff;
}
.recruitment_page h2.ttl_en{
	font-size: 70px;
	font-weight: 700;
	font-family: Inter;
	text-align: center;
}

.recruitment_page .showcase {
	background: #fff;
	border-radius: 20px;
	max-width: 1100px;
	margin: 0 auto 100px;
	padding: 50px 100px;
}
.recruitment_page .showcase h4{
	font-size: 30px;
	font-family: Inter;
	font-weight: 900;
	color: #121e44;
	border-bottom: 1px solid #121e44;
	text-align: center;
	padding: 0 0 10px;
	margin: 0 0 30px;
}

.recruitment_page .showcase ul{
  column-count: 3;
  column-gap: 30px;
  margin: 0 0 60px;
}
.recruitment_page .showcase ul li{
	flex-basis: calc(32% - 30px);
	margin: 0 0 15px 0.6em;
	line-height: 1.3;
	text-indent: -0.6em;
	color: #141414;
  break-inside: avoid;
}
.recruitment_page .showcase ul li:before{
	content: "・";
}


/* 08.22 */
.recruitment_page .pitchcontest_startup_wrap{
	max-width: 1100px;
	margin: 0 auto 40px;
}
.recruitment_page .pitchcontest_startup_wrap .startup_ttl{
    font-size: 70px;
    font-weight: 700;
    line-height: 1.4;
}
.recruitment_page .pitchcontest_startup_wrap .txt{
	margin: 0 auto 60px;
	line-height: 1.4;
}
.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_cont{
	background: #fff;
	border-radius: 20px;
	padding: 50px 100px;
	margin: 0 auto 100px;
}
.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_cont h4{
    font-size: 30px;
    font-family: Inter;
    font-weight: 900;
    color: #121e44;
    border-bottom: 1px solid #121e44;
    text-align: center;
    padding: 0 0 10px;
    margin: 0 0 30px;
}

.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_list{
	justify-content: center;
	align-items: flex-start;
	gap: 1%;
	margin: 0 auto 60px;
}
.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_list .wp-block-group{
	width: 24%;
}
.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_list .wp-block-group a:hover img{
	transform: scale(1.1);
}




.recruitment_page .pitchcontest_startup_wrap .wp-block-group p{
	text-align: center;
	padding: 10px 0 0 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: #141414;
}
.recruitment_page .pitchcontest_startup_wrap .wp-block-group p span{
	font-size: 11px;
	line-height: 1.3;
	padding: 10px 0 0 0;
	color: #141414;
}

.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_cont h4.Judges_ttl{
	padding: 60px 0 10px;
}
.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_list_Judges{
	justify-content: center;
	align-items: flex-start;
	gap: 10%;
}
.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_list_Judges .wp-block-group{
	width: 15%;
}

/* timetable page */
.timetable_page .area_name{
	font-size: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border:1px solid #fff;
	border-radius: 3px;
	padding: 10px 3px;
	margin: 0 0 10px;
	text-align: center;
	min-height: 80px;
	justify-content: center;
}
.timetable_page .area_name span{
	font-size: 16px;
	display:block;
}


.timetable_page .table_wrap{
	display: flex;
	gap: 10px;
}
.timetable_page .table_wrap .block{
	background: #fff;
	border-radius: 6px;
	margin: 0 0 10px;
	padding: 0 0 20px;
	overflow: hidden;
}
.timetable_page .table_wrap .block h2{
	color: #141414;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	padding: 0 30px 10px;
}
.timetable_page .table_wrap .block p{
	color: #141414;
}
.timetable_page .table_wrap .block .time{
	font-family: Inter;
	font-weight: 700;
	font-size: 20px;
	padding: 20px 30px 10px;
	text-align: center;
}


.timetable_page #talksession .table_wrap .area01 .block .category{
	display: block;
	border-radius: 0;
	text-align: center;
	color: #fff;
	margin: 0;
}
.timetable_page .table_wrap .block .txt{
	padding: 0 30px;
	line-height: 1.4;
	font-size: 15px;
}
.timetable_page .table_wrap .block .txt a{
	text-decoration: underline;
}
.timetable_page .table_wrap .block .txt a:hover{
	text-decoration: none;
}


.timetable_page .table_wrap .block .img_wrap{
	display: flex;
	flex: 1;
	justify-content: center;
	padding: 10px 30px;
	gap: 20px;
}
.timetable_page .table_wrap .block .img_wrap .img{
	max-width: 66px;
}


/* area */
.timetable_page .table_wrap .area01{
	flex: 2;
}
.timetable_page .table_wrap .area01 .block h2{
	text-align: left;
	line-height: 1.4;
}
.timetable_page .table_wrap .area01 .block .time{
	text-align: left;
	font-size: 24px;
}
.timetable_page .table_wrap .area01 .block .name{
	padding: 0 30px 10px;
	font-weight: 700;
	font-size: 14px;
}

.timetable_page .table_wrap .area02,
.timetable_page .table_wrap .area03,
.timetable_page .table_wrap .area04{
	flex: 1;
}


/* day 01 */
.timetable_page .day01 .table_wrap .area01 {
	padding: 0 0 196px;
}
/*.timetable_page .day01 .table_wrap .area01 .t01{
	margin-top: 50px
}
*/
.timetable_page .day01 .table_wrap .area02 .block{
	height: calc(100% - 100px)
}
.timetable_page .day01 .table_wrap .area03 .block{
	height: calc(99% - 140px)
}
/*
.timetable_page .day01 .table_wrap .area03 .t01{
	margin-top: 50px
}
*/
.timetable_page .day01 .table_wrap .area04 .t01{
	height: 19%;
	/*margin-top: 50px;*/
}
.timetable_page .day01 .table_wrap .area04 .t02{
	height: 7%
}
.timetable_page .day01 .table_wrap .area04 .t03{
	height: 27%
}
.timetable_page .day01 .table_wrap .area04 .t04{
	height: 11%
}

/* day 02 */
/*.timetable_page .day02 .table_wrap .area01 .t01{
	margin-top: 50px;
}
*/
.timetable_page .day02 .table_wrap .area02 .block{
	height: calc(89% - 100px)
}
.timetable_page .day02 .table_wrap .area03 .block{
	height: calc(89% - 140px)
}
/*
.timetable_page .day02 .table_wrap .area03 .t01{
	margin-top: 50px;
}
*/
.timetable_page .day02 .table_wrap .area04 .t01{
	height: 28.1%;
/*	margin-top: 50px;*/
}
.timetable_page .day02 .table_wrap .area04 .t02{
	height: 9%
}
.timetable_page .day02 .table_wrap .area04 .t03{
	height: 29%
}
.timetable_page .day02 .table_wrap .area04 .t04{
	height: 12%
}

/* archive page */
main.archive_page .entry_wrap h2{
	font-size: 70px;
	font-weight: 700;
	font-family: Inter;
	text-align: center;
}
main.archive_page .entry_wrap .txt{
	padding: 0 0 50px;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
}

main.archive_page .movie01{
	width: 1000px;
	margin: 0 auto 100px;
	aspect-ratio: 16/9;
}
main.archive_page .movie01 iframe{
	width: 100%;
	height: 100%
}

main.archive_page .movie_wrap{
	max-width: 1000px;
	margin: 0 auto 100px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
main.archive_page .movie_wrap .movie{
	width: 49%;
	aspect-ratio: 16/9;
	margin: 0 0 2%;
}
main.archive_page .movie_wrap .movie iframe{
	width: 100%;
	height: 100%;
}
.swiper-free-mode>.swiper-wrapper{
  transition-timing-function: linear !important;
}
main.archive_page .slider_l{
	margin: 0 0 30px;
}
main.archive_page .slider_l li{
}
main.archive_page .slider_r{
	margin: 0 0 30px;
}
main.archive_page .slider_r li{
}



/* Matching page */
main.matching_page .header_wrap h1{
	font-size: 50px;
	line-height: 1.4;
	margin: 0 0 20px;
	letter-spacing: 5px;
}
main.matching_page .header_wrap p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 10px;
}
main.matching_page .title_wrap h3{
	font-size: 60px;
	font-weight: 700;
}

main.matching_page .txt_intro{
	max-width: 1100px;
	margin: 0 auto 60px;
	line-height: 1.6;
}
main.matching_page .container{
	max-width: 1100px;
	margin: 0 auto ;
	padding: 0 0 30px;
	display: flex;
	justify-content: space-between;
}

main.matching_page .container .detail{
	width: 55%;
}
main.matching_page .container .detail ul li{
	display: flex;
	line-height: 1.6;
	padding: 0 0 20px;
	margin: 0 0 20px;
	border-bottom: 1px solid #fff;
}
main.matching_page .container .detail ul li:last-child{
	border-bottom: 0;
}

main.matching_page .container .detail ul li h5{
	width: 25%;
	font-size: 18px;
	font-weight: 600;
}
main.matching_page .container .detail ul li .txt{
	width: 70%;
}
main.matching_page .container .detail ul li .txt p{
	font-size: 16px;
	font-weight: 400;
}
main.matching_page .container .detail ul li .txt p span{
	display: block;
	font-size: 14px;
}
main.matching_page .container .detail ul li .txt p a{
	color: #fff;
	text-decoration: underline;
}
main.matching_page .container .detail ul li .txt p a:hover{
	text-decoration: none;
}

main.matching_page .container .detail ul li .txt .notice{
	font-size: 15px;
	margin-left: 1em;
	text-indent: -1em;
}

main.matching_page .container .flow{
	width: 42%;
}
main.matching_page .container .flow li{
	margin: 0 0 30px;
	position: relative;
}
main.matching_page .container .flow li:after {
	content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 11px solid #ffffff;
  border-bottom: 0;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 11px);
}
main.matching_page .container .flow li:last-child:after {
	display: none;
}

main.matching_page .container .flow .inner{
	background: #ededed;
	margin: 0 0 10px;
}
main.matching_page .container .flow .inner a{
	text-decoration: underline;
}
main.matching_page .container .flow .inner .head{
	display: flex;
}
main.matching_page .container .flow .inner .head h5{
	display: flex;
	align-items: center;
	background: #ffdb80;
	color: #121e44;
	font-size: 22px;
	font-weight: 800;
	font-family: Inter;
	padding: 25px 15px;
}
main.matching_page .container .flow .inner .head p{
	display: flex;
	align-items: center;
	color: #121e44;
	padding: 10px;
	font-weight: 700;
	line-height: 1.3;
}
main.matching_page .container .flow .inner p{
	color: #141414;
	font-weight: 400;
	line-height: 1.4;
}
main.matching_page .container .flow .notice{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

main.matching_page .container .flow .inner .cont{
	padding: 15px 20px;
}
main.matching_page .container .flow .inner .img{
	text-align: center;
	margin: 0 0 20px;
}
main.matching_page .container h4{
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 30px;
}
main.matching_page .entry_wrap .btn_wrap{
	display: flex;
	justify-content: center;
	gap: 60px;
}
main.matching_page .entry_wrap .btn_wrap p{
	border-bottom: 1px solid #fff;
	position: relative;
	text-align: center;
	padding: 0 0 15px;
	margin: 0 0 20px;
	font-weight: 700;
}
main.matching_page .entry_wrap .btn_wrap p:after{
	content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 11px solid #ffffff;
  border-bottom: 0;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 11px);
}



main.matching_page .entry_wrap .btn_wrap a{
	width: 260px;
	height: 40px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 600;
	border-radius: 60px;
	border:1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 40px 10px 20px;
	text-align: center;
	letter-spacing: 3px;
	position: relative;
}
main.matching_page .entry_wrap .btn_wrap a .circle{
	position: absolute;
	right: 10px;
	border-radius: 100px;
	border:1px solid #fff;
	width: 46px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #d0d0d0;
}
main.matching_page .entry_wrap .btn_wrap a .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #fff;
}
main.matching_page .entry_wrap .btn_wrap a .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}

main.matching_page .entry_wrap .btn_wrap .btn_entry{
	background: #a00008;
}
main.matching_page .entry_wrap .btn_wrap .btn_entry .circle{
	background: #a00008;
}
main.matching_page .entry_wrap .btn_wrap .btn_entry:hover{
	color: #a00008;
}

main.matching_page .entry_wrap .btn_wrap .btn_login{
	background: #108cad;
}
main.matching_page .entry_wrap .btn_wrap .btn_login .circle{
	background: #108cad;
}
main.matching_page .entry_wrap .btn_wrap .btn_login:hover{
	color: #108cad;
}
main.matching_page .entry_wrap .btn_wrap a:hover{
	background: #fff;
}

main.matching_page .container .btn_wrap .btn_detail:hover{
	color: #141414;
}
main.matching_page .container .btn_wrap .btn_detail .arrow,
main.matching_page .container .btn_wrap .btn_detail .arrow:before {
	background: #000;
}
main.matching_page .container .btn_wrap .btn_detail:hover .circle{
	background: #141414;
}
main.matching_page .container .btn_wrap .btn_detail:hover .arrow,
main.matching_page .container .btn_wrap .btn_detail:hover .arrow:before {
	background: #fff;
}

main.matching_page .btob_meeting{
	margin: 0 auto 100px;
}
main.matching_page .speed_dating{
	margin: 0 auto 100px;
}

main.matching_page .speed_dating .title_wrap h2{
	margin: 0 0 20px;
}

main.matching_page .speed_dating .btn_schedule{
	max-width: 450px;
	margin: 0 auto;
}


main.matching_page .btn_schedule .btn_detail{
	width: 260px;
	height: 40px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 600;
	border-radius: 60px;
	border:1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 40px 10px 20px;
	text-align: center;
	letter-spacing: 1px;
	position: relative;
}
main.matching_page .btn_schedule .btn_detail .circle{
	position: absolute;
	right: 10px;
	border-radius: 100px;
	border:1px solid #fff;
	width: 46px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #d0d0d0;
}
main.matching_page .btn_schedule .btn_detail .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-top: 5.7px;
  border-radius: 9999px;
  background-color: #fff;
}
main.matching_page .btn_schedule .btn_detail .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
main.matching_page .btn_schedule .btn_detail:hover{
	color: #141414;
	background: #fff;
}
main.matching_page .btn_schedule .btn_detail .arrow,
main.matching_page .btn_schedule .btn_detail .arrow:before {
	background: #000;
}
main.matching_page .btn_schedule .btn_detail:hover .circle{
	background: #141414;
}
main.matching_page .btn_schedule .btn_detail:hover .arrow,
main.matching_page .btn_schedule .btn_detail:hover .arrow:before {
	background: #fff;
}


main.matching_page .operator .operator_list{
	max-width: 1100px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	padding: 50px 100px;
	flex-wrap: wrap;
}
main.matching_page .operator .operator_list .notice{
	width: 100%;
	text-align: right;
	color: #141414;
}

main.matching_page .operator .operator_list h4{
	font-size: 40px;
	font-family: Inter;
	font-weight: 900;
	color: #121e44;
	border-bottom: 1px solid #121e44;
	text-align: center;
	padding: 0 0 10px;
	margin: 0 0 30px;
}
main.matching_page .operator .operator_list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 4%;
	margin: 0 0 10%;
}
main.matching_page .operator .operator_list li{
	width: 22%;
	margin: 0 0 8%;
}

main.matching_page .operator .operator_list li p{
	color: #141414;
	font-size: 13px;
	letter-spacing:0;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
}
main.matching_page .operator .operator_list li a:hover{
	opacity: .6;
}
main.matching_page .operator .operator_list li .m24{
	display: flex;
}
main.matching_page .operator .operator_list li .m24 a{
	width: 50%;
	display: block;
}





/* matching page en */
main.matching_page.en_page .btn_wrap a{
	letter-spacing: 0;
}

main.matching_page.en_page .container .flow .inner .head p{
	font-size: 14px;
}

main.matching_page.en_page .btn_wrap p{
	height: 4em;
	line-height: 1.4;
}
main.matching_page.en_page .container .detail ul li .txt .notice{
    margin-left: 0.6em;
    text-indent: -0.6em;
}


@media screen and (max-width:1100px) {
/* TAB */
.kv .inner{
	padding: 3vw 4vw;
}
#about .inner,#news .inner,.contents_block,#talksession .inner,#sponsor .inner,#other_contents .inner{
	margin: 0 5%
}
#speaker .title_wrap,#talksession .title_wrap,#information .title_wrap,#sponsor .title_wrap,#organizer .title_wrap, #other_contents .title_wrap,#sideevent .title_wrap{
	margin: 0 5% 60px;
}
#organizer .inner{
	margin: 0 5% 80px;
}
#information .inner,
#information .img_map{
	margin: 0 5% 60px;
}
.title_wrap h2{
	font-size: 12vw;
}
.top #contents .title_wrap h2{
	font-size: 14vw;
}

.contents_block .box_wrap .box h3{
	font-size: 2.8vw;
}
.contents_block .box_wrap .box h4{
	font-size: 2vw;
}
#sideevent h3{
	margin: 0 5% 60px;
}
#sideevent .txt_map{
	margin: 0 5% 60px;
}
#sideevent .event_bnr{
	margin: 0 5% 5%;
	gap: 2%;
}
#sideevent .bnr{
	margin: 0 5%;
	gap: 2%;
}

/* archive page */
main.archive_page .entry_wrap h2{
	font-size: 70px;
	font-weight: 700;
	font-family: Inter;
	text-align: center;
}
main.archive_page .entry_wrap .txt{
	padding: 0 0 50px;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
}

main.archive_page .movie01{
	width: auto;
	margin: 0 5% 40px;
}

main.archive_page .movie_wrap{
	margin: 0 5% 40px;
}
main.archive_page .movie_wrap .movie{
	width: 49%;
	aspect-ratio: 16/9;
	margin: 0 0 2%;
}
main.archive_page .movie_wrap .movie iframe{
	width: 100%;
	height: 100%;
}

main.archive_page .slider_l{
	margin: 0 0 10px;
}
main.archive_page .slider_l li{
	margin: 0 5px;
}
main.archive_page .slider_r{
	margin: 0 0 10px;
}
main.archive_page .slider_r li{
	margin: 0 5px;
}


/* ======TAB=======*/}

@media screen and (max-width:828px) {
/* SP */
.pc{	display: none;}
.sp{	display: inline-block;}
.pc_br{	display: none;}
.sp_br{	display: block;}


header{
	padding: 3% 5%;
	height: 56px;
}
header nav{
	display: none;
	position: fixed;
	top: 50px;
	left: 0;
	width: 100vw;
	background: #333;
	padding: 10% 0;
}
header nav .nav{
	flex-direction: column;
	margin: 0 5% 10%;
}
header nav .nav li .prd{
	width: auto;
	position: static;
	display: block;
}
header nav .lang{
	margin: 0 5%;
	border-radius: 6px;
}
header nav .lang li{
	width: 50%;
}



header .sp_nav{
	display: block;
  width: 40px;
  height: 30px;
  cursor: pointer;
  z-index: 100;
  position: relative;
  top: 0;
  right: 0;
}
header .sp_nav span {
  display: block;
  position: relative;
}
header .sp_nav span:before{
	content: "";
	display: block;
	height: 3px;
	width: 100%;
  background: #fff;
  position: absolute;
  top: 9px;
}
header .sp_nav span:after{
	content: "";
	display: block;
	height: 3px;
	width: 100%;
  background: #fff;
  position: absolute;
  top: 17px
}
header nav .social{
	display: block;
	padding: 20% 0 0 0;
}
header nav .social ul{
	display: flex;
	justify-content: center;
	gap: 20px;
}
header nav .social ul li{
	width: calc((100/828)*100%);
}
header nav .social ul li img{
	filter: invert(100%) sepia(7%) saturate(17%) hue-rotate(242deg) brightness(108%) contrast(100%);;
}

.fin p{
	font-size: 3.8vw;
}

/* kv sp */
.kv{
	padding: 90% 0 0 0;
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	background: url("../img/bg_mv-sp.jpg") top center no-repeat;
	background-size: cover;
}
.kv .inner .txt01{
	font-size: 3vw;
	line-height: 2;
	letter-spacing: 1px;
}
.kv .inner h1{
	width: 100%;
	margin: 0 0 3%;
}
.kv .inner .txt02{
	font-size: 3vw;
	line-height: 1.4;
	margin: 0 0 3%;
}
.kv .inner .info{
	width: 100%;
}
.kv .inner .info .date{
	font-size: 5.5vw;
	text-align: justify;
	margin: 0;
}
.kv .inner .info .access{
	font-size: 5.5vw;
	text-align: justify;
	margin: 0 0 3%;
}
.kv .inner .info .access span{
	font-size: 3vw;
	display: block;
	text-align: justify;
}

.kv .inner .entry{
	width: 100%;
	padding: 3%;
}
.kv .inner .entry .ttl{
	font-size: 3.8vw;
	margin: 0 0 3%;
	letter-spacing: 0;
}
.kv .inner .entry .detail{
	gap: 5%;
	padding: 2% 0;
}
.kv .inner .entry .detail .txt{
	font-size: 4vw;
	padding: 2% 4%;
}
.kv .inner .entry .detail .txt span{
	font-size: 3vw;
}
.kv .inner .entry .detail .btn_entry{
	width: 50%;
	font-size: 3.7vw;
	padding: 2% 2vw 2% 4vw;
	letter-spacing: 0;
}
.kv .inner .entry .detail .btn_entry .circle{
	width: 7vw;
}
.kv .inner .entry .achievements h3{
	font-size: 3.8vw;
	margin: 0 0 3%;
	letter-spacing: 0;
}
.kv .inner .entry .achievements ul li p{
	font-size: 2.6vw;
}
.kv .inner .entry .achievements ul li p b{
	font-size: 4vw;
}

.kv .inner .btn_timetable{
	width: 100%;
	margin: 0 auto 3%;
}
.kv .inner .btn_timetable li{
	width: 49%;
}
.kv .inner .btn_timetable li a{
	font-size: 5vw;
	padding:4% 2% 4% 9%;

}
.kv .inner .btn_timetable li a .txt{
	font-size: 3vw;
	letter-spacing: 0;
}
.kv .inner .btn_timetable li a .circle{
	width: 7vw;
}
.kv .inner .btn_pdf_wrap{
	width: 48%;
	top: 120px
}

.kv .inner .btn_pdf li a{
	font-size: 3.4vw;
	padding:4% 2% 4% 9%;
	letter-spacing: 0px;
}
.kv .inner .btn_pdf li a .circle{
	width: 7vw;
}




.kv_social{
	width: 50%;
	flex-flow: column;
	border-radius: 0 0 6px 6px;
	right: 0;
	top: 56px;
	background: transparent;
}
.kv_social ul{
	padding: 4% 8%;
	justify-content: space-around;
	display: none;
}
.kv_social ul li{
	width: 20%;
}
.kv_social .btn_entry{
	width: auto;
	font-size: 3.6vw;
	padding:4% 2% 4% 9%;
	border-radius: 0 0 6px 6px;
	letter-spacing: 0;
}
.kv_social .btn_entry .circle{
	width: 7vw;
}
.kv .inner .movie_bnr{
	width: 47vw;
	bottom: auto;
	top: -19%
}

/* top btn_login */
.kv_social{
	align-items: normal;
}
.kv_social .btn_entry{
	border-radius: 0;
	height: 36px;
}
.kv_social .btn_login{
	width: auto;
	height: 36px;
	font-size: 3.6vw;
	padding:4% 2% 4% 9%;
	border-radius: 0 0 6px 6px;
	letter-spacing: 0;
}
.kv_social .btn_login .circle{
	width: 7vw;
}
.kv_social .btn_login .txt b{
	font-size: 2.6vw;
	text-align: left;
}
.kv_social .btn_login .txt{
	font-size: 3.6vw;
	text-align: left;
}


.top section{
	margin-bottom: 20%;
}
.title_wrap{
	margin: 0 auto 10%;
}
.title_wrap h2{
	font-size: 17vw;
}

/* about sp */
#about .inner{
	display: block;
}
#about .title_wrap{
	margin: 0 auto 10%;
}
#about .technology{
	margin: 0 0 10%;
}
#about .technology dd{
	padding: 4% 0;
}

/* news sp */
#news .inner ul li a{
	display: block;
}
#news .inner ul li .title{
	width: 100%;
}
#news .inner .btn_wrap .btn_more{
	font-size: 3.6vw;
}

/* contents sp */
.top #contents{
	padding: 20% 0;
	margin: 0 0 20%;
}
.top #contents .title_wrap h2{
	font-size: 19vw;
}
.top #contents .title_wrap h3 {
	font-size: 11vw;
}
.contents_block .box_wrap{
	display: block;
}
.contents_block .box_wrap .box,
.contents_block .box_wrap .box:nth-child(3){
	width: 100%;
	margin: 0 0 15%;
}
.contents_block .box_wrap .box h3{
	font-size: 6vw;
	letter-spacing: 2px;
}
.contents_block .box_wrap .box h4{
	font-size: 4vw;
}


/* speaker sp */
#speaker .title_wrap h2{
	margin: 0 0 20px;	
}
#speaker .slide{
	margin: 0 0 10%;
}
#speaker .slide li{
	margin: 0 5px;
}
#speaker .slide li .profile{
	padding: 5% 0 0 0;
}
#speaker .slide li .profile .category{
	font-size: 3vw;
	padding: 1% 4%;
}

#speaker .slide li .profile .company{
	font-size: 3.4vw;
	padding: 0 0 5% 13%;

}
#speaker .slide li .profile .title{
	font-size: 3vw;
	padding: 0 0 5% 13%;
}
#speaker .slide li .profile .name{
	font-size: 5vw;
	padding: 0 0 0 13%;
}
#speaker .btn_wrap .slidebtn_wrap{
	position: static;
	justify-content: center;
	margin: 0 0 15%;
}
#speaker .btn_wrap .btn_more{
	font-size: 3.6vw;
}

/* modal sp */
.modal_speaker{
	display: block;
}
.modal_speaker .detail{
	width: auto;
	margin: 0 0 5%;
}
.modal_speaker .detail .img{
	max-width: 200px;
}
.modal_speaker .txt{
	width: auto;
}
.modal_speaker .txt p{
	font-size: 3.4vw;
	line-height: 1.8;
}




/* talksession sp */
/*.top section#talksession{
	margin-bottom: 0;
}*/
#talksession .tab_wrap .btn_tab h3{
	font-size: 7vw;
}
#talksession .tab_wrap .btn_tab h3 span{
	font-size: 4vw;
}
#talksession .tab_wrap .btn_tab.current h3{
	font-size: 10vw;
}
#talksession .category{
	font-size: 3.6vw;
	margin: 0 0 5%;
}
#talksession .tab_block01{
	display: block;
	padding: 5%;
}
#talksession .tab_block01 .detail{
	width: 100%;
	margin: 0;
}
#talksession .tab_block01 .detail h4{
	font-size: 4.7vw;
	margin: 0 0 5%;
}
#talksession .tab_block01 .detail .txt{
	font-size: 3.7vw;
}
#talksession .tab_block01 .detail .time{
	font-size: 6vw;
	padding: 3% 0 0 0;
}

#talksession .tab_block01 .speaker.sp{
	width: 100%;
	display: block;
	text-align: right;
	padding: 0 0 5%;
}
#talksession .tab_block01 .speaker.pc{
	display: none;
}

#talksession .tab_block01 .speaker .img{
	width: 60%;
	margin: 0 auto 0 0;
}
#talksession .tab_block01 .speaker .profile{
	position: relative;
	display: inline-block;
	margin: -30% 0 0 auto;
}
#talksession .tab_block01 .speaker .profile .name{
	font-size: 5vw;
	letter-spacing: 3px;
}
#talksession .tab_block01 .speaker .profile .title{
	font-size: 3.6vw;
}
#talksession .tab_comingsoon p{
	padding: 15% 0 0 0;
}

#talksession .tab_block02_wrap{
	flex-direction: column;
}
#talksession .tab_block02 .detail h4{
	font-size: 4.7vw;
	margin: 0 0 5%;
}
#talksession .tab_block02 .speaker .profile .title{
	font-size: 2.3vw;
}
#talksession .tab_block02 .detail .txt{
	font-size: 3.7vw;
}
#talksession .tab_block02 .detail .time{
	font-size: 6vw;
	padding: 3% 0 0 0;
}
#talksession .tab_block02 .speaker.prof02{
	padding: 0 20px;
}
#talksession .inner .btn_wrap .btn_more{
	width: auto;
}

#other_contents{
	margin: 0 5%;
}
#other_contents .inner ul{
	flex-wrap: wrap;
	gap: 4%;
	margin: 0;
}
#other_contents .inner ul li{
	flex-basis: 48%;
	margin: 0 0 4%;
}
#other_contents .inner ul li:last-child{
	margin: 0;
}



/* information sp */
#information .inner{
	padding: 5%;
	display: block;
	margin: 0 5% 60px;
}
#information .inner ul{
	width: auto;
	margin: 0 0 10%;
}
#information .inner ul li {
	display: block;
	margin: 0 0 10%;
}
#information .inner ul li:last-child{
	margin: 0;
}

#information .inner ul li .ttl{
	width: auto;
	font-size: 4.0vw;
	margin: 0 0 3%;
	font-weight: 600;
}
#information .inner ul li .txt{
	width: auto;
	font-size: 3.6vw;
	border-left: 0;
	border-top: 1px solid #141414;
	padding: 5% 0 0 0;
}
#information .inner ul li .txt .notice{
	font-size: 3vw;
}
#information .inner .map{
	width: 100%;
}
#information .img_map{
	margin: 0 5%;
	padding: 5%;
}


/* sponsor sp */
#sponsor .title_wrap h2{
	margin: 0 0 20px;	
}
#sponsor .inner h3{
	font-size: 5vw;
}
#sponsor .inner ul{
	margin: 0 0 10%;
}
#sponsor .inner ul li{
	padding: 10px;
}
#sponsor .inner ul li.bnr_l img{
	width: calc((500/828)*100%);
}
/*
#sponsor .inner ul li.bnr_m img{
	width: calc((700/828)*100%);
}
#sponsor .inner ul li.bnr_s img{
	width: calc((490/828)*100%);
}
*/

#sponsor .inner ul li.txt_link{
	align-items: center;
}
#sponsor .inner ul li.txt_link a{
	width: 100%;
	height: 100%;
	font-size: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.4;
}

/* organizer sp */
#organizer .title_wrap h2{
	margin: 0 0 20px;	
}
#organizer .inner ul{
}
#organizer .inner ul li{
	width: 48%;
	padding: 10px;
}


#organizer .event_bnr li{
	width: 32%;
}

/* sideevent sp */
#sideevent .event_bnr{
	margin: 0 5% 15%;
	gap: 4%;
}
#sideevent .bnr{
	margin: 0 5%;
}
#sideevent .event_bnr li{
	flex-basis: 48%;
	margin: 0 0 4%
}

#sideevent .txt_map{
	margin: 0 5% 15%;
	line-height: 1.4;
}
#sideevent h3{
	font-size: 5vw;
	margin: 0 5% 15%;
}



/* footer sp */
footer .txt02{
	font-size: 3.2vw;
}
footer .txt03{
	font-size: 3vw;
}
footer .txt03 a{
	color: #fff;
}


/* page ====================== */
main.page .header_wrap{
	padding: 41% 0 20%;
	text-align: center;
}
main.page .header_wrap h1{
	font-size: 14vw;
	letter-spacing: 3px;
}
main.page .header_wrap p{
	font-size: 5vw;
}
main.page .content{
	padding: 0 0 20%;
}
main.page .content .topicpath {
	padding: 5% 5%;
	margin: 0 0 15%;
}
main.page .content .topicpath ul li{
	padding:0 10px 0 0;
	font-size: 3vw;
}
main.page .content .topicpath ul li:last-child{
	padding: 0;
}
main.page .content .topicpath ul li a{
	font-size: 3vw;
}
main.page .content .topicpath ul li a:after{
	margin: 0 0 0 10px;
}

main.page .content .entry_content{
	margin: 0 5% 15%;
}

/* news page */
main.page .content .news_list ul{
	margin: 0 5%;
	border-top: 2px solid #fff;
	padding: 20px 0 0 0;
}
main.page .content .news_list li{
	border-bottom: 1px solid #fff;
	padding: 0 0 20px;
	margin: 0 0 20px;
	display: block;
	line-height: 2;
	align-items: center;
}
main.page .content .news_list li:last-child{
	border-bottom:2px solid #fff;
}

main.page .content .news_list li a{
	width: 100%;
	display: block;
}
main.page .content .news_list li .date{
	width: auto;
	text-align: left;
}
main.page .content .news_list li .title{
	width: auto;
}

/* speaker page */
main.speaker_page #speaker .slide li .profile {
	padding: 5% 0 0 0;
}
main.speaker_page #speaker .slide li .profile .category{
	font-size: 14px;
}
main.speaker_page #speaker .slide{
	margin: 0 5%;
	display: block;
}
main.speaker_page #speaker .slide li{
	width: 100%;
	margin: 0 0 20px;
}

/* recruitment page sp */
main.recruitment_page .content{
	padding: 0;
}
main.recruitment_page .header_wrap h1{
	font-size: 9vw;
}
main.recruitment_page .header_wrap p{
	font-size: 3.4vw;
}
main.recruitment_page .entry_wrap .container{
	padding: 0 5% 20%;
}

main.recruitment_page .entry_wrap .recruitment-text-wrapper-list{
	display: block;

}

main.recruitment_page .entry_wrap .recruitment-text-wrapper-ttl{
	width: auto;
	font-size: 4vw;
	margin: 0 0 3%;
}
main.recruitment_page .entry_wrap .recruitment-text-wrapper-txt{
	width: auto;
	font-size: 3.4vw;
}

.rec-merit{
	padding: 20% 0 0 0;
	margin: 0 0 20%;
}
.rec-merit .is-layout-grid{
	display: block;
	margin: 0 5% ;
}
.recruitment-panel{
	gap: 0;
	margin: 0 5%;
}
.recruitment-panel p{
	padding: 10% 13%;
	margin: 0 0 15%;
}
.recruitment-panel p:last-child{
	margin-bottom: 0;
}
.recruitment-panel p b{
	font-size: 4.2vw;
	display: block;
}
.wp-block-buttons>.btn_guideline{
	margin: 0 auto;
	padding: 5% 0 0;
}


.wp-block-button__link{
	letter-spacing: 0;
	padding: 14px 53px 14px 30px;
	font-size: 3.4vw;
}
.nolink .wp-block-button__link{
	padding: 14px 30px 
}

.recruitment-form p{
	font-size: 3.4vw;
}

.recruitment_page h2.ttl_en{
	font-size: 50px;
}
.recruitment_page .showcase{
	padding: 5%;
	margin: 0 5% 20%!important;
}
.recruitment_page .showcase h4{
	font-size: 4.6vw;
}
.recruitment_page .showcase ul{
	gap: 0;
  column-count: 2;         /* 列数を指定 */
  column-gap: 16px;        /* 列の間隔 */
}
.recruitment_page .showcase ul li{
	flex-basis: 100%;
	margin: 0 0 5px 0.6em;
	font-size: 3.2vw;
}
.recruitment_page .pitchcontest_startup_wrap .startup_ttl{
	font-size: 40px;
}
.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_list{
	justify-content: space-between;
	margin: 0 auto 10%;
}
.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_list .wp-block-group{
	width: 45%;
	margin: 0 0 10%;
}
.recruitment_page .pitchcontest_startup_wrap .wp-block-group p{
	font-size: 3.2vw;
}
.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_cont{
	padding: 5%;
	margin: 0 5% 20% !important;
}

.recruitment_page .pitchcontest_startup_wrap .pitchcontest_startup_list_Judges .wp-block-group{
	width: 23%;
}




/* timetable page sp */
.timetable_page .day01,
.timetable_page .day02{
	overflow-x: scroll;
}
.timetable_page .table_wrap{
	width: 500px;
}
.timetable_page .table_wrap .block .time{
	padding: 20px 15px;
}
.timetable_page .table_wrap .block h2{
	padding: 0 20px 10px;
}
.timetable_page .table_wrap .area01 .block .name{
	padding: 0 20px 10px
}
.timetable_page .table_wrap .block .txt{
	padding: 0 20px;
}
.timetable_page .area_name{
	font-size: 22px;
}



/* Matching page sp */
main.matching_page .header_wrap h1 {
	font-size: 9vw;
}
main.matching_page .header_wrap p {
	font-size: 3.4vw;
}
main.matching_page .entry_wrap .btob_meeting,
main.matching_page .entry_wrap .speed_dating{
	padding: 0 5% 20%;
}
main.matching_page .btob_meeting,
main.matching_page .speed_dating,
main.matching_page .operator{
	margin: 0 auto;
}
main.matching_page .entry_wrap .operator{
	padding: 0 5%;
}

main.matching_page .container{
	flex-direction: column;
}
main.matching_page .container .detail{
	width: auto;
	margin: 0 0 20%;
}
main.matching_page .container .detail ul li{
	flex-direction: column;
}
main.matching_page .container .detail ul li:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
}
main.matching_page .container .detail ul li h5{
	width: auto;
	font-size: 4vw;
	margin: 0 0 3%;
}
main.matching_page .container .detail ul li .txt{
	width: auto;
}
main.matching_page .container .detail ul li .txt p{
	font-size: 3.4vw;
}
main.matching_page .container .detail ul li .txt .notice{
	font-size: 3.1vw;
}
main.matching_page .container .detail .btn_wrap{
	padding: 10% 0 0 0;
}

main.matching_page .container .flow{
	width: auto;
}
main.matching_page .container .flow .inner .head p{
	font-size:3.6vw;
}
main.matching_page .container .flow .notice{
	font-size: 3.1vw;
}
main.matching_page .btn_wrap{
	flex-direction: column;
}
main.matching_page .operator .operator_list{
	padding: 8% 10%;
	flex-direction: column;
}
main.matching_page .operator .operator_list ul li{
	width: 48%;
}
main.matching_page .operator .operator_list li p{
	font-size: 3vw;
}
main.matching_page .operator .operator_list h4{
	font-size: 6vw;
}
main.matching_page.en_page  .entry_wrap .btn_wrap p{
	height: auto
}
main.matching_page .operator .operator_list .notice{
	font-size: 3.2vw;
}


/* Archive page sp */
main.archive_page .entry_wrap h2{
	font-size: 50px;
}
main.archive_page .entry_wrap .txt{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6;
	padding: 15px 0 50px;
}

/* ======SP=======*/}



/* en */
.en_top .kv .inner .txt01{
	line-height: 1.4;
}
.en_top .kv .inner .info .access{
	line-height: 2;
}
.en_top .kv .inner .entry{
	padding:15px 1vw;
}
.en_top .kv .inner .entry .ttl{
	letter-spacing: 1px;
}
.en_top .kv .inner .entry .detail .btn_entry{
	font-size: 1.4vw;
	letter-spacing: 0;
	width: 21vw;
}

.en_top .kv .inner .entry .detail .txt{
	font-size: 1.4vw;
	letter-spacing: 0;
}
.en_top .kv .inner .entry .detail .txt span{
	font-size: 1vw;
}
.en_top .kv_social .btn_entry,
.en_top .kv_social .btn_login,
.en_page .kv_social .btn_entry{
	font-size: 1vw;
}
.en_top #talksession .tab_block01 .speaker .profile .name{
	letter-spacing: 0;
}
.kv_social.en_social .btn_login .txt b{
	font-size: 0.7vw;
}
.en_top .kv_social .btn_login:hover{
	color: #108cad;
}


@media screen and (max-width:828px) {
.en_top .kv_social{

}



.en_top .kv_social .btn_entry, 
.en_page .kv_social .btn_entry{
	font-size: 3.6vw;
}
.kv_social.en_social .btn_login .txt b{
	font-size: 2.3vw;
}
.kv_social.en_social .btn_entry{
	height: 36px
}
.kv_social.en_social .btn_login{
	height: 46px
}

.en_top #news .inner ul li .title{
	word-break:break-word;
}
.en_top footer .txt02{
	word-break: break-word;
}


.en_top .kv{
	padding: 98% 0 0 0;
}

.en_top .kv .inner .info .access{
	text-align: left;
	font-size: 5vw;
}
.en_top .kv .inner .info .access span{
	font-size: 2.7vw;
}
.en_top .kv .inner .entry{
	padding: 5% ;
}
.en_top .kv .inner .entry .ttl{
	font-size: 3vw;
}
.en_top .kv .inner .txt01{
	line-height: 2;
	margin: 0 0 3%;
}
.en_top .kv .inner .entry .detail{
	flex-direction: column;
}
.en_top .kv .inner .entry .detail .txt{
	font-size: 4.5vw;
	margin: 0 auto 5%;
	width: 60%;
}
.en_top .kv .inner .entry .detail .txt span{
	font-size: 2.6vw;	
}
.en_top .kv .inner .entry .detail .btn_entry{
	font-size: 4vw;
	width: auto;
	padding: 3% 4% 3% 10% ;
}
.en_top .kv .inner .movie_bnr{
	top: -20%
}
.en_top #organizer .inner ul li a{
	font-size: 3vw;
}
.en_top #talksession .tab_block01 .speaker .profile .name{
	font-size: 4.6vw;
}
.en_top #talksession .tab_block01 .speaker .profile .company{
	font-size: 3vw;
}


}