/*画面全体の設定*/
body,
html {
  height: 100%;
  margin: 0 auto;
  letter-spacing: 2px;
  font-size: 10px;
}
 
/*固定する背景*/
div {
  box-sizing: border-box;
  color: #FFF;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 5%;
}
.parallax-bg {
	background-image: url('../images/2021Newyear.jpg');
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
 
/*スクロールするコンテンツ*/
.scrollbox {
  background-color: #111;
}


/*6.html：12行目～21行目*/
/* trimming */
img{
    max-width: 100%;
}
/* trimming */
/* trimming */

＃input#submit_button {

    padding: 15px 40px;

    font-size: 1.4em;

/* 背景色を黒に指定 */

    background-color: #000;

/* 文字色を白に指定 */

    color: #FFCC00;

/* submitボタンのを枠を非表示にする*/

    border-style: none;

}
#naiyou{
	font-size:15px;
	line-height:20px;
}
/* 画像をリサイズ */
.trim1 {
  width: 800px;  /* トリミングしたい幅 */
  height: 250px;  /* トリミングしたい高さ */
  overflow: hidden;
  position: relative;
}

 
 /* 中央に合わせてトリミング */
.trim {
  width: 800px;  /* トリミングしたい幅 */
  height: 250px;  /* トリミングしたい高さ */
  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%);
}
