@charset "UTF-8";
/* ----------------------------------------------------------------------------------
リセット　_reset.scss
---------------------------------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ----------------------------------------------------------------------------------
モジュール　_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;
}

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}
*[class*=frame_].frame_01 {
  background: #FBF6EF;
}
*[class*=frame_].frame_02 {
  background: #F4F8EB;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 2.4rem 2rem 2rem;
    margin-bottom: 3rem;
  }
}

/* 診療内容ページ冒頭にあるリード文 -------------------------------------- */
.catch_txt {
  color: #555;
  font-weight: bold;
  font-size: 110%;
  text-align: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid #F5C666;
  background: #fff7d6;
  border-radius: 7px;
}
.catch_txt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(255, 255, 255, 0)), color-stop(60%, #ffe5c7));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #ffe5c7 60%);
}

@media screen and (min-width: 48em), print {
  .catch_txt {
    width: 60%;
    font-size: 120%;
    letter-spacing: 0.2rem;
    border: 3px solid #F5C666;
    padding: 1.6rem 0.4rem;
    margin: 4rem auto 8rem;
  }
}
/* 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;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
/* マージン・パディング回り -------------------------------------- */
.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.main > section ~ section, .flex2 > section ~ section {
  margin-top: 4rem;
}

.main > section section ~ section, .flex2 > section section ~ section {
  margin-top: 3rem;
}

.main > section > section section ~ section, .flex2 > section > section section ~ section {
  margin-top: 2rem;
}

.main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section, .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section, .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption > span {
  display: block;
}
.tbl_time caption > span .clr_orange {
  color: #F7B52C;
}
.tbl_time tr th {
  font-weight: bold;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: #F7B52C;
  font-size: 1.2rem;
  color: #fff;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  background: none;
  border-bottom: 1px solid #D9D9D9;
  line-height: 1.2;
  padding: 0.4rem 0;
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: none;
  border-bottom: 1px solid #D9D9D9;
  line-height: 1;
  color: #F7B52C;
}
.tbl_time tr td.close {
  color: #C8C1BD;
}
.tbl_time tr.t_internal td {
  color: #8DC21F;
}
.tbl_time tr.t_vaccination td {
  color: #62AFE2;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.6rem;
  }
  .tbl_time caption {
    padding: 1.2rem 0 0 1.4rem;
  }
  .tbl_time caption > span {
    font-size: 1.7rem;
    display: inline-block;
  }
  .tbl_time caption > span ~ span {
    margin-left: 1.2rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.6rem 0;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr th.time {
    font-size: 1.6rem;
    padding: 1.3rem 0;
    line-height: 1.4;
  }
  .tbl_time tr td {
    font-size: 1.4rem;
  }
  .tbl_time tr td .star {
    font-size: 1.8rem;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center/cover;
  font-size: 2.2rem;
  text-align: center;
  text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 6px #fff, 0 0 6px #fff, 0 0 6px #fff, 0 0 6px #fff, 0 0 6px #fff;
  font-weight: bold;
  color: #575757;
  min-height: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0 0 3rem;
}

.tit_02 {
  color: #575757;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 2rem;
  padding: 2rem 0 0;
  line-height: 1.2;
  position: relative;
}
.tit_02::before {
  content: "\ea3e";
  color: #F7B52C;
  font-family: "fontello";
  line-height: 1;
  font-size: 4rem;
  font-weight: normal;
  margin: 0 auto 0;
  display: block;
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
}
.tit_02 span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #F7B52C;
}

.tit_03 {
  color: #fff;
  background: #F5C666;
  border-radius: 6px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0.6rem 1.2rem;
}

.tit_04 {
  color: #575757;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-indent: -1.8rem;
  padding: 0 0 0.4rem 1.6rem;
  margin: 0 0 2rem;
  border-bottom: 3px dotted #C1C1C1;
}
.tit_04::before {
  content: "\e924";
  font-family: "fontello";
  font-weight: normal;
  font-size: 1.4rem;
  color: #8DC21F;
  margin-right: 0.4rem;
  position: relative;
  bottom: 0.2rem;
}
.tit_04.circle_none {
  padding: 0 0 0.4rem;
  text-indent: 0;
}
.tit_04.circle_none::before {
  content: none;
}

.tit_05 {
  color: #575757;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0 0 0 0.8rem;
  margin: 0 0 2rem;
  position: relative;
}
.tit_05::before {
  content: "";
  height: 100%;
  width: 0.4rem;
  background: #A7CCE5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.tit_05::after {
  content: "";
  display: block;
  background: #c1c1c1;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat right top/auto 100%;
    font-size: 3.2rem;
    height: 20rem;
    margin: 0 0 1rem;
  }
  .tit_02 {
    font-size: 3rem;
    padding: 4rem 0 0;
    margin: 0 0 4.4rem;
  }
  .tit_02::before {
    font-size: 11.6rem;
    top: -1.6rem;
    line-height: 0.4;
  }
  .tit_02 span {
    font-size: 1.7rem;
    margin: 0.6rem 0 0;
  }
  body:not(.index) .tit_02 {
    margin: 0 0 3rem;
  }
  .tit_03 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    padding: 0.96rem 1.8rem;
    margin: 0 0 2rem;
  }
  .tit_04 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    text-indent: -2.6rem;
    margin: 0 0 2rem;
    padding: 0 0 0.8rem 2.4rem;
  }
  .tit_04::before {
    font-size: 2rem;
    bottom: 0;
  }
  .tit_04.circle_none {
    padding: 0 0 0.8rem;
  }
  .tit_05 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    margin: 0 0 3rem;
    padding: 0 0 0 1.6rem;
  }
  .tit_05::before {
    width: 0.6rem;
  }
  .tit_05::after {
    bottom: -1rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  text-indent: -1.8rem;
  padding-left: 2.2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
.lst_ul01 li::before {
  content: "●";
  margin-right: 0.4rem;
  color: #F7B52C;
}
.lst_ul01 li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_ul01.flex li {
    width: 49%;
  }
}

