@charset "UTF-8";
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot?1569462");
  src: url("fontello/font/fontello.eot?1569462#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2?1569462") format("woff2"), url("fontello/font/fontello.woff?1569462") format("woff"), url("fontello/font/fontello.ttf?1569462") format("truetype"), url("fontello/font/fontello.svg?1569462#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
.demo-icon {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  text-decoration: inherit;
  text-align: center;
  /* opacity: .8; */
  font-variant: normal;
  text-transform: none;
  /*     line-height: 1em;
      margin-left: .2em;
      width: 1em;
      margin-right: .2em;
      font-size: 120%; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* ----------------------------------------------------------------------------------
共通部分　_base.scss
---------------------------------------------------------------------------------- */
/*文字PC*/
/*基本フォント*/
/*基本文字色*/
/*基本背景色PC*/
/*電話番号*/
/*リンク色*/
/*ポイントカラーメイン*/
/*ポイントカラーサブ*/
/*赤*/
/*茶*/
/*青*/
/* ----------------------------------------------------------------------------------
モジュール　_module.scss
---------------------------------------------------------------------------------- */
/* clearfix -------------------------------------- */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

/* float -------------------------------------- */
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

/* txt -------------------------------------- */
.txt_c {
  text-align: center !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.bold {
  font-weight: bold !important;
}

.underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #e7dfec));
  background: linear-gradient(transparent 60%, #e7dfec 60%);
}

.font_s {
  font-size: smaller !important;
}

.font_l {
  font-size: larger !important;
}

.fc_orange {
  color: #ff9c00 !important;
}

.fc_green {
  color: #5ab8c5 !important;
}

.fc_aqua {
  color: #4ca3cb !important;
}

.fc_blue {
  color: #1c63bb !important;
}

/* img -------------------------------------- */
.img_c {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.img_l, .img_r {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
  #lower main .inner img.img_r, #lower main .inner img.img_l {
    width: 30rem;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n, .sp_n_i {
  display: none !important;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block !important;
  }
  .sp_n_i {
    display: inline !important;
  }
  .pc_n {
    display: none !important;
  }
}
/* マージン -------------------------------------- */
.mb_00 {
  margin-bottom: 0 !important;
}

.mb_05 {
  margin-bottom: 0.5rem !important;
}

.mb_10 {
  margin-bottom: 1rem !important;
}

.mb_15 {
  margin-bottom: 1.5rem !important;
}

.mb_20 {
  margin-bottom: 2rem !important;
}

.mb_25 {
  margin-bottom: 2.5rem !important;
}

.mb_30 {
  margin-bottom: 3rem !important;
}

.mb_35 {
  margin-bottom: 3.5rem !important;
}

.mb_40 {
  margin-bottom: 4rem !important;
}

.mb_45 {
  margin-bottom: 4.5rem !important;
}

.mb_50 {
  margin-bottom: 5rem !important;
}

/* flex box */
.flex_LRTB, .flex_RLTB {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 48em), print {
  /* PCで左→右に配置／SPで上→下に配置 */
  .flex_LRTB {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex_LRTB.half {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex_LRTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_LRTB.half > li {
    margin-bottom: 1rem;
  }
  .flex_LRTB.half > section {
    margin: 0 !important;
  }
  .flex_LRTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_LRTB.half > figure + ul {
    width: 68% !important;
  }
  .flex_LRTB.center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /* PCで右→左に配置／SPで上→下に配置 */
  .flex_RLTB {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex_RLTB.half {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex_RLTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_RLTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_RLTB.half > figure + ul {
    width: 68% !important;
  }
}
/* ----------------------------------------------------------------------------------
リストなど　_basic.scss
---------------------------------------------------------------------------------- */
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*　なし -------------------------------------- */
ul {
  list-style-type: none;
  margin: 0 0 10px;
  padding: 0;
}
ul li {
  margin: 0 0 10px;
  padding: 0;
}

/* シンプル -------------------------------------- */
ul.list_sim {
  margin: 0 0 10px 20px;
}
ul.list_sim > li {
  margin: 0 0 8px 0;
  padding: 0;
  text-indent: -0.5em;
}
ul.list_sim > li::before {
  position: relative;
  top: -0.1em;
  left: -0.5em;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  content: "";
  border-radius: 100%;
  background: #60370F;
  vertical-align: middle;
}

/* ● -------------------------------------- */
ul.list_maru {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_maru li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_maru li::before {
  display: inline-block;
  content: "●";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: #60370F;
}

/*　● インライン -------------------------------------- */
ul.list_maru.list_in li {
  display: inline-block;
  margin: 0 40px 8px 0;
}

/* ※ -------------------------------------- */
ul.list_kome {
  padding: 0;
}
ul.list_kome li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 8px;
}
ul.list_kome li::before {
  content: "※";
  width: 1em;
  color: #f0013c;
}

/* link -------------------------------------- */
ul.list_lnk {
  padding: 0;
}
ul.list_lnk li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.8rem;
}
ul.list_lnk li::before {
  font-family: "fontello";
  content: "\f138";
  padding-right: 0.5rem;
  font-weight: bold;
  color: #004923;
}

/* ページ内リンク -------------------------------------- */
ul.list_pl li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 8px;
}
ul.list_pl li a {
  color: #333;
}
ul.list_pl a::before {
  font-family: "fontello";
  content: "\f107";
  padding-right: 5px;
  font-weight: bold;
  color: #60370F;
}

@media screen and (min-width: 48em), print {
  ul.list_pl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  ul.list_pl li {
    width: 33%;
  }
  ul.list_pl li a {
    background: rgba(214, 240, 70, 0.2);
    display: block;
    border: #D6F046 solid 2px;
    border-radius: 5px;
    padding: 7px 0 7px 25px;
  }
  ul.list_pl::after {
    content: "";
    display: block;
    width: 33%;
  }
}
/* 数値 -------------------------------------- */
ol.list_num {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
ol.list_num li {
  list-style-type: decimal;
  margin: 0 0 10px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
}

/* 流れ図 -------------------------------------- */
ol.list_flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.list_flow > li {
  border: 5px solid #60370F;
  border-radius: 10px;
  margin-bottom: 35px;
  padding: 0.5rem 1rem 1rem;
  position: relative;
}
ol.list_flow > li p.ttl {
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 0.5rem;
}
ol.list_flow > li p.ttl::first-letter {
  color: #A2D6CA;
  font-size: 2.5rem;
  padding-right: 0.5rem;
}
ol.list_flow > li *:last-child {
  margin-bottom: 0;
}
ol.list_flow > li::after {
  bottom: -30px;
  color: #60370F;
  content: "▼";
  font-size: 24px !important;
  left: 48%;
  position: absolute;
}
ol.list_flow > li:last-child::after { /*最後の▼を外す*/
  content: "";
}

@media screen and (min-width: 48em), print {
  ol.list_flow > li {
    padding: 0.5rem 1.5rem 1.5rem;
  }
  ol.list_flow > li p.ttl::first-letter {
    font-size: 3rem;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/* 経歴 -------------------------------------- */
.dl_career dd {
  margin: 0 0 1em 5px;
}

@media screen and (min-width: 48em), print {
  .dl_career {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dl_career dt {
    width: 8em;
  }
  .dl_career dd {
    width: calc(100% - 9em);
  }
}
/* dtに二重線 -------------------------------------- */
.dl_def {
  margin: 2rem auto;
}
.dl_def > dt {
  font-weight: bold;
  border-bottom: double 3px #A2D6CA;
  margin-bottom: 0.7rem;
}
.dl_def > dd {
  margin-bottom: 1.5rem;
}
.dl_def > dd ul.list_maru li::before {
  color: #D6F046;
}

/* テーブルもどき -------------------------------------- */
.dl_tbl {
  border: #60370F solid 1px;
  margin-bottom: 0.5rem;
}
.dl_tbl > dt {
  font-weight: bold;
  background: #60370F;
  padding: 0.5rem;
  color: #fff;
}
.dl_tbl > dd {
  padding: 1rem;
  margin: 0;
}
.dl_tbl > dd *:last-child {
  margin-bottom: 0;
}
.dl_tbl > dd > ul.list_maru li::before {
  color: #A2D6CA;
}

/* box -------------------------------------- */
.box1, .box2 {
  padding: 20px !important;
  margin-bottom: 20px;
  border: #D6F046 solid 0.2rem;
  border-radius: 0.5rem;
}
.box1 > dt, .box2 > dt {
  border-bottom: #D6F046 dotted 2px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-weight: bold;
}
.box1 > dd, .box2 > dd {
  margin: 10px;
}
.box1 > dd dt, .box2 > dd dt {
  color: #60370F;
  font-weight: bold;
}
.box1 > *:last-child, .box2 > *:last-child {
  margin-bottom: 0;
}

.box2 {
  border-color: #60370F;
}
.box2 dt {
  border-bottom: #60370F dotted 2px;
}
.box2 ul.list_maru > li::before {
  color: #60370F;
}

.box3 {
  background: #F5E5AF;
  color: #60370F;
  padding: 1rem !important;
  border-radius: 1rem;
}
.box3 > *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 48em), print {
  .box1 > dt, .box2 > dt {
    font-size: 18px;
  }
  .box1 > dd dt, .box2 > dd dt {
    font-size: 17px;
  }
  .box3 {
    padding: 2rem !important;
  }
}
/* テキストカラー -------------------------------------- */
.fc_rd {
  color: #c80014;
}

.fc_gr {
  color: #34acbd;
}

.fc_or {
  color: #D6F046;
}

.fc_br {
  color: #60370F;
}

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

main a {
  border-bottom: 1px solid #004923;
  color: #004923;
}

main a:hover {
  color: #ff5500;
  border-bottom: 1px solid #ff5500;
}

a.btn {
  background: #D6F046;
  color: #fff;
  padding: 0.7rem 4rem;
  text-align: center;
  margin: 5px auto;
  width: auto;
  display: inline-block;
  position: relative;
  border: none;
  border-radius: 2.6rem;
}

.background_colorMain {
  background: #A2D6CA !important;
}

a.btn:hover {
  background: #004923;
  color: #fff;
  border: none;
  opacity: 1;
}

a.btn::after {
  font-family: "fontello";
  content: "\f138";
  padding-right: 3px;
  font-weight: bold;
  position: absolute;
  right: 10px;
}

/* 画像  -------------------------------------- */
figure {
  margin: 0;
}

#lower figure {
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  width: auto;
}

/* ----------------------------------------------------------------------------------
共通部分　_base.scss
---------------------------------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%; /* ベースを10pxに */
  width: 100%;
}

body {
  font-family: YakuHanJPs_Narrow, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  font-size: 1.4rem;
  background-color: #fff;
  line-height: 1;
  margin: 0;
  padding: 0;
  letter-spacing: 0.08em;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

@media screen and (min-width: 48em), print {
  body {
    min-width: 120rem;
    font-size: 1.8rem;
  }
}
/* 全体の横幅設定  -------------------------------------- */
.wrap {
  margin: 0 1.5rem;
}

main {
  line-height: 1.4;
}

.inner {
  padding: 0;
}

main > .inner {
  margin: 0 15px 30px;
  line-height: 1.6;
}

section {
  margin-bottom: 3rem;
}

#lower main section {
  margin: 0 auto 4rem;
  padding: 0;
}
#lower main section .inner + section {
  margin: 4rem 0 4rem;
  padding: 0;
}
#lower main section section .inner + section {
  margin: 3.5rem 0 4rem;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .wrap {
    width: 120rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
  section {
    margin-bottom: 5rem;
  }
  main section .inner + section, main section + section {
    margin: 60px 0 40px;
    padding: 0;
  }
  main section section .inner + section, main section section + section {
    margin: 50px 0 40px;
  }
  main section section section .inner + section, main section section section + section {
    margin: 40px 0 40px;
  }
  .inner {
    padding: 0;
  }
}
/* header  -------------------------------------- */
header .wrap {
  margin: 0;
}
header .wrap .h_left {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 100;
  height: 5rem;
}
header .wrap .h_right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 37rem;
  margin: 0 auto;
}
header .wrap .h_right ul:last-child .h_access {
  background: #F5E5AF;
  color: #60370F;
  text-align: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
header .wrap .h_right ul:last-child .h_address {
  margin: 1rem 0;
}
header .logo {
  padding: 0.5rem 1rem 0;
  margin: 0 auto;
  max-width: 30rem;
  width: calc(100% - 5rem);
}
header .logo img {
  display: block;
}
header .logo span {
  text-align: center;
  font-size: 1rem;
  display: block;
  margin-top: 0px;
}

/* ハンバーガーメニュー  -------------------------------------- */
.js-btn {
  margin: 0;
  padding: 1.5rem 0.5rem 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* ボタンの配置位置 */
  /* ボタンの大きさ  */
  width: 5rem;
  height: 5rem;
  /* 最前面に */
  z-index: 100;
  background-color: #004923;
  border: none;
}

.btn-txt {
  display: block;
  text-align: center;
  width: 100%;
  padding-top: 1.2rem;
  font-size: 1.2rem;
  color: #fff;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  position: relative; /* バーガー線の位置基準として設定 */
  width: 100%; /* 線の長さと高さ */
  height: 4px;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/****** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.btn-line::before {
  /* 上の線の位置 */
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.btn-line::after {
  /* 下の線の位置 */
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
}

/***** メニューオープン時 *****/
.btn-line.open {
  background-color: transparent; /* 真ん中の線を透明に */
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn-line.open::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* 上の線を傾ける */
}

.btn-line.open::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); /* 下の線を傾ける */
}

#drop {
  width: 100%;
  padding: 0 1rem;
  background-color: #D6F046;
  position: absolute;
  top: -185%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  font-size: 1.6rem;
}
#drop li {
  margin: 0;
  border-bottom: #F5E5AF 0.1rem solid;
}
#drop li a {
  padding: 1.5rem 1rem;
  color: #60370F;
  display: block;
  position: relative;
}
#drop li a::after {
  position: absolute;
  content: "\f105";
  font-family: "fontello";
  display: block;
  right: 0.5rem;
  top: 1.5rem;
}
#drop aside {
  margin-top: 1rem;
}
#drop aside dt {
  text-align: center;
  margin: 0;
  background: #004923;
  padding: 1rem;
  color: #F5E5AF;
  border-radius: 0.5rem;
}
#drop aside ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}
#drop aside ul li {
  width: 50%;
  font-size: 1.4rem;
}
#drop aside ul li:nth-child(odd) {
  border-right: #F5E5AF 0.1rem solid;
}
#drop aside .img_c {
  border-radius: 0.8rem;
  display: block;
}

