@charset "utf-8";

@media print, screen and (min-width: 751px) {

.sp {
display: none;
}
html {
	overflow: auto;
	background: #f3f3f3;
}
body {
	min-width: 1200px;
	overflow: hidden;
}
img {
	width: 100%;
	height: auto;
}
.inner {
	width: 1200px;
	margin: 0 auto;
	min-width: 1200px;
	overflow: hidden;
}

/* pagetop */
#pagetop {
	position: absolute;
	right: 3%;
	bottom: 0;
	top: inherit;
	z-index: 400;
	margin: 0;
	display: none;
	cursor: pointer;
	width: 120px;
	backface-visibility: hidden;
}
#pagetop.fixed {
	position: fixed;
	right: 3%;
	bottom: 0px;
	top: inherit;
}
#pagetop a {
	opacity: 1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
#pagetop a:hover {
	opacity: 0.7;
}
	


/* -----------------------------------------------------------------------------

	btn

----------------------------------------------------------------------------- */

.btn01 {
	padding: 40px 0 0;
}
.btn01 a {
	position: relative;
	display: table;
	text-align: center;
	width: 420px;
	height: 84px;
	margin: 0 auto;
	background: #ddc750;
	transition: all .2s;
}
.btn01 a:after {
	content: "";
	background: url(../img/icon_arw01.svg) no-repeat center center;
	background-size: 25px 20px;
	display: block;
	position: absolute;
	top: 32%;
	left: 30px;
	transition: all .2s;
	width: 30px;
	height:  30px;
}
.btn01 a:hover::after {
	top: 35%;
}
.btn01 a:hover {
	opacity: 1;
	background-color: #584d3d;
}
.btn01 span{
	color: #fff;
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}
.btn02 a:after {
	content: "";
	background: url(../img/icon_arw02.svg) no-repeat center center;
	background-size: 32px 7px;
	display: block;
	position: absolute;
	top: 50%;
	right: 40px;
	margin-top: -5px;
	transition: all .2s;
	width: 32px;
	height: 7px;
}



/* -----------------------------------------------------------------------------

	animation

----------------------------------------------------------------------------- */
.block {
	opacity: 0;
	transition: all .8s ease;
	transform: translate(-200px, 0);
}
.block.right {
	transform: translate(200px, 0);
}
.block.show {
	opacity: 1;
	transform: none;
}

/* -----------------------------------------------------------------------------

	ttl

----------------------------------------------------------------------------- */
h3.secTtl {
	font-size: 1.4rem;
	text-align: center;
	letter-spacing: 1px;
	margin-bottom: 50px;
}
h3.secTtl b{
	font-family: futura-pt, sans-serif;
	font-size: 5rem;
	display: block;
	font-weight: 400;
	letter-spacing: 4px;
}

/* -----------------------------------------------------------------------------

	img animation

----------------------------------------------------------------------------- */
	
.img-animation {
	animation: img-opacity 2s cubic-bezier(.4, 0, .2, 1);
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.img-animation:before {
	animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
	animation-delay: 1s;
	background: #ddc750;
	bottom: 0;
	content: '';
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

@keyframes img-opacity {
	0% {
		opacity: 0;
	}
}

@keyframes img-animation {
	100% {
		transform: translateX(100%);
	}
}




}