@charset "UTF-8";
/* TOP CSS */
/* --------------------------------------
Base settings
---------------------------------------*/
.pc-hyde {
  display: block;
}

.sp-hyde {
  display: none;
}

.wrapper {
  max-width: 100%;
  padding: 0 20px;
}

.bottom30 {
  margin-bottom: 15px;
}

.bottom40 {
  margin-bottom: 20px;
}

.bottom50 {
  margin-bottom: 25px;
}

.bottom60 {
  margin-bottom: 30px;
}

.bottom70 {
  margin-bottom: 35px;
}

.bottom80 {
  margin-bottom: 40px;
}

.conts-padding {
  padding: 30px 0;
}

.heading-bottom-line h2 {
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

table {
  width: 100%;
}
table tr th,
table tr td {
  font-size: 14px;
}
table tr th {
  padding: 10px 15px;
}

/* ==============================
Header
============================== */
header {
  padding-top: 20px;
  position: relative;
  /**************** 以下、ハンバーガーボタンのスタイリング ****************/
  /***** 真ん中のバーガー線 *****/
  /***** 上下のバーガー線 *****/
  /***** メニューオープン時 *****/
  /**************** ここまで、ハンバーガーボタンのスタイリング ****************/
}
header .flexbox {
  justify-content: space-between;
}
header .flexbox.flex-wrap {
  display: flex;
  flex-direction: column;
}
header .flexbox .logo.pc-hyde {
  order: 2;
  display: flex;
  width: 100%;
  max-width: 400px;
}
header .flexbox .item {
  order: 1;
  display: flex;
}
header .flexbox .logo {
  width: 120px;
}
header .flexbox .logo img {
  width: 100%;
}
header .flexbox .item h1 {
  font-size: 11px;
  width: calc(100% - 50px);
}
header .flexbox .item nav .gnav {
  text-align: center;
  overflow: auto;
  z-index: 5;
  position: fixed;
  /* メニューの位置マイナス指定で画面外に */
  top: -150%;
  width: 100%;
  /* メニューを縦に */
  display: flex;
  color: #666;
  background-color: #f0fcff;
  transition: 0.3s;
  padding: 30px 15px;
  flex-wrap: wrap;
}
header .flexbox .item nav .gnav .logo {
  display: block;
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
  max-width: 400px;
}
header .flexbox .item nav .gnav .gnav-conts {
  margin-right: 0px;
  margin-bottom: 1%;
  width: 49.5%;
  height: auto;
}
header .flexbox .item nav .gnav .gnav-conts a {
  padding: 15px;
  pointer-events: none;
  background: #fff;
  width: 100%;
  display: inline-block;
}
header .flexbox .item nav .gnav .gnav-conts a .icon {
  width: 40px;
  height: auto;
  margin: 0 auto 10px;
}
header .flexbox .item nav .gnav .gnav-conts a .text {
  font-weight: bold;
  font-size: 15px;
}
header .flexbox .item nav .gnav .sns {
  display: flex;
  position: absolute;
  bottom: 50px;
  width: auto;
  text-align: center;
  left: calc(50% - 60px);
}
header .flexbox .item nav .gnav .sns .inner {
  width: 50px;
  height: auto;
  margin: 0 5px;
}
header .flexbox .item nav .gnav.open {
  top: 0;
  position: fixed;
  right: 0;
}
header .hbtn {
  background: #00b7ff;
  border: 2px solid #fff;
  border-radius: 100px;
  /* ボタンの配置位置  */
  position: fixed;
  top: 16px;
  right: 16px;
  /* ボタンの大きさ  */
  width: 40px;
  height: 40px;
  /* バーガーの線をボタン範囲の中心に配置 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 最前面に */
  z-index: 10;
}
header .btn-line {
  /* 線の長さと高さ */
  width: 50%;
  height: 2px;
  /* バーガー線の色 */
  background-color: #fff;
  /* バーガー線の位置基準として設定 */
  position: relative;
  transition: 0.2s;
}
header .btn-line::before,
header .btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: #fff;
  transition: 0.2s;
}
header .btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-8px);
}
header .btn-line::after {
  /* 下の線の位置 */
  transform: translateY(8px);
}
header .btn.open {
  transform: rotate(180deg);
}
header .btn-line.open {
  /* 真ん中の線を透明に */
  background-color: transparent;
}
header .btn-line.open::before,
header .btn-line.open::after {
  content: "";
  /* 上下の線の色を変える */
  background-color: #fff;
  transition: 0.2s;
}
header .btn-line.open::before {
  /* 上の線を傾ける */
  transform: rotate(135deg);
}
header .btn-line.open::after {
  /* 上の線を傾ける */
  transform: rotate(-135deg);
}

/* ==============================
Mainvisual
============================== */
.mainvisual:after {
  height: 50px;
  bottom: -16px;
}
.mainvisual .mv-pop {
  padding: 60px 0 50px;
  width: 100%;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

/* ==============================
導入
============================== */
.introduction {
  position: relative;
}
.introduction .heading {
  font-size: 20px;
}
.introduction .conts-padding {
  padding-top: 30px;
}
.introduction .forChildren {
  padding: 90px 20px 30px;
}

/* ==============================
診療時間
============================== */
.time-table .conts-padding {
  padding-top: 30px;
}
.time-table table thead th {
  padding: 10px;
}
.time-table table tbody th {
  width: auto;
}
.time-table table tbody td {
  width: 50%;
}

/* ==============================
クリニック情報
============================== */
.clinic-data:after {
  height: 50px;
  bottom: -16px;
}
.clinic-data table tbody tr th,
.clinic-data table tbody tr td {
  border-bottom: 2px solid #f6f6f6;
  border-right: 2px solid #f6f6f6;
  display: block;
}
.clinic-data table tbody tr td {
  background: #fff;
  font-weight: bold;
  padding: 10px 15px;
}

/* ==============================
メッセージ
============================== */
.message {
  position: relative;
}
.message .conts-padding {
  padding-bottom: 60px;
}

/* ==============================
footer
============================== */
footer {
  text-align: center;
}
footer:after {
  top: -32px;
}
footer .conts-padding {
  padding: 15px 0 30px;
}
footer .logo {
  max-width: 400px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
footer .text {
  font-size: 13px;
}
footer .sns {
  justify-content: center;
}
footer .sns a {
  margin: 0 5px;
}
footer .sns a img {
  width: 40px;
  height: auto;
}
footer .copylight {
  color: #fff;
  font-size: 11px;
  padding: 15px;
}/*# sourceMappingURL=sp-layout.css.map */