#drop.open {
  top: 5rem;
}
#drop.open br {
  display: none;
}
#drop.open > ul {
  margin: 0 auto 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 46rem;
}
#drop.open > ul li {
  margin: 1rem;
}
#drop.open > ul li a {
  padding: 0.5rem;
  display: block;
}
#drop.open > ul .subsub {
  margin-left: 1em;
}
#drop.open > ul a::before {
  font-family: fontello;
  content: "\f105";
  color: #A2D6CA;
  padding-right: 0.5rem;
}

#TopPage h2, #doctor h2, #check h2, #clinic h2, #access h2, #visitor h2 {
  margin: 3rem 0 1.5rem;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #60370F;
}
#TopPage h2 > span, #doctor h2 > span, #check h2 > span, #clinic h2 > span, #access h2 > span, #visitor h2 > span {
  max-width: calc(100% - 5rem);
  display: block;
  margin: 0 0.7rem;
}
#TopPage h2::before, #TopPage h2::after, #doctor h2::before, #doctor h2::after, #check h2::before, #check h2::after, #clinic h2::before, #clinic h2::after, #access h2::before, #access h2::after, #visitor h2::before, #visitor h2::after {
  content: "";
  display: block;
  height: 5rem;
  width: 2.9rem;
  background: url("../img/h2_before.png") no-repeat center bottom;
  background-size: contain;
}
#TopPage h2::after, #doctor h2::after, #check h2::after, #clinic h2::after, #access h2::after, #visitor h2::after {
  background-image: url("../img/h2_after.png");
}

