/***************************************************************
全体
***************************************************************/
/*--------------------------------------------------------------
フォント
--------------------------------------------------------------*/
body
{
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #505050;
  animation: fadeIn 15s ease 0s 1 normal;
  -webkit-animation: fadeIn 15s ease 0s 1 normal;
  line-height: 1.7;
}
p {
  line-height: 1.7;
}
li {
  list-style: none;
}
/*--------------------------------------------------------------
フェードイン
--------------------------------------------------------------*/
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
/*--------------------------------------------------------------
リンク
--------------------------------------------------------------*/
a
{
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}


/***************************************************************
ヘッダー
***************************************************************/
/*--------------------------------------------------------------
固定
--------------------------------------------------------------*/
header
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1600px;
  height: 51px;
  margin: 0 auto;
  background: #009885;
  box-sizing: border-box;
  z-index: 3;
}
/*--------------------------------------------------------------
パソコン用
--------------------------------------------------------------*/
/* 基本情報
--------------------------------------------------------------*/
/*テーブル*/
header #pc .basic-info
{
  display: none;
}
/*ロゴ*/
header #pc .basic-info .logo
{
  display: none;
}
header #pc .basic-info .logo h1 a
{
  display: none;
}
/*住所&電話番号*/
header #pc .basic-info .address-phone
{
  display: none;
}
header #pc .basic-info .address-phone p:nth-of-type(1)
{
  display: none;
}
header #pc .basic-info .address-phone p:nth-of-type(2)
{
  display: none;
}
header #pc .basic-info .address-phone p:nth-of-type(2) i
{
  display: none;
}
/*診療時間*/
header #pc .basic-info .time
{
  display: none;
}
header #pc .basic-info .time p:nth-of-type(1)
{
  display: none;
}
header #pc .basic-info .time p:nth-of-type(2)
{
  display: none;
}
/* グローバルナビゲーション
--------------------------------------------------------------*/
/*ドロップダウンメニュー（参照：https://theorthodoxworks.com/web-design/drop-down-menu-multi-css/）*/
header #pc .nav .menu
{
  display: none;
}
header #pc .nav .menu > li
{
  display: none;
}
header #pc .nav .menu > li:nth-of-type(n+2)
{
  display: none;
}
header #pc .nav .menu > li a
{
  display: none;
}
header #pc .nav .menu > li a:hover
{
  display: none;
}
header #pc .nav .menu > li a span
{
  display: none;
}
header #pc .nav .menu > li a:hover span
{
  display: none;
}
header #pc .nav ul.menu__second-level
{
  display: none;
}
header #pc .nav ul.menu__third-level
{
  display: none;
}
header #pc .nav ul.menu__fourth-level
{
  display: none;
}
header #pc .nav .menu > li:hover
{
  display: none;
}
/*floatクリア*/
header #pc .nav .menu:before,
header #pc .nav .menu:after
{
  display: none;
}
header #pc .nav .menu:after
{
  display: none;
}
header #pc .nav .menu
{
  display: none;
}
/*シングルメニュー*/
header #pc .nav .menu > li.menu__single
{
  display: none;
}
header #pc .nav li.menu__single ul.menu__second-level
{
  display: none;
}
header #pc .nav li.menu__single ul.menu__second-level li
{
  display: none;
}
header #pc .nav li.menu__single:hover ul.menu__second-level
{
  display: none;
}
/*--------------------------------------------------------------
タブレット&スマートフォン用
--------------------------------------------------------------*/
/* 背景
--------------------------------------------------------------*/
header #sp
{
  border-color: #ccc;
  border-style: solid;
  border-width: 0 0 1px 0;
  z-index: 100;
}
/* オープン時
--------------------------------------------------------------*/
header #sp nav.global_menu ul
{
  display: table;
  width: 95%;
  margin: 0 auto;
  padding: 5px 0;
  box-sizing: border-box;
}
/*ロゴ*/
header #sp nav.global_menu ul li:nth-of-type(1)
{
  display: table-cell;
  width: 80%;
  vertical-align: middle;
}
header #sp nav.global_menu ul li:nth-of-type(1) a
{
  display: inline-block;
  color: #FFF;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
  text-decoration: none;
}
/*トグル*/
header #sp nav.global_menu ul li:nth-of-type(2)
{
  display: table-cell;
  width: 20%;
  vertical-align: middle;
  text-align: right;
}
header #sp nav.global_menu ul li:nth-of-type(2) a
{
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 5px;
  background: #FBC500;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  line-height: 0;
}
/* クローズ時
--------------------------------------------------------------*/
/*領域*/
header #sp #category_list
{
  display: none;
  width: 100%;
  padding: 20px 10px;
  z-index: 999;
  position: fixed;
  top: 0px;
  left: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255,255,255,0.9);
}
/*グローバルナビゲーション*/
header #sp #category_list ul.globalnavi
{
  font-size: 0;
  list-style-type: none;
  box-sizing: border-box;
}
header #sp #category_list ul.globalnavi li
{
  display: inline-block;
  width: 49%;
  vertical-align: top;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #666;
}
header #sp #category_list ul.globalnavi li:nth-of-type(even)
{
  margin-left: .5%;
}
header #sp #category_list ul.globalnavi li:nth-of-type(odd)
{
  margin-right: .5%;
}
header #sp #category_list ul.globalnavi li:nth-of-type(n+3)
{
  margin-top: 20px;
}
header #sp #category_list ul.globalnavi li a
{
  color: #59493f;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  display: block;
  padding: 15px 0;
}
/*閉じる*/
header #sp p.list_close
{
  width: 45%;
  margin: 20px auto 0 auto;
  padding: 5px;
  background: #FBC500;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}


/***************************************************************
フッター
***************************************************************/
/*--------------------------------------------------------------
余白
--------------------------------------------------------------*/
footer
{
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  padding: 20px 0 20px 0;
  background: #749393;
  border-color: #D3D3D3;
  border-style: dashed;
  border-width: 1px 0 0 0;
}
/*--------------------------------------------------------------
店舗情報&グーグルマップ
--------------------------------------------------------------*/
/* テーブル
--------------------------------------------------------------*/
footer #menu-map
{
  display: block;
  width: 99%;
  box-sizing: border-box;
  margin: 0 auto;
}
/* 店舗情報
--------------------------------------------------------------*/
footer #menu-map .menu
{
  display: block;
  padding: 0 10px;
  box-sizing: border-box;
}
footer #menu-map .menu h2
{
  margin: 0 0 20px 0;
  background: url("/image.php?id=15");
  background-repeat: no-repeat;
  background-size: 40px 42px;
  background-position:  0;
  color: #5d5d5d;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
  line-height: 40px;
}
footer #menu-map .menu p
{
  color: #59493f;
  font-size: 14px;
  letter-spacing: 2px;
}
footer #menu-map .menu p:nth-of-type(n+2)
{
  margin: 10px 0 0 0;
}

footer #menu-map .menu table
{
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0 0 0;
}
footer #menu-map .menu table tbody
{
  width: 100%;
  box-sizing: border-box;
}
footer #menu-map .menu table tbody tr
{
  width: 100%;
  box-sizing: border-box;
}
footer #menu-map .menu table tbody tr:nth-of-type(n+2)
{
  background: #fff;
}
footer #menu-map .menu table tbody tr th
{
  padding: 5px;
  border-color: rgb(255, 255, 204);
  border-style: solid;
  border-width: 1px;
  font-size: 14px;
  letter-spacing: 2px;
}
footer #menu-map .menu table tbody tr:nth-of-type(1) th
{
  background: rgb(255, 255, 204);
  color: rgb(102, 102, 153);
}
footer #menu-map .menu table tbody tr:nth-of-type(n+2) th
{
  color: rgb(102, 102, 153);
}
footer #menu-map .menu table tbody tr td
{
  padding: 5px;
  border-color: rgb(255, 255, 204);
  border-style: solid;
  border-width: 1px;
  color: rgb(102, 102, 153);
  font-size: 14px;
  text-align: center;
}
/* グーグルマップ
--------------------------------------------------------------*/
footer #menu-map .map
{
  display: block;
  margin: 20px 0 0 0;
}
footer #menu-map .map iframe
{
  width: 100%;
  height: 250px;
}
/*--------------------------------------------------------------
グローバルナビゲーション&著作権
--------------------------------------------------------------*/
/* テーブル
--------------------------------------------------------------*/
footer #menu-copyright
{
  display: block;
  width: 99%;
  box-sizing: border-box;
  margin: 20px auto 0 auto;
}
/* グローバルナビゲーション
--------------------------------------------------------------*/
footer #menu-copyright .menu
{
  display: none;
}
footer #menu-copyright .menu a
{
  display: none;
}
footer #menu-copyright .menu a:nth-of-type(n+2)
{
  display: none;
}
footer #menu-copyright .menu a:hover
{
  display: none;
}
/* 著作権
--------------------------------------------------------------*/
footer #menu-copyright .copyright
{
  display: block;
}
footer #menu-copyright .copyright p
{
  color: #5d5d5d;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: center;
}
/*--------------------------------------------------------------
ページトップへ戻る
--------------------------------------------------------------*/
/* 固定位置
--------------------------------------------------------------*/
footer #page-top
{
  position: fixed;
  bottom: 5px;
  right: 5px;
}
/*--------------------------------------------------------------
リンク
--------------------------------------------------------------*/
footer #page-top a
{
  text-decoration: none;
}
footer #page-top a i
{
  display: inline-block;
  padding: 10px;
  background: #fff;
  border: solid 2px #FBC500;
  color: #FBC500;
  font-size: 30px;
  text-align: center;
}