@charset "UTF-8";
/******************************************************************

Site Name: LFC
Author: Logical Force Corporation.

Stylesheet: Main Stylesheet

******************************************************************/
/* CSS内でFontAwesomeを使う設定 */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.3.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*------------------------------------------------
Base style
------------------------------------------------*/
body {
  color: #333333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", verdana, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-size: 16px;
  /* 画面サイズを小さくした時に背景が切れるのを防ぐ */
  min-width: 100%;
}

/* PCとスマホで表示切り替え PC=非表示、SP=表示 */
.pc {
  display: none !important;
}

.sp {
  display: block;
}
#top .sp {
	display: inline-block;
}

@media (min-width: 768px) {
  body {
    min-width: 960px;
  }

  /* PCとスマホで表示切り替え PC=表示、SP=非表示 */
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }
}
/*------------------------------------------------
Common Style
------------------------------------------------*/
/* link style
-----------------------------------*/
a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

/* Img style
-----------------------------------*/
img {
  max-width: 100%;
  height: auto;
  width: auto;
  vertical-align: bottom;
}

/* Heading style
-----------------------------------*/
h1 {
  margin: 15px 0;
  font-size: 14px;
    color: #023e86;
}

h2 {
  margin-bottom: 20px;
  color:#023e86;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
}

h2:before {
  display: inline-block;
  /*content: "\f21e";*/
  margin-right: 5px;
  color:#8cdcf6;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 22px;
}

@media (min-width: 768px) {
  h1 {
    margin: 28px 0 20px 5px;
  }
}
/* List style
-----------------------------------*/
ul.list li {
  margin-top: 10px;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

ul.list li:before {
  content: "●";
  padding-right: 3px;
  color:#8cdcf6;
}

ul.list li:first-child {
  margin-top: 0;
}
/* Table style
-----------------------------------*/
table {
	width: 100%;
	margin: 0 0 14px;
	border-collapse: collapse;
	font-size: 18px;
}
th,
td {
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	text-align: center;
	vertical-align: middle;
}
th {
	padding: 14px 0;
	background-color: #cdf3ff;
	white-space: normal;
}
td {
	padding: 14px 10px;
	background-color: #fff;
	font-size: 16px;
}
/* 診療科目Table */
table.medicalTable th {
	padding: 8px 0;
}
@media (min-width: 768px) {
	
	/* 診療科目Table */
	table.medicalTable th {
		width: 270px;
		padding: 14px 0;
	}
	table.medicalTable td {
		padding: 16px 25px;
	}
}
/*------------------------------------------------
Clearfix
------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
/*------------------------------------------------
Basic Layout
------------------------------------------------*/
header {
  background-color:#cdf3ff;
}

#contents {
  padding-bottom: 100px;
}

body#top #contents {
  padding-bottom: 57px;
}

.section {
  margin-top: 60px;
}

#mainVisual + .section {
  margin-top: 70px;
}

footer {
  padding-top: 20px;
  background-color: #cdf3ff;
}

@media (min-width: 768px) {
  footer {
    padding-top: 30px;
  }
}
/*------------------------------------------------
Header
------------------------------------------------*/
/* Navigation
-----------------------------------*/
#globalNav {
  position: relative;
  background-color:#023e86;
}

#globalNav ul {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  display: none;
  border-right: none;
}

#globalNav ul li {
  float: left;
  list-style: none;
  border-left: none;
  border-top: 1px dotted #8cdcf6;
  background-color:#023e86;
}

#globalNav ul li a {
  display: block;
  min-width: 130px;
  width: 100%;
  height: 50px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  line-height: 50px;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#globalNav ul li a:hover {
  color: #8cdcf6;
}

/* PC用ロゴ */
#logo {
  display: none;
}


/* スマホ用ロゴ */
#logoSP {
  width: 100%;
  padding-right: 55px;
}

#logoSP a {
  display: block;
  height: 50px;
  padding-top: 3px;
  padding-bottom: 3px;
}

#logoSP img {
  max-height: 100%;
}

/* 画面右のメニュー */
#menu {
  position: absolute;
  top: 0;
  right: 1px;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  font-size: 32px;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#menu i {
  vertical-align: middle;
}

