@charset "utf-8";
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
}

body {
	background: url("../img/utyu.png")no-repeat fixed center top;
	background-size: cover;
	color: #000000;
	font-size: 1.4rem;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}


/*トップエリアのスタイル*/
.topArea {
	height: 700px;
	background: url(../images/topimage.png)center top no-repeat;
	box-sizing: cover;
}

.logo {
	float: left;
	width: 22%;
	margin-left: 8%;
}

.logo a img {
	width: 100%;
}


/*トグルボタンのスタイルを指定*/
.Toggle {
    display: none;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
  	right: 25px;
	top: 20px;
	z-index: 10;
}
 
.Toggle span {
    display: block;
    position: absolute;
    width: 50px;
    border-bottom: solid 4px #555;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
 
}
 /*各ボーダー少しずつずらす*/
.Toggle span:nth-child(1) {
    top:5px;
}
 .Toggle span:nth-child(2) {
    top: 18px;
}
 .Toggle span:nth-child(3) {
    top: 32px;
}
.Toggle.active span:nth-child(1) {
    top: 18px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}



.nav-tel {
	display: inline-block;
	float: left;
	margin-left: 10%;
	height: 100%;
	width: 60%;
	color: #fff;
	font-size: 2.2rem;
}

.nav-tel li {
	display: inline-block;
	width: 40%;
}

.min-msg {
	text-align: right;
}

.tel-nmb {
	background-color: navy;
	padding: 2.4%;
	text-align: center;
	margin-left: 3%;
}

.nav {
	display: inline-block;
	float: left;
	margin-left: 20%;
	font-size: 2.4rem;
	width: 50%;
}

.nav li {
	display: inline-block;
	width: 20%;
}

.nav li a {
	display: inline-block;
	margin-top: 6%;
	padding: 10% 0 8%;
	width: 100%;
	text-decoration: none;
	color: #000;
	text-align: center;
	position: relative;
}

.nav li a::after {
	content: "";
	position: absolute;
	top: 94%;
	left: 0;
	width: 0%;
	border-bottom: 3px solid #555;
	transition: 0.5s ease-in-out;
}

.nav li a:hover::after {
	width: 100%;
	transition: 0.5s ease-in-out;
}

.top-msg {
	clear: both;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	font-size: 5.6rem;
	padding-top: 200px;
}

/*タイトル共通スタイル*/
.heading {
	font-size: 5rem;
	text-align: center;
	padding: 6% 0 2%;
	position: relative;
	clear: both;
}

.heading::after {
	content: "";
	position: absolute;
	bottom: 4%;
	left: 30%;
	width: 40%;
	border-bottom: 6px solid #66bbff;
}

/*サービス一覧エリアのスタイル*/

.serviceBigbox {
	width: 84%;
	margin: 0 auto;
}

.serviceBox {
	width: 30%;
	height: 26%;
/*	border: 1px solid #e3e7e6;
	background-color: #fff;*/
	margin-top: 4%;
	padding: 1.5%;
}

.service-img img {
	width: 100%;
}

.service_l {
	float: left;
	margin-right: 5%;
}

.service_r {
	float: right;
}

.service-title a{
	display: inline-block;
	background-color: #66bbff;
	color: #fff;
	text-decoration: none;
	font-size: 3rem;
	padding: 4% 2%;
	width: 100%;
	transition: 0.5s ease-in-out;
	position: relative;
}

.service-title a::after {
	content: "▷";
	font-size: 3rem;
	right: 4%;
	position: absolute;
}

.service-title a:hover {
	width: 110%;
	transform-origin: left;
	transition: 0.5s ease-in-out;
}


/*御依頼後の流れのスタイル*/


.requestBigbox {
	overflow: hidden;
	width: 80%;
	margin: 5% auto 4%;
}

.requestBox {
	width: 19%;
	height: 260px;
	margin-right: 8%;
	background-color: #BBBBBB;
	float: left;
	padding: 2%;
	position: relative;
}

.requestBox::after {
	position: absolute;
	content:"▶︎";
	color: #00237a;
	font-size: 7rem;
	top: 84px;
	left: 107%;
}

.lastbox {
	margin-right: 0;
	float: left;
}

.request_heading {
	font-size: 2.2rem;
	text-align: center;
	padding-bottom: 10%;
}

.request_sub {
	font-size: 1.8rem;
	color: #000;
}

/*店舗情報のスタイル*/
.shopBigbox {
	clear: both;
	width: 80%;
	margin: 4% auto 0;
	overflow: hidden;
}

.human {
	width: 30%;
	float: left;
}

