@charset "utf-8";

/* ---------------------------------------------------------------- *
	body
 * ---------------------------------------------------------------- */
.contents{
  font-size: 18px;
}

/* ---------------------------------------------------------------- *
	調整用
 * ---------------------------------------------------------------- */
.fc_red{color: #f70000}
.fwn{font-weight: normal}

/* ---------------------------------------------------------------- *
	info
 * ---------------------------------------------------------------- */
#info{
  background-color: #efefef;
  color: #000;
}
.section_ttl::before{
  background-color: #000;
}

/* ---------------------------------------------------------------- *
	pagettl
 * ---------------------------------------------------------------- */
.pagettl{
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}
.pagettl::after{
  content: "";
  display:block;
  width: 60px;
  height: 2px;
  border-radius: 99px;
  background-color: #673e84;
  margin: 10px auto;
}

/* SP */
@media (max-width: 768px) {
  .pagettl{
    font-size: 24px;
  }
}


/* ---------------------------------------------------------------- *
	catch
 * ---------------------------------------------------------------- */
.catch{
  margin-bottom: 80px;
}

/* ---------------------------------------------------------------- *
	att_indent
 * ---------------------------------------------------------------- */
.att_indent{
  font-size: 90%;
  padding-left: 1em;
  text-indent: -1em;
}

/* ---------------------------------------------------------------- *
	cont_ttl
 * ---------------------------------------------------------------- */
.cont_ttl{
  font-size: 30px;
  color: #673e84;
  margin-top: 100px;
  margin-bottom: 30px;
}
.cont_ttl:first-child{
  margin-top: 0px;
}
/* SP */
@media (max-width: 768px) {
  .cont_ttl{
    font-size: 20px;
  }
}

/* ---------------------------------------------------------------- *
	infoBox
 * ---------------------------------------------------------------- */
.infoBox > .event_box{
	margin-bottom: 40px;
}
.infoBox > .event_box:last-of-type{
	margin-bottom: 0;
}
/* PC */
@media (min-width: 769px) , print{
	.infoBox:not(.noFlex) > dl.event_box{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		-webkit-align-items: start;
		align-items: start;
		-webkit-justify-content: start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		-moz-box-pack: start;
		justify-content: start;
	}
	.infoBox > .event_box{
		border-bottom: 1px solid #ccc;
    padding-left: 20px;
    padding-right: 20px;
		padding-bottom: 40px;
	}
	.infoBox > .event_box:first-child{
		border-top: 1px solid #ccc;
		padding-top: 40px;
	}
}

.infoBox > dl > dt{
	font-weight: 700;
  font-size: 20px;
}

/* PC */
@media (min-width: 769px) , print{
	.infoBox > dl > dt{
		width: 18%;
		padding-right: 2%;
	}
}
/* SP */
@media (max-width: 768px) {
	.infoBox > dl > dt{
		text-align: center;
		background-color: #666;
		color: #fff;
		margin-bottom: 10px;
		padding: 5px 10px;
		border-radius: 5px;
    font-size: 20px;
	}
}

/* PC */
@media (min-width: 769px) , print{
	.infoBox > dl > dd{
		width: 78%;
		padding-right: 2%;
	}
}
/* SP */
@media (max-width: 768px) {
	.infoBox > dl > dd{
    padding-left: 10px;
    padding-right: 10px;
	}
}

/* ---------------------------------------------------------------- *
	event_panelCon
 * ---------------------------------------------------------------- */
.event_panelCon{
  display: flex;
  justify-content: space-between;
  gap: 30px 10px;
}
.event_panel{
  width: calc(100% / 2 - 10px);
  padding: 40px;
  background-color: #fff;
  border-radius: 5px;
}
.event_panel .cont_ttl{
  text-align: center;
}
.event_panel > dl{
  border-bottom: 1px solid #efefef;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
}
.event_panel > dl:last-child{
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.event_panel > dl > dt{
  font-weight: 700;
  margin-bottom: 10px;
}
/* PC */
@media (min-width: 769px){
}
/* SP */
@media (max-width: 768px) {
  .event_panelCon{
    flex-wrap: wrap;
  }
  .event_panel{
    width: 100%;
    padding: 40px 10px;
  }
  .event_panel > dl{
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 30px;
  }
  .event_panel > dl > dt{
    font-size: 16px;
  }
  .event_panel > dl > dd{
    font-size: 15px;
  }
}

/* ---------------------------------------------------------------- *
	txtLink
 * ---------------------------------------------------------------- */
.infoBox a{
	text-decoration: underline;
	color: #673e84;
}

/* ---------------------------------------------------------------- *
	big_ban
 * ---------------------------------------------------------------- */
.infoBox a.big_ban{
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #673e84;
  color: #fff;
  padding: 15px 40px;
  border-radius: 999px;
  position: relative;
}
.infoBox a.big_ban::after{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

/* ---------------------------------------------------------------- *
	stageNumber
 * ---------------------------------------------------------------- */
.stageNumber li > dl{
  margin-bottom: 0.5em;
}
.stageNumber li > dl:last-of-type{
  margin-bottom: 0;
}
/* PC */
@media (min-width: 769px) , print{
	.stageNumber li > dl{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		-webkit-align-items: start;
		align-items: start;
		-webkit-justify-content: start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		-moz-box-pack: start;
		justify-content: start;
	}
}

.stageNumber li > dl >dt{
	font-weight: 700;
}
/* PC */
@media (min-width: 769px) , print{
	.stageNumber li > dl >dt{
		width: 5%;
		margin-right: 2%;
		font-weight: 700;
	}
}

/* PC */
@media (min-width: 769px) , print{
	.stageNumber li > dl >dd{
		width: 75%;
	}
}

/* ---------------------------------------------------------------- *
	emergency_info
 * ---------------------------------------------------------------- */
.emergency_info{
  border: 1px solid #D00003;
  padding: 20px;
  color: #D00003;
}

/* ---------------------------------------------------------------- *
	circle_img
 * ---------------------------------------------------------------- */
.circle_img{
  overflow: hidden;
  border-radius: 50%;
}

/* ---------------------------------------------------------------- *
	speaker_img
 * ---------------------------------------------------------------- */
.speaker_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-box-pack: center;
  justify-content: center;
  gap: 30px;
}
/* SP */
@media (max-width: 768px) {
  .speaker_img {
    gap: 15px;
  }
}
.speaker_img p{
  max-width: 270px;
  margin: 0;
}
.speaker_img p img{
  width: 100%;
}

/* ---------------------------------------------------------------- *
	anchorlink
 * ---------------------------------------------------------------- */
.anchorlink{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: start;
  align-items: start;
  -webkit-justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  -moz-box-pack: space-between;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap:wrap;
  flex-wrap: wrap; 
  gap: 10px;
}
.anchorlink > li{
  width: calc(100% / 2 - 7.5px);
}
/* SP */
@media (max-width: 768px) {
  .anchorlink > li{
    width: 100%;
  }
}

.anchorlink > li > a{
  display: block;
  background-color: #673e84;
  color: #fff;
  text-align: center;
  text-decoration: none;
  position: relative;
  padding: 15px 30px;
}
.anchorlink > li > a:active,
.anchorlink > li > a:focus{
  opacity: 1;
}
.anchorlink > li > a::before{
  content: "";
  position: absolute;
  right: 15px;
  top: 40%;
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #E2C774;
  border-right: 2px solid #E2C774;
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  -o-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