#menu:hover {
  color: #d0efe1;
}

#menu span {
  color: #fff;
  font-size: 10px;
}

/*イラスト*/
.container .gutters {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 25px;
	width: 90%;
	margin: 0 auto;
}
/*.container .gutters .inner .illust {
	padding-right: 25px;
}*/
.container .gutters .inner {
	display: none;
}
.container .gutters .h-info {
	width: 45%;
	padding-left: 25px;
	padding-top: 10px;
}
.container .gutters .info {
	padding-top: 25px;
}

#tel {
  margin-bottom: 10px;
  text-align: center;
}

span.tel {
  display: inline-block;
  height: 36px;
  /*padding-top: 3px;*/
  padding-top: 15px;
  line-height: 36px;
}

span.tel:before {
  content: "\f095";
  margin-right: 5px;
  color:#023e86;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 28px;
}

span.tel a {
  color:#023e86;
  font-size: 36px;
  display: inline-block;
  padding-top: 15px;
  font-weight: bold;
  text-decoration: none;
}

/* 電話番号画像 */
/*#telNum {display: none;}*/
#timeIn {
  text-align: center;
      color: #023e86;
}

/* 受付時間 */
#timeIn div {
  max-width: 185px;
  margin: 0 auto;
}

#timeIn span {
  display: block;
  /*width: 12em;*/
  width: 14em;
  margin-left: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 10px;
}

#timeIn span.time {
  display: inline-block;
  float: left;
  width: auto;
  margin-right: 5px;
  padding: 4px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color:#023e86;
  color: #fff;
  text-align: center;
  line-height: 1;
}

/*ロゴについての説明*/
.setsumei {
	padding: 15px 0 0;
	font-size: 14px;
}

@media (min-width: 768px) {
  /* PCの時は非表示 */
  .res {
    display: none !important;
  }

  #logo {
    display: block;
  }

  #globalNav ul {
    position: relative;
    top: 0;
    display: block;
    border-right: 1px solid #8cdcf6;
  }

  #globalNav ul li {
    display: table;
    border-left: 1px solid #8cdcf6;
    border-top: none;
  }

  #globalNav ul li a {
    display: table-cell;
    vertical-align: middle;
    line-height: 1;
  }

  #tel {
    margin-bottom: 0;
  }

  #telNum {
    display: block;
  }

  #timeIn {
    margin-left: 0;
  }
}
@media (max-width:768px) {
	.container .gutters {
	display: block;
		padding-bottom: 10px;
  }
	.container .gutters .logo {
		display: none;
	}
	.container .gutters .inner {
		display: block;
	}
	.container .gutters .inner .illust {
	padding-right: 0;
		width: 100%;
}
	.container .gutters .h-info {
		width: 100%;
		padding: 0;
	}
	.container .gutters .info {
	padding-top: 0px;
}
	span.tel {
		padding-top: 0;
	}
	span.tel a {
		font-size: 30px;
		padding-top: 0;
	}
}
/*------------------------------------------------
Footer
------------------------------------------------*/
/* フッタロゴ */
#footer .col.span_8 {
  text-align: center;
}

#footer .col.span_8 a {
  display: inline-block;
}

/* 住所 */
#footer address {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
}

/* メニュー */
#footer ul {
  text-align: center;
}

#footer ul li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

#footer ul li a {
  display: inline-block;
  padding: 0 25px;
  border-left: 1px solid #023e86;
  color:#023e86;
  font-size: 16px;
  text-decoration: none;
  line-height: 12px;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#footer ul li a:hover {
  color:#8cdcf6;
}

#footer ul li:first-child a {
  border-left: none;
}

#copyright {
  padding-top: 20px;
  padding-bottom: 5px;
  font-size: 11px;
  text-align: center;
}

