@charset "UTF-8";
/*
Reset
*****************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, time {
	display: block;
}

html { font-size: 62.5%; }

body {
	text-align: justify;
	font-size: 1.6rem;
	font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Verdana, Geneva, sans-serif;
	line-height: 1;
	color: #444;
	background-color: #e2effa;
}

ol, ul { list-style: none; }

blockquote, q { quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #009fe8;
	text-decoration: none;
}
a:hover { text-decoration: underline; }

/*
ClearFix
*****************************************/
.clearfix {
	zoom: 1;
}
.clearfix::after {
	content: "";
	clear: both;
	display: block;
}

/*
Layout
*****************************************/
/* 全体 */
.wrapper { width: 100%; }

/* 中枠 */
.container {
	width: 800px;
	margin: 0 auto;
}
@media screen and ( max-width:640px ) {
	.container {
		width: 80%;
	}
}



/*
Header
*****************************************/
/* ページ上部画像表示 */
header {
	width: 100%;
	padding-top: 172px;
	background: #7fb6e3 url(img/header_bg.png) no-repeat center top;
}
@media screen and ( max-width:640px ) {
	header {
		padding-top: 50px;
		background-size: contain;
	}
}


/* 動画で見る慈恵看護専門学校 */
.pageTtl {
	text-align: center;
	padding: 15px 0;
	background-color: #e2effa;
}

/*
Contents
*****************************************/
/* コンテンツ */
.contents {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 50px 15px;
	box-sizing: border-box;
}

@media screen and ( max-width:640px ) {
	.contents {
		width: 100%;
	}
}

/* 動画タイトル */
.movieTtl { margin-bottom: 25px; }

/* サムネイル */
.thumbArea {
	padding: 25px 0;
	background-color: #7fb6e3;
}

.thumbAreaInner {
	text-align: center;
	width: 800px;
	margin: 0 auto;
}
@media screen and (max-width:640px){
	.thumbAreaInner {
		width: 80%;
	}
}

/* 3本の動画をご視聴いただけます */
.thumbTtl { margin-bottom: 20px; }

/* サムネイル横並び */
.thumbs {
	display: flex;
	justify-content: space-around;
}
@media screen and (max-width:640px){
	.thumbs a {
		flex-basis: 30%;
	}
}

/* 表示中は半透明 */
.thumbs a.active { opacity: 0.5; }
