/* --- notes ---

--- breakpoints ---
	tablets < 960px
	phones < 570px

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

/* basic structure */

body {
	background-color: #f5f5f5;
}

.container {
	width: 80%;
	margin: auto;
	background-color: #ffffff;
}

@media screen and (max-width: 960px) {
	.container {
		width: 95%;
	}
}

@media screen and (max-width: 570px) {
	.container {
		width: 100%;
	}
}


/* font指定 */

.container {
	font-size: 94%;
	font-family: 'Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'Arial',sans-serif;
}

/* webfont(Kaisei Opti) */

.kaisei-opti-regular, header, nav, footer, h1, h2, h3 {
	font-family: "Kaisei Opti", serif;
	font-weight: 400;
	font-style: normal;
}


/* header */


/* main */

main {
	padding: 30px 40px;
}

@media screen and (max-width: 570px) {
	main {
		padding: 30px 20px;
	}
}
/* footer */

footer {
	color: #ffffff;
	background-color: #c77070;
	padding: 20px;

}

footer p {
	float: left;
}

@media screen and (max-width: 570px) {
	footer p {
		float: none;
	}
}

footer .salonname {
	font-size: 120%;
	text-align: right;
	width: 40%;
	padding: 25px 15px 0 0;
	line-height: 1.3;
}


@media screen and (max-width: 570px) {
	footer .salonname {
		text-align: right;
		width: auto;
		padding:0 0 7px;
	}
}

.location {
	display: block;
	margin: 0 0 0.05em;
	font-size: 70%;
}

footer .qr {
	width: 50%;
	font-size: 85%;
	line-height: 1.5;
	padding: 10px 0 10px 15px;
	border-left: 2px dotted #e6bebe;
}

footer .qr img {
	display: block;
	margin-top: 5px;
}



@media screen and (max-width: 570px) {
	footer .qr {
		text-align: right;
		width: auto;
		padding: 7px 0 0;
		border-top: 2px dotted #e3a8a8;
		border-left: none;
	}

	footer .qr img {
		display: block;
		margin: 5px 0 0 auto;
	}

}


footer a ,
footer a:link ,
footer a:hover ,
footer a:visited {
	color: #ffffff;
}

footer .salonname a:hover {
	text-decoration: none;
}




/* anchor */

a {
	text-decoration: none;
}

a:link {
	color: #442ACA;
}

a:hover {
	text-decoration: underline;
	color: #442AFF;
}


/* clearfix */

.clearfix:after {
	content: "";
	display: block;
	clear: both;
} 
.clearfix:before {
	content: "";
	display: block;
	clear: both;
} 
.clearfix {
	display: block;
}


/* p */

main p {
	margin: 0 0 0.7em;
	line-height: 1.4;
}


/* nowrap */

.nowrap {
	white-space: nowrap;
}


/* em strong */

strong {
	font-size: 125%;
	color: #75001B;
	font-weight: bold;
}