@media (min-width: 768px) {
  #footer .col.span_8 {
    text-align: center;
  }

  #footer address {
    margin-top: 0;
    text-align: left;
  }

  #footer ul {
    border-left: 1px solid #023e86;
    border-right: 1px solid#023e86;
  }

  #footer ul li a {
    border-left: none;
  }

  #footer ul li a.center {
    border-left: 1px solid #023e86;
    /*border-right: 1px solid #023e86;*/
  }

  #copyright {
    padding-top: 40px;
    padding-bottom: 15px;
  }
}
/*------------------------------------------------
Topimage
------------------------------------------------*/
#mainVisual {
  padding-top: 10px;
  padding-bottom: 30px;
  border-bottom: 4px solid #8cdcf6;
  background-color:#cdf3ff;
}

#mainVisual p {
	margin-top: 10px;
  font-size:20px;
  text-align: center;
}

@media (min-width: 768px) {
  #mainVisual p {
    line-height: 25px;
  }
}

@media (max-width:480px) {
	#mainVisual p {
		margin-top: 30px;
		font-size: 16px;
	}
}

/*------------------------------------------------
PageTop
------------------------------------------------*/
#pageTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 0;
}

#pageTopBtn a {
  display: block;
  width: 48px;
  height: 48px;
  background-color:#023e86;
  background-color: rgba(2,62,134,0.9);
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 48px;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#pageTopBtn a:hover {
  background-color:#023e86;
}

@media (min-width: 768px) {
  #pageTopBtn {
    bottom: 40px;
  }
}
/*------------------------------------------------
Contents
------------------------------------------------*/
.section p {
  line-height: 25px;
}

/*------------------------------------------------
トップページ index.html
------------------------------------------------*/
.title{
	font-weight:bold;
	color: #023e86;
	background-color:#e6ffff;
	border-color: #000000;
}
.detail{
	text-align:left;
	color: #023e86;
	border-color: #000000;
}
.title2{
	font-weight:bold;
	color: red;
	background-color:#e6ffff;
	border-color: #000000;
}
.top-intro .sp-br,.title br {
	display: none;
}
@media (max-width:480px) {
	.top-intro .pc-br {
		display: none;
	}
	.top-intro .sp-br,.title br {
		display: block;
	}
}

/* Service 診療科目
--------------------------------------------*/
#service {
  margin-top: 65px;
  margin-bottom: 40px;
  padding: 0 30px 64px;
  border-bottom: 1px solid #cccccc;
}

ul.subNav li {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px dotted #cccccc;
  text-align: center;
}

#service h2 {
  content: "";
  margin: 22px 0;
  padding: 0;
  font-size:20px;
  text-align: center;
  line-height: 1;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#service h2:before {
  content: none;
  margin-right: 0;
}

#service a {
  display: block;
  color: #333333;
  text-decoration: none;
}

#service p {
  text-align: center;
}

#service .service1 {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border: 4px solid #33b333;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}


#service .service2 {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border: 4px solid #fb8e31;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}


#service .service3 {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border: 4px solid #fb7ab2;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}


#service .service1 i {
  color:#33b333;
  font-size: 5em;
  line-height: 122px;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#service .service2 i {
  color:#fb8e31;
  font-size: 5em;
  line-height: 122px;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#service .service3 em {
  color:#fb7ab2;
  font-size: 5em;
  line-height: 122px;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#service a:hover div {
  opacity: 0.7 ;
}

#service a:hover h2,
#service a:hover i {
  opacity: 0.7 ;
}

.service_1{color:#33b333; }
.service_2{color:#fb8e31; }
.service_3{color:#fb7ab2; }

@media (min-width: 768px) {
  #service {
    padding-left: 0;
    padding-right: 0;
  }

  ul.subNav li {
    padding-top: 0;
    padding-bottom: 0;
    border-top: none;
  }

  #service p {
    text-align: left;
  }
}

/*
@media (max-width:768px) {
	.service-flex {
		display: flex;
		justify-content: space-between;
	}
	.service-flex .center {
		margin: 0 10px;
	}
	#service {
		padding: 0 10px 45px;
	}
	#service h2 {
		font-size: 16px;
	}
}
@media (max-width:480px) {
	#service {
		margin-top: 45px;
		padding-bottom: 10px;
	}
	#service .service1,
	#service .service2,
	#service .service3 {
		width: 100px;
		height: 100px;
	}
	#service .service1 i,
	#service .service2 i,
	#service .service3 em {
		font-size: 3.5em;
		line-height: 95px;
	}
}
*/
@media (max-width:480px) {
	#service {
		margin-top: 45px;
		padding-bottom: 10px;
	}
	#service h2 {
		font-size: 16px;
	}
	#service .service1,
	#service .service2,
	#service .service3 {
		width: 100px;
		height: 100px;
	}
	#service .service1 i,
	#service .service2 i,
	#service .service3 em {
		font-size: 3.5em;
		line-height: 95px;
	}
}


