@charset "UTF-8";
/* CSS Document */

.main-color {
	color: #0065CB;
}

#about, #program, #present, #contact {
	padding-top: 100px;
}

/* ヘッダー */
#mainvisual {
	margin-bottom: 4rem;
}
.mainvisual {
	background-color: rgba(0,0,0,0.9);
	background-image: url(../img/head-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color: #FFF;
	text-align: center;
	padding: 1rem 0;
	margin: 0 0 1rem 0;
	/*border-top: solid 10px rgba(0,0,0,0);
	border-bottom: solid 10px rgba(0,0,0,0);
	border-image: linear-gradient(to right, #1324d1 0%, #da2bbe 100%);
	border-image-slice: 1;*/
	/*background: linear-gradient(to right, #1324d1 0%, #da2bbe 100%);*/
}
.mainvisual h1 {
	max-width: 1200px;
	margin: auto;
	font-size: 60px;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.mainvisual p {
	font-size: 24px;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.mainvisual .ttl-sub {
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.mainvisual h1 {
		font-size: 9.5vw;
	}
	.mainvisual p {
		font-size: 18px;
	}
	.mainvisual .ttl-sub {
		margin-bottom: 15px;
	}
}

.con-1 {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 10px;
}
.p-navi {
	max-width: 980px;
	margin: 0 auto 2rem auto;
	padding: 0;
}
.p-navi ul {
	margin: 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 5px;
}
.p-navi ul li {
	margin: 0;
	flex: 1 1 100px;
	text-align: center;
	padding: 5px;
}
@media (max-width: 840px) {
	.p-navi ul {
		padding: 7px;
	}
	.p-navi ul li {
		padding: 3px;
		flex: 1 1 130px;
	}
}
.p-navi ul li a {
	margin: 0;
	background-color: #808080;
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding: 0.4rem;
	transition: background-color 0.2s linear;
}
.p-navi ul li a:hover {
	background-color: #005096;
}
.p-navi ul .info a {
	background-color: #E18117;
}
.p-navi ul .info a:hover {
	background-color: #b46712;
}
.p-navi ul .entry a {
	background-color: rgba(243,6,161,1);
}
.p-navi ul .entry a:hover {
	background-color: rgba(243,6,161,0.8);
}
main h2 {
	font-size: 1.5rem;
	color: #FFF;
	font-weight: bold;
	background-color: #005096;
	padding: 0.4em 2em;
	margin-bottom: 2rem;
	position: relative;
	border-radius: 0.35rem;
}
main h2:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6.5px 0 6.5px 11px;
	border-color: transparent transparent transparent #F0F000;
	position: absolute;
	left: 1em;
	top: 50%;
	transform: translate(0, -50%)
}
main h2 span {
	font-weight: normal;
	font-size: 1rem;
}
#greetings {
}
#greetings .col {
	margin: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
#greetings .col .col-1 {
	margin: 0;
	flex: 1 1 auto;
	font-size: 1.2em;
}
#greetings .col .col-1 p {
	margin-bottom: 1rem;
}
#greetings .col .col-2 {
	margin: 0 0 1.5rem 1.5rem;
	flex: 0 0 340px;
}
@media (max-width: 840px) {
	#greetings .col .col-2 {
		flex: 0 0 40%;
	}
}
@media (max-width: 700px) {
	#greetings .col {
		flex-wrap: wrap;
	}
	#greetings .col .col-2 {
		flex: 0 1 auto;
		margin: 1rem 0 1.5rem 0;
	}
}
#greetings .col .col-2 img {
	display: block;
	margin-bottom: 5px;
}
#greetings .col .col-1 h3 {
	margin-bottom: 2rem;
	font-size: 2rem;
	text-align: center;
	letter-spacing: 0.5em;
	font-weight: bold;
	background: -webkit-linear-gradient(0deg, #1324d1, #da2bbe);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#greetings .col .col-1 h3 span {
	display: block;
	font-size: 1.25rem;
}
#greetings .col .col-1 h3 strong {
	display: block;
	font-weight: normal;
}
.btn-info {
	text-align: center;
	margin-bottom: 2rem;
}
.btn-info a {
	font-weight: bold;
	color: #FFF;
	background-color: #E18117;
	text-decoration: none;
	display: inline-block;
	padding: 1.25rem 7rem;
	border: solid 1px #E18117;
	box-shadow: 0 0 0 0.625em rgba(255,255,255,1) inset;
	position: relative;
	transition: all 0.2s linear;
}
.btn-info a:hover {
	background-color: #fff;
	box-shadow: 0 0 0 0.625em #E18117 inset;
	color: #E18117;
}
.btn-info a .fas {
	display: block;
	position: absolute;
	top: 1.5em;
	right: 1.5em;
}
.btn-entry {
	text-align: center;
	margin: 3rem 0 0 0;
}
.btn-entry a {
	font-weight: bold;
	color: #FFF;
	background-color: rgba(243,6,161,1);
	text-decoration: none;
	display: inline-block;
	padding: 1.25rem 6rem;
	border: solid 1px rgba(243,6,161,1);
	box-shadow: 0 0 0 0.625em rgba(255,255,255,1) inset;
	position: relative;
	transition: all 0.2s linear;
}
.btn-entry a:hover {
	background-color: #fff;
	box-shadow: 0 0 0 0.625em rgba(243,6,161,1) inset;
	color: rgba(243,6,161,1);
}
.btn-entry a .fas {
	display: block;
	position: absolute;
	top: 1.5em;
	right: 1.5em;
}
#about {
}
#about dl, #result dl {
	margin: 0 0 1rem 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
