/*きつよめCSS*/

body{
	color: rgb(49, 49, 49);
	font-size: large;
	background-color:#fff;
	letter-spacing: 0.1em;
}

header{
	margin: 50px auto 0px;
	border: none;
	background-color:#fff;
  display: flex;
	flex-wrap: wrap;
  justify-content: center;

}

h1{
	color: rgb(127, 186, 224);
	font-size: x-large;
	margin-top: 30px;
	text-align: center;
	border: none;
	border-bottom: dotted 5px rgb(143, 190, 235);
	letter-spacing: 1em;
	font-weight: bold;
}

img.img_cc{
	margin: 5px;
}

img.img_lb{
	margin: 5px;
	width: 100px;
	height: 100px;
}

a img{
	box-shadow: 0 0 5px 0px #ccc;
}

a img:hover{
	position: relative;
	top: 1px;
	left: 1px;
}

p {
	margin: 0.5em;
}

p.tit{
	margin: 0 auto;
	font-size: medium;
	width: 90%;
}

p.tit_m{
	margin-top: 2em;
	font-weight: bold;
	text-align: left;
	width: 90%;
}

div.yt_box{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

div.youtube_s{
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	width: 100%;
	overflow: hidden;
	margin: 10px auto;
}

div.youtube{
	position: relative;
	padding-bottom: 56.25%;/*アスペクト比 16:9の場合の縦幅*/
	width: 100%;
	overflow: hidden;
	margin: 10px auto;
}

iframe.youtube{
	position: absolute;
	   top: 0;
	   left: 0;
	   width: 100%;
	   height: 100%;
}


.table_fox{
	width: 100%;
	margin: 50px auto;
	border-collapse: collapse;
	font-size: medium;

}

.table_fox th{
	font-weight: normal;
	text-align: right;
	}

.table_fox td{
	text-align: left;
	padding: 0.5em 0 0.5em 1em;

}

.dl_btn{
	font-size: medium;
	margin: 0px auto;
	padding: 1em 30px;
	background-color: #ffffff;
	border: solid 1px #81b7ff;
	border-radius: 10px;
}

a.dl_btn:link {
	color: rgb(101, 180, 255);
	font-weight: normal;
}
a.dl_btn:visited {
	color: rgb(101, 180, 255);
}
a.dl_btn:hover {
	color: rgb(122, 191, 255);
	background-color: #ffffff;
	position: relative;
	top: 1px;
	left: 1px;
	border: solid 1px #c5deff;
}

a.dl_btn:active {
	color: rgb(101, 180, 255);
}

	/*  ------ PC ------  */
@media screen and (min-width: 768px){


div.yt_box{
	width: 40%;
	margin: 5px;
}

	div.youtube{

	}

	.table_fox{
		width: 80%;
	
	}

	.dl_btn{
		padding: 1em 200px;
	}


}

	/*  ------ メディアアクエリ終了------  */

footer a{
		text-decoration: underline;
	}

footer{
	padding: 20px 0;
	letter-spacing: 0.1em;
	font-size: 8pt;
	text-align: center;
	font-weight: bold;
	background-color: rgb(178, 222, 240);
	border: none;

}