@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: "Noto Sans JP", "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: 1.6;
	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 {
	text-decoration: none;
	font-weight: bold;
	color: #000;
}

p {
	text-align: justify;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6;
}


/* セレクト時の色指定 */
::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;
	}
}




/* --------------------------------------------

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: 1s;
	animation-fill-mode: forwards;
}

@keyframes anime_fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes fadeInBottomTop {
	0% {
		opacity: 0;
		transform: translateY(14rem) 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);
	}
}



/* --------------------------------------------

common

---------------------------------------------- */

.italic {
	font-style: italic;
}

.img-frame {
	overflow: hidden;
}

.img-frame img {
	transition: 0.3s;
}

.img-frame:hover img {
	transform: scale(1.2);
	transition: 0.3s;
}

.linkBtn,
.footer__link {
	display: inline-block;
	position: relative;
	font-weight: bold;
	font-style: italic;
	letter-spacing: 4px;
	line-height: 1;
	transition: 0.3s;
}


.linkBtn::after {
	display: block;
	content: "";
	width: 0;
	height: 4px;
	background-color: #FFC800;
	/* opacity: 0; */
	transition: 0.3s;
}

.linkBtn:hover::after {
	width: 100%;
	/* opacity: 1; */
	transition: 0.3s;
}


.pageTitle {
	text-align: end;
}

.pageTitle img {
	height: 160px;
	width: auto;
}

.not-found {
	width: 94%;
	margin: 120px auto 160px; 
	text-align: center;
}

.not-found h2,
.not-found .linkBtn {
	margin: 60px auto;
	font-size: 36px;
	font-size: 3.6rem;
	text-align: center;
}

.not-found p {
	font-size: 16px;
	font-size: 1.6rem;
	text-align: center;
}



@media only screen and (max-width:640px) {

	.linkBtn,
	.footer__link {
		display: inline-block;
		position: relative;
		font-weight: bold;
		font-style: italic;
		letter-spacing: 4px;
		line-height: 1;
		transition: 0.3s;
	}


	.linkBtn::after {
		display: block;
		content: "";
		width: 0;
		height: 4px;
		background-color: #FFC800;
		/* opacity: 0; */
		transition: 0.3s;
	}

	.linkBtn:hover::after {
		width: 100%;
		/* opacity: 1; */
		transition: 0.3s;
	}


	.pageTitle {
		text-align: end;
	}

	.pageTitle img {
		width: 80%;
		height: auto;
	}

	.not-found h2,
	.not-found .linkBtn {
	font-size: 24px;
	font-size: 2.4rem;
	text-align: center;
}

}


/* --------------------------------------------

cookie

---------------------------------------------- */



.cookie-consent {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	font-size: 12px;
	color: #fff;
	background: rgba(0, 0, 0, .7);
	padding: 1.2em;
	box-sizing: border-box;
	visibility: hidden;
	z-index: 999;
}

.cookie-consent.is-show {
	visibility: visible;
}

.cookie-consent a {
	color: #fff !important;
}

.cookie-agree {
	color: #fff;
	background: dodgerblue;
	padding: .5em 1.5em;
}

.cookie-agree:hover {
	cursor: pointer;
}

/* パッと消える */
.cc-hide1 {
	display: none;
}

/* ゆっくり消える */
.cc-hide2 {
	animation: hide 1s linear 0s;
	animation-fill-mode: forwards;
}

@keyframes hide {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		visibility: hidden;
	}
}

/* メディアクエリ */
@media screen and (max-width: 600px) {
	.cookie-consent {
		flex-direction: column;
	}

	.cookie-text {
		margin-bottom: 1em;
	}
}