#about dl dt, #result dl dt {
	margin: 0 1rem 0 0;
	color: #005096;
	font-weight: bold;
	border:solid 1px #005096;
	padding: 2px 0;
	text-align: center;
	width: 8em;
	flex: 0 0 auto;
}
#about dl dd, #result dl dd {
	margin: 0;
	padding-top: 2px;
	flex: 1 1 auto;
}
@media (max-width: 400px) {
	#about dl {
		flex-wrap: wrap;
	}
	#about dl dt {
		margin-bottom: 0.25rem;
	}
}
#result {
	margin-bottom: 2rem;
}
#result dl dd .logo {
	margin: 0;
}
#result dl dd .logo li {
	margin: 0 1.5rem 2rem 0;
	display: inline-block;
}
#result .photo {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
#result .photo li {
	flex: 0 0 170px;
	margin: 0 0.625rem 1rem 0.625rem;
}
#result .photo li img {
	display: block;
	margin-bottom: 5px;
}
#result .photo li p {
	font-size: 0.9rem;
}
#theme {
	margin-bottom: 1.5rem;
}
#theme .col {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
#theme .col article {
	margin: 0 1rem 1.5rem 1rem;
	flex: 1 1 280px;
}
#theme .col article h3 {
	margin: 0 0 1rem 0;
	font-size: 1.125rem;
	color: #005F44;
	font-weight: bold;
	border:solid 1px #005F44;
	padding: 2px 0;
	text-align: center;
}
#theme .col article p {
	margin: 0 0 0.5rem 0;
}
#theme .col article dl {
	margin: 0;
}
#theme .col article dl dt {
	margin: 0;
	color: #005F44;
	font-weight: bold;
}
#theme .col article dl dd {
	margin: 0;
}
#theme .col article dl dd ul {
	margin: 0;
}
#theme .col article dl dd ul li {
	margin: 0 0 0 1.5em;
	list-style-type: disc;
}
footer {
	color: #FFF;
	text-align: center;
	background-color: #4d4d4d;
	padding: 0.25rem;
	font-size: 0.95rem;
}
#sponsor {
	margin-bottom: 2rem;
}
#sponsor .group {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
#sponsor .group dl {
	flex: 0 1 440px;
}
#sponsor dl {
}
#sponsor dl dt {
	margin: 0 0 1rem 0;
}
#sponsor dl dd {
	margin: 0 0 1rem 0;
}
#sponsor dl dd .logo {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#sponsor dl dd .logo li {
	flex: 0 1 280px;
	text-align: center;
	padding: 0 20px 30px 20px;
}
#program {
}
#program h3 {
	margin: 0 0 5px 0;
	font-size: 1.5rem;
	font-weight: bold;
}
#program table {
	margin: 0 0 1rem 0;
}
#program table th {
	background-color: #e5e5e5;
	border: solid 1px #999;
	width: 4rem;
	text-align: center;
	vertical-align: middle;
	padding: 5px 0;
}
#program table td {
	border: solid 1px #999;
}
#program table .rest {
	padding: 5px 10px;
	text-align: center;
}
#program table h6 {
	font-size: 1.5rem;
	padding: 10px 0;
	border-bottom: dotted 1px rgba(0,0,0,1);
}
#program .timetable-1 td {
	padding: 0 1rem;
}
#program .timetable-1 td article {
	/*display: flex;
	justify-content: flex-start;*/
	padding: 1rem 0;
	border-bottom: dotted 1px rgba(0,0,0,1);
}
#program .timetable-1 td article:last-child {
	border-bottom: none;
}
#program .timetable-1 td article > div {
	flex: 1 1 50%;
}
#program .timetable-1 td article .left {
	/*margin: 0 1rem 0 0;*/
}
@media (max-width: 700px) {
	#program .timetable-1 td article {
		flex-wrap: wrap;
	}
	#program .timetable-1 td article div {
		flex: 1 1 100%;
	}
	#program .timetable-1 td article .left {
		margin: 0;
	}
}
#program table article .head {
	display: flex;
	align-items: center;
}
#program table article h4 {
	margin: 0 0.5rem 0.5rem 0;
	font-weight: bold;
	padding: 1px 1rem;
	color: #FFF;
	display: inline-block;
	/*background: #333;*/
}
.course-x {
	/*background: linear-gradient(to right, #005096 0%, #D62598 100%);*/
	background-color: #D62598;
}
.course-a {
	background-color: #005096;
}
.course-b {
	background-color: #D62598;
}
.course-c {
	background-color: #90E1FF;
}
.course-d {
	background-color: #E0BDFF;
}
.full,
.few {
	margin-bottom: 0.5rem;
}
.full,
.few {
	background-color: #e60000;
	color: #FFF;
	font-weight: bold;
	padding: 1px 5px;
	white-space: nowrap;
	display: inline-block;
	margin-right: 0.5rem;
}
.few span {
	background-color: #FFF;
	border: solid 1px #e60000;
	color: #e60000;
	padding: 0 5px;
}
#program table article .hall {
	background-color: #333;
	font-weight: bold;
	padding: 1px 5px;
	color: #FFF;
	margin: 0 0.5rem 0.5rem 0;
	white-space: nowrap;
}
#program table article .number {
	margin: 0 0 0 auto;
}
#program table article h5 {
	margin: 0 0 1rem 0;
	font-size: 1.4rem;
	font-weight: bold;
	color: rgba(0,80,150,1);
	line-height: 1.4;
}
#program table article h5 .sub {
	font-size: 0.8em;
	line-height: 1.5;
	display: block;
}
#program table article dl {
	margin: 0 0 0.5rem 0;
}
#program table article dl dt {
	margin: 0;
}
#program table article dl dd {
	margin: 0;
}
#program table article dl dd strong {
	font-size: 1.125rem;
}
#program table article .speaker {
	display: flex;
	margin-bottom: 1rem;
}
#program table article .speaker .photo {
	margin-right: 0.7rem;
	max-width: 70px;
	flex: 0 0 auto;
}
#program .popup-modal {
	margin: 0 5px 0 0;
	display: inline-block;
	background-color: #E18117;
	padding: 1px 1rem;
	color:#FFF;
	font-weight: bold;
	text-decoration: none;
	border-radius: 2rem;
	border: solid 1px #9d5a10;
	transition: opacity 0.2s linear;
}
#program .popup-modal:hover {
	opacity: 0.75;
}
#program .btn-pdf {
	margin: 0.5rem 0 0 0;
	display: inline-block;
	background-color: #004db3;
	padding: 1px 1rem;
	color:#FFF;
	font-weight: bold;
	text-decoration: none;
	border-radius: 2rem;
	border: solid 1px #00367d;
	transition: opacity 0.2s linear;
}
#program .btn-pdf:hover {
	opacity: 0.75;
}
#program .btn-news {
	margin: 0.5rem 0 0 0;
	display: inline-block;
	background-color: rgba(0,0,0,0.1);
	padding: 1px 1rem;
	color:#333;
	font-weight: bold;
	text-decoration: none;
	border-radius: 2rem;
	border: solid 1px rgba(0,0,0,0.3);
	transition: background-color 0.2s linear;
}
#program .btn-news:hover {
	background-color: rgba(0,0,0,0.2);
}
#program .timetable-2 .hall-2 {
	display: flex;
	justify-content: flex-start;
}
#program .timetable-2 .hall-2 article {
	flex: 1 1 50%;
	padding: 10px;
}
#program .timetable-2 .hall-2 .left {
	margin: 0px;
	border-right: solid 1px #999;
}
@media (max-width: 700px) {
	#program .timetable-2 .hall-2 {
		flex-wrap: wrap;
	}
	#program .timetable-2 .hall-2 article {
		flex: 1 1 100%;
	}
	#program .timetable-2 .hall-2 .left {
		border-right: none;
		border-bottom: solid 1px #999;
	}
	#program .track {
		display: none;
	}
}
#program .timetable-4 .hall-4 {
	display: flex;
	justify-content: space-between;
}
#program .timetable-4 .hall-4 article,
#program .timetable-4 .hall-4 li {
	flex: 1 1 25%;
	padding: 10px;
	box-sizing: border-box;
}
#program .timetable-4 .hall-4 li {
	text-align: center;
}
#program .timetable-4 .hall-4 .hallx2 {
	flex: 1 1 50%;
}
#program .timetable-4 .hall-4 .left {
	border-right: solid 1px #999;
}
@media (max-width: 800px) {
	#program .timetable-4 .hall-4 {
		flex-wrap: wrap;
	}
	#program .timetable-4 .hall-4 article {
		flex: 1 1 100%;
	}
	#program .timetable-4 .hall-4 .left {
		border-right: none;
		border-bottom: solid 1px #999;
	}
	#program .timetable-4 .hall-4 article:empty {
		display: none;
	}
	#program .timetable-4 .hall-4 .bd-none {
		border: none;
	}
	#program .timetable-4 .hall-name {
		display: none;
	}
}
#program .note-1 {
	margin: 0 0 2rem 0;
}
#program .note-1 li {
	margin: 0 0 0.5rem 0;
	padding: 0;
}
#program .note-2 {
	margin: 0 0 1.5rem 0;
	padding: 0.5rem 0.5rem 0 0.5rem;
	border: solid 1px #e60000;
	font-weight: bold;
}
#program .note-2 li {
	margin: 0 0 0.5rem 0;
	padding: 0 0 0 1em;
	text-indent: -1em;
}
.entry-end {
	margin: 3rem 0 0 0;
	text-align: center;
}
.entry-end .end {
	display: inline-block;
	color: rgba(243,6,161,1);
	font-weight: bold;
	border: solid 2px rgba(243,6,161,1);
	padding: 0.5rem 2rem;
}
.entry-end .comment {
	margin: 0.75rem 0 0 0;
	color: rgba(230,0,0,1);
}
#program .timetable-2 .hall-2 .satellite {
	clear: both;
}
#program .course-navi {
	margin: 0 0 1rem 0;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#program .course-navi li {
	margin: 0;
}

