/*6.html：12行目～21行目*/
/* trimming */
img{
    max-width: 98%;
}
/* trimming */
/* trimming */


section.introductions{

}
#main{
	font-size:36px;
}
#player {
 	position: absolute; 
 	top:0; 
 	width: 100%; 
 	height: 100%; 
 	background: #FFF; 
 	z-index: 9999999999;
 }
 
 #header-wrapper {
  height: 60px;
}
#header {
  height: 60px;
}
#site-title {
  padding: 10px 0 0 0;
}
h5 {
  margin-top: 20px;
}
#main {
  clear: left;
  margin: 20px auto;
  padding: 5px 20px;
  width: 100%
}
h3 {
  font-size: 20px;
}
#sample {
  margin: 50px auto;
  width: 100%;
  padding: 20px;
  background: #eee;
  border: solid 1px #ccc;
}
p.hidari {
  float: left;
  margin-left: 2em;
  margin-bottom: 1em;
}
＃input#submit_button {

    padding: 15px 40px;

    font-size: 1.4em;

/* 背景色を黒に指定 */

    background-color: #000;

/* 文字色を白に指定 */

    color: #FFCC00;

/* submitボタンのを枠を非表示にする*/

    border-style: none;

}
#naiyou{
	font-size:18px;
	line-height:25px;
	margin:10px;
}
#naiyou2{
	margin-left:30px;
	width:220px;
	text-align:center;
}
#main1{
	width:95%;
	margin-left:10px;
}
/* 画像をリサイズ */
.trim1 {
  width: 500px;  /* トリミングしたい幅 */
  height: 350px;  /* トリミングしたい高さ */
  overflow: hidden;
  position: relative;
}

 
 /* 中央に合わせてトリミング */
.trim {
  width: 500px;  /* トリミングしたい幅 */
  height: 350px;  /* トリミングしたい高さ */
  overflow: hidden;
  position: relative;
}
.trim img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}