#lower .btn_reserve {
  display: block;
  background: #A2D6CA;
  color: #fff;
  padding: 1.2rem 0;
  width: 20rem;
  font-weight: bold;
  border-radius: 0.8rem;
  border: none;
  margin: 1rem auto;
}
#lower #doctor h3, #lower #check h3, #lower #clinic h3, #lower #access h3, #lower #visitor h3 {
  padding: 0 0 0.5rem 2.5rem;
  margin: 3rem 0 2rem;
  font-size: 1.6rem;
  color: #60370F;
  border-bottom: 0.1rem solid #D6F046;
  background: url("../img/h3.png") no-repeat left bottom 0.5rem;
  background-size: 1.5rem auto;
  min-height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#lower #doctor h4, #lower #check h4, #lower #clinic h4, #lower #access h4, #lower #visitor h4 {
  padding: 0 0 0 1.7rem;
  color: #60370F;
  margin: 2rem 0 2rem;
  font-size: 1.6rem;
  background: url("../img/h4.png") no-repeat left bottom 0.5rem;
  background-size: 1.2rem auto;
  min-height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#lower #doctor h5, #lower #check h5, #lower #clinic h5, #lower #access h5, #lower #visitor h5 {
  padding: 0 0 0 1.2rem;
  color: #60370F;
  margin: 2rem 0 2rem;
  font-size: 1.6rem;
  background: url("../img/h5.png") no-repeat left bottom 0.5rem;
  background-size: 0.9rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#lower #cough h2, #lower #asthma h2, #lower #copd h2, #lower #pneumonia h2, #lower #sas h2, #lower #allergy h2, #lower #internal h2, #lower #cancer h2, #lower #lung h2, #lower #checkup h2, #lower #prevention h2 {
  font-size: 2rem;
  color: #60370F;
  margin-bottom: 1.5rem;
}
#lower #cough h3, #lower #asthma h3, #lower #copd h3, #lower #pneumonia h3, #lower #sas h3, #lower #allergy h3, #lower #internal h3, #lower #cancer h3, #lower #lung h3, #lower #checkup h3, #lower #prevention h3 {
  font-size: 1.8rem;
  color: #60370F;
  margin-bottom: 1.5rem;
}
#lower #cough h4, #lower #asthma h4, #lower #copd h4, #lower #pneumonia h4, #lower #sas h4, #lower #allergy h4, #lower #internal h4, #lower #cancer h4, #lower #lung h4, #lower #checkup h4, #lower #prevention h4 {
  font-size: 1.6rem;
  color: #60370F;
  margin-bottom: 1rem;
}
#lower #cough h5, #lower #asthma h5, #lower #copd h5, #lower #pneumonia h5, #lower #sas h5, #lower #allergy h5, #lower #internal h5, #lower #cancer h5, #lower #lung h5, #lower #checkup h5, #lower #prevention h5 {
  color: #60370F;
  margin-bottom: 1rem;
}
#lower h1 {
  margin: 0 0 2rem;
  font-size: 2.2rem;
  line-height: 1.2;
  padding: 3rem 0 3rem 1rem;
  color: #60370F;
  background: url("../img/h1.jpg") center center no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-shadow: #fff 1px 1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px, #fff -1px -1px 10px;
}
#lower h1 img {
  display: inline-block;
  padding-right: 1rem;
  width: 4rem;
}
@media screen and (min-width: 48em), print {
  header {
    padding: 0;
    width: 100%;
    min-width: 120rem;
    margin: 0;
  }
  header .wrap {
    background-size: auto;
    margin: 0 auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .wrap .h_left {
    height: auto;
  }
  header .wrap .logo {
    max-width: none;
    width: 56.4rem;
    margin: 0 auto 0.5rem;
    padding: 0;
  }
  header .wrap .logo span {
    font-size: 1.6rem;
  }
  header .wrap .h_right {
    width: 55rem;
    padding: 2rem 0;
  }
  header .wrap .h_right ul {
    max-width: none;
  }
  header .wrap .h_right ul:last-child {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  header .wrap .h_right ul:last-child li.h_address {
    text-align: left;
    margin: 0;
  }
  header .wrap .h_right ul:last-child li.h_access {
    padding: 0.7rem 1rem;
    font-weight: bold;
    margin: 0 1rem 0 0;
  }
  header .wrap ul.sp_n {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto 0;
    font-size: 2.6rem;
  }
  header .wrap ul.sp_n li {
    width: 27rem;
    background: #D6F046;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    border-radius: 0.8rem;
  }
  header .wrap ul.sp_n li:last-child {
    background: #A2D6CA;
  }
  header .wrap ul.sp_n li:last-child a {
    color: #fff;
    padding: 1.2rem 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  header .wrap ul.sp_n .h_tel {
    padding: 1.2rem 0;
  }
  header .wrap .btn {
    display: none;
  }
  #drop {
    padding: 0;
  }
  #drop nav {
    display: block;
    text-align: center;
    padding: 0;
    font-size: 2rem;
    position: inherit;
  }
  #drop nav ul.gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: 0 auto;
    padding: 0;
    width: 118rem;
    max-width: none;
    border-left: 0.1rem solid #fff;
  }
  #drop nav ul.gnav a:hover {
    opacity: 1;
    background: #A2D6CA;
  }
  #drop nav ul.gnav > li {
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    border-right: 0.1rem solid #fff;
    border-bottom: none !important;
    width: 19.66666rem;
    min-width: inherit;
  }
  #drop nav ul.gnav > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    font-size: 1.7rem;
    padding: 2.5rem 0;
  }
  #drop nav ul.gnav > li a::after {
    display: none !important;
  }
}
/* main   -------------------------------------- */
main {
  display: block;
}
main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
}
main li, main dl {
  line-height: 1.6;
}
main > section:first-child > h2 {
  margin-top: 0 !important;
}