/* Magnific Popup */
.pro-detail {
	position: relative;
	margin:10px auto;
	max-width: 700px;
	background: transparent;
	padding: 0;
	border-radius: 0.5rem;
}
.pro-detail .head {
	margin: 0;
	padding: 0.5rem 1.25rem;
	background-color: rgba(0,80,150,1);
	border-radius: 0.5rem 0.5rem 0 0;
}
.pro-detail h4 {
	margin: 0 0.5rem 0.75rem 0;
	display: inline-block;
	font-weight: bold;
	padding: 1px 1rem;
	color: #FFF;
	/*background: #333;*/
}
.pro-detail .time {
	margin: 0 0.5rem 0 0;
	display: inline-block;
	font-weight: bold;
	color: #FFF;
}
.pro-detail .hall {
	display: inline-block;
	background-color: #333;
	font-weight: bold;
	padding: 0 5px;
	color: #FFF;
	border: solid 1px rgba(255,255,255,0.5);
}
.pro-detail h5 {
	margin: 0 0 1rem 0;
	font-size: 1.625rem;
	font-weight: bold;
	color: rgba(0,80,150,1);
	line-height: 1.4;
}
.pro-detail h5 .sub {
	font-size: 0.75em;
	line-height: 1.5;
	display: block;
}
.pro-detail .summary {
	margin: 0 0 1rem 0;
}
.pro-detail .lecturer,
.lecturer {
	margin: 0 0 1rem 0;
	background-color: rgba(0,80,150,0.125);
	padding: 10px;
}
.pro-detail .lecturer dl,
#program .lecturer dl {
	margin: 0 0 0.5rem 0;
	display: flex;
	justify-content: flex-start;
}
.pro-detail .lecturer dl dt,
#program .lecturer dl dt {
	margin: 0 0.75rem 0 0;
	flex: 0 0 104px;
}
.pro-detail .lecturer dl dt img,
.lecturer dl dt img {
	border: 2px solid #FFF;
}
.pro-detail .lecturer dl dd {
	margin: 0;
}
.pro-detail .lecturer dl dd .company,
.company {
	margin: 0 0 0.5rem 0;
}
.pro-detail .lecturer dl dd .name {
	margin: 0;
}
.pro-detail .lecturer dl dd .name strong {
	font-size: 1.375rem;
}
.pro-detail .lecturer-2 {
	margin: 0 0 1rem 0;
}
.pro-detail .lecturer-2 .name strong {
	font-size: 1.375rem;
}