.lst_ol01 {
  margin: 1rem 0 1rem 2.6rem;
}
@media screen and (min-width: 48em), print {
  .lst_ol01 {
    margin: 1rem 0 1rem 3rem;
  }
}
.lst_ol01 li {
  line-height: 1.4;
  counter-increment: number 1;
  text-indent: -1rem;
  padding: 0 0 1rem 0;
}
.lst_ol01 li::before {
  display: inline-block;
  content: counter(number) ".";
  margin-right: 0.8rem;
  font-family: "Lato", sans-serif;
  color: clr_blue;
  font-weight: bold;
}

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 dt {
    float: left;
    width: 6rem;
    clear: left;
  }
  .lst_dl01 dd {
    margin: 0 0 0.6rem;
    padding-left: 6.4rem;
  }
}
.dl_treatment01 dt {
  font-weight: bold;
  margin: 0 0 0.4rem;
  padding: 0;
}
.dl_treatment01 dd {
  margin: 0 0 1rem;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .dl_treatment01 dt {
    margin: 0 0 0.6rem;
  }
  .dl_treatment01 dd {
    margin: 0 0 2rem;
  }
}
/* フレックス回り -------------------------------------- */
.flex3 {
  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;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    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;
  }
  .flex2 > section, .flex2 > li {
    width: 48%;
    margin: 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
}
*[class*=btn_] a {
  background: #F7B52C;
  color: #fff;
  text-align: center;
  padding: 0.6rem 3rem;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] a {
    min-width: 32rem;
    padding: 1.2rem 3rem;
    border-radius: 30px;
  }
}
*[class*=btn_] a::after {
  content: "c";
  font-family: "fontello";
  position: absolute;
  right: 1rem;
  top: 48%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] a::after {
    right: 1.7rem;
  }
}