@media screen and (min-width: 48em), print {
  .wrap.flex_RLTB {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 8rem;
  }
  .wrap.flex_RLTB aside {
    width: 27.2rem;
  }
  .wrap.flex_RLTB aside dt {
    background: #004923;
    color: #F5E5AF;
    font-size: 2.2rem;
    padding: 1.8rem 0;
    text-align: center;
    border-radius: 0.8rem 0.8rem 0 0;
  }
  .wrap.flex_RLTB aside dd {
    background: #D6F046;
  }
  .wrap.flex_RLTB aside dd li {
    margin: 0;
    border-bottom: 0.1rem solid #F5E5AF;
  }
  .wrap.flex_RLTB aside dd li a {
    height: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0 0 1rem;
    font-size: 1.7rem;
    color: #60370F;
    letter-spacing: normal;
  }
  .wrap.flex_RLTB aside dd li a::before {
    background: url("../img/icon_cough.png") no-repeat center center;
    display: block;
    width: 5.3rem;
    height: 5.3rem;
    background-size: cover;
    content: "";
    margin: 0 1rem 0 0;
  }
  .wrap.flex_RLTB aside dd li:nth-child(2) a::before {
    background-image: url("../img/icon_asthma.png");
  }
  .wrap.flex_RLTB aside dd li:nth-child(3) a::before {
    background-image: url("../img/icon_copd.png");
  }
  .wrap.flex_RLTB aside dd li:nth-child(4) a::before {
    background-image: url("../img/icon_pneumonia.png");
  }
  .wrap.flex_RLTB aside dd li:nth-child(5) a::before {
    background-image: url("../img/icon_sas.png");
  }
  .wrap.flex_RLTB aside dd li:nth-child(6) a::before {
    background-image: url("../img/icon_allergy.png");
  }
  .wrap.flex_RLTB aside dd li:nth-child(7) a::before {
    background-image: url("../img/icon_internal.png");
  }
  .wrap.flex_RLTB aside dd li:nth-child(8) a::before {
    background-image: url("../img/icon_cancer.png");
  }
  .wrap.flex_RLTB aside dd li:nth-child(9) a::before {
    background-image: url("../img/icon_lung.png");
  }
  .wrap.flex_RLTB aside dd li:nth-child(10) a::before {
    background-image: url("../img/icon_checkup.png");
  }
  .wrap.flex_RLTB aside dd li:nth-child(11) a::before {
    background-image: url("../img/icon_prevention.png");
  }
  .wrap.flex_RLTB aside .img_c {
    border-radius: 0.8rem;
    display: block;
  }
  main {
    margin: 0;
    width: 86rem;
  }
  main > section:first-child h2 {
    margin-top: 0;
  }
  #drop {
    position: inherit;
  }
  #TopPage h2, #doctor h2, #check h2, #clinic h2, #access h2, #visitor h2 {
    font-size: 3.2rem;
    margin: 4.5rem 0 4.5rem;
    min-height: 5rem;
  }
  #TopPage h2 > span, #doctor h2 > span, #check h2 > span, #clinic h2 > span, #access h2 > span, #visitor h2 > span {
    max-width: calc(100% - 10rem);
    margin: 0 2rem;
  }
  #TopPage h2::before, #doctor h2::before, #check h2::before, #clinic h2::before, #access h2::before, #visitor h2::before {
    width: 2.5rem;
    height: 5rem;
  }
  #TopPage h2::after, #doctor h2::after, #check h2::after, #clinic h2::after, #access h2::after, #visitor h2::after {
    width: 2.9rem;
    height: 4rem;
  }
  #lower h1 {
    font-size: 4.8rem;
    text-align: center;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #lower h1 img {
    width: auto;
    padding-right: 1.5rem;
  }
  #lower #doctor h3, #lower #check h3, #lower #clinic h3, #lower #access h3, #lower #visitor h3 {
    font-size: 3rem;
    margin: 5rem 0 2rem;
    padding: 0 0 1rem 4rem;
    min-height: 7.2rem;
    background-size: auto;
  }
  #lower #doctor h4, #lower #check h4, #lower #clinic h4, #lower #access h4, #lower #visitor h4 {
    font-size: 2.4rem;
    margin: 4rem 0 2rem;
    padding: 0 0 0 3.5rem;
    min-height: 4.3rem;
    background-size: auto;
  }
  #lower #doctor h5, #lower #check h5, #lower #clinic h5, #lower #access h5, #lower #visitor h5 {
    font-size: 2rem;
    margin: 3rem 0 2rem;
    padding: 0 0 0 2.5rem;
    min-height: 3.7rem;
    background-size: auto;
  }
  #lower #cough h2, #lower #asthma h2, #lower #copd h2, #lower #pneumonia h2, #lower #sas h2, #lower #allergy h2, #lower #internal h2, #lower #cancer h2, #lower #lung h2, #lower #checkup h2, #lower #prevention h2 {
    font-size: 3.2rem;
    margin: 4.5rem 0 2rem;
  }
  #lower #cough h3, #lower #asthma h3, #lower #copd h3, #lower #pneumonia h3, #lower #sas h3, #lower #allergy h3, #lower #internal h3, #lower #cancer h3, #lower #lung h3, #lower #checkup h3, #lower #prevention h3 {
    font-size: 2.7rem;
    margin: 5rem 0 1rem;
  }
  #lower #cough h4, #lower #asthma h4, #lower #copd h4, #lower #pneumonia h4, #lower #sas h4, #lower #allergy h4, #lower #internal h4, #lower #cancer h4, #lower #lung h4, #lower #checkup h4, #lower #prevention h4 {
    font-size: 2.2rem;
    margin: 4rem 0 1rem;
  }
  #lower #cough h5, #lower #asthma h5, #lower #copd h5, #lower #pneumonia h5, #lower #sas h5, #lower #allergy h5, #lower #internal h5, #lower #cancer h5, #lower #lung h5, #lower #checkup h5, #lower #prevention h5 {
    font-size: 1.8rem;
    margin: 3rem 0 1rem;
  }
}
/* ページ下部 医院概要  -------------------------------------- */
#overview {
  padding: 3rem 0 2rem;
}
#overview .logo {
  margin-bottom: 1.5rem;
}
#overview .logo img {
  width: calc(100% - 2rem);
}
#overview .overviewL {
  max-width: 37rem;
  margin: 0 auto;
}
#overview .overviewR > p {
  background: #fff;
  border: 0.1rem solid #A2D6CA;
  color: #60370F;
  text-align: center;
  padding: 1rem 0.5rem;
  font-size: 200%;
  margin: 2rem auto;
  max-width: 37rem;
}
#overview .overviewR > p a {
  color: #A2D6CA;
}
#overview .overviewR > p span {
  font-size: 66.66666%;
}

