h1{
   background-color: #FF0000; 
   width: 100%;
   height: auto;
   color: white;
   font-weight: bold;
   font-size: 18px;
   text-align: center;
   padding-top: 20px;
   padding-bottom: 20px;
   margin: 0;
}
body{
	margin:0;
}

.firstview{
	background-image: url(../images/hero_bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-bottom: 20px;
	position: relative;
}
.firstview h2{
	margin: 0;
	color: white;
	text-align: center;
	padding-top: 150px;
	padding-bottom: 150px;
	position: relative;
	z-index: 2;
}
.information{
	width: 680px;
	height: auto;
	padding: 10px 20px;
	margin: 0 auto;
	background-color: rgb(255,255,255,0.900);
	text-align: center;
	border-radius: 5px;
	font-size: 12px;
	position: relative;
	z-index: 2;
}

.main{
	width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.section{
	margin-top: 60px;
}
.section_title{
	font-size: 24px;
	color: red;
	border-bottom: 1px solid red;
	padding-bottom: 10px;
}
.movie_title{
	font-size: 18px;
	text-align: center;
	color: red;
	border-bottom: 1px solid red;
	padding-bottom: 10px;
}

.introduction{
	background-color: #F0F0F0;
	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	position: relative;
	border-radius: 10px;
}
.icon{
	display:block;
	width: 60px;
	height: 60px;
	position: absolute;
	left: -30px;
	top: -30px;
}

.black_layer{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgb(0,0,0,0.3);
	z-index: 0;
}
.dot_layer{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-image: url(../images/hero_bg_dot.png);
	opacity: 0.3;
	z-index: 1;
}

.zairyou_list{
	padding: 0;
}
.zairyou_item{
	display: flex;
	border-bottom: 1px dashed #f0f0f0;
	padding-top: 10px;
	padding-bottom: 10px;
}
.zairyou_name{
	flex-basis: 50%
}
.zairyou_amount{
	flex-basis: 50%
}

.howto_step{
	background-color: #f2f2f2;
	border-radius: 20px;
	padding: 40px;
	position: relative;
	display: flex;
	gap: 0px 30px;
	margin-top: 60px;
}
.howto_step_number{
	background-color: red;
	width: 60px;
	height: 60px;
	font-size: 40px;
	color: white;
	text-align: center;
	font-weight: bold;
	border-radius: 9999px;
	position: absolute;
	left: -30px;
	top: -30px;
}
.howto_step_image{
	width: 150px;
	height: auto;
	flex-shrink: 0;
}
.howto_step_image img{
	display: block;
	width: 100%;
	height: auto;
}
.howto_step_contents{}
.howto_step_contents h4{
	color: red;
	font-size: 16px;
	margin: 0;
}

.line{
	width: 200px;
	height: 1px;
	border: 0px;
	padding: 0px;
	background-color: #e6e6e6;
	margin: 120px auto;
}

.movie_iframe{
	width: 100%;
	height: 380px;
}
.links_title{
	color: red;
	text-align: center;
}
.links{
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.links_main{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: stretch;
	gap: 20px;
}
.links_item{
	display: block;
	width: 235px;
	height: auto;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.links_image{
	display: block;
	width: 100%;
	height: auto;
	z-index: 0;
	transition: transform .25s ease-out;
}
.links_blacklayer{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, 0.3);
	z-index: 1;
	transition: opacity .1s linear;
}
.links_dotlayer{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-image: url(../images/hero_bg_dot.png);
	opacity: 0.3;
	z-index: 2;
	transition: opacity .1s linear;
}
.links_text{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	z-index: 3;
	color: #FFF;
	margin: 0;
	transition: opacity .1s linear;
}
.links_item:hover .links_blacklayer,
.links_item:hover .links_dotlayer{
	opacity: 0;
}
.links_item:hover .links_image{
	transform: scale(1.1);
}


.footer{
	background-color: #000;
	color: #FFF;
	text-align: center;
	padding: 20px;
	margin-top: 200px;
	font-size: 10px;
	line-height: 16px;
}
.footer a{
	color: #FFF;
}