.pro-detail .lecturer .profile {
	margin: 0;
}
.pro-detail .popup-modal-dismiss,
.present-detail .popup-modal-dismiss {
	text-align: center;
}
.pro-detail .popup-modal-dismiss a,
.present-detail .popup-modal-dismiss a {
	background-color: #e5e5e5;
	padding: 0 1.5rem;
	color:#333;
	text-decoration: none;
	border-radius: 2rem;
	border: solid 1px #b3b3b3;
	display: inline-block;
	transition: 0.2s linear;
}
.pro-detail .popup-modal-dismiss a:hover,
.present-detail .popup-modal-dismiss a:hover {
	background-color: #ccc;
}
.pro-detail .content {
	margin: 0;
	padding: 1.25rem;
	background: #FFF;
	border-radius: 0 0 0.5rem 0.5rem;
}

/* ×ボタン */
.pro-detail .mfp-close,
.ex-detail .mfp-close,
.present-detail .mfp-close {
  width: 2.625rem;
  height: 2.625rem;
  line-height: 2.625rem;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0;
  color: #FFF;
  font-style: normal;
  font-size: 2rem;
  font-family: Arial, Baskerville, monospace;
}
.pro-detail .mfp-close:hover,
.pro-detail .mfp-close:focus,
.ex-detail .mfp-close:hover,
.ex-detail .mfp-close:focus,
.present-detail .mfp-close:hover,
.present-detail .mfp-close:focus {
    opacity: 0.9;
}
.pro-detail .mfp-close:active,
.ex-detail .mfp-close:active,
.present-detail .mfp-close:active {
    top: 1px;
}
.mfp-close-btn-in .pro-detail .mfp-close,
.mfp-close-btn-in .ex-detail .mfp-close,
.mfp-close-btn-in .present-detail .mfp-close {
  color: #fff;
}