.dl_overview dt {
  background: #A2D6CA;
  color: #fff;
  padding: 0.8rem;
  text-align: center;
  margin-bottom: 1rem;
  border-radius: 2.3rem;
}
.dl_overview dd {
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.dl_overview .tel a {
  color: #333;
}

.gmap {
  margin: 1rem auto 0;
  height: 46rem;
  width: 100%;
}

/* 診療時間表 -------------------------------------- */
.tbl_time {
  border-collapse: collapse;
  overflow: hidden;
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
  background: #fff;
}
.tbl_time caption {
  caption-side: bottom;
  padding: 0.5rem 0;
  line-height: 1.4;
  text-align: left;
}
.tbl_time thead th, .tbl_time thead td {
  padding: 0.7rem 0 0.7rem;
  font-weight: normal;
}
.tbl_time thead tr {
  background: #A2D6CA;
  color: #fff;
}
.tbl_time tbody tr {
  border-bottom: 0.1rem solid #ccc;
}
.tbl_time tbody th, .tbl_time tbody td {
  padding: 0.7rem 0;
  vertical-align: middle;
  font-weight: normal;
}
.tbl_time tbody td {
  min-width: 2em;
}

@media screen and (min-width: 48em), print {
  .tbl_time caption {
    padding: 1rem 0 0;
    font-size: 1.6rem;
  }
  .tbl_time thead th {
    padding: 1rem 0;
  }
  .tbl_time tbody th {
    padding: 1.7rem 0;
    font-weight: normal;
    width: 25rem;
  }
  .tbl_time tbody td {
    padding: 1.7rem 0;
  }
}
/* ページトップ -------------------------------------- */
.sp_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: #E5F5EA;
  margin: 0;
  width: 100%;
  padding: 0.1rem;
  text-align: center;
  z-index: 10000;
}
.sp_bottom li {
  width: 40%;
  margin: 0.2rem;
  background: #A2D6CA;
  position: relative;
  font-size: 1.4rem;
}
.sp_bottom li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.3rem 0;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sp_bottom li:last-child {
  width: 20%;
}

@media screen and (min-width: 48em), print {
  .sp_bottom {
    bottom: 2rem;
    right: 1rem;
    left: auto;
    background-color: transparent;
    width: 7rem;
  }
  .sp_bottom li:first-child, .sp_bottom li:nth-child(2) {
    display: none !important;
  }
  .sp_bottom li {
    background-color: transparent;
  }
  #pageup {
    position: fixed;
    bottom: -55rem;
    right: 7rem;
    z-index: 1;
    cursor: pointer;
    opacity: 0.8;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    font-size: 4rem;
    padding: 0.8rem 0;
    background: #D6F046;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
  }
  #pageup a {
    padding: 0;
  }
  #pageup.block {
    display: block;
    bottom: 4rem;
  }
}
footer ul {
  display: none;
}

address {
  padding: 1rem 0 5.5rem;
  font-style: normal;
  background: #D6F046;
  font-size: 1.2rem;
  text-align: center;
}
address a {
  color: #60370F;
}

