@charset "utf-8";

/* ---------- ANIMATION ---------- */
@keyframes slideDown {
	0% {
		opacity: 0;
		transform: translateY(-100px);
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
@keyframes slideUp {
	0% {
		opacity: 0;
		transform: translateY(100px);
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1!important;
		transform: translateY(0px);
	}
}
@keyframes slideUp02 {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	100% {
		opacity: 1!important;
		transform: translateY(0px);
	}
}
@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateX(-100px);
	}
	100% {
		opacity: 1!important;
		transform: translateX(0px);
	}
}
@keyframes scaleAnm {
	0% {
		opacity: 0;
		transform: scale(0%);
	}
	100% {
		opacity: 1!important;
		transform: scale(100%);
	}
}
@keyframes rotation {
  0%{ 
	  transform: rotate(0);
  }
  100%{ 
	  transform: rotate(360deg);
  }
}

.none { opacity: 0; }
.scale { animation: scaleAnm ease 1.2s; animation-fill-mode: forwards; }
.slideDown { animation: slideDown ease 2s; animation-fill-mode: forwards; }
.slideIn { animation: slideIn ease 1.5s; animation-fill-mode: forwards; }
.slideUp { animation: slideUp ease 1.5s; animation-fill-mode: forwards; }
.logoSlideUp { animation-name: slideUp; animation-duration: 1.5s; animation-delay: 6s; }

/* ---------- TITLE ---------- */
.ttlStyle01 {
    text-align: center;
    margin-bottom: 32px;
    font-weight: bold;
    font-size: 2.0em;
    color: #ffffff;
}

#outline .ttlStyle01 {
    background-color: #5fb7e1;
}
#outline2 .ttlStyle01 {
    background-color: #76c5ab;
}


.ttlStyle01 + h2 {
    text-align: center;
    margin-bottom: 10px;
}

.bb_b {
    font-size: 1.3em;
    border-bottom: 2px solid #5fb7e1;
}

.bb_g {
    font-size: 1.3em;
    border-bottom: 2px solid #76c5ab;
}

.ttlStyle01 > h2 > p {
    margin-bottom: 32px;
    font-size: 0.8em;
    font-weight: normal;
}


.ttlStyle02 {
    text-align: center;
    font-weight: bold;
    font-size: 2.0em;
    color: #1F1F1F;
    max-width:  240px;/* 円のサイズ（高さにもなる） */
    border: 2px solid #1F1F1F;
    border-radius: 100%;
    padding: 16px;
    background: #DAE000;
    margin-right: 30px;
    
    /* 以下文字を中央寄せ */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
}

.ttlStyle02::before {/* 擬似要素で正円を作る */
  display: block;
  content: '';
  padding-top: 100%;
}

.job {
    width: 84%;
    margin: 0 auto 50px;
    padding: 30px 50px;
}

.job h3{
    font-size: 2.0em;
    color: #007ebd;
    margin-bottom: 10px;
    border-bottom: 1px solid;
}
.job h3 small{
    font-size: 50%;
    color: #555555;
}
.area h3, .jon_kind h3{
    font-size: 1.4em;
    color: #007ebd;
    margin: 0;
    border-bottom: none;
}

.area ul, .jon_kind ul{
    margin-bottom: 20px;
    font-size: 1.2em;
}


.area li, .jon_kind li{
    list-style-type: none; /*点を非表示*/
    position: relative; /*基準位置*/
    padding-left: 0.6em;
    display:inline-flex;
    margin-left: 15px;
}

.area li:before, .jon_kind li:before {
    border-radius: 50%; /*丸くする*/
    width: 8px; /*点の幅*/
    height: 8px; /*点の高さ*/
    display: block;
    position: absolute; /*絶対配置*/
    left: 0; /*点の位置*/
    right: 3;
    top: 0.6em; /*点の位置*/
    content: "";
    background: #0468BB; /*点の色*/
    
}

@media screen and (max-width: 480px) {
.ttlStyle02 {
    margin: 0 auto;

}
.ttlStyle03 {
    margin: 0 auto;

}

}



@keyframes obi {
  0%{ 
	  opacity: 0;
	  width: 0%;
  }
  100%{ 
	  opacity: 1;
	  width: 100%;
  }
}