/* download.html */
.download header {
	margin-bottom: 2rem;
}
#program .dl-list {
	margin: 1rem 0 1.5rem 0;
}
#program .dl-list li {
	margin: 0 0 0.5rem 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
#program .dl-list li .number {
	margin: 0 0.75rem 0 0;
	color: rgba(0,80,150,1);
	border:solid 1px rgba(0,80,150,1);
	text-align: center;
	flex: 0 0 3em;
}
.download main h2 {
	letter-spacing: 0;
	padding-right: 1em;
}

#exhibit {
	margin-bottom: 2rem;
}
#exhibit .company {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
#exhibit .company li {
	margin: 0.5rem;
	flex: 1 1 440px;
	border: solid 2px rgba(210,100,0,0.5);
	border-radius: 0.5rem;
	text-align: center;
	font-size: 1.125rem;
}
#exhibit .company .large {
	flex: 1 1 auto;
}
#exhibit .company li a {
	margin: 0;
	padding: 0.75rem 0.5rem;
	display: block;
	color: rgba(210,100,0,1);
	text-decoration: none;
	font-weight: bold;
	transition: background 0.2s linear;
}
#exhibit .company li a:hover {
	background: rgba(210,100,0,0.2);
}
#exhibit .company .none {
	border: solid 2px rgba(0,80,150,0);
}

