@charset "utf-8";

/*------------------------------------------------
style
--------------------------------------------------*/
.show .message {
	background: #e5eff8;
	padding: 30px;
	margin-bottom: 40px;
	text-align: center;
	line-height: 1.7;
}
.show .message .maintitle {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}
.show .show-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.show .show-list > .card {
	width: calc(48% - 52px);
	background: #eeeeee;
	padding: 50px 30px 30px;
	position: relative;
}

.show .show-list > .card:nth-child(n + 3) {
	margin-top: 30px;
}

.show .show-list > .card a {
	color: #005eb8;
}

.show .show-list > .tag::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	padding: 3px 20px;
	color: #ffffff;
	font-size: 14px;
}

.show .show-list > .tag.internal::before {
	content: "国内展示会";
	background: #ff9900;
}

.show .show-list > .tag.foreign::before {
	content: "海外展示会";
	background: #009966;
}

.show .show-list > .tag.web::before {
	content: "WEB展示会";
	background: #006699;
}
.show .show-list > .card .title h3 {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
}

.show .show-list > .card .title p + p {
	margin-top: 0;
}

.show .show-list > .card .title a {
	font-weight: bold;
}

.show .show-list > .card .logo-area {
	margin: 15px 0;
}

.show .show-list > .card .logo-area img {
	max-width: 100%;
	height: auto;
}

.show .show-list > .card .logo-area a {
	display: block;
	transition: 0.3s;
}

.show .show-list > .card .logo-area a:hover {
	opacity: 0.7;
}

.show .show-list > .card .details {
	margin-top: 20px;
}

.show .show-list > .card .details > dl {
	border-top: 1px solid #cccccc;
	padding: 20px 0;
}

.show .show-list > .card .details > dl:last-of-type {
	padding: 20px 0 0;
}

.show .show-list > .card .details > dl dt {
	font-weight: bold;
}
.show .show-list > .card .details .schedule {
	line-height: 1.5;
}
.show .show-list > .card .details .schedule_ttl {
	margin-top: 10px;
	color: #005eb8;
	font-weight: bold;
}
.show .show-list > .card .details .schedule {
	line-height: 1.5;
}
.show .show-list > .card .details .schedule dt {
	margin-top: 10px;
	font-weight: bold;
}
.show .show-list > .card > .links {
	margin-top: 10px;
	padding: 20px 0;
}
.show .show-list > .card .details > .links {
	margin-top: 20px;
	border-top: 1px solid #cccccc;
	padding: 20px 0;
}

.details-list > li {
	position: relative;
	padding-left: 20px;

}

.details-list > li + li {
	margin-top: 5px;
}

.details-list > li:before {
	display: block;
	content: '';
	position: absolute;
	top: 0.5em;
	left: 3px;
	width: 10px;
	height: 10px;
	background-color: #7d8488;
	border-radius: 100%;
}

.show .show-text {
	padding: 50px 0;
}
.show .btnarea a {
	display: block;
	transition: .3s
}
.show .btnarea a:hover {
	opacity: 0.7;
	transition: .3s
}
.show .btnarea a img {
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 767px) {
	.show .message {
		margin-bottom: 30px;
		text-align: left;
	}
	.show .message .maintitle {
		text-align: center;
	}
	.show .show-list > .card {
		width: 100%;
		padding: 50px 20px 20px;
	}

	.show .show-list > .card .title h3 {
		font-size: 20px;
	}

	.show .show-list > .card + .card {
		margin-top: 20px;
	}

	.show .show-list > .card:nth-child(n + 3) {
		margin-top: 20px;
	}
	
	.show .show-text {
		padding: 30px 0;
	}
} 