@charset "utf-8";

@import url("header.css");
@import url("nav.css");
@import url("footer.css");


/*
body * { border:0.02px solid #000000; background:rgba(000,000,000,0.1)}
*/



html,
body {
	width: 100%;
	font-size: 62.5%;
	background: #fff;
}

#wrap {
	min-width: 1024px;
	overflow: hidden;
}

body,
input,
select,
textarea {
	font-family: "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
	color: #141414;
}

@media only screen and (max-width:640px) {

	html,
	body {
		width: 640px;
		min-width: 640px;
		font-size: 106.67%;
	}

	#wrap {
		width: 640px;
		min-width: 640px;
		overflow: hidden;
	}
}

a {
	color: #141414;
	text-decoration: none;
}

p {
	text-align: justify;
}


a img {
	transition: 0.3s;
}

a:hover img {
	opacity: 0.6 !important;
}


/* セレクト時の色指定 */
::selection {
	background: #d6daea;
	color: #141414;
}

::-moz-selection {
	background: #d6daea;
	/*Firefox*/
	color: #141414;
}


.imgTxt {
	position: relative;
}

.imgTxt h1,
.imgTxt h2,
.imgTxt h3,
.imgTxt p {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: -200vw;
	font-size: 10px !important;
}

.showSp {
	display: none;
}

@media only screen and (max-width:640px) {

	.showPc {
		display: none !important;
	}

	.showSp {
		display: block !important;
	}
}


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

fonts

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




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

animation

---------------------------------------------- */
.anime,
.animest {
	opacity: 0;
}

.animest.animeFadeIn,
.animest .animeFadeIn {
	animation-name: anime_fadeIn;
	animation-delay: 0.5s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}

.animest.animeFadeInBottomTop,
.animest .animeFadeInBottomTop {
	animation-name: fadeInBottomTop;
	animation-delay: 0.0s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}

@keyframes anime_fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes fadeInBottomTop {
	0% {
		opacity: 0;
		transform: translateY(4rem) translateX(0) scale(1);
	}

	100% {
		opacity: 1;
		transform: translateY(0) translateX(0) scale(1);
	}
}

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

#main

---------------------------------------------- */
#main {
	opacity: 0;
	animation: anime_fadeIn 1.8s ease 0.5s 1 forwards;
	-webkit-animation: anime_fadeIn 1.8s ease 0.5s 1 forwards;
}


/*--- Responsive ---*/





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

#pageTop

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

#pageTop {
	display: none;
	position: fixed;
	bottom: 100px;
	right: 0;
	z-index: 999;
}

#pageTop.fixed {
	display: block;

	opacity: 0;
	transform: translateY(100px);
	animation-name: pageTopFixed;
	animation-delay: 0s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

#pageTop a {
	position: relative;
	display: block;
	text-decoration: none;
	border-bottom: none;
	transition: 0.3s;
}

@keyframes pageTopFixed {
	0% {
		opacity: 0;
		transform: translateY(100px) translateX(0);
	}

	100% {
		opacity: 1;
		transform: translateY(0) translateX(0);
	}
}
