@charset "UTF-8";
/*+基本設定
-------------------------------------------------------------*/
/*+全体的なリセット
----------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

/*+ブロック化
----------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*+縦スクロールのずれ修正
----------------------------------------------------*/
html {
  overflow-y: scroll;
}

/*+引用符をとる
----------------------------------------------------*/
blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/*+フォーム
----------------------------------------------------*/
input, textarea {
  margin: 0;
  padding: 0;
}

/*+リスト
----------------------------------------------------*/
ol, ul {
  list-style: none;
}

/*+テーブル
----------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

/*+リンクをクリックしたときに出る点線を消す
----------------------------------------------------*/
a:focus {
  outline: none;
}

/*+クリアフィクス
----------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

/*+インラインブロック
----------------------------------------------------*/
.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*+フォント
----------------------------------------------------*/
html {
  font-size: 95%;
}
@media screen and (max-width: 959px) {
  html {
    font-size: 90%;
  }
}
@media screen and (max-width: 599px) {
  html {
    font-size: 80%;
  }
}

body, h1, h2, h3, p, ul, li, ol, address, pre {
  color: #333; /*文字色*/
  font-family: Verdana, Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  -webkit-text-size-adjust: 100%; /*iPhoneのフォント拡大化対策*/
  max-width: 100%;
  box-sizing: border-box;
}

/*+div
----------------------------------------------------*/
div {
  box-sizing: border-box;
}

/*+イメージ
----------------------------------------------------*/
img {
  max-width: 100%;
}

/*+テーブル
----------------------------------------------------*/
table {
  width: 100%;
}

/*+リンク表現
----------------------------------------------------*/
a {
  text-decoration: none;
}

a, a:hover {
  transition: 0.7s;
}

a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

/*+CSS3
----------------------------------------------------*/
.tShadow { /*テキストシャドウ*/
  text-shadow: 1px 1px 3px #000;
}

.bShadow { /*ボックスシャドウ*/
  box-shadow: 1px 1px 3px #000;
}

.bShadowI { /*ボックスシャドウ内側*/
  box-shadow: inset 1px 1px 3px #000;
}

.bRadius { /*角丸*/
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}

.transition { /*トランジション*/
  transition: 1.5s;
}

.opacity { /*透明*/
  filter: alpha(opacity=25);
  -moz-opacity: 0.25;
  opacity: 0.25;
}

.bOpacity { /*背景のみ透明*/
  background-color: rgba(255, 255, 255, 0.2);
}

.gradation { /*グラデーション*/
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = "#ffffff", endColorstr = "#000000");
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000')";
  background-image: linear-gradient(top, #ffffff, #000000);
}

/*スマートフォン*/
/*++ブレイクポイント
-------------------------------------------------------------*/
/*++色
-------------------------------------------------------------*/
/*$primary-color:#00A782;*/
/*++フォント
-------------------------------------------------------------*/
.en {
  font-family: "Quicksand", sans-serif;
}

