@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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



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

base

------------------------------------------- */
:root {
	--red: #f0323a;
	--orange: #ff8900;
	--green: #1bb530;
	--blue: #0093d6;
	--bg-grd: linear-gradient(to right, #51e1fc,#0093d6);
	--font: "Inter", sans-serif;
}
body {
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
a {
	color: #000;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}



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

layout

------------------------------------------- */
/* ---- 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(--red);
	color: #fff;	
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.8rem;
	padding-left: 0.1rem;
}



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

style

------------------------------------------- */
/* ---- heading ---- */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	font-size: 50px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: url(../img/deco-ttl.png) no-repeat center bottom;
	background-size: 40px auto;
	padding-bottom: 40px;
}
.heading-1 span {
	display: block;
	color: #fff;
	font-size: 26px;
	background: var(--bg-grd);
	border-radius: 10rem;
	display: inline-block;
	padding: 10px 30px;
	margin-bottom: 20px;
}
.heading-1 strong {
	color: var(--blue);
}
.heading-1.red {
	background: url(../img/deco-ttl-red.png) no-repeat center bottom;
	background-size: 40px auto;
}
.heading-1.red strong {
	color: var(--red);
}
@media screen and (max-width: 768px) {
	.heading-1 {
		line-height: 1.4;
		font-size: 3rem;
		padding-bottom: 3rem;
	}
	.heading-1 span {
		font-size: 2rem;
		padding: 10px 2rem;
		margin-bottom: 1.2rem;
	}
	.heading-1.adjust span {
		padding: 10px 4rem;
	}
}



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

class

------------------------------------------- */
/* ---- display ---- */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}
/* ---- margin ---- */
.mb-10 { margin-bottom: 1rem !important; }
.mb-15 { margin-bottom: 1.5rem !important; }
.mb-20 { margin-bottom: 2.0rem !important; }
.mb-25 { margin-bottom: 2.5rem !important; }
.mb-30 { margin-bottom: 3.0rem !important; }
.mb-35 { margin-bottom: 3.5rem !important; }
.mb-40 { margin-bottom: 4.0rem !important; }
.mb-45 { margin-bottom: 4.5rem !important; }
.mb-50 { margin-bottom: 5.0rem !important; }
.mb-55 { margin-bottom: 5.5rem !important; }
.mb-60 { margin-bottom: 6.0rem !important; }
.mb-65 { margin-bottom: 6.5rem !important; }
.mb-70 { margin-bottom: 7.0rem !important; }
.mb-75 { margin-bottom: 7.5rem !important; }
.mb-80 { margin-bottom: 8.0rem !important; }
.mb-85 { margin-bottom: 8.5rem !important; }
.mb-90 { margin-bottom: 9.0rem !important; }
.mb-95 { margin-bottom: 9.5rem !important; }
.mb-100	{ margin-bottom: 10.0rem !important; }