/* 例: ブラウザーに UTF-8 文字セットを使用することを知らせる */
@charset "utf-8";

@media screen and (min-width: 481px) {
body {
	font-family: "Helvetica",sans-serif;
	font-size: 140%;
	color: #666;
	background: #F4F4F4;
	margin:0;
}
.Block1 {
	color: #1a1a1a;
}
p {
	width: 60%;
	margin: 0 auto;
	padding: 10px 0;
}
.catch { 
	font-size:50px;
	line-height:1.2;
	font-weight: bold;
	color: #666;
}
.catch2 { 
	color: #fcc922;
	font-size:30px; 
	margin-bottom:-10px;
}
.Block3 {
	width: 60%;
	margin: 0 auto;
	padding: 10px 0;
	text-align:center;
}

.Block2 {
	/*レイアウト用のCSS*/
	padding: 10px 0 50px 0;
	background-color: #191970;
	color: #fff;
}
.Block1 {
	position: relative;
	padding: 50px 0 120px 0;
}
.Block1::before{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	/*ここで三角形のサイズを決める。
	必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/
	border-width: 120px 0 0 100vw ;
	border-color: transparent  transparent  transparent #191970;
}
}

@media screen and (max-width:480px) {
body {
	font-family: "Helvetica",sans-serif;
	font-size: 120%;
	color: #666;
	background: #F4F4F4;
	margin:0;
}
.Block1 {
	color: #1a1a1a;
	line-height:1.3;
}
p {
	width: 90%;
	margin: 0 auto;
	padding: 10px 0;
}
.catch { 
	font-size:30px;
	line-height:1.3;
	font-weight: bold;
	color: #666;
}
.catch2 { 
	color: #fcc922;
	font-size:25px; 
	margin-bottom:-10px;
}
.Block3 {
	width: 90%;
	margin: 0 auto;
	padding: 10px 0;
	text-align:center;
}

.Block2 {
	/*レイアウト用のCSS*/
	padding: 10px 0 50px 0;
	background-color: #191970;
	color: #fff;
	line-height: 1.3;
}
.Block1 {
	position: relative;
	padding: 30px 0 70px 0;
}
.Block1::before{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	/*ここで三角形のサイズを決める。
	必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/
	border-width: 60px 0 0 100vw ;
	border-color: transparent  transparent  transparent #191970;
}
}