/* テーブル -------------------------------------- */
.tbl_01 {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_01 tr th {
  width: 30%;
  background: #FBF6EF;
  text-align: center;
  font-weight: bold;
  border: 1px solid #D2D2D2;
}
.tbl_01 tr td {
  padding: 0.8rem;
  border: 1px solid #D2D2D2;
}

.tbl_access {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.2rem;
}
.tbl_access tr th {
  width: 37%;
  background: #d9edac;
  text-align: center;
  font-weight: normal;
  padding: 0.8rem;
}
.tbl_access tr td {
  padding: 0.8rem;
}

@media screen and (min-width: 48em), print {
  .tbl_access tr th {
    width: 30%;
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
html {
  font-size: 3.125vw;
  font-family: "游ゴシック", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

body {
  background: #fff;
  color: #575757;
}
body.fixed_scroll {
  width: 100%;
  position: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  padding: 0 1rem 0;
}

.main {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 0 0;
}
.main a:not([href*=tel]) {
  text-decoration: underline;
}
.main a[class*=btn_] {
  text-decoration: none;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1300px;
  }
  body > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 4.6rem auto 8rem;
  }
  a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.8rem;
    padding: 0 0 0;
    width: 100%;
  }
}
/* アイコンフォント -------------------------------------- */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
/* ヘッダー -------------------------------------- */
.header {
  border-top: 3px solid #F7B52C;
}
.header .wrap {
  margin: 1rem;
}
.header .wrap .logo {
  height: 4rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headR {
  margin: 0.8rem 0 0;
}
.header .wrap .headR .tel {
  display: inline-block;
  font-size: 2.2rem;
  color: #F7B52C;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.header .wrap .headR .tel::before {
  content: "\ea3d";
  font-family: "fontello";
  font-weight: normal;
  margin-right: 0.2rem;
}
.header .wrap .headR .tel a {
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .header {
    border-top: 10px solid #F7B52C;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 500;
    background: #fff;
  }
  .header .wrap {
    margin: 3.5rem auto 4.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .wrap .logo {
    width: 47.4rem;
    height: 11rem;
  }
  .header .wrap .headR {
    text-align: right;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1.8rem;
  }
  .header .wrap .headR .tel {
    font-size: 4.1rem;
    letter-spacing: 0.1rem;
  }
  .header .wrap .headR .tel::before {
    margin-right: 1rem;
  }
}
/* SP ドロップダウンメニュー（Slick Nav） -------------------------------------- */
.slicknav_menu {
  position: absolute;
  top: 1rem;
  right: 0;
  font-size: 4.4rem;
  display: inline-block;
  background: none;
  padding: 0;
  z-index: 10;
}
.slicknav_menu .slicknav_btn {
  width: 5rem;
  height: 5rem;
  color: #575757;
  background: #ffe5c7;
  text-shadow: none;
  border-radius: 0;
  text-align: center;
  line-height: 1;
  margin: 0 1rem;
  padding: 0;
  position: fixed;
  top: 1.4rem;
  right: 0.2rem;
  z-index: 20;
}
.slicknav_menu .slicknav_btn.slicknav_collapsed::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  line-height: 0.8;
}
.slicknav_menu .slicknav_btn.slicknav_collapsed::after {
  display: block;
  content: "MENU";
  font-size: 1rem;
}
.slicknav_menu .slicknav_btn.slicknav_open::before {
  display: block;
  font-family: "fontello";
  content: "\e803";
  line-height: 0.8;
}
.slicknav_menu .slicknav_btn.slicknav_open::after {
  display: block;
  content: "CLOSE";
  font-size: 1rem;
}
.slicknav_menu .slicknav_nav {
  width: 100vw;
  height: 120vh;
  border-top: 3px solid #F7B52C;
  background: #F9F7F7;
  padding: 7rem 1.6rem 20rem;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  margin: auto;
}
.slicknav_menu .slicknav_nav .gnav {
  margin: 0;
}
.slicknav_menu .slicknav_nav .gnav li {
  border-bottom: 1px solid #ddd;
}
.slicknav_menu .slicknav_nav .gnav li a {
  display: block;
  color: #222;
  font-weight: bold;
  padding: 1rem 0;
  margin: 0;
  font-size: 1.6rem;
  position: relative;
}
.slicknav_menu .slicknav_nav .gnav li a:not(.sub)::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-family: "fontello";
  content: "c";
  color: #F7B52C;
  font-size: 2rem;
}
.slicknav_menu .slicknav_nav .gnav li a:hover {
  background: none;
}
.slicknav_menu .slicknav_nav .gnav li.slicknav_parent a.slicknav_item {
  padding: 0;
}
.slicknav_menu .slicknav_nav .gnav li.slicknav_parent ul li:last-child {
  border: none;
}
.slicknav_menu .slicknav_nav .gnav li.slicknav_open > a.slicknav_item .sub::after {
  font-family: "fontello";
  content: "\e804";
}
.slicknav_menu .slicknav_nav .sp_menu {
  display: block;
  font-size: 1.6rem;
  margin: 3rem 0 0;
}
.slicknav_menu .slicknav_nav .sp_menu p {
  color: #222;
  margin: 0 0 0.6rem;
  font-weight: bold;
}
.slicknav_menu .slicknav_nav .sp_menu ul {
  margin: 0;
  padding: 0;
}
.slicknav_menu .slicknav_nav .sp_menu ul li a {
  padding: 1rem 1.6rem;
  margin: 0 0 0.8rem;
  color: #222;
  font-weight: bold;
  position: relative;
}
.slicknav_menu .slicknav_nav .sp_menu ul li a::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-family: "fontello";
  content: "c";
  font-size: 2rem;
}
.slicknav_menu .slicknav_nav .sp_menu ul li a.otorhinolaryngology {
  background: #EEF6FB;
  border: 2px solid #C2D9E9;
  border-radius: 7px;
}
.slicknav_menu .slicknav_nav .sp_menu ul li a.otorhinolaryngology::after {
  color: #C2D9E9;
}
.slicknav_menu .slicknav_nav .sp_menu ul li a.internal {
  background: #EFF3E6;
  border: 2px solid #D1E1B1;
  border-radius: 7px;
}
.slicknav_menu .slicknav_nav .sp_menu ul li a.internal::after {
  color: #D1E1B1;
}
.slicknav_menu .slicknav_nav .sp_menu ul li a.vaccination {
  background: #F9F0DC;
  border: 2px solid #EED092;
  border-radius: 7px;
}
.slicknav_menu .slicknav_nav .sp_menu ul li a.vaccination::after {
  color: #EED092;
}
.slicknav_menu .slicknav_icon, .slicknav_menu .slicknav_icon-bar, .slicknav_menu .slicknav_arrow, .slicknav_menu .slicknav_row:after {
  display: none !important;
}

#nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .slicknav_menu {
    display: none;
  }
  #nav {
    display: block;
    background: #F9F7F7;
    padding: 2rem 0;
  }
  #nav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #nav .gnav li {
    width: 16.6666666667%;
    text-align: center;
    position: relative;
  }
  #nav .gnav li::before, #nav .gnav li:first-child::after {
    content: "";
    display: block;
    width: 0.2rem;
    height: 100%;
    background: #E3E3E3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #nav .gnav li::before {
    right: 0;
  }
  #nav .gnav li:first-child::after {
    left: 0;
  }
  #nav .gnav li a {
    display: inline-block;
    text-align: center;
    padding: 3rem 0 0;
    font-weight: bold;
    font-size: 1.6rem;
    position: relative;
  }
  #nav .gnav li a::before {
    font-family: "fontello";
    color: #F7B52C;
    margin: auto;
    font-size: 2.5rem;
    font-weight: normal;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  #nav .gnav li a.home::before {
    content: "\ea36";
  }
  #nav .gnav li a.doctor::before {
    content: "\ea37";
  }
  #nav .gnav li a.treatment::before {
    content: "\ea38";
  }
  #nav .gnav li a.exam::before {
    content: "\ea39";
  }
  #nav .gnav li a.clinic::before {
    content: "\ea3a";
  }
  #nav .gnav li a.access::before {
    content: "\ea3b";
  }
  #nav .gnav li a::after {
    content: "";
    background: #F7B52C;
    width: 120%;
    height: 0.2rem;
    display: block;
    position: absolute;
    bottom: -0.6rem;
    left: -10%;
    right: 0;
    margin: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  #nav .gnav li a:hover {
    opacity: 1;
  }
  #nav .gnav li a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  #nav .sp_menu {
    display: none;
  }
  /* Gナビ　ハイライト */
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 0 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: url("../img/overview_bg01.jpg") center/20rem auto;
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  font-size: 1.4rem;
  border-collapse: collapse;
}
.overview > .wrap .overviewL .tbl_gaiyo th {
  width: 24%;
  vertical-align: top;
  padding: 0.2rem 0 0;
}
.overview > .wrap .overviewL .tbl_gaiyo th span {
  display: block;
  width: 100%;
  background: #F7B52C;
  border-radius: 6px;
  text-align: center;
  padding: 0.2rem 0.4rem;
  font-weight: bold;
  color: #fff;
}
.overview > .wrap .overviewL .tbl_gaiyo td {
  padding: 0.5rem 0.4rem 0.4rem 0.4rem;
}
.overview > .wrap .overviewL .tbl_gaiyo td dl {
  margin: 0;
  padding: 0;
}
.overview > .wrap .overviewL .tbl_gaiyo td dl dt {
  font-weight: bold;
  color: #F7B52C;
  border-bottom: 1px solid #F7B52C;
  margin: 0 0 0.4rem;
  padding: 0;
}
.overview > .wrap .overviewL .tbl_gaiyo td dl dd {
  margin: 0 0 0.6rem;
}
@media screen and (min-width: 48em), print {
  .overview > .wrap .overviewL .tbl_gaiyo td dl dd {
    margin: 0 0 1.2rem;
  }
}
.overview > .wrap .overviewL .tbl_gaiyo td dl dd {
  padding: 0;
}
.overview > .wrap .overviewL .tbl_gaiyo td dl dd p:first-child {
  margin: 0 0 1rem;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .gmap img {
  display: block;
  border: 3px solid #fff;
  border-radius: 10px;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 0 0;
    padding: 6rem 0;
    font-size: 1.8rem;
    background: url("../img/overview_bg01.jpg") center/auto auto;
  }
  .overview .clinic_name {
    margin: 0 0 5.6rem;
  }
  .overview .clinic_name img {
    max-width: 48rem;
  }
  .overview > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 55rem;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th {
    padding: 0 0 1.5rem;
    width: 10rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th span {
    font-size: 1.8rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td {
    vertical-align: top;
    font-size: 1.8rem;
    padding: 0.3rem 0 0 1.5rem;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    margin: 0;
  }
  .overview > .wrap .overviewR .gmap {
    margin: 0 0 4.5rem;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 10.2rem;
  right: 1.2rem;
  z-index: 1;
  cursor: pointer;
}
#pageup a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5rem;
  height: 5rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.4rem;
  background: #F7931D;
  border-radius: 50%;
}
#pageup a::before {
  text-align: center;
  font-size: 3.6rem;
  font-family: "fontello";
  padding: 0 0 0.5rem;
  content: "v";
  line-height: 1;
  color: #fff;
}

@media screen and (min-width: 48em), print {
  #pageup {
    bottom: 6rem;
    right: 3rem;
  }
  #pageup a {
    width: 5rem;
    height: 5rem;
  }
  #pageup a::before {
    font-size: 4rem;
  }
}
.tel_rsv {
  width: 100%;
  min-height: 3rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.4rem;
  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;
  text-align: center;
}
.tel_rsv .tel {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  color: #F7B52C;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.tel_rsv .tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  height: 100%;
}
.tel_rsv .tel a::before {
  content: "\ea3d";
  font-family: "fontello";
  font-weight: normal;
}
.tel_rsv .tel a .tel {
  width: 100%;
  margin: 0 0 0 0.5rem;
}
.tel_rsv .rsv {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tel_rsv .rsv a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  padding: 0 0.4rem;
  line-height: 1;
  background: #F7B52C;
  border-right: 1px solid #FFF;
}
.tel_rsv .rsv a::before {
  text-align: center;
  margin-right: 0.2rem;
  font-size: 2.4rem;
  font-weight: normal;
  font-family: "fontello";
  content: "\ea3c";
}
.tel_rsv .vaccination {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tel_rsv .vaccination a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  padding: 0 0.4rem;
  line-height: 1.2;
  background: #F7B52C;
  border-right: 1px solid #FFF;
}
.tel_rsv .vaccination a::before {
  text-align: center;
  margin-right: 0.2rem;
  font-size: 2rem;
  font-weight: normal;
  font-family: "fontello";
  content: "\e95d";
}
.tel_rsv .vaccination a.white {
  background: #ffffff;
  color: #F7B52C;
  font-weight: bold;
}
.tel_rsv .fullmist {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tel_rsv .fullmist a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 0 0.4rem;
  line-height: 1.2;
  background: #ffffff;
  color: #F7B52C;
  border-right: 1px solid #FFF;
}
.tel_rsv .fullmist a::before {
  text-align: center;
  margin-right: 0.2rem;
  font-size: 2.2rem;
  font-weight: normal;
  font-family: "fontello";
  content: "\ea4f";
}