/* Info お知らせ
--------------------------------------------*/
/* 外枠部分 */
#info .scrollWrapp {
  padding: 10px 11px 10px 18px;
  border: 1px solid #d5d5d5;
}

.scroll-pane,
.scroll-pane-arrows {
  overflow: auto;
}
#info a{
	    color: #023e86;
}
#info dl {
  width: 100%;
  height: 327px;
}

#info dl dt {
  margin-right: 10px;
  padding-top: 20px;
  padding-bottom: 0;
  border-top: 1px dotted #d5d5d5;
  font-weight: bold;
}

#info dl dd {
  width: 100%;
  margin-right: 10px;
  padding: 10px 10px 15px 10px;
  border-top: none;
}

#info dl dt.first,
#info dl dd.first {
  padding-top: 10px;
  border-top: none;
}

#info .naika_btn:after{content:"内科";
border: solid 1px #33b333;
background-color: #8cd68c;
border-radius: 2px; 
font-size:15px;
font-weight: bold;
display: inline-block;
width:75px;text-align: center;
margin-left: 10px;
}


#info .seikei_btn:after{content:"整形外科";
border: solid 1px #fb8e31;
background-color: #f9ae8d;
border-radius: 2px; 
font-size:15px;
font-weight: bold;
display: inline-block;
width:75px;text-align: center;
margin-left: 10px;
}

#info .zentai_btn:after{content:"全体";
border: solid 1px #fb7ab2;
background-color: #f5b5d8;
border-radius: 2px; 
font-size:15px;
font-weight: bold;
display: inline-block;
width:75px;text-align: center;
margin-left: 10px;
}


@media (min-width: 768px) {
  #info dl dt {
    float: left;
    clear: both;
    width: 104px;
    margin-right: 0;
    padding-top: 20px;
    /*padding-bottom: 15px;*/
    border-top: 1px dotted #d5d5d5;
    font-weight: normal;
    padding-left: 10px;
  }

  #info dl dd {
    width: auto;
    margin-left: 104px;
    margin-right: 10px;
    padding: 20px 10px 15px 10px;
    border-top: 1px dotted #d5d5d5;
  }
}
/* Schedule 診療スケジュール
--------------------------------------------*/
#schedule {
  margin-top: 30px;
  margin-bottom: 30px;
}

#schedule table {
  width: 100%;
  margin: 0 0 14px;
  border-collapse: collapse;
  font-size: 16px;
  border: 1px solid #808080;
}

#schedule .naika th {
  padding: 14px 0;
      background-color: #8cd68c;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  font-weight: bold;
}

#schedule .seikei th {
  padding: 14px 0;
  /*background-color:#FFCC99;*/
  background-color:#f9b57b;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  font-weight: bold;
}
#schedule .naika h2 {
  color:#4b844b;
}
#schedule .naika h2:before {
  color:#8cd68c;
  /*content: "\f004";*/
  content: "\f21e";
}

#schedule .seikei h2 {
  margin-bottom: 20px;
  color:#e66b2c;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
}

#schedule .seikei h2:before {
  display: inline-block;
  content: url("../images/top/bone_icon.png");
  margin-right: 5px;
  color:#F4A460;
  font-size: 22px;
}

#schedule thead th {
  border-left: 1px solid #808080;
}

#schedule thead th:first-child {
  border-left: none;
}

#schedule tbody th {
  width: 50px;
  padding: 14px 1px;
}

/* 土曜日の文字色 */
#schedule th.saturday {
  color: #448dc6;
}

/* 日曜日の文字色 */
#schedule th.sunday {
  color: #ad2121;
}

