@charset "utf-8";

html,
body {
	width: 100%;
	font-size: 62.5%;
}

#wrap {
	min-width: 1024px;
	overflow: hidden;
}

@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: inherit;
	text-decoration: none;
}

p {
	text-align: justify;
}

a img {
	transition: 0.3s;
}
@media (hover:hover){
	a:hover img {
		opacity: 0.6 !important;
	}
}

/* セレクト時の色指定 */
::selection {
	background: var(--c-peel-pink-pale);
	color: inherit;
}

::-moz-selection {
	background: var(--c-peel-pink-pale);
	/*Firefox*/
	color: inherit;
}

.showSp {
	display: none !important;
}

@media only screen and (max-width:640px) {

	.showPc {
		display: none !important;
	}

	.showSp {
		display: block !important;
	}
}

/* --------------------------------------------

color

---------------------------------------------- */

:root {
	--c-text: #000000;
	--c-white: #fff;
	--c-black: #000000;
	--c-gray: #aaaaaa;
	--c-black-rgb: 35,24,21;
	--c-white-rgb: 255,255,255;

	--c-bg-gray: #eeeeef;
	--c-bg-yellow: #faf7e4;

	--c-peel-orange: #ea5532;
	--c-peel-pink: #c70067;
	--c-peel-pink-pale: #f8d8fb;
	--c-peel-pink-rgb: 199,0,103;
	--c-peel-yellow: #f6ab00;
	--c-peel-yellow-soft:#fdd23e;
}


/* --------------------------------------------

fonts

---------------------------------------------- */

:root {
    --ff-en: 'Montserrat', sans-serif;

    --fz-xs: 1.0rem;
    --fz-s: 1.3rem;
    --fz-m: 1.6rem;
    --fz-l: 1.8rem;
    --fz-xl: 2.0rem;
    --fz-xxl: 2.4rem;
    --fz-xxxl: 2.8rem;
    --fz-2x: 3.2rem;
    --fz-3x: 4.8rem;

    --fw-light: 300;
    --fw-medium: 500;
    --fw-bold: 700;
    --fw-en-bold: 800;
}

@media only screen and (max-width:640px) {

	:root {
		--fz-m: 1.5rem;
		--fz-l: 1.6rem;
	}

}

body {
	font-family: 'Noto Sans JP', Meiryo,YuGothic,'Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
	color: var(--c-text);
}

body,
input,
select,
textarea {
	font-size: var(--fz-m);
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
}


/* --------------------------------------------

animation

---------------------------------------------- */

.fadeIn,
.fromBottom {
	opacity: 0;
}

.anime.over.fadeIn,
.anime.over .fadeIn {
	animation-name: anime_fadeIn;
	animation-delay: 0s;
	animation-duration: 0.4s;
	animation-fill-mode: forwards;
}

.anime.over.fromBottom,
.anime.over .fromBottom {
	animation-name: anime_fadeInFromBottom;
	animation-delay: 0.0s;
	animation-duration: 0.4s;
	animation-fill-mode: forwards;
}

@keyframes anime_fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes anime_fadeInFromBottom {
	0% {
		opacity: 0;
		transform: translateY(4rem) translateX(0) scale(1);
	}

	100% {
		opacity: 1;
		transform: translateY(0) translateX(0) scale(1);
	}
}

/* 遅延で順に表示、スマホでは解除 */

.pcDelay-02 {
	animation-delay: 0.2s;
}

.pcDelay-04 {
	animation-delay: 0.4s;
}

.pcDelay-06 {
	animation-delay: 0.6s;
}

.pcDelay-08 {
	animation-delay: 0.8s;
}

.pcDelay-10 {
	animation-delay: 1.0s;
}

@media only screen and (max-width:640px) {

	.pcDelay-02,
	.pcDelay-04,
	.pcDelay-06,
	.pcDelay-08,
	.pcDelay-1 {
		animation-delay: 0s;
	}

}


/* --------------------------------------------

#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;
}