/* Magnific Popup exhibit */
.ex-detail {
	position: relative;
	margin:10px auto;
	max-width: 800px;
	background: transparent;
	padding: 0;
	border-radius: 0.5rem;
}
.ex-detail .head {
	margin: 0;
	padding: 0.5rem 1.25rem;
	background-color: rgba(210,100,0,1);
	border-radius: 0.5rem 0.5rem 0 0;
}
.ex-detail h4 {
	margin: 0 0.5rem 0 0;
	display: inline-block;
	font-weight: bold;
	color: #FFF;
	font-size: 1.125rem;
}
.ex-detail .content {
	margin: 0;
	padding: 1.25rem;
	background: #FFF;
	border-radius: 0 0 0.5rem 0.5rem;
}
.ex-detail .popup-modal-dismiss {
	text-align: center;
}
.ex-detail .popup-modal-dismiss a {
	background-color: #e5e5e5;
	padding: 0 1.5rem;
	color:#333;
	text-decoration: none;
	border-radius: 2rem;
	border: solid 1px #b3b3b3;
	display: inline-block;
	transition: background-color 0.2s linear;
}
.ex-detail .popup-modal-dismiss a:hover {
	background-color: #ccc;
}

.ex-detail .content table {
	margin: 0 0 1rem 0;
}
.ex-detail .content table th {
	background-color: rgba(0,80,150,0.15);
	border: solid 1px #999;
	border-right: none;
	text-align: center;
	vertical-align: middle;
	padding: 5px;
	white-space: nowrap;
}
.ex-detail .content table td {
	padding: 5px 10px;
	border: solid 1px #999;
	border-left: none;
	text-align: left;
	vertical-align: middle;
}
.ex-detail .content table .name {
	border: solid 1px #999;
	background-color: rgba(0,80,150,1);
	font-size: 1.25rem;
	color: #FFF;
	font-weight: bold;
	white-space: normal;
}
.ex-detail .content table .inquiry {
	border: solid 1px #999;
	background-color: rgba(0,80,150,1);
	color: #FFF;
	font-weight: bold;
}
.ex-detail .content table td p {
	margin: 0 0 0.5rem 0;
}
.ex-detail .content table td p:last-child {
	margin: 0;
}
.ex-detail .content table .ex-img {
	padding: 1rem;
}
.ex-detail .content table .ex-img ul li {
	margin: 0 15px 15px 0;
	float: left;
}
.ex-detail .content table .break {
	word-break: break-all;
}

#contact {
	margin-bottom: 3rem;
}
#contact dl {
	display: flex;
	flex-wrap: wrap;
}
#contact dl dt {
	flex: 0 1 5.5em;
}
#contact dl dd {
	flex: 0 1 auto;
}