#schedule td {
  /*padding: 14px 0;*/
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
  background-color: #fff;
  color:#333333;
/*font-size:20px;*/
  text-align: center;
  vertical-align: middle;
  font-weight:bold;
}

#schedule tbody td {
  border-left: 1px solid #808080;
}

#schedule td span {
  color: #000;
}
#schedule .green{
	    /*color: #8cdcf6;*/
	    color:#4b844b;
}
#schedule .red{
	    color: #ad2121;
}
#schedule p.time {
  background-color: #f4f8e4;
  background: -moz-linear-gradient(left, white 0%, #cdf3ff 50%, white 100%);
  background: -webkit-linear-gradient(left, white 0%, #cdf3ff 50%, white 100%);
  background: linear-gradient(to right, #ffffff 0%, #cdf3ff 50%, #ffffff 100%);
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
#schedule td{
		font-size:16px;
	}
}
@media (min-width: 768px) {
  #schedule {
    margin-bottom: 0;
  }

  #schedule table th {
    font-size: 17px;
  }
  #schedule tbody th {
    width: 185px;
  }
}
@media (max-width:480px) {
	#schedule {
		margin-top: 20px;
		margin-bottom: 0;
	}
	#schedule .naika h2,#schedule .seikei h2 {
		font-size: 15px;
	}
	#schedule .naika h2:before,#schedule .seikei h2:before {
		font-size: 18px;
	}
}

/* Blog
--------------------------------------------*/
aside#blog {
  margin-bottom: 20px;
}

aside#blog a {
  display: block;
  width: 100%;
  margin: 0 auto;
}

aside#blog a img {
  width: 100%;
}

@media (min-width: 768px) {
  aside#blog {
    margin-bottom: 40px;
  }

  aside#blog a {
    display: block;
    width: 308px;
    height: 90px;
  }
}
/* GoogleMap 地図
--------------------------------------------*/
aside#googleMap {
  height: 250px;
  border: 1px solid #d5d5d5;
}

aside#googleMap iframe {
  width: 100%;
  height:100%;
  border: none;
}

#access #googleMap{width: 100%;
	height: 400px;}
/* Guide クリニック概要
--------------------------------------------*/
aside#guide {
  margin-top: -1px;
  padding: 22px;
  border: 1px solid #d5d5d5;
  background-color:#e6ffff
;
}

#guide h3 {
  color:#023e86;
  font-size: 18px;
  font-weight: bold;
}

#guide dl {
  margin-top: 20px;
}

#guide dl dt {
  margin-top: 16px;
}

#guide dl dt:first-child {
  margin-top: 0;
}

#guide span {
  display: inline-block;
  /*width: 66px;*/
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color:#023e86;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

#guide .access_btn{float: right;
  display: inline-block;
  width:80px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color:#023e86;
  color: #fff;
  font-size:14px;
  font-weight: bold;
  text-align: center;
padding-top: 2px;
}

/*------------------------------------------------
クリニックの紹介 info.html
------------------------------------------------*/
/* 地域の皆様へ
--------------------------------------------*/
.signature {
  margin-top: 30px;
  text-align: right;
}

.signature img {
  margin-top: 3px;
}
#greeting h3{
    color: #023e86;
    font-size: 16px;
	margin-bottom: 10px;
	margin-top: 10px;
    font-weight: 700;
}
/* 施設紹介
--------------------------------------------*/
#establishment .box {
  text-align: center;
}

#establishment img {
  margin-top: 15px;
}

#establishment p {
  text-align: center;
}

/* 院長紹介
--------------------------------------------*/
#director .leftBox img {
  float: left;
  margin-right: 18px;
}

#director .leftBox div {
  background: url(../images/info/bg_momo01.jpg) no-repeat 90% 0;
}

#director .leftBox div p {
  font-size: 12px;
}

#director .leftBox div p.name {
  height: 100px;
}

#director .leftBox div p.name span {
  display: block;
  color: #023e86;
  font-size: 18px;
  font-weight: bold;
}

#director .leftBox div p.name span:first-child {
  font-size: 16px;
}

