@charset "UTF-8";


@media (min-width: 320px) {
/* ページタイトル */
section .titlearea {
	background: url(../information/images/head_img.jpg) no-repeat center top;
}


/* ページタイトル */
section article.titlearea {
	margin-top: 0px;
}

/* ナビ */
section article.pagenav {
	margin-top: -20px;
}
section article.pagenav div {
}
section article.pagenav ul {
	background: #e4f1ee;
	list-style: none;
	box-shadow: 5px 5px 0px rgba(61,130,142,0.05);
    display: table;
    table-layout: fixed;
    width: 100%;
}
section article.pagenav ul li {
	font-weight: bold;
	display: table-cell;
    width: 50%;
}
section article.pagenav ul li.nav_01,
section article.pagenav ul li.nav_02 {
//	border-right: 1px dotted #3d828e;
}
section article.pagenav ul li a {
	text-align: center;
	display: block;
	padding: 1em 0em;
	font-size: 112.5%;
}
section article.pagenav ul li a:hover {
	background: #3d828e;
	color: #FFF;
}

/* 診療案内 */
article.info_intro {
	margin-top: 30px;
}
article.info_intro p {
	text-align: center;
	line-height: 2;
}

article.info_target dl.target_animal {
	text-align: center;
	display: table;
	margin: auto;
}
article.info_target dl.target_animal dt {
	background: url(../information/images/info_line.gif) repeat-x left bottom;
	padding-bottom: 8px;
}
article.info_target dl.target_animal dd {
	padding-top: 1em;
}
article.info_target dl.target_animal dd span {
	font-size: 78%;
	display: block;
}

article.info_insurance dl {
	margin: auto;
	display: table;
	padding-bottom: 20px;
}
article.info_insurance dl dt {
	display: table-cell;
	vertical-align: top;
	padding-right: 10px;
}
article.info_insurance dl dd {
	display: table-cell;
	vertical-align: middle;
}


/* 流れ */
article.flow_intro {
	margin-top: 30px;
}
article.flow_intro p {
	text-align: center;
	line-height: 2;
}
article.flow_intro .green_panel {
	background: #e4f1ee;
	padding: 0.6em 1em;
	margin: auto;
	text-indent: -1em;
	display: table;
	box-shadow: 5px 5px 0px rgba(61,130,142,0.05);
}

article.flow_chart ol {
	list-style: none;
}
article.flow_chart ol > li {
	margin-bottom: 50px;
}
article.flow_chart ol > li:last-child {
	margin-bottom: 0px;
}
article.flow_chart ol li h3 {
	font-size: 112.5%;
	font-weight: 500;
	line-height: 2;
	color: #FFFFFF;
	background: #f2a0a9;
	position: relative;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	padding-left: 60px;
	margin-bottom: 1em;
}
article.flow_chart ol li:nth-child(even) h3 {
	background: #4fc1e2;
}
article.flow_chart ol li h3:before {
	content: "01";
	color: #f2a0a9;
	font: 200 normal 200%/1.4 'Oswald', sans-serif;
	background: #FFF;
	position: absolute;
	left: 0px;
	top: 50%;
	display: block;
	border: 2px solid #f2a0a9;
	height: 1.6em;
	width: 1.6em;
	text-align: center;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	margin-top: -0.8em;
}
article.flow_chart ol li:nth-of-type(2) h3:before {
	content: "02";
	color: #4fc1e2;
	border: 2px solid #4fc1e2;
}
article.flow_chart ol li:nth-of-type(3) h3:before {
	content: "03";
}
article.flow_chart ol li:nth-of-type(4) h3:before {
	content: "04";
	color: #4fc1e2;
	border: 2px solid #4fc1e2;
}
article.flow_chart ol li:nth-of-type(5) h3:before {
	content: "05";
}
article.flow_chart ol li div p,
article.flow_chart ol li div ul {
	margin-bottom: 1em;
	padding: 0px 20px;
	text-align: justify;
}
article.flow_chart ol li .flow_photo {
	padding: 0px 20px;
}
article.flow_chart ol li .download a {
	color: #FFF;
	display: inline-block;
	padding: 1em 2em;
	max-width: 100%;
	text-decoration: none;
	background: #3d828e;
	font-weight: lighter;
	box-shadow: 5px 5px 0px rgba(0,0,0,0.1);
}
article.flow_chart ol li ul li {
	padding-left: 1em;
	list-style: none;
	position: relative;
}
article.flow_chart ol li ul li:before {
	content: "※";
	position: absolute;
	left: 0px;
	top: 0px;
	color: #ea6097;
}

/* 一覧 */
article .list_main h3 {
	display: table;
	margin: auto auto 1.5em;
	position: relative;
	font-size: 1.8em;
	padding: 0px 0.5em;
}
article .list_main h3:before {
    content: "";
    background: #facde1;
    height: 10px;
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: -1;
}

article .list_menu {
    margin: -50px -20px 0;
}
article .list_menu {
	margin-bottom: 50px;
    text-align: center;
}
article .list_menu .list_head {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    background: #3d828e;
    margin-bottom: 3px;
    padding: 0.5em;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    cursor: pointer;
}
article .list_menu .list_head:after {
    content: '＋';
    font-size: 1.5em;
    font-weight: normal;
    margin-left: 1em;
}
article .list_menu .active:after {
    content: '－';
}
article .list_menu ul {
    margin-left: -3px;
	width: 100%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% + 3px);/*Chrome19~25対応*/
	width: -moz-calc(100% + 3px);/*Firefox4~15対応*/
	width: calc(100% + 3px);  
	list-style: none;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
article .list_menu ul li {
    display: inline-block;
	width: 32.6%;
	widht: -webkit-calc((100% - 9px) / 3);/*Chrome19~25対応*/
	width: -moz-calc((100% - 9px) / 3);/*Firefox4~15対応*/
	width: calc((100% - 9px) / 3);  
    margin: 0 0 3px 3px;
}
article .list_menu ul li * {
    color: #fff;
    line-height: 1.4;
}
article .list_menu ul li a {
    font-size: 1.3em;
    color: #fff;
	text-decoration: none;
    line-height: 1.4;
	display: block;
    height: 100%;
    background: #a7948b;
    padding: 3px 0 5px;
}
article .list_menu ul li a img {
    display: block;
    width: 50px;
    margin: 0 auto;
    filter: brightness(300%);
}
article .list_menu ul li a:hover {
    color: #a7948b;
    background: #f1eae4;
}
article .list_menu ul li a:hover img {
    filter: brightness(100%);
}
article .list_menu ul li.list00 {
    display: none;
}

article .list_title {
    display: none;
}
}