@media screen and (min-width: 48em), print {
  .tel_rsv {
    display: none !important;
  }
  .tel_rsv .tel {
    display: none;
  }
  .tel_rsv .tel a {
    display: none;
  }
  .tel_rsv .rsv {
    display: none;
  }
  .tel_rsv .rsv a {
    display: none;
  }
}
.fixed_menu,
.fixed_menu02,
.fixed_menu03 {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 8rem;
    right: 0;
    z-index: 600;
    width: 5.7rem;
    height: 16.5rem;
    border-radius: 10px 0 0 10px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    background: #F7B52C;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
  .fixed_menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    /*            &::before{
                    content: "\ea3c";
                    font-family: "fontello";
                    margin-bottom: .8rem;
                    font-weight: normal;
                    font-size: 3rem;
                }*/
  }
  .fixed_menu02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 25.5rem;
    right: 0;
    z-index: 600;
    width: 5.7rem;
    height: 16rem;
    border-radius: 10px 0 0 10px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    background: #F7B52C;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
  .fixed_menu02 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    /*            &::before{
                    content: "\e95d";
                    font-family: "fontello";
                    margin-bottom: .8rem;
                    font-weight: normal;
                    font-size: 3rem;
                }*/
  }
  .fixed_menu03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 42.5rem;
    right: 0;
    z-index: 600;
    width: 5.7rem;
    height: 21.5rem;
    border-radius: 10px 0 0 10px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    background: #F7B52C;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
  .fixed_menu03 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    /*            &::before{
                    content: "\e95d";
                    font-family: "fontello";
                    margin-bottom: .8rem;
                    font-weight: normal;
                    font-size: 3rem;
                }*/
  }
}
.footer {
  text-align: center;
  padding: 0 0 4.2rem;
  background: #F7B52C;
}
.footer .copy {
  display: block;
  background: #F7B52C;
  font-weight: bold;
  color: #fff;
  padding: 1.4rem 1rem 3rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 0;
    background: #fff;
  }
  .footer .copy {
    padding: 2.6rem 0;
    font-size: 1.6rem;
  }
  .footer ul {
    width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin: 2rem auto 5rem;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.7rem;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1.6rem;
  }
  .footer ul li a {
    font-weight: bold;
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul:first-child {
    margin: 5rem auto 0;
    width: 100rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer ul:first-child li:not(:last-child)::after {
    content: none;
  }
  .footer ul:first-child li a::before {
    content: "j";
    font-family: "fontello";
    color: #F7B52C;
    margin-right: 0.4rem;
    display: inline-block;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
.overflow_box {
  overflow-x: hidden;
}

/* キービジュアル -------------------------------------- */
#kv_area {
  position: relative;
  height: 100%;
}
#kv_area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  display: block;
  max-width: 100%;
  height: 1rem;
  background: url("../img/index_keyvsl_parts01.svg") no-repeat center/cover;
}

#keyvsl {
  margin: 0 0 17rem;
  max-width: 100%;
  height: 22rem;
  background: url(../img/index_keyvsl01.jpg) no-repeat center center/cover;
}
#keyvsl .wrap {
  height: 100%;
  position: relative;
  line-height: 1.3;
}
#keyvsl .wrap .kaiin_txt {
  display: inline-block;
  background: #F7931D;
  border-radius: 1rem;
  border: 2px dotted #fff;
  -webkit-box-shadow: 0 0 0 6px #F7931D;
          box-shadow: 0 0 0 6px #F7931D;
  padding: 1rem;
  font-size: 1.6rem;
  position: absolute;
  left: 1.6rem;
  bottom: -16.5rem;
  width: 90%;
  width: calc(100% - 3.2rem);
}
#keyvsl .wrap .kaiin_txt p {
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  color: #fff;
}
#keyvsl .wrap .kaiin_txt .size_s {
  font-size: 80%;
}
#keyvsl .wrap .kaiin_txt .size_l {
  font-size: 140%;
}
#keyvsl .wrap .kv_txt {
  color: #575757;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 0.6rem;
  text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff;
  position: absolute;
  left: 0;
  bottom: -8.5rem;
}
#keyvsl .wrap .kv_txt p {
  margin: 0;
}
#keyvsl .wrap .kv_txt .size_l {
  font-size: 110%;
  margin: 0.4rem 0 0;
}
#keyvsl .wrap .kv_txt .size_l span {
  color: #F7931D;
}