/* ---------- TEXT ---------- */
.marker {
    background: transparent;
    background: -moz-linear-gradient(top,  transparent 70%, #fcd000 71%);
    background: -webkit-linear-gradient(top,  transparent 70%,#fcd000 71%);
    background: linear-gradient(to bottom,  transparent 70%,#fcd000 71%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='transparent', endColorstr='#fcd000',GradientType=0 );
}

.txtBr {
    border: 2px solid #000;
    border-radius: 5px;
    background-color: #fff;
    padding: 4px 32px;
    text-align: center;
    font-size: 2rem;
	letter-spacing: 0.1rem;
    display: inline-block;
}

.indent { text-indent: 1rem; }

.caution {
	background-color: #fff;
	color: #ef8205;
    padding: 6px;
	display: inline-block;
}

.notes {
	font-size: 1.4rem!important;
	text-indent: -1rem;
	padding-left: 2rem;
}
.notes::before {
	/*content: '※';*/
	display: inline-block;
	margin-right: 6px;
}

.notes span::after {
    margin-left: 2px;
    margin-right: 2px;
}

.notes span {
    display: inline-block;
	background-color: #ffffff;
    color: #007ebd;
	padding-left: 2rem;
}


/* ---------- LIST ---------- */
/* CIRCLE */
.listCircle li {
	text-indent: -0.8rem;
	line-height: 1.6;
    padding-left: 1.6rem;
}
.listCircle li::before {
	content: '●';
	display: inline-block;
	margin-right: 4px;
}

/* SQUARE */
.listSquare { list-style: none; }
.listSquare li {
	text-indent: -0.8rem;
	margin-left: 1.6rem;
}
.listSquare li::before {
	content: '■';
	display: inline-block;
}
.listSquare li:not(:last-child) {
	margin-bottom: 16px;
}

/* ---------- BUTTON ---------- */
/*
.btn {
	display: block;
	text-align: center;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
	border: 2px solid #646464;
	background-color: #ef8205;
	line-height: 1;
    padding: 14px 40px 14px 14px;
    font-size: 1.6rem;
    margin: auto;
	color: #fff;
	transition: all 0.5s;
	font-weight: bold;
}

.btn span { position: relative;}
.btn span::after {
	content: '＞';
	font-size: 100%;
	display: inline-block;
	margin-left: 14px;
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.5s;
}
.btn:hover span::after { right: -34px; }
.btn:hover { cursor: pointer; box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); }
*/

/* ---------- リード ---------- */
.practicals {
    text-align: center;
    padding: 24px;
    margin: 2%;

}

.practicals .mainttl {
    font-size: 2.6em;
    color: #2E2E2E;
    font-weight: bold;
}

.practicals .maincp {
    font-size: 1.2em;
    color: #2E2E2E;
    margin-bottom: 50px;
}




.practicals .point {
    display: flex;
    width: 100%;
    padding: 30px;
}

.practicals .point .item {
    width: 100%;
    border: 1px solid #333;
    border-radius: 15px;
    flex: 1;
    padding: 30px;
    margin: 20px;
}



.practicals .point .item p span {
    font-weight: bold;
    color:#0B8CD4;
    font-size: 1.4vw;
    margin-bottom: 40px;
}


/* ---------- SCHEDULE ---------- */
.schedule {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
	justify-content: center;
	margin-bottom: 40px;
    background-color: #005396;
    color: #ffffff;
    padding: 30px 0;
}
.schedule .day {
    max-width: 342px; 
    margin-right: 4%; 
    padding: 30px; 
    text-decoration-line:  underline 
}
.schedule .online { 
    max-width: 600px; 
}

.schedule .online .ttl { 
    border-bottom: 3px solid #E4D500;
    font-size: 1.8vw;
    font-weight: bold;
    margin-bottom: 20px;
}

.schedule .online_2 { 
    max-width: 800px; 
}

.schedule .online_2 .ttl { 
    border-bottom: 3px solid #E4D500;
    font-size: 1.8vw;
    font-weight: bold;
    margin-bottom: 20px;
}


.schedule .online .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 300px;
	height: 60px;
	color: #333;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
    margin-top: 20px;
}

.schedule .online .btn a:hover {
	color: #f2f2f2;
}

.schedule .online .btn02 a {
	background-color:#E9DA05;
	border: 1px solid #E9DA05;
	border-radius: 35px;
}

.schedule .online .btn02 a:hover {
	background-color: #ffffff;
	border: 1px solid #333;
    color: #005396;
}

.schedule .online .btn02 a::before {
	content: '';
	position: absolute;
	top: calc(50% - 5px);
	right: -35px;
	transform: rotate(30deg);
	width: 12px;
	height: 1px;
	background-color: #333;
}

.schedule .online .btn02 a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -35px;
	transform: translateY(-50%);
	width: 70px;
	height: 1px;
	background-color: #333;
}


.free {
	width: 192px;
	height: 192px;
	position: relative;
}
.free > img {
	width: 80%;
	padding: 20px;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateY(-50%);
}
.free::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/common/free_bg.svg") center center no-repeat;
    background-size: contain;
    z-index: -1;
    animation: rotation ease 6s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}	