#webinar {
	margin-bottom: 2rem;
}
.webinar {
	text-align: left;
	vertical-align: middle;
}
.webinar tr {
}
.webinar tr th {
	vertical-align: middle;
	white-space: nowrap;
	padding: 0.5rem;
	border: solid 1px #999;
	text-align: center;
	font-weight: bold;
	background: #DDD;
}
.webinar tr td {
	vertical-align: middle;
	padding: 0.5rem;
	border: solid 1px #999;
}
.webinar tr td:last-child {
	text-align: center;
}
.webinar tr td:first-child {
	background: rgba(0,100,200,0.15);
}
@media (max-width: 768px) {
	.webinar tr {
		border: solid 1px #999;
	}
	.webinar tr:first-child {
		display: none;
	}
	.webinar tr th {
	}
	.webinar tr td:not(:first-child) {
		display: block;
	}
	.webinar tr td {
		padding: 0.5rem 0.5rem 0 0.5rem;
		border: none;
	}
	.webinar tr td:last-child {
		text-align: left;
		padding-bottom: 0.5rem;
	}
	.webinar tr td:first-child {
		text-align: center;
	}
}
.hall-2 .summary {
	margin-bottom: 1rem;
}

#present {
}
#present dl {
	margin-bottom: 3rem;
}
#present dl:last-child {
	margin-bottom: 0;
}
#present dl dt {
	font-size: 1.5em;
	margin-bottom: 1rem;
	font-weight: bold;
	color: rgba(243,6,161,1);
}
#present .col {
	margin-bottom: 2rem;
}
#present figure {
	text-align: center;
	margin: 2rem 0 0 0;
}
#present dl dd .first-letter {
	color: rgba(243,6,161,1);
}
#present dl dd p {
	margin-bottom: 1rem;
}
#present dl dd strong {
	color: rgba(243,6,161,1);
}
@media (min-width: 768px) {
	#present .col {
		display: flex;
	}
	#present .col dl {
		margin-right: 2rem;
	}
	#present .col figure {
		flex: 0 0 auto;
	}
}

#point {
	margin-bottom: 3rem;
}
#point h3 {
	font-size: 1.6em;
	color: #D62598;
	margin-bottom: 1rem;
}
#point figure {
	margin-bottom: 2rem;
}
#point p {
	margin-bottom: 1rem;
}
#point p .first-letter {
	color: #D62598;
}

#booth {
	margin-bottom: 3rem;
}
#booth h3 {
	font-size: 1.5em;
	margin-bottom: 1rem;
}
#booth h4 {
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 1rem;
}
#booth h5 {
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 1rem;
}
#booth p {
}
#booth dl {
	border-bottom: solid 1px #CCC;
	padding-bottom: 2rem;
	padding-top: 2rem;
}
#booth dl dt {
	text-align: center;
}
#booth dl dd {
}
@media (min-width: 768px) {
	#booth dl {
		display: flex;
		align-items: center;
		padding-top: 2rem;
	}
	#booth dl dt {
		flex: 0 0 320px;
		margin-right: 2rem;
	}
	#booth dl dd {
	}
}


.privacy-head {
	padding: 2.5rem 10px;
	margin-bottom: 3rem;
}
#privacy {
	margin-bottom: 3rem;
}
.privacy p {
	margin-bottom: 1rem;
}
.privacy .btn-entry a {
	padding: 1.25rem 4rem;
}
/* 送信ボタン */
.btn-submit {
	/* buttonタグのリセットCSS */
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	appearance: none;

	color: #fff;
	padding: 0.5rem 5rem;
	background-color: rgba(243,6,161,1);
	cursor: pointer; /* ポインターカーソルを表示 */
}
.btn-submit[disabled] {
	background-color: #CCC;
	cursor: not-allowed; /* クリック不可のカーソルを表示 */
}
.btn-entry label {
	display: block;
	margin-bottom: 0.5rem;
}
.btn-entry button {
	display: inline-block;
	font-size: 1.2rem;
	font-weight: bold;
}