#director .leftBox div p.name span:last-child {
  font-size: 12px;
}

#director .leftBox div p.degree {
  float: left;
}

#director .leftBox div p.affiliation {
  float: left;
}

#director .leftBox div p.affiliation span {
  color:#023e86;
  font-weight: bold;
}

#director .rightBox {
  margin-top: 30px;
  font-size: 14px;
}

#director h3 {
  color:#023e86;
  font-size: 16px;
  font-weight: bold;
}

#director h3:before {
  display: inline-block;
  content: "\f054";
  margin-right: 5px;
  font: normal normal normal 14px/1 FontAwesome;
}

#director h3 + p {
  margin-bottom: 35px;
}

#director dl {
  margin-bottom: 30px;
  line-height: 25px;
}

#director dl dt {
  float: left;
  clear: both;
  width: 83px;
}

#director dl dd {
  margin-left: 83px;
}

@media (min-width: 768px) {
  #director .leftBox {
    border-right: 1px solid #cccccc;
  }

  #director .rightBox {
    margin-top: 0;
    padding-left: 20px;
  }

  #director .leftBox div p.affiliation {
    margin-right: 10px;
    padding-right: 40px;
    float: right;
  }
}
/* スタッフ紹介
--------------------------------------------*/
#staff .box {
  margin-bottom: 15px;
  padding: 24px 22px;
  border: 1px solid #d5d5d5;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color:#e6ffff;
}
#staff #staff_n {
  background-color:#e5ffe5;
}
#staff #staff_s {
  background-color:#fff2e5;
}
#staff h2:before{/*content: none;*/}
#staff #naika, #staff #staff_n dt {
  color:#4b844b;
}
#staff #naika:before {
  color:#8cd68c;
  /*content: "\f004";*/
  content: "\f21e";
}
#staff #staff_n dt span {
  background-color:#8cd68c;
}
#staff #seikei, #staff #staff_s dt {
  margin-bottom: 20px;
  color:#e66b2c;
  /*font-size: 20px;*/
  font-weight: bold;
  line-height: 28px;
}

#staff #seikei:before {
  display: inline-block;
  content: url("../images/top/bone_icon.png");
  margin-right: 5px;
  color:#F4A460;
  font-size: 22px;
}

#staff #staff_s dt span {
  display: inline-block;
  margin-right: 5px;
  background-color:#F4A460;
}
/*#staff .col > img {
  width: 100%;
}*/

#staff .box dt {
  margin-top: 10px;
  margin-bottom: 8px;
}

#staff .box dt img {
  margin-right: 10px;
  float: none;
}

#staff dl dt span {
  display: inline-block;
  width: 66px;
  padding: 4px 0 3px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color:#023e86;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

/*#staff .box dd {
  margin-top: 8px;
  color: #3cb680;
  font-size: 17px;
  font-weight: bold;
  line-height: 21px;
}*/
#staff .box dd {
  margin-top: 8px;
  font-size: 17px;
  line-height: 21px;
	    margin-left: 84px;
}
#staff .box dt {
  margin-top: 8px;
  color:#023e86;
  font-size: 17px;
  font-weight: bold;
  line-height: 21px;
}

#staff {
	width: 100%;
}

.container .introduction {
	display: block;
	padding-top: 60px;
}
.container .introduction .gutters {
	width: 100%;
}

/*経歴*/
.career {
	display: flex;
}
.career .career-title {
	width: 13%;
}
.career .career-detail {
	width: 87%;
}

@media (max-width:480px) {
	#staff .box dd {
		margin-left: 0;
	}
	.career {
		display: block;
	}
	.career .career-title,.career .career-detail {
		width: 100%;
	}
}