@media screen and (min-width: 48em), print {
  #kv_area::before {
    bottom: -0.1rem;
    height: 6.2rem;
    background: url("../img/index_keyvsl_parts01.svg") no-repeat center/auto auto;
  }
  #keyvsl {
    margin: 0;
    height: 70rem;
    background: url(../img/index_keyvsl01.jpg) no-repeat center center/auto auto;
  }
  #keyvsl .wrap .kaiin_txt {
    font-size: 2.6rem;
    width: 22rem;
    height: 12rem;
    border: 4px dotted #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: auto;
    top: 4rem;
  }
  #keyvsl .wrap .kaiin_txt .size_s {
    font-size: 2.1rem;
  }
  #keyvsl .wrap .kaiin_txt .size_m {
    font-size: 3rem;
  }
  #keyvsl .wrap .kaiin_txt .size_l {
    font-size: 4rem;
  }
  #keyvsl .wrap .kv_txt {
    font-size: 2.2rem;
    left: auto;
    right: 0;
    bottom: 2rem;
  }
  #keyvsl .wrap .kv_txt .size_l {
    font-size: 3.2rem;
    margin: 0.6rem 0 0;
  }
}
/* 患者さんへのお願い -------------------------------------- */
.onegai {
  margin: 2rem 0 0;
}
.onegai .wrap {
  margin: 0 1rem;
  padding: 1rem 1.4rem 1rem;
  border: 2px solid #F2CF85;
  border-radius: 7px;
}
.onegai .wrap .tit_onegai {
  color: #575757;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0 0 0.6rem;
  margin: 0 0 2rem;
  border-bottom: 2px solid #F2CF85;
}
.onegai .wrap li {
  margin: 1rem 0;
}
.onegai .wrap p {
  margin: 1rem 0;
}
.onegai .wrap p.clr_red {
  color: #ff0000;
}

