@charset "utf-8";

@import url("header.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: "Murecho", "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	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;
}


/* セレクト時の色指定 */
::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

---------------------------------------------- */


p {
	font-size: 16px;
	font-size: 1.6rem;
	text-align: justify;
	line-height: 1.7;
}

.linkBtn {
	display: block;
	width: 320px;
	margin: 40px auto 0;
	padding: 10px 20px;
	font-size: 24px;
	font-size: 2.4rem;
	color: #fff;
	text-align: center;
	font-weight: bold;
	background-color: #1F286F;
	border-radius: 20px;
	transition: 0.3s;
}

.linkBtn:hover {
	background-color: #F7B52C;
	transition: 0.3s;
}

h2 {
	margin: auto;
	margin-bottom: 60px;
	font-size: 32px;
	font-size: 3.2rem;
	line-height: 1.2;
	text-align: center;
}

h2.star {
	position: relative;
}

h2.star span {
	padding: 0 20px;
	border-bottom: 4px solid #F7B52C;
}

h2.star::before {
	position: absolute;
	top: -20px;
	left: -40px;
	display: block;
	content: "";
	width: 32px;
	height: 32px;
	background-image: url();
}

h2.star::after {
	position: absolute;
	bottom: -20px;
	right: -40px;
	display: block;
	content: "";
	width: 24px;
	height: 24px;
	background-image: url();
}

@media only screen and (max-width:640px) {
	.linkBtn {
		margin-top: 40px;
		width: 100%;
		padding: 10px 20px;
		font-size: 20px;
		font-size: 2rem;
	}


	h2 {
		margin-bottom: 40px!important;
		font-size: 24px!important;
		font-size: 2.4rem!important;
	}

}


/* --------------------------------------------

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);
	}
}