@charset "utf-8";

@media screen and (min-width:769px){

.wrapper{
	width: 600px;
	margin: 0 auto;
	padding: 0;
}


/* header */

header{
	padding: 60px 0;
}
header h1{
	width: auto;
	margin: 0 auto;
	line-height: 0;
	text-align: center;
}


/* main */

h2{
	font-size: 24px;
	font-weight: normal;
	text-align: center;
}
.h2_small{
	margin-top: 30px;
	font-size: 12px;
	text-align: center;
}
.demo{
	margin-top: 60px;
	padding: 11px 50px;
	position: relative;
}
.demo h3{
	width: 110px;
	margin: 0 auto;
	padding-bottom: 19px;
	position: relative;
	line-height: 0;
	text-align: center;
}
.demo h3::after{
	content: "";
	width: 40px;
	height: 2px;
	background: #AAA;
	position: absolute; bottom: 0; left: 50%;
	transform: translateX(-50%);
}
.demo .inner{
	display: flex;
	justify-content: space-between;
}
.demo .item{
	width: 210px;
	margin-top: 23px;
	text-align: center;
}
.demo .title{
	font-size: 18px;
}
.demo .dott{
	width: 26px;
	margin: 15px auto 0 auto;
	line-height: 0;
}
.demo .caution{
	margin-top: 15px;
	font-size: 12px;
	color: #b84c70;
}
.demo .acc_tl{
	width: 28px;
	position: absolute; top: 0; left: 0;
}
.demo .acc_tr{
	width: 28px;
	position: absolute; top: 0; right: 0;
}
.demo .acc_bl{
	width: 28px;
	position: absolute; bottom: 0; left: 0;
}
.demo .acc_br{
	width: 28px;
	position: absolute; bottom: 0; right: 0;
}
.btn{
	width: 260px;
	margin: 60px auto 0 auto;
}
.btn a{
	padding: 15px;
	background: #FFF;
	border: 3px solid #1d2088;
	display: block;
	position: relative;
	z-index: 1;
	transition: .3s;
	font-size: 14px;
	line-height: 20px;
	color: #1d2088;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.btn a::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute; top: 0; left: 0;
	z-index: -1;
	background: #1d2088;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
}
a:hover{
	color: #FFF;
}
a:hover::before{
	transform-origin: 0% 50%;
	transform: scaleX(1);
}


/* footer */

footer{
	padding: 54px 0 17px 0;
}
.copy{
	font-size: 12px;
	text-align: center;
}

}