@media screen and (min-width: 48em), print {
  #overview {
    padding: 9rem 0 5rem;
  }
  #overview .wrap {
    padding: 2rem 0;
    border-top: #D6F046 0.7rem solid;
    position: relative;
  }
  #overview .wrap::before {
    position: absolute;
    width: 50%;
    height: 0.7rem;
    display: block;
    content: "";
    background: #A2D6CA;
    left: 0;
    top: -0.7rem;
  }
  #overview .flex_LRTB {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
  }
  #overview .logo {
    margin: 0.8rem 0 2.5rem;
    text-align: center;
  }
  #overview .logo img {
    width: 55rem;
    max-width: none;
  }
  #overview .overviewL {
    padding: 0;
    margin: 0;
    width: 55rem;
    max-width: none;
  }
  #overview .overviewR {
    width: 55rem;
    padding: 0 0 1rem;
  }
  #overview .overviewR .gmap {
    height: 100%;
  }
  .dl_overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 3rem;
  }
  .dl_overview dt {
    width: 12rem;
    margin: 0;
    padding: 0.7rem 0;
    line-height: 1;
    font-size: 1.6rem;
  }
  .dl_overview dd {
    margin: 0 0 1rem;
    padding: 0.2rem 0 0;
    width: 42rem;
    min-height: 3.6rem;
  }
  #access .dl_overview {
    width: 63rem;
    margin: 0 auto;
  }
  #access .dl_overview dd {
    width: 50rem;
  }
  .gmap {
    margin: 0;
  }
  address {
    margin-top: 0;
    padding: 2.5rem 0;
  }
  footer {
    display: block;
    padding: 0;
    margin: 0 auto 0;
    font-size: 1.6rem;
  }
  footer > .wrap {
    padding: 5rem 1rem 3rem;
  }
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    letter-spacing: normal;
    width: 77rem;
  }
  footer ul li {
    line-height: 1;
    padding: 0 1rem;
    border-right: 0.1rem solid #60370F;
    margin-bottom: 2rem;
  }
  footer ul li a {
    color: #60370F;
    padding: 0;
  }
  footer ul li:last-child {
    border: none;
  }
  footer ul:last-child li:nth-child(5) {
    border: none;
  }
}
a {
  color: #1a0dab;
}

a:hover {
  opacity: 0.7;
}

.tel a {
  color: #333;
  border-bottom: none;
}

/* TopPage  -------------------------------------- */
#TopPage #kv {
  background-size: auto 25rem;
  background-position: top center;
  background-repeat: no-repeat;
  max-width: 47.2rem;
  margin: 0 auto 0;
  position: relative;
}
#TopPage #kv .wrap {
  margin: 0;
  line-height: 1.4;
  font-size: 1.6rem;
}
#TopPage #kv .kv_txt {
  color: #60370F;
  max-width: 37rem;
  margin: 0 auto;
  height: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 15rem 0 1rem;
  font-weight: bold;
  text-shadow: #fff 1px 1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px, #fff -1px -1px 10px;
}
#TopPage #kv .kv_txt dt {
  width: 100%;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#TopPage #kv .kv_txt dd {
  width: 100%;
}
#TopPage h2 {
  font-size: 3rem;
}
#TopPage h2 > span span {
  font-size: 1.8rem;
  display: block;
  text-align: center;
  color: #999;
}
#TopPage #news {
  background: #D6F046;
  padding: 1rem 0;
  line-height: 1.4;
}
#TopPage #news .wrap {
  padding: 2rem 1rem;
  margin: 0 1rem;
  background: #fff;
  border-radius: 1.5rem;
}
#TopPage #news .wrap._bnrarea {
  background: none;
  border-radius: 0;
  margin: 0 1rem 1rem;
}
#TopPage #news .wrap._bnrarea .bnr_recruit {
  display: block;
  background: url("../img/recruit_bnr_bg.jpg") center left -1.5rem/contain no-repeat #fff;
  border-radius: 1.4rem;
  padding: 2rem 0.5rem 2rem 32%;
  text-align: center;
  color: #60370F;
  text-decoration: none;
  border: 2px solid #60370F;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#TopPage #news .wrap._bnrarea .bnr_recruit p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}
#TopPage #news .wrap._bnrarea .bnr_recruit p span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
#TopPage #news h2 {
  margin-top: 0;
}
#TopPage #news dl {
  padding: 1rem;
  /*dd:not(:nth-of-type(-n+3)) {
      display: none;
      }*/
}
#TopPage #news dl dt {
  color: #60370F;
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.8rem;
}
#TopPage #news dl dt .new {
  font-style: italic;
  font-weight: bold;
  color: #dc143c;
  padding: 0.1rem 0.2rem;
  font-size: 90%;
}
#TopPage #news dl dt .date {
  display: none;
}
#TopPage #news dl dt::before {
  position: absolute;
  left: 0;
  content: "\f13a";
  font-family: fontello;
  width: 1em;
  text-align: center;
  color: #D6F046;
}
#TopPage #news dl dt.close::before {
  content: "\f139";
}
#TopPage #news dl dd {
  margin-bottom: 2rem;
  display: none;
}
#TopPage #greeting {
  padding: 1rem 0;
  line-height: 1.4;
}
#TopPage #greeting img {
  width: 15rem;
}
#TopPage main {
  margin: 0;
}
#TopPage main section {
  margin-top: 0;
  margin-bottom: 0;
  padding: 1rem 0;
}
#TopPage main #covid {
  margin: 2rem 1rem;
}
#TopPage main #covid dl {
  border-radius: 1.5rem;
  background: #F5E5AF;
  padding: 1rem;
  color: #60370F;
  font-size: 1.6rem;
  font-weight: bold;
}
#TopPage main #covid dl dt {
  padding: 1rem 0 1.5rem;
  text-align: center;
}
#TopPage main #covid dl dd {
  background: #fff;
  padding: 1rem;
}
#TopPage main #covid dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#TopPage main #covid dl dd ul li {
  width: 23%;
  margin: 0;
}
#TopPage main #covid dl dd p {
  margin: 0;
  text-align: center;
}
#TopPage main #covid dl dd p::after {
  content: "\f105";
  font-family: fontello;
  padding-left: 1rem;
}
#TopPage main #treatments ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#TopPage main #treatments ul li {
  width: 48%;
  max-width: 17rem;
  text-align: center;
  margin-bottom: 2rem;
}
#TopPage main #treatments ul a {
  display: block;
  border-bottom: none;
  color: #333;
  font-weight: bold;
  background: url("../img/treatments_flame_gr.png") no-repeat;
  background-size: 100% 100%;
  padding: 1.5rem 0;
}
#TopPage main #treatments ul a::before {
  content: " ";
  background: url("../img/icon_pediatrics.png") no-repeat top center;
  background-size: contain;
  height: 4.5rem;
  width: 8rem;
  margin: 0 auto 0.5rem;
  display: block;
}
#TopPage main #treatments ul li:nth-child(even) a {
  background-image: url("../img/treatments_flame_or.png");
}
#TopPage main #treatments ul li:nth-child(2) a::before {
  background-image: url("../img/icon_vaccination.png");
}
#TopPage main #treatments ul li:nth-child(3) a::before {
  background-image: url("../img/icon_checkup.png");
}
#TopPage main #treatments ul li:nth-child(4) a::before {
  background-image: url("../img/icon_infection.png");
}
#TopPage main #treatments ul li:nth-child(5) a::before {
  background-image: url("../img/icon_allergies.png");
}
#TopPage main #treatments ul li:nth-child(6) a::before {
  background-image: url("../img/icon_developmental_counseling.png");
}
#TopPage main #treatments ul li:nth-child(7) a::before {
  background-image: url("../img/icon_developmental_disability.png");
}
#TopPage main #treatments ul li:nth-child(8) a::before {
  background-image: url("../img/icon_psychosomatic_disease.png");
}
#TopPage main #treatments ul li:nth-child(9) a::before {
  background-image: url("../img/icon_orthostatic_dysregulation.png");
}
#TopPage main #treatments ul li:nth-child(10) a::before {
  background-image: url("../img/icon_school_refusal.png");
}
#TopPage main #treatments ul li:nth-child(11) a::before {
  background-image: url("../img/icon_kanpo.png");
}
#TopPage main #features, #TopPage main #initiative {
  background: #FFFDEA;
}
#TopPage main #features ul, #TopPage main #initiative ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#TopPage main #features ul li, #TopPage main #initiative ul li {
  width: 48%;
  min-width: 29rem;
  margin: 2rem auto;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1019607843);
}
#TopPage main #features ul img, #TopPage main #initiative ul img {
  display: block;
  margin: 0 auto 1rem;
}
#TopPage main #features ul dl, #TopPage main #initiative ul dl {
  color: #60370F;
}
#TopPage main #features ul dt, #TopPage main #initiative ul dt {
  margin: -4.2rem auto 2rem;
  background: #fff;
  padding: 1.2rem 0;
  border-radius: 4.2rem;
  width: 25.5rem;
  position: relative;
  border: 0.1rem solid #60370F;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