/* ---------- 会場 ---------- */
dl.venue {
	background-color: #ef8205;
    color: #fff;
	padding: 24px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 24px;
	max-width: 1020px;
	margin: auto;
}
dl.venue dt {
	position: relative;
	background-color: #ffffff;
	border-radius: 50%;
	width: 130px;
	height: 130px;
}
dl.venue dt > p {
	display: block;
    color: #333;
	text-align: center;
	font-size: 2.9rem;
	line-height: 0.8;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateY(-50%);
}
dl.venue dt > p > span {
	font-size: 1.5rem;
	margin-top: 12px;
}
dl.venue dd {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin-left: auto;
}
dl.venue dd > div > p:first-child {
	font-size: 3rem;
	line-height: 1.2;
}
dl.venue dd > div > p span.address {
	font-size: 1.4rem;
	line-height: 1.5;
    display: inherit;
	margin-top: 0.8rem;
}
dl.venue dd > div > .listCircle {
	font-size: 1.6rem;
	margin-top: 1.6rem;
	margin-bottom: 1rem;
	line-height: 1.5;
}
dl.venue dd > div > .notes {
	font-size: 1.4rem;
}

/* ---------- 企業のみなさまへ　---------- */
.btn_contact a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content:center;
    align-items: center;
    margin: 50px auto 20px;
    max-width: 450px;
    padding: 20px 25px;
    color: #313131;
    font-weight: 500;
}
.btn_contact a::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #edb106;
  transition: 0.2s;
}

.btn_contact a::after {
  content: '';
  width: 5px;
  height: 5px;
}

.btn_contact a:hover::before {
  top: 0;
  left: 0;
  border: 2px solid #00478b;      
}

.btn_contact a:hover {
  text-decoration: none;
  background-color: #00478b;
  
  color: #fff;

}

@media screen and (max-width: 750px) {
.btn_contact a {
    display: block;
    width: 80%;}
}

/* ---------- 企業情報 ---------- */
.campanyArea {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
dl.campanyBox {
	background: url("../img/common/box_stripe.png") left top repeat-y;
	padding-left: 80px;
	margin-bottom: 6%;
}
dl.campanyBox dt { font-size: 2.1rem; margin-bottom: 10px; }
dl.campanyBox dt span { display: block; max-width: 320px; margin-bottom: 10px; }
dl.campanyBox dd { display: flex; flex-wrap: wrap; }
dl.campanyBox dd p { font-size: 1.8rem; margin-bottom: 12px; width: 100%; }
dl.campanyBox dd a { width: 100%; margin-top: auto; margin-bottom: 0; }

/* ---------- コース概要 ---------- */
#outline .inner {
	position: relative;
	padding: 60px 40px 20px;
    background-color:#B3E0F5;
}

#outline2 .inner {
	position: relative;
	padding: 60px 40px 20px;
    background-color:#BDF3E1;
}



@media screen and (min-width: 751px) and (max-width: 1240px) {
	.practicals { max-width: 1240px; margin-left: auto; margin-right: auto; }
}