.human img {
	width: 100%;
}

.shopBox {
	width: 40%;
	margin-left: 14%;
	float: left;
	padding: 3%;
}

.shopBox h4 {
	font-size: 4rem;
	padding: 4% 0 2%;
}

.shopBox p {
	font-size: 2rem;
	color: #000;
	line-height: 1.5;
}

/*フッターエリアのスタイル*/

.footerArea {
	clear: both;
	margin-top: 100px;
	width: 100%;
	background-color: #66bbff;
}

.copy {
	text-align: center;
	font-size: 2rem;
	padding: 6% 0 2%;
	color: #fff;
}

@media(max-width: 768px) {

	/*横幅768pxのヘッダーのスタイル*/
	.logo {
		width: 50%;
		margin:2% 2% 0;
		padding-bottom: 2%;
	}
	
	.sp_header {
		background-color: rgba(117,173,230,0.8);
		width: 100%;
		position: fixed;
		z-index: 10;
	}
	
	.big-nav {
		display: flex; 
		width: 100%;
		z-index: 10;
		background-color: rgba(117,173,230,0.8);
		position: fixed;
		top: 13%;
	}
	.nav-tel {
		/*display: none;*/
		float: none;
		margin-left: 4%;
		width: 100%;
		padding-top: 20%;
		heightf: 100%;
	}
	.nav-tel .min-msg {
		font-size: 1.8rem;
		text-align: center;
		color: #fff;
		padding-bottom: 10%;
	}
	
	.nav-tel li {
		/*display: block;*/
		width: 90%;
	}
	

	.nav {
	/*display: block;*/
	float: none;
	padding: 10% 0;
	margin-left: 0;
	width: 100%;
	/*background-color: #fff;*/
	}
	
	.nav li {
	/*display:block;*/
	width: 100%;
	}

	.nav li a {
	display: block;
	margin-top: 2%;
	padding: 6% 0 8%;
	}
	
	
	.top-msg {
	font-size: 4rem;
	padding: 60% 3% 0;
	line-height: 2;
}
	
	.Toggle {
		display: block;
	}
	
	/*ナビゲーションの動き*/
	.big-nav{
	transition: 0.5s ease;
	-webkit-transform: translateX(-100%);/*画面より100%外へ押し出し非表示にさせる*/
	}
 
/*OPEN時の動き*/
	.big-nav.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*メニューを元の位置へ戻す*/
	}

	
	/*横幅768pxの見出しのスタイル*/
	
	.heading {
	font-size: 3rem;
	text-align: center;
	padding: 12% 0 8%;
	}

	.heading::after {
	width: 90%;
	left: 5%;
	bottom: 10%;
	border-bottom: 4px solid #66bbff;
	}
	
	/*横幅768pxのサービスのスタイル*/
	.serviceBigbox {
	width: 96%;
	margin: 0 auto;
	}

	.serviceBox {
	width: 50%;
	margin-top: 4%;
	padding: 1.5%;
	}
	
	.serviceBox:nth-of-type(odd) {
		float: left;
	}
	
	.serviceBox:nth-of-type(even) {
		float: right;
	}

	.service-img img {
	width: 100%;
	}

	.service_l {
	float: none;
	margin-right: 0;
	}

	.service_r {
	float: none;
	}
	
	.service-title a {
		font-size: 2rem;
	}
	
	.service-title a::after {
		font-size: 2rem;
	}
	
	.service-title a:hover {
	width: 100%;
}
	
	/*横幅768pxの御依頼後の流れスタイル*/
	
	.requestBigbox {
	width: 70%;
	margin: 0 auto;
	}

	.requestBox {
	width: 100%;
	margin-top: 8%;
	float: none;
	text-align: center;
	padding: 6% 6% 10%;
	height: auto;
	}

	.requestBox::after {
	/*content:"▼";
	font-size: 5rem;
	top: 160px;
	left: 45%;*/
	content: "";
	}

	.lastbox {
	margin-right: 0;
	float: none;
	}
	
	/*横幅768pxの店舗情報のスタイル*/
	
	.shopBigbox {
	width: 70%;
	}

	.human {
	width: 100%;
	float: none;
	}

	.shopBox {
	width: 100%;
	margin-left: 0;
	float: none;
	}

	.shopBox h4 {
	font-size: 2.2rem;
	padding: 6% 0 4%;
	text-align: center;
	}

	.shopBox p {
	text-align: center;
	font-size: 2rem;
	}
	
	/*横幅768pxのフッターのスタイル*/
	
	.copy {
		padding: 12% 0 6%;
		font-size: 1.8rem;
	}
	
}