@media screen and (min-width: 48em), print {
  .onegai .wrap {
    width: 110rem;
    margin: 6rem auto 1rem;
    padding: 2.25rem 5rem 4.1rem;
    border: 4px solid #F2CF85;
    border-radius: 20px;
  }
  .onegai .wrap .tit_onegai {
    font-size: 3rem;
    padding: 0 0 1.3rem;
    margin: 0 0 3rem;
    border-bottom: 2px solid #F2CF85;
  }
  .onegai .wrap li {
    font-size: 2.3rem;
    margin: 2rem 0;
  }
  .onegai .wrap p {
    margin: 2rem 0;
    font-size: 2.3rem;
    text-align: justify;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 4rem 0 0;
}
.info .wrap {
  position: relative;
  z-index: 1;
}
.info .wrap::before, .info .wrap::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 20rem;
  display: block;
  top: 0;
  z-index: -1;
}
.info .wrap::before {
  background: url("../img/index_info_bg01.svg") no-repeat center/contain;
  left: 0;
}
.info .wrap::after {
  background: url("../img/index_info_bg02.svg") no-repeat center/contain;
  right: 0;
}
.info .wrap .tit_info {
  text-align: center;
  padding: 0 0 0.8rem;
  font-weight: bold;
  font-size: 2rem;
  color: #575757;
  border-bottom: 2px solid #F7B52C;
}
.info .wrap .tit_info::before {
  content: "\ea35";
  display: block;
  line-height: 1;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "fontello";
  color: #F7B52C;
  margin-bottom: 0;
}
.info .wrap dl {
  margin: 0.8rem 0 0.8rem;
  padding: 1.4rem 1rem 1.4rem 0;
  line-height: 1.4;
  min-height: 4rem;
  max-height: 28rem;
  overflow-y: scroll;
}
.info .wrap dl .line {
  border-bottom: 1px solid #D9D9D9;
  padding: 1rem 0 0;
}
.info .wrap dl .line dt {
  margin-bottom: 0.4rem;
  font-weight: bold;
  color: #575757;
  font-size: 110%;
}
.info .wrap dl .line dt .date {
  display: block;
  margin: 0 0 0.2rem;
}
.info .wrap dl .line dt .date span {
  background: #8DC21F;
  padding: 0.2rem 0.8rem 0.2rem;
  border-radius: 7px;
  font-size: 1.4rem;
  color: #fff;
}
.info .wrap dl .line dt .new {
  display: inline-block;
  margin: 0 0.5rem 0.2rem 0;
  border: 2px solid #62AFE2;
  padding: 0 0.5rem;
  border-radius: 7px;
  font-size: 0.8em;
  color: #62AFE2;
}
.info .wrap dl .line dt::after {
  content: "h";
  font-family: "fontello";
  color: #8DC21F;
  margin-left: 0.5em;
  display: inline-block;
}
.info .wrap dl .line dt.active::after {
  content: "g";
}
.info .wrap dl .line dd {
  padding: 1rem 0 1rem;
  margin: 0;
}
.info .wrap dl .line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 4rem 0 4rem;
  }
  .info .wrap {
    width: 110rem;
  }
  .info .wrap::before, .info .wrap::after {
    width: 40rem;
    height: 51rem;
    top: 11rem;
  }
  .info .wrap::before {
    left: -42rem;
  }
  .info .wrap::after {
    right: -42rem;
  }
  .info .wrap .tit_info {
    font-size: 3rem;
    padding: 0 0 1.2rem;
  }
  .info .wrap .tit_info::before {
    font-size: 4.4rem;
    margin-bottom: 0.4rem;
  }
  .info .wrap dl {
    margin: 3.4rem 0 0;
    padding: 1.4rem 1rem 1.4rem 0;
    max-height: 48rem;
  }
  .info .wrap dl::-webkit-scrollbar {
    width: 10px;
  }
  .info .wrap dl::-webkit-scrollbar-track {
    background-color: #F1F1F1;
    border-radius: 25px;
  }
  .info .wrap dl::-webkit-scrollbar-thumb {
    background-color: #F7B52C;
    border-radius: 25px;
  }
  .info .wrap dl .line {
    margin: 0 0 3.25rem;
    padding: 0 1rem 3.25rem 0;
  }
  .info .wrap dl .line dt {
    font-size: 2.2rem;
    position: relative;
    margin: 0 0 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .info .wrap dl .line dt .date {
    display: inline-block;
    margin: 0;
  }
  .info .wrap dl .line dt .date span {
    font-size: 1.7rem;
    margin-right: 1rem;
    padding: 0.4rem 1.8rem;
    border-radius: 10px;
  }
  .info .wrap dl .line dd {
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
}
/* 診療予約バナー -------------------------------------- */
.rsv_bnr {
  padding: 2rem 0 4rem;
}
.rsv_bnr .wrap {
  text-align: center;
}
.rsv_bnr .wrap a {
  display: inline-block;
  margin: 0 auto;
}
.rsv_bnr .wrap p {
  text-align: center;
  font-weight: bold;
  padding: 0.3rem 0 0.2rem;
  border: 2px solid #E58D00;
  border-radius: 25px;
  color: #E58D00;
}

@media screen and (min-width: 48em), print {
  .rsv_bnr {
    padding: 6rem 0 17rem;
  }
  .rsv_bnr .wrap a {
    display: block;
    width: 72.8rem;
  }
  .rsv_bnr .wrap p {
    width: 72.8rem;
    margin: 4rem auto 0;
    padding: 0.8rem 0;
    border-radius: 30px;
    font-size: 2.5rem;
  }
}
/* クリニックの特長 -------------------------------------- */
.feature {
  padding: 4rem 0 2rem;
  background: #FEF6E8;
  border-bottom: 6px solid #F3DCAA;
  position: relative;
}
.feature::before {
  content: "";
  width: 100%;
  height: 1rem;
  margin: 0 auto;
  display: block;
  background: url("../img/index_feature_section01.svg") no-repeat top center/cover;
  position: absolute;
  right: 0;
  left: 0;
  top: -1rem;
}
.feature .wrap {
  padding: 0 2rem;
  text-align: justify;
  position: relative;
  z-index: 1;
}
.feature .wrap::before, .feature .wrap::after {
  content: "";
  display: block;
  width: 14rem;
  height: 12rem;
  position: absolute;
  z-index: -1;
  top: -7.8rem;
}
.feature .wrap::before {
  background: url("../img/index_feature_bg01.svg") no-repeat center/contain;
  left: -4rem;
}
.feature .wrap::after {
  background: url("../img/index_feature_bg02.svg") no-repeat center/contain;
  right: -4rem;
}
.feature .wrap p {
  text-indent: 1em;
}
.feature .tit_02 {
  position: absolute;
  top: -8rem;
  right: 0;
  left: 0;
  margin: 0 auto;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 5.8rem 0 6.7rem;
  }
  .feature::before {
    top: -7.5rem;
    height: 8rem;
    background: url("../img/index_feature_section01.svg") no-repeat top center/auto auto;
  }
  .feature .wrap {
    width: 110rem;
  }
  .feature .wrap::before, .feature .wrap::after {
    width: 45rem;
  }
  .feature .wrap::before {
    height: 30rem;
    left: -50rem;
    top: -22rem;
  }
  .feature .wrap::after {
    height: 33rem;
    right: -50rem;
    top: -25rem;
  }
  .feature .wrap p ~ p {
    margin: 3rem 0 0;
  }
  .feature .tit_02 {
    top: -14.2rem;
  }
}
/* 診療のご案内 -------------------------------------- */
.treatment_menu {
  padding: 2rem 0 2rem;
}
.treatment_menu .wrap {
  position: relative;
}
.treatment_menu .wrap::before, .treatment_menu .wrap::after {
  content: "";
  display: block;
  width: 17rem;
  height: 8rem;
  position: absolute;
  top: 0.2rem;
  z-index: -1;
}
.treatment_menu .wrap::before {
  background: url("../img/index_treatmentMenu_bg01.svg") no-repeat center/contain;
  left: -4rem;
}
.treatment_menu .wrap::after {
  background: url("../img/index_treatmentMenu_bg02.svg") no-repeat center/contain;
  right: -4rem;
}
.treatment_menu ul li {
  width: 80%;
  margin: 0 auto 0.8rem;
}
.treatment_menu ul li a {
  width: 100%;
  min-height: 4.6rem;
  padding: 0.8rem 0.8rem 0.8rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  font-weight: bold;
  line-height: 1.2;
  border-radius: 10px;
  position: relative;
}
.treatment_menu ul li a::before {
  content: "j";
  font-family: "fontello";
  position: absolute;
  top: 50%;
  left: 0.8rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.treatment_menu ul li a::after {
  content: "";
  font-family: "fontello";
  font-weight: normal;
  font-size: 3rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.treatment_menu ul li a.otorhinolaryngology {
  background: #EEF6FB;
  border: 2px solid #C2D9E9;
}
.treatment_menu ul li a.otorhinolaryngology::before {
  color: #62AFE2;
}
.treatment_menu ul li a.otorhinolaryngology::after {
  content: "\ea40";
  color: #A7CCE5;
}
.treatment_menu ul li a.otorhinolaryngology .dot {
  display: none;
}
.treatment_menu ul li a.otorhinolaryngology .br:before {
  content: "\a";
  white-space: pre;
}
.treatment_menu ul li a.internal {
  background: #EFF3E6;
  border: 2px solid #D1E1B1;
}
.treatment_menu ul li a.internal::before {
  color: #8DC21F;
}
.treatment_menu ul li a.internal::after {
  content: "\ea3f";
  color: #B4D178;
}
.treatment_menu ul li a.vaccination {
  background: #F9F0DC;
  border: 2px solid #EED092;
}
.treatment_menu ul li a.vaccination::before {
  color: #F7B52C;
}
.treatment_menu ul li a.vaccination::after {
  content: "\ea41";
  color: #F3C564;
}

@media screen and (min-width: 48em), print {
  .treatment_menu {
    padding: 10rem 0 10rem;
  }
  .treatment_menu .wrap::before, .treatment_menu .wrap::after {
    width: 68rem;
    height: 32rem;
    top: -6.2rem;
  }
  .treatment_menu .wrap::before {
    left: -40rem;
  }
  .treatment_menu .wrap::after {
    right: -40rem;
  }
  .treatment_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .treatment_menu ul li {
    width: 38rem;
    margin: 0;
  }
  .treatment_menu ul li a {
    font-size: 2.2rem;
    min-height: 12.5rem;
    padding: 0 0 0 5.8rem;
  }
  .treatment_menu ul li a::before {
    font-size: 1.8rem;
    left: 2.28rem;
  }
  .treatment_menu ul li a::after {
    font-size: 11rem;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .treatment_menu ul li a:hover {
    opacity: 1;
  }
  .treatment_menu ul li a:hover::after {
    color: #fff;
  }
  .treatment_menu ul li a.otorhinolaryngology {
    border: 3px solid #C2D9E9;
  }
  .treatment_menu ul li a.otorhinolaryngology:hover {
    background: #C2D9E9;
  }
  .treatment_menu ul li a.internal {
    border: 3px solid #D1E1B1;
  }
  .treatment_menu ul li a.internal:hover {
    background: #D1E1B1;
  }
  .treatment_menu ul li a.vaccination {
    border: 3px solid #EED092;
  }
  .treatment_menu ul li a.vaccination:hover {
    background: #EED092;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body:not(.index) .breadcrumb_list li {
    font-size: 1.4rem;
    display: inline-block;
    font-weight: 500;
  }
  body:not(.index) .breadcrumb_list li:not(:last-child)::after {
    content: "c";
    color: #F7B52C;
    font-family: "fontello";
    display: inline-block;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0 1rem;
  }
  body:not(.index) .breadcrumb_list li a {
    text-decoration: underline;
  }
  body:not(.index) .breadcrumb_list li a:hover {
    opacity: 0.8;
  }
}
body:not(.index) .main {
  margin: 0 1rem 6rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 10rem;
    font-size: 1.8rem;
    line-height: 1.67;
  }
}

@media screen and (min-width: 48em), print {
  .cf .img_l, .cf .img_r {
    max-width: 40%;
    height: auto;
  }
  .center_box {
    text-align: center;
  }
  .center_box > * {
    display: inline-block !important;
    text-align: left;
  }
}
/* ドクター紹介 */
.doctor .doctor_name {
  text-align: right;
}
.doctor .doctor_name span {
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  .doctor .doctor_name span {
    font-size: 130%;
  }
}

/* クリニック紹介 */
.clinic .clinic_gallery li {
  margin: 0 0 1.6rem;
}
.clinic .clinic_gallery li img {
  display: block;
  max-width: 80%;
  margin: 0 auto;
}
.clinic .clinic_gallery li a {
  pointer-events: none;
}
.clinic .clinic_gallery li p {
  text-align: center;
  font-weight: bold;
  margin: 0.4rem 0 0;
}

@media screen and (min-width: 48em), print {
  .clinic .clinic_gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .clinic .clinic_gallery li {
    width: 31%;
    margin: 0 0 3rem;
  }
  .clinic .clinic_gallery li img {
    max-width: 100%;
  }
  .clinic .clinic_gallery li a {
    pointer-events: auto;
  }
  .clinic .clinic_gallery li p {
    margin: 0.8rem 0 0;
  }
}
/* 診療のご案内 */
.treatment .rsv_bnr {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.treatment .treatment_menu {
  padding: 0;
}

.flow dd {
  margin: 0 0 6rem;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .flow dd {
    margin: 0 0 10rem;
  }
}
.flow dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #ccc;
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

/* 診療時間・アクセス */
.access .main .map_flex .gmap {
  height: 30rem;
  margin: 2rem 0;
}
.access .main .tel {
  font-size: 1.8rem;
  font-weight: bold;
  color: #F7B52C;
}
.access .main .tel::before {
  content: "\ea3d";
  font-family: "fontello";
  font-weight: normal;
  margin-right: 0.4rem;
}
.access .main .dl_access01 dd {
  margin: 0 0 1.2rem;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .access .main .map_flex {
    margin: 4rem 0 0;
    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;
  }
  .access .main .map_flex > * {
    width: 49%;
  }
  .access .main .map_flex .gmap {
    height: 43rem;
  }
  .access .main .tel {
    font-size: 2.8rem;
  }
  .access .main .tel::before {
    margin-right: 0.8rem;
  }
  .access .main .dl_access01 dd {
    margin: 0 0 3.2rem;
    padding: 0;
  }
}