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

*{
	margin: 0;
	padding: 0;
}

body{
	overflow: auto;
	font-family: 'Noto Sans JP', sans-serif;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}



.bg01{
	
	position: absolute;
	right: -300px;
	top:-300px;
	
}

.bg02{
	position: absolute;
	left: -50px;
	top:-50px;
}

.bg03{
	position: absolute;
	left: -250px;
	bottom:-250px;
}

.content{
	margin: auto;
	text-align: center;
	line-height: 1.5;
	z-index: 1;
	padding: 30px 20px;
	box-sizing: border-box;
}

.logo{
	width: 540px;
	margin: auto;
}

.logo img{
	width: 100%;
	height: auto;
}

.info_main{
	font-size: 24px;
	color: #FF1414;
	font-weight:700;
}
.info_sub{
	position: relative;
	margin-top: 40px;
	font-size: 18px;
	font-weight:700;
	background-color: #ea2a32;
	color: #FFFFFF;
	padding: 20px 40px;
	border-radius: 50px;
	line-height: 1.8;
}
.info_sub::before{
	content: "";
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 24px solid #ea2a32;
}

a{
	display: block;
	color: #000;
	text-decoration: none;
	 -webkit-transition: all .2s;
  transition: all .2s;
  color: inherit;
  text-decoration: none;
}

.c-btn2 {
	margin: auto;
	margin-top: 40px;
	  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 356px;
  height: 60px;
  border-radius: 5px;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #004C96;
  background-image: url("../img/ico-arrow-wh.svg");
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: left 22px center;
  border: solid 3px #004C96;
}

.c-btn2:hover{
 background-color: #fff;
  color: #004C96;
  background-image: url("../img/ico-arrow-clr1.svg");
}

.spbr{
		display:none;
	}	


@media screen and (max-width: 480px) {

.spbr{
		display: block;
	}	
	
.bg01{
	position: absolute;
	right: -300px;
	top:-300px;
	display: none;
}

.bg02{
	position: absolute;
	left: -150px;
	top:-150px;
}

.bg03{
	position: absolute;
	left: -150px;
	bottom:-450px;
}
	
	
.logo{
	width: 300px;
	margin: auto;
}
	
	
.info_main{
	font-size: 20px;
	color: #FF1414;
	font-weight:700;
}
.info_sub{
	font-size: 12px;
	padding: 12px 15px;
	margin-top: 30px;
	border-radius: 10px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
}
.info_sub::before{
	top: -15px;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 18px solid #ea2a32;
}
	
.c-btn2{
		width: calc(100% - 20px);
	}

.content{
		width: 100%;
		padding: 30px 10px;
	}
	
}