.container {
	position: relative;
	height: 100vh;
	width: 100vw;
}

h1{
	text-align: center;
	padding-top: 10%;
}

/* 24px @ 767px increasing to 40px @ 1000px */
@media (min-width: 767px) {
  h1 {
    font-size: calc(1.5rem + ((1vw - 7.67px) * 6.867));
    /* Where: * 6.867 = 100 * font_Size_Difference / viewport_Width_Difference */
  }
}
/* Prevent font scaling beyond this breakpoint */
@media (min-width: 1000px) {
  h1 {
    font-size: 40px;
  }
}

.btnWap {
/*	margin: 30% auto 20px;*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);

	width: 100vw;
	max-width: 980px;
	text-align: center;
	display: box;
	display: -webkit-box;
    display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	-o-justify-content: space-around;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.topLinekBtn {
	width: 45%;
	font-weight: bold;
	padding: 20px;
	min-height: 100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	border: solid 1px #043459;
	-webkit-border-radius: 5px;/* for Safari and Chrome */
	-moz-border-radius: 5px; /* for Firefox */
	-o-border-radius: 5px; /* for opera */
	border-radius: 5px;
	display: inline-block;
	background-color: #fff;
	transition: 1s;
}

.defoBTN {
	line-height: 50px;
}

.topLinekBtn:hover {
	background-color: #043459;
	color: #fff;
}

/* 16px @ 767px increasing to 24px @ 1000px */
@media (min-width: 767px) {
  .topLinekBtn {
    font-size: calc(1rem + ((1vw - 7.67px) * 3.4335));
    /* Where: * 3.4335 = 100 * font_Size_Difference / viewport_Width_Difference */
  }
}
/* Prevent font scaling beyond this breakpoint */
@media (min-width: 1000px) {
  .topLinekBtn {
    font-size: 20px;
  }
}



@media handheld, only screen and (max-width: 767px) {
/*スマホ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/

	h1{
		text-align: center;
		padding-top: 20%;
	}

	/* 18px @ 360px increasing to 24px @ 767px */
	@media (min-width: 360px) {
	  h1 {
	    font-size: calc(1.125rem + ((1vw - 3.6px) * 1.4742));
	    /* Where: * 1.4742 = 100 * font_Size_Difference / viewport_Width_Difference */
	  }
	}
	/* Prevent font scaling beyond this breakpoint */
	@media (min-width: 767px) {
	  h1 {
	    font-size: 24px;
	  }
	}

.btnWap {
/*	margin: 30% auto 20px;*/
/*	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);*/

	width: 100vw;
	max-width: 980px;
	text-align: center;
	display: block;
}


.topLinekBtn {
	margin: 10px auto;
	width: 80%;
	font-weight: bold;
	padding: 20px;
	min-height: 80px;
	display: block;
	background-color: #fff;
	transition: 1s;
}

/* 18px @ 360px increasing to 24px @ 767px */
@media (min-width: 360px) {
  .topLinekBtn {
    font-size: calc(1.125rem + ((1vw - 3.6px) * 1.4742));
    /* Where: * 1.4742 = 100 * font_Size_Difference / viewport_Width_Difference */
  }
}
/* Prevent font scaling beyond this breakpoint */
@media (min-width: 767px) {
  .topLinekBtn {
    font-size: 24px;
  }
}


}