@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');



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

base

------------------------------------------- */
:root {
	--pink: #e0797a;
	--green: #90cf82;
	--blue: #86b7d3;
	--brown: #6d4a39;
	--font-UDG: "BIZ UDGothic", sans-serif;
	--font-oswald: "Oswald", sans-serif;
}
body {
	color: var(--brown);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
/* link */
a {
	color: var(--brown);
}



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

class

------------------------------------------- */
/* ttl-wrap */
.ttl-wrap {
	width: 36rem;
	margin: 0 auto 3rem auto;
	position: relative;
	padding: 2% 0 0 0;
	font-weight: 500;
	font-size: 1.6rem;
}
.plan .ttl-wrap {
	width: 44rem;
}
.simulation .ttl-wrap {
	width: 48rem;
}
.faq .ttl-wrap {
	width: 48rem;
}
@media screen and (max-width: 768px) {
	.ttl-wrap {
		width: 90%;
		font-size: 1.4rem;
	}
	.plan .ttl-wrap {
		width: 90%;
	}
	.simulation .ttl-wrap {
		width: 90%;
	}
	.faq .ttl-wrap {
		width: 90%;
	}
}
.ttl-wrap::before,
.ttl-wrap::after {
	content: "";
	width: 2rem;
	height: 2rem;
	position: absolute;
}
.ttl-wrap::before {
	border-top: solid 0.12rem var(--brown);
	border-left: solid 0.12rem var(--brown);
	top: 0;
	left: 0;
}
.ttl-wrap::after {
	border-right: solid 0.12rem var(--brown);
	border-bottom: solid 0.12rem var(--brown);
	right: 0;
	bottom: 0;
}
.ttl-wrap span {
	text-align: center;
	display: block;
	background: url(/pta/lp/f1/images/ttl-bg-1.png) no-repeat center bottom;
	background-size: 20rem auto;
	padding-bottom: 2.5rem;
}
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 6rem;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.heading-1 .jp {
	margin-bottom: 2rem;	
	font-size: 3.2rem;
}
.heading-1 .jp strong {
	font-weight: 500;
	color: var(--pink);
}
.heading-1 .jp strong i {
	font-size: 6rem;
	font-weight: bold;
	vertical-align: -0.4rem;
}
.heading-1 .en {
	border-bottom: solid 0.12rem var(--brown);
	font-weight: normal;
	letter-spacing: 0.2em;
	font-size: 1.2rem;
	padding-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
	.heading-1 {
		text-align: center;
		margin-bottom: 4rem;
	}	
	.heading-1 .jp {
		font-size: 3rem;
	}
}
/* ptn */
.bg-ptn {
	background-image:
		repeating-linear-gradient(
			90deg,
			#f4f4f4 ,
			#f4f4f4 1px,
			transparent 1px,
			transparent 20px
		),
		repeating-linear-gradient(
			0deg,
			#f4f4f4 ,
			#f4f4f4 1px,
			#fff 1px,
			#fff 20px
		);
}
@media screen and (max-width: 768px) {
	.bg-ptn {
		background-image:
			repeating-linear-gradient(
				90deg,
				#f4f4f4 ,
				#f4f4f4 1px,
				transparent 1px,
				transparent 14px
			),
			repeating-linear-gradient(
				0deg,
				#f4f4f4 ,
				#f4f4f4 1px,
				#fff 1px,
				#fff 14px
			);
	}
}
/* base-width */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}
/* page-top */
#page-top {
    position: fixed;
	bottom: 1rem;
	right: 1rem;	
	z-index: 999;	
}
#page-top a {
	background: var(--pink);
	border-radius: 50%;
	color: #fff;	
	font-size: 1.6rem;
	width: 3.6rem;
	height: 3.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 7rem;
	}
}
/* display */
@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(2rem);
}
.fade.is-animation {
    animation: fade 0.5s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }