@charset "UTF-8";

/*
初期設定************************************************/
/* reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p {
	margin: 0;
	padding: 0;
	font-size: 100%;
	text-align: center;
}

img {
	border: 0;
	width: 100%;
	margin: 0 auto;
}

ul,
ol {
	list-style: none;
}

a {
	color: inherit;
}

* {
	margin: 0;
	padding: 0;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
}

/*
初期設定ここまで*****************************************/

/*
wrapper*******************************/
body{
   background-color: #caf8fa;
   background-attachment: fixed;
   background-size: contain;
}
.wrapper {
	overflow: hidden;
	margin: 0 auto;
	text-align: center;
	max-width: 720px;
}

/* 各ボタン以外のコンテンツ */

.fv_img{
	width: 100%;
	display: block;
	margin: 0 auto;

}
.con1,.con2, .con3,.con4,.con5{
	width: 100%;
	display: block;
	margin: 0 auto;
}

.btn{
	width: 96%;
	padding: 4% 0%;
    display: block;
    margin: 0 auto;
}
.btn_2_b{
	background-color: #d8dffce3;
}
.btn2{
	display: block;
	margin: 0 auto;
	padding: 2% 0%;
	width: 32%;
}

@media only screen and (max-width: 750px) {
	.con1,.con2, .con3,.con4,.con5{
		width: 100%;
	}
	.btn2{
		width: 100%;
		padding-bottom: 4%;
	}
}


/* footer部分 */

footer {
	max-width: none;
	margin: 0 auto;
	background: #000000;
	padding: 12px 0px;
	color: #ffffff;
}

@media only screen and (max-width: 750px) {

	footer {
		padding: 3% 0;
	}
}

/*追従ボタン*/
#page-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s;
}

#page-top a:hover {
	opacity: 0.7;
}

/*追従ボタン*/
#page-top {
	margin: 0 auto;
	position: fixed;
	left: 0;
	right: 0;
	z-index: 7;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateY(300px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(300px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*　下に下がる動き　*/

#page-top.DownMove {
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 1;
		transform: translateY(400px);
	}
}

.yureru-j {
    animation: yureru-j 2s infinite;
}
@keyframes yureru-j {
    0% {
        transform: translate(0px, 2px);
    }
    5% {
        transform: translate(0px, -2px);
    }
    10% {
        transform: translate(0px, 2px);
    }
    15% {
        transform: translate(0px, -2px);
    }
    20% {
        transform: translate(0px, 2px);
    }
    25% {
        transform: translate(0px, -2px);
    }
    30% {
        transform: translate(0px, 0px);
    }
}