/*
 * base css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {
} /* end 600-959 */

@media (min-width: 960px) {
} /* 960- */


/* ---------------------------------------- common */

#visual {
	background: url(../images/links/links_1450x440.jpg) no-repeat center center; 
	background-size: cover;
}
article .inner {
	border: 1px solid #ddd;
}
article h3 {
	font-weight: bold;
	font-size: clamp(2rem, 2vw + 0.75rem, 2.4rem);
	line-height: 1.4;
	padding: 1em;
	border-bottom: 1px solid #ddd;
}
article .inside {
	padding: clamp(2rem, 2vw + 0.75rem, 2.4rem);
}
article .inside ul {
	list-style: outside disc;
	margin: .5em 0 0 1em;
}
article .inside ul a {
	color: #2c7896;
}

@media (max-width: 767px) {
} 

@media (min-width: 768px) {
	article .inside {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	article .inside ul { width: 30%; }
} 