@charset "utf-8";
/* CSS Document */
.sub_head {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 56vh;
}

.sub_head-bg{
	position: absolute;
	width: 85%;
	height: 24vh;
	background: rgba( 255, 255, 255, 0.5 );
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	backdrop-filter: blur( 3.5px );
	-webkit-backdrop-filter: blur( 3.5px );
	border-radius: 10px;
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.sub_head h1{
	position: relative;
	padding-bottom: 1em;
	font-size: 2.5rem;
	z-index: 10;
	margin-bottom: 1em;
	letter-spacing: .25em;
	display: flex;
  	justify-content: center;
  	align-items: center;
}

.sub_head h1::before{
	position: absolute;
	bottom: -10px;
  	width: 60px;
  	height: 5px;
  	content: '';
  	border-radius: 3px;
  	background: #e7674c;
}


.sub_head p{
	width: 75%;
	z-index: 10;
  	font-weight: 400;
  	font-style: normal;
	line-height: 1.5em;
	letter-spacing: .05em;
	text-align: justify;
}

.rocknroll-one-regular {
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2{
	font-family: "Lato", sans-serif;
  	font-weight: 100;
  	font-style: normal;
	font-size: 2.5rem;
  	position: relative;
  	text-align: center;
	color: #707070;
	margin: 0 auto 4.8rem;
	padding-top: 3.6rem;
}

h2 span{
	display: block;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.5rem;
	text-align: center;
	margin-top: 1.5rem;
	color: #446e72;
}

/*問い合わせ
---------------------------------------------------------------------------*/
#inquiry{
	background-image: url("../img/bg/pexels-3183150.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

#inquiry::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(
		/*rgba(241, 236, 235, 0.3)*/
		rgba(0, 0, 0, 0.3)
	 );
}

#inquiry h2{
	color: #fff;
	z-index: 1;
}

.inquiry_nn{
	z-index: 1;
	width: 100%;
	color: #fff;
	text-align: center;
}

.inquiry{
	display: flex;
	flex-wrap: wrap;
}

.phone,.mail{
	z-index: 1;
}

.phone{
	width: 100%;
	display: flex;
	justify-content: center;
	line-height: 1.25;
	margin-bottom: 2em;
	text-align: center;
	color: #fff;
}

.phone span{
	font-size: 3.2rem;
	color: #e7674c;
	font-weight: bold;
}
	
.mail{
	width: 100%;
	display: flex;
	justify-content: center;
}

.mail a{
	padding: 2em;
	background: #e7674c;
	color: #fff;
	border-radius: 100px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mail i{
	margin-right: .5em;
}

/*中型画面向けデザイン（タブレットなど）
---------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
	
	.sub_head h1{
		font-size: 3.5rem;
	}
	
	.sub_head-bg{
		width: 40%;
		height: 24vh;
	}
	
	.sub_head p{
		width: 35%;
	}
	
	/*　問い合わせ　*/
	
	.inquiry{
		width: 80%;
		max-width: 1000px;
		margin: 0 auto 3em;
	}
	
	.phone{
		width: 50%;
		margin-bottom: 0;
	}
	
	.mail{
		width: 50%;
	}
	
}

