@charset "utf-8";

/* popup.css
 * ************************************************** */

body {
	background-color: #ffffff;
}

#container {
	margin: 0 auto;
	position: relative;
	width: 600px;
}

#pop {
	box-shadow: 0 0 10px 0 #cccccc;
	margin: 40px 0;
	padding: 30px 30px;
}

#pop .logo {
	width: 475px;
}

#pop p.ttl {
	color: var(--main-color);
	font-size: 2.4rem;
	margin: 40px 0 12px 0;
	padding: 0 0 0 2px;
}

#pop .popup_date {
	border-bottom: 1px dashed var(--border-color);
	padding: 8px 0;
}

#pop .popup_date dl.popup_date_list {
	align-items: flex-start;
	display: flex;
}

#pop .popup_date dl.popup_date_list dt {
	background-color: #efefef;
	font-size: 1.4rem;
	font-weight: 400;
	padding: 6px 0;
	text-align: center;
	width: 5em;
}

#pop .popup_date dl.popup_date_list dd {
	line-height: 1.4;
	padding: 3px 0 0 10px;
	width: calc(100% - 5em);
}

#pop .pop_body {
	margin: 24px 0 0 0;
	line-height: 1.7;
}

#pop .pop_body ul.list li.links a {
	word-break: break-all;
}

#pop .pop_body ul.list li.links img {
	width: auto;
}

/* Media Queries
-------------------------------------------------- */

@media only screen and (max-width: 767px) {

	#container {
		width: 100%;
	}

	#pop {
		box-shadow: none;
		margin: 0;
		padding-left: 10px;
		padding-right: 10px;
	}

	#pop .logo {
		width: 90%;
	}

	#pop p.ttl {
		font-size: 2rem;
	}
}