@media (min-width: 420px) {
  /*#staff .col > img {
    width: 40%;
  }

  #staff .col img {
    float: left;
    margin-right: 20px;
  }
*/
  #staff .box dl {
    float: left;
  }

  #staff .box dt {
    margin-top: 45px;
    margin-bottom: 8px;
  }

  #staff .box dt img {
    margin-right: 10px;
    float: none;
  }

  /*#staff .box dd {
    margin-top: 8px;
    margin-bottom: 12px;
    color: #3cb680;
    font-size: 17px;
    font-weight: bold;
    line-height: 21px;
  }*/
	#staff .box dd {
    margin-top: 8px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 21px;
	    margin-left: 0px;
  }
	#staff .box dt {
    margin-top: 8px;
    margin-bottom: 12px;
    color: #023e86;
    font-size: 17px;
    font-weight: bold;
    line-height: 21px;
  }
}

.doctor {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.doctor .d-img {
	width: 35%;
}
@media (max-width:768px) {
	.doctor {
		display: block;
	}
	.doctor .d-img {
		width: 100%;
		padding-top: 25px;
		margin: 0 auto;
	}
}


/*------------------------------------------------
整形外科外来 orthopedic.html
------------------------------------------------*/
/* 診療内容
--------------------------------------------*/
#medicalContent ul {
    margin-bottom: 30px;
    margin-left: 20px;
}

#medicalContent img {
  display: block;
  margin: 70px auto 0;
}
#medicalContent th,td{
  border-color:#808080;
  border: 1px solid;
}
#medicalContent h2:before{/*content: none;*/}

#medicalContent .sect{ 
  background-color:#e6ffff;
  display:inline-block;
}

#medicalContent #naika,#medicalContent #naika2 {
  color:#4b844b;
}
#medicalContent #naika:before {
  color:#8cd68c;
  /*content: "\f004";*/
  content: "\f21e";
}

#medicalContent #seikei,#medicalContent #seikei2 {
  margin-bottom: 20px;
  color:#e66b2c;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
}

#medicalContent #seikei:before {
  display: inline-block;
  content: url("../images/top/bone_icon.png");
  margin-right: 5px;
  color:#F4A460;
  font-size: 22px;
}

/*ご案内*/
#medicalContent .guide {
	margin-left: 0;
}
#medicalContent .guide li {
	margin-bottom: 25px;
	margin-left: 1rem;
  text-indent: -1rem;
}
#medicalContent .guide li::before {
	content:  "・";
}

/*------------------------------------------------
院内紹介 facilities.html
------------------------------------------------*/
#facilities h2{ 
}

#facilities h2 + p {
  margin-bottom: 20px;
}

#facilities h3 {
  margin-bottom: 5px;
  color: #023e86;
  font-size: 16px;
  font-weight: bold;
  /*background-color:#fb7ab2;*/
  background-color: #e6ffff;
  display:inline-block;
}

#facilities h3:before {
  /*content: "●";
  padding-right: 3px;
  color:#023e86;*/
}

#facilities .nomargin {
  margin-bottom: 0px;
}

#facilities .row {
  margin-bottom: 30px;
}

#facilities .col + .col {
  margin-top: 30px;
}
#facilities .center{
	text-align: center;
}

/*規則*/
#facilities .kisoku dl {
	display: flex;
	padding-top: 5px;
	padding-bottom: 20px;
	justify-content: flex-start;
}
#facilities .kisoku dl dt {
	width: 125px;
}
#facilities .kisoku dl dd {
	width: 900px;
}


@media (min-width: 768px) {
  #facilities .col + .col {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
.machine img{
	    text-align: center;
    display: block;
    margin: auto;
}
	.machine span{
		display: none;
	}
	#facilities .kisoku dl {
		display: block;
	}
	#facilities .kisoku dt {
		font-weight: bold;
	}
	#facilities .kisoku dl dd {
		width: 100%;
	}
}
/*------------------------------------------------
新着情報詳細 news.html
------------------------------------------------*/
#newsDetails img.alignleft {
	float: none;
	margin: 0 0 20px 0;
}
#newsDetails .date {
	margin-bottom: 20px;
	text-align: right;
}

#newsDetails h2:before {
	content: none;
}
@media (min-width: 768px) {
	#newsDetails img.alignleft {
		float: left;
		margin: 0 20px 20px 0;
	}
}
@media (max-width: 768px) {
	#medicalContent th,td{
	  /*width:100%;*/
	  padding: 5px;
	}
	#medicalContent td p {
	  padding: 10px 14px;
	}
}