@media (min-width: 360px) {
article .list_menu ul li * {
//    font-size: 1.1em;
}
}

@media (min-width: 414px) {
}

@media (min-width: 520px) {
/* ナビ */
section article.pagenav div {
	margin: 0px 20px;
}
/* 流れ */
article.flow_chart ol li div p,
article.flow_chart ol li div ul {
	padding-left: 60px;
	margin-bottom: 1em;
}
article.flow_chart ol li .flow_photo {
	padding-left: 60px;
}
article.flow_chart ol li .download a {
	padding: 1em 5em;
}
}

@media (min-width: 768px) {
/* ページタイトル */
section .titlearea {
	background-position: center center;
}
/* ナビ */
section article.pagenav {
	margin-top: -3em;
}
section article.pagenav div {
	width: 1080px;
	max-width: 100%;
	margin: 0px auto;
	padding: 0px 40px;
}
section article.pagenav ul {
	box-shadow: 7px 7px 0px rgba(61,130,142,0.05);
}
section article.pagenav ul li a {
	padding: 1.5em 0em;
}
/* 診療案内 */
article.info_target dl.target_animal dd span {
	display: inline;
}
/* 流れ */
article.flow_intro .green_panel {
	padding: 1em;
	box-shadow: 7px 7px 0px rgba(61,130,142,0.05);
}

article.flow_chart ol > li {
	margin-bottom: 50px;
}
article.flow_chart ol li h3 {
	padding-left: 70px;
}
article.flow_chart ol li div {
	width: 60%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	width: -webkit-calc(100% - 280px);/*Chrome19~25対応*/
	width: -moz-calc(100% - 280px);/*Firefox4~15対応*/
	width: calc(100% - 280px);
	float: left;
}
article.flow_chart ol li div p,
article.flow_chart ol li div ul {
	padding-left: 70px;
}
article.flow_chart ol li .flow_photo {
	float: right;
	margin: 0px;
	padding: 0px;
}

article.info_insurance dl {
	padding-bottom: 30px;
}
article.info_insurance dl dt {
	padding-right: 30px;
}
/* 一覧 */
article .department {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}

article .list_main {
    width: 100%;
}

article .list_case {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}


article .list_main h3 {
	font-size: 2em;
}

article .list_menu {
}
article .list_menu {
	margin-bottom: 70px;
    width: 100%;
    margin: -30px 0px 70px;
}
article .list_menu .list_head {
    font-size: 1.6em;
    margin-bottom: 3px;
    padding: 0.5em;
    display: none;
}
article .list_menu ul {
	display: flex !important;
	display: -ms-flexbox !important; /* IE10 */
	display: -webkit-box !important; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex !important; /* Safari6.1以降 */
    margin-left: -4px;
	width: 100%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% + 4px);/*Chrome19~25対応*/
	width: -moz-calc(100% + 4px);/*Firefox4~15対応*/
	width: calc(100% + 4px);  
}
article .list_menu ul li {
	width: 12%;
	widht: -webkit-calc((100% - 24px) / 8);/*Chrome19~25対応*/
	width: -moz-calc((100% - 24px) / 8);/*Firefox4~15対応*/
	width: calc((100% - 24px) / 8);  
    margin: 0 0 3px 3px;
}
article .list_menu ul li a {
    font-size: 1.3em;
    padding: 3px 0 8px;
}
article .list_menu ul li a img {
    width: 65px;
    margin: 0 auto 3px;
}
article .list_menu ul li.list00 {
    display: block;
    font-size: 1.4em;
    text-align: left;
    background: url("../information/images/list_head.svg") no-repeat right center;
    background-size: cover;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
}
article .list_menu ul li.list00 span {
}
article .list_menu ul li.list00 {
}

