@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@900&display=swap');




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

base

---------------------------------------------------------------------------------------------------- */
:root {
	--red: #ED3F52;
	--green: #009D98;
	--green-dark: #117B78;
	--navy: #192b3a;
	--blue: #b5e9e7;
	--font-mplus: "M PLUS Rounded 1c", sans-serif;
	--font-zen: "Zen Maru Gothic", serif;
}
body {
	color: var(--navy);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
body.dot {
	background-color: #def2f2;
	background-image: radial-gradient(#bbe7e6 20%, transparent 20%);
	background-size: 12px 12px;
}
body.index,
body.thanx {
	background: 
		url(../img/bg-up.jpg) no-repeat center top,
		url(../img/bg-btm.jpg) no-repeat center bottom;
	background-size:
		100% auto;
	background-attachment:
		local,
		fixed;
	background-color: var(--blue);
	height: 100%;
}
@media screen and (max-width: 768px) {
	body.index,
	body.thanx {
		background: 
			url(../img/bg-up-sp.jpg) no-repeat center top,
			url(../img/bg-btm-sp.jpg) no-repeat center bottom;
		background-size:
			100% auto;
		background-attachment:
			local,
			fixed;
		background-color: var(--blue);
		height: 100%;
	}
}

/* link */
a {
	color: var(--navy);
	text-decoration: none;
    transition: 0.3s ease-in-out; 
}
a.line {
	text-decoration: underline;
}
a:hover.line {
	text-decoration: none;
}
a:hover {
    opacity: 0.5;
} 
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}

/* font-size */
html {
    font-size: 0.833vw;
}
@media screen and (min-width: 1280px) {
    html {
        font-size: 62.5%;
    }	
}
@media screen and (max-width: 768px) {
    html {
        font-size: 1.303vw;
    }	
}
@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }	
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }	
}



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

header

-------------------------------------------------- */
header {
	position: absolute;
	left: 0;
	top: 0;
	padding: 1.5rem 0 0 4rem;
}
header h1 {
	width: 14rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	header {
		position: relative;
		left: auto;
		top: auto;
		width: 100%;
		padding: 0;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 6rem;
	}
	header h1 {
		width: 14rem;
	}
	.index header {
		justify-content: flex-start;
		padding-left: 3rem;
	}
}



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

footer

-------------------------------------------------- */
footer small {
	display: block;
	text-align: center;
	font-size: 1.1rem;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0);	
	padding-bottom: 1rem;
}
.step-2 footer small,
.step-3 footer small,
.thanx footer small {
	position: relative;
	left: auto;
	transform: none;	
}
@media screen and (max-width: 768px) {
	footer small {
		font-size: 1.2rem;
		position: relative;
		left: auto;
		bottom: auto;
		transform: none;
	}
}



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

heading

-------------------------------------------------- */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	text-align: center;
	font-family: var(--font-mplus);
	font-weight: 900;
	font-size: 2.4rem;
	color: #fff;
	text-shadow: 0.15rem 0.15rem 0 #000;
	-webkit-text-stroke: 0.12rem #000;
	margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
	.heading-1 {
		font-size: 2.8rem;
		margin-bottom: 1.5rem;
	}
}
.heading-2 {
	text-align: center;
	font-size: 3.2rem;
	font-weight: 900;
	text-shadow: 0.15rem 0.15rem 0 #fff;
	margin-bottom: 1.5rem;
}
.step-3 .heading-2 {
	font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
	.heading-2 {
		font-size: 2.6rem;
	}
	.step-3 .heading-2 {
		font-size: 2.4rem;
	}
}



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

class

-------------------------------------------------- */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



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

fade

------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(1rem);
}
.fade.is-animation {
    animation: fade 0.3s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.delay-1 { animation-delay: 0.2s !important; }