/*
 * 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/senior/senior_1450x440.jpg) no-repeat center center; 
	background-size: cover;
}

article + article { margin: 3em 0 0; }
article h3 {
	color: #dd9933;
	border-bottom: 1px #dd9933 solid;
	font-weight: bold;
	line-height: 1.4;
	font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
	padding: 0 0 .5em;
	margin: 0 0 1em;
}
article h4 {
	font-size: clamp(1.6rem, 1vw + 1rem, 1.9rem);
	font-weight: bold;
	line-height: 1.4;
	margin: 0 0 .75em;
}
article .detail {
	border-bottom: 1px #ccc solid;
	padding: 0 0 1em;
	margin: 0 0 1em;
}
article .detail figure { margin: 1em 0 0; }

@media (max-width: 767px) {
	article .inside > figure {
		text-align: center;
		margin: 0 0 2em;
	}

}

@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;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
/*		flex-direction:row-reverse; */
		flex-direction:row;
	}
	article .inside > figure {
/*		width: 200px; */
		width: 250px;
	}
	article .inside > div {
		width: calc( 100% - 200px );
/*		padding: 0 2em 0 0; */
		padding: 0 0 0 2em;
	}
}