@charset "utf-8";
/* CSS Document */
*{
 box-sizing:border-box;
 }
html{
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
    scroll-behavior: smooth;
	scroll-padding-top: ヘッダーの高さ;
    }
body{
    line-hight: 1.5;
    font-family: -apple-sysytem, 'Noto Sans JP', "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" ,"游ゴシック Medium" , "Yu Gothic Medium" , "游ゴシック" , "Yu Gothic" ,"游ゴシック体" , "YuGothic" , "メイリオ" , Meiryo , "Meiryo UI" , Avenir , "Open Sans" , Helvetica,"Helvetica Neue", Arial , Verdana , Roboto ,"ＭＳ Ｐゴシック" , "MSPGothic" , sans-serif;
	color: #000000;
    }
img{
   max-width: 100%;
   height:auto;
   vertical-align: bottom;
   }
/*リンク*/
a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
/*header_PC*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: #ffffff;
	border-bottom: solid 1px #efefef;
}
.header-inner {
    max-width: 1200px;
    padding: 15px 49px 18px;
    margin: 0 auto;
  }
.header-logo {
    display: inline-block;
    width: 100px;
}
/*main_PC*/
main{
	margin: 54px auto 0;
}
.inner{
	min-height: 100vh;
	position: relative;
}
.complete-inner{
	max-width: 900px;
	padding: 0 30px;
	margin: 92px auto 120px;
}
h1{
	font-size: 3.2rem;
	font-weight: bold;
	display: flex;
    justify-content: center;
    text-align: center;
	line-height: 1.5;
}
h1>span{
	position: relative;
    padding-bottom: 12px;
}
h1>span::after{
	content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #81CECF 0%, #96D7BE 25%, #9DD198 47.92%, #E1D64F 69.79%, #DB6D16 100%);
}
.complete-tx{
	line-height: 1.8;
	font-size: 1.8rem;
	
}
/*checkアイコン_PC*/
.check-ic{
	width: 100px;
	margin: 40px auto 30px;
}
/*footer_PC*/
.footer{
	background-color: #000000;
	margin-top: auto;
	position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
	width: 100%;
	
}
.footer-inner{
	padding: 49px 0 40px;
}
.footer-logo{
	width: 141px;
	margin: 0 auto;
}

/*768px以上の場合に適用(pc)*/
@media screen and (min-width: 768px),print{
.view-sp {
    display: none;
  }
}

/*以降sp*/
/*767px以下の場合に適用(sp)*/
@media screen and (max-width: 767px) {
	.view-pc{
		display: none;
	}
	/*header_SP*/
	.header-inner{
		padding: 3.865vw 5.3333vw;
	}
	.header-logo{
		width: 19.2vw;
	}
	/*main_SP*/
	main{
		margin: 7.3333vw auto 0;
	}
	.complete-inner{
	width: 89.33vw;
	padding: 0;
	margin: 18.67vw auto 26.67vw;
	}
	h1{
		font-size: 6.39vw;
		line-height: 1.56;
	}
	h1>span{
		padding-bottom: 1.6vw;
	}
	h1>span::after{
		height: 1.6vw;
	}
	.complete-tx{
	line-height: 1.5;
	font-size: 4vw;
	}
	/*checkアイコン_SP*/
	.check-ic{
		width: 21.33vw;
		margin: 6.4vw auto;
	}
	/*footer_SP*/
	.footer-inner{
		padding: 10.13vw 0 8.27vw;/*38px 0 31px*/
	}
	.footer-logo>img{
		width: 37.3333vw;
		
	}
}