@charset "UTF-8";
/* CSS Document */

*{
	margin: 0px;
	padding: 0px;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
	font-family: "Roboto Condensed", "Lucida Grande", serif;
	letter-spacing: 0.05em;
	font-family: 'BIZ UDPGothic', sans-serif;
	font-family: 'Source Code Pro', monospace;
}

body{
	width: 100%;
	font-size: 62.5%; /*pxのとき、１０pxになる。remにしたとき1.0rem*/
	font-weight: lighter;
	overflow: auto;
	background-color: #FFFFFF;
	/*border: 1px solid #ccc*/
}

.TheHeader{
	position: fixed;
	display: block;
	top: 0;
	width: 100%;
	height: 80px;
	padding: 80px 10px  0;
	background-color: rgba(255,255,255,0.95);
	z-index: 10;
	/*border: 1px solid #ccc*/
}

.HeaderTitle{
	position: absolute;
	font-size: 2.0rem;
	font-weight: normal;
	top: 50%;
	padding-left: 20px;
	transform: translateY(-50%) translateX(0%);
}

.index{
	position: relative;
	
	margin-top: 100px;
	margin-bottom: 30px;
	margin-left: 15px;
	font-size: 1.2rem;
}

.index a{
	color: #8A8A8A;
	text-decoration: none;
}

.index a:hover{
	color: #000000;
}

#contents{
	margin: 0 auto;
	width: 90%;
	position: relative;
	margin-top: 140px;
}

article figure{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	/*border: 1px solid #ccc*/
}

figcaption{
	text-align: center;
	padding-bottom: 20px;
	
}

figcaption .title{
	font-size: 1.6rem;
	font-weight: bold;
	
}



/*2-radioSeianOCvoice
 1-radioSeianDenpa ここから*/
#sample {
	position: fixed;
	top: 80px;
	right: 30px;
	width: 60%;
	z-index: -10;
	animation:sample 10s linear infinite;
}

@keyframes sample {
	to {
		transform:rotate(360deg);
	}
}
/*2-radioSeianOCvoice
 1-radioSeianDenpaここまで*/
#mainImage{
	display: inline-block;
    justify-content: space-between;
	width: 95%;
	max-width: 700px;
	
}

#mainImage img{
	display: block;
	height: 500px;
	object-fit: contain;
	width: 100%;
}

#mainImage video{
	width: 95%;
	max-width: 700px;
}

/*ここからYouTubeの埋め込みリンクを16:9のレスポンシブにしてくれる*/
.youtube {
	width: 100%;
	max-width: 700px;
	aspect-ratio: 16 / 9;
	margin: auto;
}

.youtube iframe {
	width: 100%;
	height: 100%;
}
/*ここまでYouTubeの埋め込みリンクを16:9のレスポンシブにしてくれる*/

.spotify > iframe{
	width: 90%;
	max-width: 700px;
	padding: 10px;
}

.ex{
	text-align: left;
	font-size:0.8rem;
	padding: 15px 20px;
}

.ex2 > p{
	padding-left: 40px;
	padding-right: 40px;
}

#subImage img{
	width: 95%;
	max-width: 900px;
	padding-bottom: 10px;
}

.link{
	font-size:1rem;
}

@media screen and (max-width:480px) { /* 480pxまでの幅の場合に適応される */
	#mainImage{
		display:block;
		justify-content:;
		width: 95%;
		max-width: 700px;
	}
	
	#mainImage image{
		display: inline;
		width: 95%;
		max-width: 700px;
		
	}
}

.footer{
	position: relative;
	text-align: center;
	bottom: -50px;
	width: 100%;
	margin-bottom:30px;
	padding: 10px;
}

.footer p{
	bottom: 10px;
}