@charset "utf-8";
/* CSS Document */

/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
body{
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 2;
}

header{
	text-align: center;
}

img{
	width: 100%;
}

h1{
	margin-bottom: 10px !important;
}





header .logo_contact_tel,footer .logo_contact_tel{
	display: block;
}

header .contact{
	margin-right: 20px;
}

header .contact_tel{
	display: flex;
	justify-content:center;
}

header .contact li a,footer .contact li a{
	display: block;
	color: #fff;
	text-align: center;
	padding: 4px 12px;
}

header .contact li:first-child a,footer .contact li:first-child a{
	background-color: #31755e; 
}

header .contact li:last-child a,footer .contact li:last-child a{
	background-color: #95c7e0; 
}

header .tel li:last-child,footer .tel li:last-child{
	font-size: 1.8em;
}

header .tel li{
    line-height: 1.4em;
}

footer{
	color: #fff;
	height: 700px;
	background-image: url("../img/footerimage.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .logo{
	text-align: center;
}



footer .contact_tel{
	display: flex;
	justify-content: space-around;
	margin-top: 20px;
}

footer div.text{
	text-align: center;
}

footer h2{
	margin-bottom: 0 !important;
}

.mobile {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(149, 199, 224,0.8);
}

.mobile .tel{
	margin-right: 2%;
}

.mobile .tel a{
	display: flex;
	align-items: center;
	font-size: 1.3em;
	background-color: #fff;
	border-radius: 10px;
	padding: 5px 40px;
}

.mobile .tel a:before{
  font-family: "Font Awesome 5 Free";
  content: '\f3cd';
  font-weight: 900;
  margin-right: 10px;
}

/* -------------------------------------------- */
/* ▼タブレット用デザインとして付け足すデザイン */
/* -------------------------------------------- */
@media (min-width: 894px) {
	header{
		text-align: left;
	}
	
	header .logo:before{
		width: 210px;
		height: 62px;
	}
	
	header .contact li a,footer .contact li a{
		padding: 10px 30px;
	}
	
	header .contact li a:hover,footer .contact li a:hover{
		background-color: rgba(0,0,0,0.8);
		transition: all .5s;
	}
	
	header .tel li:last-child, footer .tel li:last-child {
		font-size: 2.5em;
	}
	

	
	header .logo_contact_tel,footer .logo_contact_tel{
		display: flex;
		justify-content: space-between;
	}
	
	footer{
		height: 700px;	
	}

	footer .logo:before{
		width: 60px;
		height: 60px;
	}
	
	.mobile {
		display: none;
	}
}

/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media (min-width: 1920px) {
}