#TopPage main #features ul dd, #TopPage main #initiative ul dd {
  margin: 0 1rem 3rem;
}
#TopPage main #features figure figcaption, #TopPage main #initiative figure figcaption {
  padding: 0 1rem;
}
#TopPage main #referrals {
  padding: 5rem 0;
}
#TopPage main #referrals .wrap {
  background: url("../img/referrals_img01.jpg") center center no-repeat;
  margin: 0;
  background-size: cover;
  padding: 1.5rem;
}
#TopPage main #referrals .wrap .inner {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
}
#TopPage main #referrals .wrap .inner a {
  border: none;
  color: #333;
}
#TopPage main #referrals .wrap .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#TopPage main #referrals .wrap .inner ul li {
  width: 50%;
  min-width: 27rem;
}
#TopPage main + .pc_n aside {
  margin: 1rem;
}
#TopPage main + .pc_n aside dt {
  background: #004923;
  color: #F5E5AF;
  font-size: 2.2rem;
  padding: 1.8rem 0;
  text-align: center;
  border-radius: 0.8rem 0.8rem 0 0;
}
#TopPage main + .pc_n aside dd {
  background: #D6F046;
}
#TopPage main + .pc_n aside dd li {
  margin: 0;
  border-bottom: 0.1rem solid #F5E5AF;
}
#TopPage main + .pc_n aside dd li a {
  height: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 1rem;
  font-size: 1.7rem;
  color: #60370F;
  letter-spacing: normal;
}
#TopPage main + .pc_n aside dd li a::before {
  background: url("../img/icon_cough.png") no-repeat center center;
  display: block;
  width: 5.3rem;
  height: 5.3rem;
  background-size: cover;
  content: "";
  margin: 0 1rem 0 0;
}
#TopPage main + .pc_n aside dd li:nth-child(2) a::before {
  background-image: url("../img/icon_asthma.png");
}
#TopPage main + .pc_n aside dd li:nth-child(3) a::before {
  background-image: url("../img/icon_copd.png");
}
#TopPage main + .pc_n aside dd li:nth-child(4) a::before {
  background-image: url("../img/icon_pneumonia.png");
}
#TopPage main + .pc_n aside dd li:nth-child(5) a::before {
  background-image: url("../img/icon_sas.png");
}
#TopPage main + .pc_n aside dd li:nth-child(6) a::before {
  background-image: url("../img/icon_allergy.png");
}
#TopPage main + .pc_n aside dd li:nth-child(7) a::before {
  background-image: url("../img/icon_internal.png");
}
#TopPage main + .pc_n aside dd li:nth-child(8) a::before {
  background-image: url("../img/icon_cancer.png");
}
#TopPage main + .pc_n aside dd li:nth-child(9) a::before {
  background-image: url("../img/icon_lung.png");
}
#TopPage main + .pc_n aside dd li:nth-child(10) a::before {
  background-image: url("../img/icon_checkup.png");
}
#TopPage main + .pc_n aside dd li:nth-child(11) a::before {
  background-image: url("../img/icon_prevention.png");
}