article .list_title {
    display: block;
    text-align: center;
    width: 19.4%;
}
article .list_title h3 {
    font-size: 1.6em;
    color: #fff;
    line-height: 1.4;
    background: #a7948b;
    padding: 8px 0 15px;
}
article .list_title h3 img {
    display: block;
    width: 65px;
    margin: 0 auto 8px;
    filter: brightness(300%);
}

article .list_main {
    width: 77%;
}
}


@media (min-width: 1160px) {
article.flow_chart ol li h3 {
	padding-left: 90px;
}
article.flow_chart ol li div p,
article.flow_chart ol li div ul {
	padding-left: 90px;
}
/* 一覧 */
article .list_main {
}
article .list_menu {
}
article .list_main h3 {
	font-size: 2em;
	padding: 0px 0.5em 8px;
}
article .list_main h3:before {
    height: 15px;
    bottom: 2px;
}

article .list_menu {
	margin-bottom: 70px;
}
article .list_menu ul {
    margin-left: -5px;
	width: 100%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% + 5px);/*Chrome19~25対応*/
	width: -moz-calc(100% + 5px);/*Firefox4~15対応*/
	width: calc(100% + 5px);  
}
article .list_menu .list_head {
    font-size: 1.6em;
    color: #fff;
    display: block;
    width: 12.5%;
    height: 97px;
    background: url("../information/images/list_head.svg") no-repeat right center;
    background-size: cover;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    display: none;
}
article .list_menu ul li {
	widht: -webkit-calc((100% - 40px) / 8);/*Chrome19~25対応*/
	width: -moz-calc((100% - 40px) / 8);/*Firefox4~15対応*/
	width: calc((100% - 40px) / 8);  
    height: 97px;
    margin: 0 0 5px 5px;
}
article .list_menu ul li a {
    font-size: 1.6em;
    padding: 0;
}
article .list_menu ul li a:hover {
}
article .list_menu ul li a img {
    width: 74px;
}
article .list_menu ul li.list00 {
    font-size: 1.6em;
}
article .list_menu ul li.list00 br {
	display: none;
}

article .list_title {
    width: 163px;
}
article .list_title h3 {
    font-size: 2em;
    padding: 10px 0 15px;
}
article .list_title h3 img {
    width: 88px;
    margin: 0 auto 10px;
}

article .list_main {
    width: 800px;
}
}


@media (min-width: 1200px) {
}
