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



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

base

----------------------------------------------------------  */
:root {
	--red: #ff0000;
	--blue: #1574c4;
	--yellow: #ffff00;
	--orange: #ee7f26;
	--green: #1c8d4f;
	--blue-pale: #3174D5;
}
body {
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.6rem;
	}
}
a {
	color: #000;
}



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

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;
    }	
}
@media screen and (min-width: 1401px) {
    html {
		font-size: 0.714vw;
    }	
}



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

header

----------------------------------------------------------  */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: url(../img/bg-grd.png) repeat-x center;
	background-size: auto 100%;
	padding: 2rem 5rem;
}
header h1 {
	width: 22rem;
	line-height: 1;
}
.tel {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}
.tel span:nth-child(1) {
	display: flex;
	align-items: center;
	color: var(--red);
	font-weight: 900;
	font-style: italic;
	font-size: 3.2rem;
	letter-spacing: -0.05rem;
	margin-bottom: 0.5rem;
}
.tel span:nth-child(1) img {
	width: 3rem;
	margin-top: 0.3rem;
}
.tel span:nth-child(2) {
	font-size: 1.2rem;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	header {
		justify-content: center;
		padding: 0;
		height: 6rem;
	}
	header h1 {
		width: 18rem;
	}
	.tel {
		width: 100%;
		height: 8rem;
		background: url(../img/bg-grd.png) repeat-x center;
		background-size: auto 100%;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 999;
		text-decoration: none !important;
		justify-content: center;
		box-shadow: 0 0 0.8rem rgba(0,0,0,0.3);
	}
	.tel span:nth-child(1) {
		margin-bottom: 0.8rem;
	}	
	.tel span:nth-child(2) {
		font-size: 1.5rem;
	}
}



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

footer

----------------------------------------------------------  */
footer {
	padding: 8rem 0;
	width: 88rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row-reverse;
}
footer > div {
	width: 32rem;
	margin-right: 4rem;
}
footer .area-list {
	width: 52rem;
}
footer .logo {
	width: 22rem;
	margin-bottom: 6rem;
}
footer small {
	display: block;
	font-size: 1rem;
}
@media screen and (max-width: 768px) {
	footer {
		padding: 6rem 3rem;
		width: auto;
		display: block;
		margin-bottom: 8rem;
	}
	footer > div {
		width: auto;
		margin-right: 0;
	}
	footer .area-list {
		width: auto;
	}
	footer .logo {
		width: 22rem;
		margin: 6rem auto 3rem auto;
	}
	footer small {
		text-align: center;
	}
}



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

style

----------------------------------------------------------  */
/* heading */
.heading {
	line-height: 1.4;
	margin-bottom: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.heading span:nth-child(1) {
	color: var(--red);
	font-weight: 900;
	font-size: 2.6rem;
}
.heading span:nth-child(1) i {
	color: #000;
}
.heading span:nth-child(2) {
	font-weight: 700;
	letter-spacing: 0.2em;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.heading span:nth-child(2)::before {
	content: "";
	width: 48rem;
	height: 0.15rem;
	background: var(--red);
	margin: 1rem 0 0.8rem 0;
}
.heading.wt {
	color: #fff;
}
.heading.wt span:nth-child(1) {
	color: #fff;
}
.heading.wt span:nth-child(2)::before {
	background: #fff;
}	
@media screen and (max-width: 768px) {
	.heading span:nth-child(1) {
		font-size: 2.4rem;
	}	
	.heading span:nth-child(2)::before {
		width: 32rem;
	}
}

/* more */
.more {
	text-align: center;
	line-height: 1;
	display: block;
	color: #fff;
	width: 24rem;
	padding: 2rem 0;
}
@media screen and (max-width: 768px) {

}






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

display

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



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

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;	
}
#page-top a {
	background: #fff;
	color: var(--blue);
	border: solid 0.3rem var(--blue);	
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.4rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 9rem;
	}
}



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

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;  
    -moz-transition: 0.3s ease-in-out;  
    -o-transition: 0.3s ease-in-out;  
    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;
    }
}



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

layout

----------------------------------------------------------  */
.base {
	padding: 10rem 0;
}
.base-width {
	width: 88rem;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.base {
		padding: 10rem 3rem;
	}
	.base-width {
		width: auto;
	}
}


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

class

----------------------------------------------------------  */
.note {
	font-size: 1.2rem;
}
/* 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;
}


