/* RESET
--------------------------------------------------*/
html, body, h1, h2, h3, h4, h5, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, article, header, footer, aside, figure, figcaption, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	line-height: 1;
	box-sizing: border-box;
}

article, header, footer, aside, figure, figcaption, nav, section {
	display: block;
}

body {
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

ol, ul {
	list-style: none;
	list-style-type: none;
}

li {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table tr th,
table tr td {
	padding: 0;
	text-align: left;
	vertical-align: middle;
	border: none;
	border-collapse: collapse;
}

img, video {
	vertical-align: bottom;
}

em,i {
	font-style: normal;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

address {
	font-style: normal;
}


/* カスタマイズ
--------------------------------------------------*/

html {
	line-break: strict;
}

html.lock {
	overflow: hidden !important;
    width: auto;
}

body {
  	/*font-family: YuGothic , "Yu Gothic" , "Hiragino Kaku Gothic ProN" , "Hiragino Kaku Gothic Pro" , Meiryo , sans-serif;*/
  	font-family:  "A1 Gothic L", sans-serif;
  	font-weight: 300;
  	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.05em;
	color: #4C3931;
	text-rendering: optimizeLegibility;
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-width: 1100px;
	padding: 0 0 110px;
}

a {
	text-decoration: none;
	color: #BC3D07;
}


.logo {
	text-align: center;
	margin: 110px 0 0;
}

.logo img {
	
}

.message {
	width: 650px;
	font-size: 16px;
	line-height: 1.9;
	margin: 55px auto 0;
}

.clinic {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 825px;
	margin: 70px auto 0;
	align-items: flex-end;
}

.clinic li {
	width: 375px;
}

.clinic li h2 {
	text-align: center;
}

.clinic li .img {
	margin: 24px 0 5px;	
}

.clinic li .img img {
	width: 100%;
	height: auto;
	transition: 0.3s ease;
}

.clinic li .img a:hover img {
	opacity: 0.8;
}

.clinic li p {
	line-height: 1.6;
	padding: 15px 12px 0;
}


/* スマホカスタマイズ 
--------------------------------------------------*/

@media screen and (max-width: 768px) {
	
	body {
		min-width: inherit;
		padding: 0 0 30px;
	}
	
	.logo {
		padding: 0 30px;
		text-align: center;
		margin: 60px 0 0;
	}
	
	.logo img {
		width: 100%;
		height: auto;
	}
	
	.message {
		width: 100%;
		padding: 0 20px;
		font-size: 15px;
		margin-top: 40px;
	}
	
	.clinic {
		width: 100%;
		display: block;
		margin: 30px 0 0;
	}
	
	.clinic li {
		width: 100%;
		padding: 20px 20px 30px;
	}


}