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


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

base

------------------------------------------- */
:root {
	--green: #40a67a;
	--orange: #e97f35;
	--beige: #ddd6c6;
	--yellow: #facd00;
	--red: #9f0038;
	--bg-green: #dfede5;
	--bg-grey: #d6d6d6;
	--prime: #40a67a;
}
body {
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	position: relative;
}
body::before {
	content: "";
	width: 100%;
	height: 20rem;
	background: linear-gradient(to top, var(--beige), transparent);
	position: absolute;
	left: 0;
	bottom: 0;
}

/* ------ link ------ */
a {
	color: #000;
	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 (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;
    }	
}



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

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;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;	
	width: 7rem;
}

/* ------ article ------ */
article.low {
	padding: 3rem 0 8rem 0;
}
@media screen and (max-width: 768px) {
	article.low {
		padding: 2rem 2rem 6rem 2rem;
	}
}
article.low > * {
	position: relative;
	z-index: 10;
}
article.low::before {
	content: "";
	width: 100%;
	height: 20rem;
	background: linear-gradient(to bottom, var(--beige), transparent);
	position: absolute;
	left: 0;
	top: 0;
}

/* ------ breadcumb ------ */
.breadcrumb {
	display: flex;
	width: 104rem;
	margin: 0 auto 6rem auto;
}
@media screen and (max-width: 768px) {
	.breadcrumb {
		width: auto;
		margin: 0 auto 3rem auto;
		font-size: 1.2rem;
	}
}
.breadcrumb li {
	display: flex;
	align-items: center;
}
.breadcrumb li:not(:last-child)::after {
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	border-top: solid 0.15rem #000;
	border-right: solid 0.15rem #000;
	transform: rotate(45deg);
	margin: 0 1rem;
}
.breadcrumb li a {
	color: var(--green);
}

/* ------ footer ------ */
footer {
	position: relative;
	z-index: 10;
}
footer small {
	display: block;
	text-align: center;
	font-size: 1.2rem;
	background: var(--green);
	color: #fff;
	padding: 1.2rem 0 1.3rem 0;
}



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

style

------------------------------------------- */
/* ------ more ------ */
.more {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2.5rem;
	height: 6.4rem;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	background: var(--orange);
	padding-bottom: 0.2rem;
}

/* ------ bg-grd ------ */
.bg-grd {
	position: relative;
}
.bg-grd::before {
	content: "";
	width: 100%;
	height: 20rem;
	background: linear-gradient(to bottom, var(--beige), transparent);
	position: absolute;
	left: 0;
	top: 0;
}
.bg-grd > * {
	position: relative;
	z-index: 99;
}

/* ------ heading ------ */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 900;
	background: linear-gradient(to top, var(--green), transparent 50%);
	padding-bottom: 2.5rem;
}
.heading-1 span:nth-child(1) {
	font-size: 2.4rem;
	margin-bottom: 1rem;
}
.heading-1 span:nth-child(2) {
	font-size: 3.6rem;
	color: var(--red);
	position: relative;
	text-shadow: 0 0 0.5rem #fff,0 0 0.5rem #fff,0 0 0.5rem #fff,0 0 0.5rem #fff,0 0 0.5rem #fff,0 0 0.5rem #fff,0 0 0.5rem #fff,0 0 0.5rem #fff;
}
.heading-1 span:nth-child(2) img {
	width: 4.8rem;
	position: absolute;
	left: -3.2rem;
	top: -3.2rem;
	transform: rotate(-30deg);
}
@media screen and (max-width: 768px) {
	.heading-1 {
		margin-bottom: 2.5rem;
		padding-bottom: 2rem;
	}
	.heading-1 span:nth-child(1) {
		font-size: 2rem;
		text-align: center;
	}
	.heading-1 span:nth-child(2) img {
		width: 4rem;
		left: -2rem;
	}
	.heading-1 span:nth-child(2) {
		font-size: 2.8rem;
		line-height: 1.2;
		text-align: center;
	}
}
.heading-2 {
	background: var(--green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 6.4rem;
	position: relative;
	font-size: 3.2rem;
	font-weight: bold;
	transition: all .3s;
	padding-bottom: 0.2rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	.heading-2 {
		height: auto;
		padding: 1.2rem 2rem 1.4rem 2rem;
		font-size: 2.4rem;
		line-height: 1.3;
	}
}
.heading-3 {
	background: var(--green);
	font-size: 3.2rem;
	font-weight: 900;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 8rem;
	padding-bottom: 0.2rem;
}
.heading-4 {
	color: var(--green);
	font-size: 2.8rem;
	margin-bottom: 4rem;
	border-bottom: solid 0.5rem var(--green);
	text-align: center;	
	padding-bottom: 1.5rem;
	font-weight: 900;
}
@media screen and (max-width: 768px) {
	.heading-4 {
		font-size: 2.4rem;
		margin-bottom: 2rem;
	}
}



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

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; }




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

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.2s !important; }
.delay-2 { animation-delay: 0.35s !important; }
.delay-3 { animation-delay: 0.5s !important; }
.delay-4 { animation-delay: 0.65s !important; }
.delay-5 { animation-delay: 0.8s !important; }