@media screen and (min-width: 751px) {
	/* MAIN VISUAL */
	#mainvisual {
		position: relative;
		background: url("../img/top/mainvisual.png") top center no-repeat;
		background-size: 100%;
		min-height: 830px;
        width: 100%;

	}
	#eventLogo {
		width: 70%;
        max-width: 786px;
		margin-left: auto;
		margin-right: auto;
		position: absolute;
	    bottom:0;
		left: 0;
		right: 0;
		margin: auto auto 5%;
		animation: slideUp ease 1.5s;
	}
    

	/* COPY */
	.copy { display: flex; align-items: center; justify-content: center; margin-bottom: 32px; }
	.line01, .line02 { display: block; }
	.line01 { width: 362px; }
	.line02 { width: 490px; margin-left: 80px; }
	.free { margin-left: 24px; }

	/* ---------- 会場 ---------- */
	dl.venue dd { width: 80%; }
	dl.venue dd > div { width: 64%; }
	dl.venue dd > figure { width: 32%; margin-left: 20px; }
	
	/* 参加対象 */
	.practicals > div { width: 46%; }

	
	/* 概要 */
	.outlineArea dl dd > div:first-child { width: 65%; }
	.outlineArea dl dd > div:last-child { width: 30%; }
	.outlineArea dl dd { padding-top: 40px; }
	
	/* 出展企業 */
	dl.campanyBox { width: 47%; }
	dl.campanyBox dt { height: 110px; }
}

@media screen and (max-width: 750px) {
	/* MAIN VISUAL */
	#mainvisual {
		position: relative;
		background: url("../img/top/mainvisual_bg_sp.png") top center no-repeat;
		background-size: 100%;
		margin: 0 auto 30px;
		padding-bottom: calc(100vw + 10%);
	}
	#eventLogo {
    	padding: 0 10%;
		margin-left: auto;
		margin-right: auto;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		animation: slideDown ease 2s;
	}

    
/* ---------- リード ---------- */
.practicals {
    text-align: center;
    padding: 24px;
    margin: 2%;

}

.practicals .mainttl {
    font-size: 6.0vw;
    color: #2E2E2E;
    font-weight: bold;
}

.practicals .maincp {
    font-size: 2.4vw;
    color: #2E2E2E;
    margin-bottom: 50px;
}


.practicals .point {
    display: block;
    width: 100%;
    padding: 0px;
}

.practicals .point .item {
    padding: 20px;
    margin: 0 0 20px;
}


.practicals .point .item p span {
    font-size: 5.0vw;
}

.schedule .online { 
    width: 100%;
    padding: 30px;
    font-size: 3.8vw;
    font-weight: bold;
    margin-bottom: 20px;
}


.schedule .online .ttl { 
    font-size: 3.8vw;
    font-weight: bold;
    margin-bottom: 20px;
}
	
	/* COPY */
	.copy { width: 80vw; margin: 32px auto; }
	.copy h2 { margin-bottom: 20px; }
	.line01, .line02 { display: block; }
	.line01 { max-width: 362px; }
	.line02 { max-width: 490px; }
	.free { margin: auto; }
	
	/* ---------- 会場 ---------- */
	dl.venue dt { margin-right: auto; margin-left: auto; margin-bottom: 24px; }
	dl.venue dd,
	dl.venue dd > div,
	dl.venue dd > figure { width: 100%; }
	dl.venue dd > figure { margin-top: 32px; }
	
	/* 参加対象 */
	.practicals > div { width: 100%; }
	
	/* 概要 */
	.outlineArea dl { flex-wrap: wrap; }
	.outlineArea dl dt { margin: auto; }
	.outlineArea dl dd { padding-top: 30px; }
	.outlineArea dl dd > div:first-child,
	.outlineArea dl dd > div:last-child { width: 100%; }
	.outlineArea dl dd > div:last-child { margin-top: 4%; text-align: center; }
	
	/* 参加予約 */
	.real { margin-bottom: 40px; }
	
	/* 出展企業 */
	.campanyArea {
		padding-left: 2%;
    	padding-right: 4%;
	}
	dl.campanyBox {
		width: 100%;
		background-size: 10%;
		padding-left: 16%;
		margin-bottom: 10%;
	}
	dl.campanyBox dt img { width: 100%; }
	
	/* FOOTER */
	#footer div.inner > div:first-child { margin-bottom: 20px; }
}