@media screen and (min-width: 48em), print {
  #TopPage #kv {
    height: 73.8rem;
    background-position: top center;
    background-size: 144rem 73.8rem;
    max-width: none;
    margin: 0 auto;
    min-width: 120rem;
    overflow: hidden;
  }
  #TopPage #kv > .wrap {
    margin: 0 auto;
    position: relative;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #TopPage #kv .kv_txt {
    max-width: none;
    margin: 0 auto;
    padding-top: 30rem;
  }
  #TopPage #kv .kv_txt dt {
    font-size: 4.8rem;
    margin-bottom: 2rem;
  }
  #TopPage #kv .kv_txt dd {
    font-size: 3rem;
  }
  #TopPage #news {
    padding: 8.5rem 0;
  }
  #TopPage #news .wrap {
    margin: 3rem auto;
    width: 100rem;
  }
  #TopPage #news .wrap._bnrarea {
    margin: 0 auto;
  }
  #TopPage #news .wrap._bnrarea .bnr_recruit {
    width: 550px;
    margin: 0 auto;
    background: url("../img/recruit_bnr_bg.jpg") center left/contain no-repeat #fff;
    padding: 3rem 2rem 3rem 17%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  #TopPage #news .wrap._bnrarea .bnr_recruit p {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
  }
  #TopPage #news .wrap._bnrarea .bnr_recruit p span {
    display: block;
    font-size: 2.3rem;
    margin-bottom: 0.6rem;
  }
  #TopPage #news dl {
    margin: 0;
    margin: 4rem 8rem;
  }
  #TopPage #news dl dt {
    font-size: 2rem;
    margin: 0 0 1.5rem;
  }
  #TopPage #news dl dd {
    margin: 0 0 3rem;
  }
  #TopPage #greeting {
    width: 86rem;
    margin-bottom: 10rem;
  }
  #TopPage #greeting .flex_RLTB {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #TopPage #greeting p.txt_r {
    margin-top: 5rem;
  }
  #TopPage #greeting p.txt_r a.btn {
    margin-top: 3rem;
  }
  #TopPage > main {
    width: 100%;
  }
  #TopPage main section {
    position: relative;
  }
  #TopPage main #covid {
    width: 80rem;
    margin: 8rem auto 10rem;
  }
  #TopPage main #covid dl dt {
    font-size: 3rem;
  }
  #TopPage main #covid dl dd {
    padding: 2.5rem 2.5rem 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #TopPage main #covid dl dd ul {
    width: 53rem;
    margin-bottom: 0;
  }
  #TopPage main #covid dl dd ul li {
    width: 12.3rem;
    height: 12.6rem;
    margin-bottom: 0;
  }
  #TopPage main #covid dl dd img {
    width: 12.3rem;
  }
  #TopPage main #features, #TopPage main #initiative {
    padding: 5rem 0 1rem;
  }
  #TopPage main #features ul li, #TopPage main #initiative ul li {
    width: 56rem;
    margin: 0 0 7rem;
  }
  #TopPage main #features ul li dl dt, #TopPage main #initiative ul li dl dt {
    width: 42rem;
    padding: 2rem 0;
    margin-top: -4.8rem;
    font-size: 2.6rem;
    border-radius: 4.2rem;
  }
  #TopPage main #features ul li dl dd, #TopPage main #initiative ul li dl dd {
    margin: 3rem;
  }
  #TopPage main #initiative {
    padding-bottom: 12rem;
  }
  #TopPage main #referrals .wrap {
    margin: 5rem auto 0;
    padding: 3rem;
  }
  #TopPage main #referrals .wrap .inner {
    padding: 0.1rem 5rem 2rem;
  }
  #TopPage main #referrals .wrap .inner h3 {
    font-size: 3.2rem;
    margin: 4rem 0 4.5rem;
    min-height: 5rem;
  }
  #TopPage main #referrals .wrap .inner h3 > span {
    max-width: calc(100% - 10rem);
    margin: 0 2rem;
  }
  #TopPage main #referrals .wrap .inner h3::before {
    width: 2.5rem;
    height: 5rem;
  }
  #TopPage main #referrals .wrap .inner h3::after {
    width: 2.9rem;
    height: 4rem;
  }
  #TopPage main #referrals .wrap .inner ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #TopPage main #referrals .wrap .inner ul li {
    width: 33%;
    margin-bottom: 1.5rem;
  }
  #TopPage #overview {
    margin-top: 0;
  }
}
/* lower  -------------------------------------- */
#lower .tbl_def {
  border: 0.1rem solid #A2D6CA;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}
#lower .tbl_def caption {
  caption-side: bottom;
  text-align: left;
  padding: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
#lower .tbl_def thead {
  background: #A2D6CA;
  color: #fff;
}
#lower .tbl_def thead th, #lower .tbl_def thead td {
  padding: 0.7rem 0;
  font-weight: normal;
}
#lower .tbl_def tbody {
  background: #fff;
}
#lower .tbl_def tbody th, #lower .tbl_def tbody td {
  padding: 0.7rem 0.5rem;
  vertical-align: middle;
  font-weight: normal;
  border-right: 0.1rem solid #A2D6CA;
}
#lower .tbl_def tbody th {
  background: #e6f4f1;
}
#lower .tbl_def tbody tr {
  border-bottom: 0.1rem solid #A2D6CA;
}
#lower .tbl_def tbody tr td:last-child {
  border-right: none;
}
#lower .tbl_price {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto 1rem;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
  border: 0.1rem solid #D6F046;
}
#lower .tbl_price th, #lower .tbl_price td {
  padding: 0.5rem;
}
#lower .tbl_price th {
  text-align: left;
}
#lower .tbl_price td {
  width: 9em;
  text-align: right;
}
#lower .tbl_price tr:nth-child(even) {
  background: #f8efe7;
}
#lower sub {
  font-size: 75.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}
#lower #clinic ul.flex_LRTB.half li {
  margin-bottom: 2rem;
}
#lower #clinic ul.flex_LRTB.half p, #lower #clinic ul.flex_LRTB.half dt {
  text-align: center;
  font-weight: bold;
  color: #60370F;
  font-size: large;
}
#lower #clinic #motto {
  background: url("../img/motto_bg.png") no-repeat center center;
  background-size: 80% auto;
}
#lower #clinic #motto dl dt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #60370F;
  margin-bottom: 1rem;
}
#lower #clinic #motto dl dd {
  margin-bottom: 3rem;
}
#lower #doctor h2 {
  display: none;
}
#lower #doctor h2 + section {
  margin-top: 0;
}
#lower #doctor h2 + section h3 {
  margin-top: 0;
}
#lower #doctor .btn {
  width: 20rem;
}
#lower #doctor .btn::after {
  content: "\f13a";
}
#lower .dl_accordion dt {
  color: #60370F;
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.8rem;
}
#lower .dl_accordion dt::before {
  position: absolute;
  left: 0;
  content: "\f13a";
  font-family: fontello;
  width: 1em;
  text-align: center;
  color: #D6F046;
}
#lower .dl_accordion dt.close::before {
  content: "\f139";
}
#lower .dl_accordion dd {
  margin-bottom: 2rem;
  display: none;
}
#lower .mw_40 {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
#lower .mw_50 {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
#lower .mw_60 {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
#lower .mw_70 {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
#lower .mw_75 {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 48em), print {
  #lower main .tbl_time {
    margin: 0 auto;
  }
  #lower .tbl_def caption {
    padding: 0.5rem 0 0;
  }
  #lower .tbl_def thead th {
    padding: 1.5rem;
  }
  #lower .tbl_def tbody th {
    padding: 1.5rem;
    font-weight: normal;
  }
  #lower .tbl_def tbody td {
    padding: 1.5rem;
  }
  #lower #doctor .flex_RLTB.half {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #lower #clinic #motto {
    background-size: auto;
  }
  #lower #clinic #motto dl dt {
    font-size: 2.4rem;
  }
  #lower #clinic ul.flex_LRTB.half li:first-child {
    width: 100%;
    margin-bottom: 7rem;
  }
  #lower #clinic ul.flex_LRTB.half li:first-child img {
    width: 41.3rem;
  }
  #lower #clinic ul.flex_LRTB.half li:first-child dl {
    margin: 0 0 0 2rem;
  }
  #lower #clinic ul.flex_LRTB.half li:first-child dl dt {
    text-align: left;
  }
  #lower dl.dl_accordion dt {
    font-size: 2rem;
    margin: 0 0 1.5rem;
  }
  #lower dl.dl_accordion dd {
    margin: 0 0 3rem;
  }
}/*# sourceMappingURL=style.css.map */