/*+ページ
-------------------------------------------------------------*/
.container {
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 100%;
  overflow-x: hidden !important;
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*++ヘッダー
-------------------------------------------------------------*/
.header {
  padding-bottom: 10px;
}
.header .titles {
  width: 430px;
  float: left;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .header .titles {
    float: none;
  }
}
.header .titles img {
  height: 60px;
  float: left;
}
@media screen and (max-width: 768px) {
  .header .titles img {
    height: 40px;
    padding-right: 5px;
  }
}
.header .titles h1 {
  float: right;
}
@media screen and (max-width: 768px) {
  .header .titles h1 {
    float: left;
    line-height: 1.2;
  }
}
.header .titles .name {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .header .titles .name {
    font-size: 1.6rem;
  }
}
.header .contact {
  float: right;
  font-size: 1.4rem;
  padding-top: 40px;
  padding-right: 5px;
}
@media screen and (max-width: 768px) {
  .header .contact {
    float: none;
    padding-top: 5px;
    font-size: 1.2rem;
  }
}
.header p.tel {
  font-size: 1.8rem;
  text-align: right;
}

/*++メインイメージ
-------------------------------------------------------------*/
.mainImage {
  width: 100%;
  height: 700px;
  background-image: url("../images/main.jpg");
  background-size: 100%;
  background-position-y: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .mainImage {
    height: 450px;
    background-size: cover;
  }
}
@media screen and (max-width: 1024px) {
  .mainImage {
    height: 350px;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .mainImage {
    height: 250px;
    background-size: cover;
  }
}
.mainImage p {
  padding-top: 10rem;
  padding-left: 10rem;
  font-family: "", "", serif;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .mainImage p {
    padding-top: 4rem;
    padding-left: 4rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .mainImage p {
    padding-top: 4rem;
    padding-left: 0rem;
    text-align: center;
    font-size: 1.2rem;
  }
}

img.main {
  width: 100%;
  vertical-align: top;
}

/*++メニュー
-------------------------------------------------------------*/
nav {
  background-color: #F2F2F2;
  overflow: hidden;
  margin-bottom: 3rem;
}
nav ul {
  width: 800px;
  margin: auto;
  background-color: #fff;
  overflow: hidden;
  max-width: 100%;
}
nav ul li {
  float: left;
  width: 33.3333333333%;
  box-sizing: border-box;
  text-align: center;
  border-right: dotted 1px #ccc;
}
nav ul li:first-child {
  border-left: dotted 1px #ccc;
}
nav ul li a {
  display: block;
  line-height: 3;
  color: #333;
  font-family: "", "", serif;
  font-size: 1.2rem;
}
nav ul li a:hover {
  color: #91C05B;
}

/*+++レスポンシブ
-------------------------------------------------------------*/
/*++コンテンツ
-------------------------------------------------------------*/
.contents {
  width: 1000px;
  margin: auto;
  margin-bottom: 4rem;
  max-width: 100%;
}
.contents h2 {
  text-align: center;
  font-family: "", "", serif;
  font-size: 2.4rem;
  color: #91C05B;
  margin-bottom: 1.5rem;
  border-bottom: dotted 1px #91C05B;
  margin-top: 1rem;
}
.contents h3 {
  font-family: "", "", serif;
  font-size: 1.8rem;
  border-left: solid 5px #F2F2F2;
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.contents h4 {
  text-align: center;
  border-bottom: dotted 1px #91C05B;
  font-weight: bold;
  font-size: 1.4rem;
  color: #91C05B;
  border-top: solid 1px #91C05B;
  padding: 0.5rem;
}
.contents em {
  font-weight: bold;
}
.contents p {
  line-height: 2;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #333;
  text-align: justify;
}
.contents p.center {
  text-align: center;
}
.contents p.small {
  font-size: 0.95rem;
}
.contents p.right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .contents p.sinryo {
    text-align: left;
  }
}

.practice {
  width: 1000px;
  margin: auto;
  margin-top: 2rem;
  max-width: 100%;
}
.practice .block {
  width: 30%;
  float: left;
  margin-right: 5%;
}
@media screen and (max-width: 768px) {
  .practice .block {
    float: none;
    width: 100%;
  }
}
.practice .block img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.practice .end {
  margin-right: 0;
}

br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  br.sp {
    display: block;
  }
}

/*++ミニドック
-------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .minidoc {
    width: 60%;
  }
}

.nurse {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .nurse {
    width: 34%;
    padding-top: 2.2rem;
  }
}

.doc {
  margin-top: 0rem !important;
}

/*++医院情報
-------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .appearance {
    float: none !important;
    width: 100%;
  }
}

.iin {
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-position: bottom 700px right 0;
  background-size: 50%;
}
@media screen and (max-width: 768px) {
  .iin {
    background-image: none;
  }
}

/*++医療基準
-------------------------------------------------------------*/
.kijun li {
  list-style-type: disc;
  margin-left: 30px;
}

/*++お知らせ
-------------------------------------------------------------*/
.info p span {
  margin-right: 1rem;
}

.special {
  border: dotted 1px #91C05B;
  margin-top: 4rem;
}
.special h3 {
  margin-top: 0rem;
  text-align: center;
  border: none;
  background-color: #91C05B;
  color: #fff;
  font-family: sans-serif;
  font-size: 1.6rem;
  padding: 0.3rem;
}
.special p {
  margin: 10px;
  text-align: center;
}
.special p strong {
  font-weight: bold;
  color: red;
  font-family: serif;
  font-size: 1.4rem;
}

p.off_p {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/*++テーブル
-------------------------------------------------------------*/
th,
td {
  padding: 0.5rem;
  font-size: 1rem;
  border: solid 1px #dfdfdf;
  text-align: center;
  vertical-align: middle;
  /*&.tn{
  border-top:none;
  }
  &.bn{
  border-bottom:none;
  }*/
}
th.ln,
td.ln {
  border-left: none;
}
th.rn,
td.rn {
  border-right: none;
}

table.history {
  margin-bottom: 2rem;
}
table.history td {
  text-align: left;
}

table.off {
  width: 400px;
  margin: auto;
}
table.off th {
  text-align: right;
  border: none;
  font-size: 1rem;
}
table.off td {
  text-align: left;
  border: none;
  font-size: 1rem;
}

table.border {
  width: 280px;
}
table.border th,
table.border td {
  border: solid 1px #ccc;
}

table.kyusin {
  width: 60%;
  margin: auto;
}
table.kyusin span {
  color: red;
}
@media screen and (max-width: 768px) {
  table.kyusin {
    width: 100%;
  }
}

/*++マップ
-------------------------------------------------------------*/
.map_canvas {
  width: 100%;
  height: 460px;
  position: relative;
  overflow: hidden;
}

iframe {
  width: 100%;
  border: 0;
  margin-top: -230px;
}

div.google-maps-link {
  display: none !important;
}

.access {
  width: 300px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .access {
    width: 100%;
    float: none !important;
  }
}

/*++フッター
-------------------------------------------------------------*/
.footer {
  background-color: #91C05B;
  color: #fff;
  text-align: center;
  line-height: 3;
}

/*+パーツ
-------------------------------------------------------------*/
/*++div
-------------------------------------------------------------*/
div.left {
  float: left;
}

/*++img
-------------------------------------------------------------*/
img.right {
  float: right;
}

.wid600 {
  width: 400px;
  float: left;
}

/*+++改行
-------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}

/*+++トップに戻る
-------------------------------------------------------------*/
#page-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
}

#page-top a {
  display: block;
  border-radius: 2px;
  background-color: #F2F2F2;
  text-align: center;
  color: #222;
  font-size: 20px;
  text-decoration: none;
  padding: 10px 20px;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */