@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;
}

/* 囲い文字 -------------------------------------- */
.frame_01 {
  background: #f1f9f6;
  padding: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em), print {
  .frame_01 {
    padding: 2.4rem 2rem 2rem;
    margin-bottom: 3rem;
  }
}

.frame_02 {
  background: #fef9ef;
  padding: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em), print {
  .frame_02 {
    padding: 2.4rem 2rem 2rem;
    margin-bottom: 3rem;
  }
}

/* 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;
}

.mb40 {
  margin-bottom: 4rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb10 {
  margin-bottom: 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;
  }
  .mb40 {
    margin-bottom: 8rem;
  }
  .mb30 {
    margin-bottom: 6rem;
  }
  .mb20 {
    margin-bottom: 4rem;
  }
  .mb10 {
    margin-bottom: 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;
  background: #fff;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  padding: 0.4rem 1rem;
  background: #fff;
}
.tbl_time tr th {
  font-weight: normal;
  border-bottom: 1px solid #ccc;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  font-size: 1.2rem;
  font-weight: normal;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  border-bottom: 1px solid #ccc;
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  color: #f5aa00;
  border-bottom: 1px solid #ccc;
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.8rem;
  }
  .tbl_time caption {
    font-size: 1.8rem;
    padding: 1.6rem 2rem 3rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0 1rem;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 27%;
  }
  .tbl_time tr th.time {
    padding: 1.2rem 0;
  }
  .tbl_time tr td {
    padding: 1rem 0;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat right top/auto 100%;
  font-size: 2.2rem;
  padding: 3rem 1rem;
  margin: 0 0 3rem;
  text-align: center;
  color: #25a36d;
  font-weight: bold;
  text-shadow: 0px 0px 20px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255);
}

.tit_02 {
  color: #000;
  font-size: 2rem;
  margin: 0 0 1rem;
  padding: 1rem 0;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
}
.tit_02 span {
  margin: 0 0 0.4rem;
  color: #25a36d;
  font-size: 60%;
  font-family: "Lato", sans-serif;
  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;
}
.tit_02 span::before, .tit_02 span::after {
  content: "-";
  display: inline-block;
  margin: 0 0.4rem;
}

body:not(.index) .tit_02::before {
  content: "";
  width: 3rem;
  height: 3px;
  background: #25a36d;
  display: block;
  margin: 0 auto 0.6rem;
}

.tit_03 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.8rem;
  background: #25a36d;
}

.tit_04 {
  color: #25a36d;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0 0 0.4rem;
  border-bottom: 1px solid #ccc;
}

.tit_05 {
  color: #25a36d;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center top/auto auto;
    font-size: 3rem;
    padding: 8.9rem 4rem;
    margin: 2rem 0 3rem;
  }
  .tit_02 {
    font-size: 3.6rem;
    margin: 0 0 2rem;
  }
  .tit_02 span {
    margin-bottom: 0.6rem;
    font-size: 1.8rem;
  }
  body:not(.index) .tit_02::before {
    width: 7rem;
    height: 3px;
    margin: 0 auto 1.6rem;
  }
  .tit_03 {
    font-size: 3rem;
    margin: 0 0 2rem;
    padding: 1rem 1.4rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
    padding: 0 0 1.3rem;
  }
}
.tit_05 {
  font-size: 1.8rem;
}

/* リスト回り -------------------------------------- */
.lst_ul01 li {
  text-indent: -2rem;
  padding-left: 2.2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
.lst_ul01 li::before {
  content: "●";
  margin-right: 0.4rem;
  color: #f5aa00;
}
.lst_ul01 li.none::before {
  content: none;
}

.lst_ul02 li {
  text-indent: -2rem;
  padding-left: 2.2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
.lst_ul02 li::before {
  content: "・";
  margin-right: 0.4rem;
  color: #333;
}
.lst_ul02 li.none::before {
  content: none;
}

.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;
  color: #25a36d;
}
.lst_dl01 dd {
  margin: 0 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 dt {
    float: left;
    width: 15%;
    clear: left;
  }
  .lst_dl01 dd {
    margin: 0 0 0.6rem;
    padding-left: 9rem;
  }
}
/* フレックス回り -------------------------------------- */
.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%;
  }
}
/* リンク -------------------------------------- */
.btn {
  display: block;
  text-align: center;
  margin: 2rem auto 0.2rem;
}
.btn a {
  background: #69b72d;
  padding: 0.8rem 1rem;
  min-width: 25rem;
  color: #fff;
  display: block;
  text-align: center;
  border-radius: 6px;
  text-decoration: none !important;
  position: relative;
}
.btn a::after {
  content: "\f006";
  font-family: "fontello";
  display: inline-block;
  font-size: 80%;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (min-width: 48em), print {
  .btn {
    text-align: left;
  }
  .btn a {
    display: inline-block;
  }
}
.btn_02 {
  display: block;
  text-align: center;
  margin: 2rem auto 0.2rem;
}
.btn_02 a {
  background: #f6a901;
  padding: 0.8rem 1rem;
  min-width: 25rem;
  color: #fff;
  display: block;
  text-align: center;
  border-radius: 6px;
  text-decoration: none !important;
  position: relative;
}
.btn_02 a::after {
  content: "\f006";
  font-family: "fontello";
  display: inline-block;
  font-size: 80%;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (min-width: 48em), print {
  .btn {
    text-align: left;
  }
  .btn a {
    display: inline-block;
  }
}
.link_txt::before {
  content: "\f006";
  color: #25a36d;
  font-family: "fontello";
  margin-right: 0.4rem;
  display: inline-block;
}
.link_txt a {
  color: #25a36d;
}

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

.tbl_price {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  caption-side: bottom;
}
.tbl_price caption {
  text-align: left;
  padding: 0.4rem 0 0;
}
.tbl_price tr th {
  width: 30%;
  background: #c0e4d5;
  text-align: center;
  font-weight: bold;
  border: 1px solid #c0c0c0;
  font-size: 110%;
  padding: 0.8rem;
}
.tbl_price tr td {
  padding: 0.8rem;
  border: 1px solid #c0c0c0;
  text-align: center;
}

.tbl_access {
  table-layout: fixed;
  border-collapse: separate;
  border-collapse: 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";
  -webkit-text-size-adjust: none;
}

body {
  background: #fff;
  color: #333;
}

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: 1220px;
  }
  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: 10rem auto 0;
  }
  a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
  }
  .main {
    font-size: 1.6rem;
    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 .wrap {
  margin: 1rem 0;
}
.header .wrap .logo {
  height: 4.3rem;
  width: 80%;
}
.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-top: 2rem;
  font-size: 1.4rem;
}
.header .wrap .headR > ul .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .wrap .headR > ul .flex .tel {
  width: 52%;
  color: #26a26c;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
}
.header .wrap .headR > ul .flex .tel::before {
  content: "\e821";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.header .wrap .headR > ul .flex .rsv {
  width: 48%;
  background: #f6a901;
  color: #fff;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 7px;
  position: relative;
}
.header .wrap .headR > ul .flex .rsv::after {
  content: "\f006";
  font-family: "fontello";
  display: inline-block;
  position: absolute;
  right: 3%;
}
.header .wrap .headR > ul .head_address {
  margin-top: 0.6rem;
}
.header .wrap .headR > ul .head_address::before {
  content: "\e825";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.header .wrap .headR > ul .head_access {
  margin-top: 0.6rem;
  text-indent: -1.8rem;
  padding-left: 1.9rem;
}
.header .wrap .headR > ul .head_access::before {
  content: "\e822";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.header .wrap .headR > div {
  background: #25a36d;
  color: #fff;
  margin-top: 0.6rem;
  padding: 0.2rem 0.4rem;
  text-align: center;
  font-size: 1.4rem;
  border-radius: 25px;
}
.header .wrap .headR > div::before {
  content: "\e826";
  font-family: "fontello";
  margin-right: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 1rem auto 2rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .wrap .logo {
    width: 48rem;
    height: 10rem;
  }
  .header .wrap .headR {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 1.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header .wrap .headR > ul {
    width: 61%;
  }
  .header .wrap .headR > ul .flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .wrap .headR > ul .flex .tel {
    font-size: 3rem;
    width: 26rem;
    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;
  }
  .header .wrap .headR > ul .flex .tel::before {
    font-size: 2.6rem;
    margin-right: 0.8rem;
  }
  .header .wrap .headR > ul .flex .rsv {
    font-size: 1.8rem;
    font-weight: bold;
    width: 16rem;
  }
  .header .wrap .headR > ul .flex .rsv::after {
    font-weight: normal;
    right: 4%;
  }
  .header .wrap .headR > ul .head_address {
    margin-top: 1.2rem;
  }
  .header .wrap .headR > ul .head_address::before {
    font-size: 1.6rem;
  }
  .header .wrap .headR > ul .head_access::before {
    font-size: 1.6rem;
  }
  .header .wrap .headR > div {
    border-radius: 50%;
    font-weight: bold;
    width: 10rem;
    height: 10rem;
    line-height: 1.3;
    margin: 0 0 0 5.6rem;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .wrap .headR > div::before {
    display: block;
    font-weight: normal;
    font-size: 2.4rem;
    margin: 0.8rem 0 0.4rem;
  }
}
/* 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: #fff;
  background: #25a36d;
  text-shadow: none;
  border-radius: 0;
  text-align: center;
  line-height: 1;
  margin: 0 1rem;
  padding: 0;
}
.slicknav_menu .slicknav_btn.slicknav_collapsed::before {
  display: block;
  font-family: "fontello";
  content: "\e800";
  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: "\e801";
  line-height: 0.8;
}
.slicknav_menu .slicknav_btn.slicknav_open::after {
  display: block;
  content: "CLOSE";
  font-size: 1rem;
}
.slicknav_menu .slicknav_nav {
  width: 100vw;
  background: #f2ffe0;
  padding: 0;
  position: absolute;
  top: 6rem;
  right: 0;
  margin: auto;
}
.slicknav_menu .slicknav_nav .gnav {
  margin: 0;
}
.slicknav_menu .slicknav_nav .gnav li {
  border-bottom: 1px solid #d4e6c6;
}
.slicknav_menu .slicknav_nav .gnav li a {
  display: block;
  color: #25a36d;
  padding: 1rem 2rem;
  margin: 0;
  font-size: 1.6rem;
  position: relative;
}
.slicknav_menu .slicknav_nav .gnav li a:not(.sub)::after {
  position: absolute;
  right: 1rem;
  font-family: "fontello";
  content: "\f006";
  color: #1c825c;
  font-size: 2rem;
}
.slicknav_menu .slicknav_nav .gnav li a .sub::after {
  position: absolute;
  right: 1rem;
  font-family: "fontello";
  content: "\f006";
  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 .subnav {
  margin: 2rem 1rem 2rem;
  background: #fff;
}
.slicknav_menu .slicknav_nav .subnav li {
  border-bottom: 6px solid #f2ffe0;
}
.slicknav_menu .slicknav_nav .subnav li a {
  font-size: 1.6rem;
  padding: 0.4rem 1rem;
  color: #25a36d;
  position: relative;
}
.slicknav_menu .slicknav_nav .subnav li a::after {
  position: absolute;
  right: 1rem;
  font-family: "fontello";
  content: "\f006";
  color: #1c825c;
  font-size: 2rem;
}
.slicknav_menu .slicknav_nav .subnav li.tit {
  padding: 0 0 0.6rem;
  margin: 0;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #729687;
  font-size: 1.6rem;
  background: #f2ffe0;
  width: 100%;
  display: block;
}
.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;
  }
  #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: 14.2857142857%;
    border-right: 1px solid #b6b6b6;
  }
  #nav .gnav li:last-child {
    border-right: none;
  }
  #nav .gnav li:hover a span::before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  #nav .gnav li a {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
  }
  #nav .gnav li a span {
    position: relative;
  }
  #nav .gnav li a span::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    width: 100%;
    height: 4px;
    background-color: #f5aa00;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
  /* Gナビ　ハイライト */
  .index #nav .home,
  .doctor #nav .doctor,
  .treatment #nav .treatment,
  .clinic #nav .clinic,
  .first #nav .first,
  .access #nav .access {
    pointer-events: none;
  }
  .index #nav .home span,
  .doctor #nav .doctor span,
  .treatment #nav .treatment span,
  .clinic #nav .clinic span,
  .first #nav .first span,
  .access #nav .access span {
    position: relative;
  }
  .index #nav .home span::before,
  .doctor #nav .doctor span::before,
  .treatment #nav .treatment span::before,
  .clinic #nav .clinic span::before,
  .first #nav .first span::before,
  .access #nav .access span::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    width: 100%;
    height: 4px;
    background-color: #f5aa00;
    -webkit-transform: none;
            transform: none;
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #f9f9f9;
}
.overview > .wrap .overviewL .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview > .wrap .overviewL .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview > .wrap .overviewL .dl_gaiyo {
  width: 100%;
}
.overview > .wrap .overviewL .dl_gaiyo dt {
  width: 100%;
  text-align: center;
  padding: 0.4rem;
  font-weight: normal;
  background: #26a26c;
  color: #fff;
}
.overview > .wrap .overviewL .dl_gaiyo dd {
  padding: 0.4rem;
  margin: 0 0 1rem;
}
.overview > .wrap .overviewL .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview > .wrap .overviewL .flex .tel {
  width: 52%;
  color: #26a26c;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
}
.overview > .wrap .overviewL .flex .tel::before {
  content: "\e821";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-weight: normal;
}
.overview > .wrap .overviewL .flex .rsv {
  width: 48%;
  background: #f6a901;
  color: #fff;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 7px;
  position: relative;
}
.overview > .wrap .overviewL .flex .rsv::after {
  content: "\f006";
  font-family: "fontello";
  display: inline-block;
  position: absolute;
  right: 3%;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .gmap {
  background: #fff;
  padding: 0.8rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 0 0;
    padding: 4rem 0 4rem;
    font-size: 1.8rem;
  }
  .overview > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 48%;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .clinic_name {
    margin: 0 0 3rem;
    text-align: left;
  }
  .overview > .wrap .overviewL .clinic_name img {
    width: 41rem;
  }
  .overview > .wrap .overviewL .dl_gaiyo dt {
    width: 20%;
    padding: 0.3rem 0;
    font-weight: bold;
    float: left;
    clear: left;
    letter-spacing: 0.1rem;
  }
  .overview > .wrap .overviewL .dl_gaiyo dd {
    padding-left: 13rem;
    margin: 0 0 0.4rem;
  }
  .overview > .wrap .overviewL .dl_gaiyo dd .br::before {
    content: "\a";
    white-space: pre;
  }
  .overview > .wrap .overviewL .flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .overview > .wrap .overviewL .flex .tel {
    font-size: 3.6rem;
    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;
  }
  .overview > .wrap .overviewL .flex .tel::before {
    font-size: 3rem;
    margin-right: 0.7rem;
  }
  .overview > .wrap .overviewL .flex .rsv {
    margin-left: 2.8rem;
    width: 20rem;
  }
  .overview > .wrap .overviewL .flex .rsv::after {
    right: 4%;
  }
  .overview > .wrap .overviewL .tbl_time {
    margin: 3rem 0 0;
  }
  .overview > .wrap .overviewR {
    margin: 0;
    padding: 0 0;
  }
  .overview > .wrap .overviewR .gmap {
    padding: 2rem;
  }
  .overview > .wrap .overviewR .flex {
    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;
  }
  .overview > .wrap .overviewR .flex > *[class*=btn] {
    width: 48%;
  }
}
/* フッター -------------------------------------- */
.tel_rsv_up {
  width: 100%;
  max-width: 100%;
  height: 5rem;
  background: rgba(255, 255, 255, 0.7);
  visibility: hidden;
  position: fixed;
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.8rem 0.2rem;
  font-size: 1.4rem;
}
.tel_rsv_up .wrap {
  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;
  padding: 0 0.4rem;
}
.tel_rsv_up .wrap .tel {
  font-family: "Lato", sans-serif;
  display: block;
  background: #fff;
  padding: 0.8rem 0.2rem;
  text-align: center;
  font-weight: bold;
  width: 43%;
  line-height: 1;
  color: #26a26c;
  border: 2px solid #26a26c;
  border-radius: 6px;
}
.tel_rsv_up .wrap .tel::before {
  content: "\e821";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.tel_rsv_up .wrap .rsv {
  width: 43%;
}
.tel_rsv_up .wrap .rsv a {
  display: block;
  padding: 0.8rem 0.2rem;
  background: #f6a901;
  color: #fff;
  text-align: center;
  border: 2px solid #f6a901;
  border-radius: 6px;
  position: relative;
}
.tel_rsv_up .wrap .rsv a::after {
  content: "\f006";
  font-family: "fontello";
  display: inline-block;
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.tel_rsv_up .wrap .pageup {
  cursor: pointer;
}
.tel_rsv_up .wrap .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;
  height: 3.3rem;
  text-align: center;
  padding: 0 0.8rem;
  line-height: 1;
  background: #ccc;
  border-radius: 6px;
}
.tel_rsv_up .wrap .pageup a::before {
  text-align: center;
  font-family: "fontello";
  content: "\f005";
  color: #fff;
}
.tel_rsv_up .wrap .pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  .tel_rsv_up {
    width: 100%;
    height: 8rem;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 0;
  }
  .tel_rsv_up .wrap {
    padding: 1rem 1rem;
    margin: 0 auto;
    width: 1200px;
  }
  .tel_rsv_up .wrap .tel {
    width: 55rem;
    font-size: 3.6rem;
    letter-spacing: 0.1rem;
    padding: 1rem 0;
    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;
  }
  .tel_rsv_up .wrap .tel::before {
    font-weight: normal;
    margin-right: 0.6rem;
    font-size: 3rem;
  }
  .tel_rsv_up .wrap .rsv {
    width: 55rem;
    font-size: 2.4rem;
  }
  .tel_rsv_up .wrap .rsv a {
    padding: 1.4rem 0;
    display: block;
    font-weight: bold;
  }
  .tel_rsv_up .wrap .rsv a:hover::after {
    opacity: 0.8;
  }
  .tel_rsv_up .wrap .pageup a {
    width: 6rem;
    height: 6rem;
    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;
  }
  .tel_rsv_up .wrap .pageup a::before {
    font-size: 3.4rem;
    font-weight: normal;
  }
}
.footer {
  text-align: center;
  padding: 0;
  background: #f0f0f0;
}
.footer .copy {
  display: block;
  background: #26a26c;
  color: #fff;
  padding: 2rem 1rem 7rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 3.2rem 0 0;
  }
  .footer .copy {
    padding: 2rem 1rem 0;
  }
  .footer ul {
    display: block;
    text-align: center;
    margin: 0;
  }
  .footer ul ~ ul {
    margin: 1.2rem 0 0;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.6rem;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1.6rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer .copy {
    margin: 2.2rem 0 0;
    padding: 6rem 0 12rem;
    font-size: 1.6rem;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
#keyvsl {
  margin: 1rem 0rem 12rem;
  max-width: 100%;
  padding: 0;
  height: 40rem;
  background: url(../img/index_keyvsl01.jpg) no-repeat top center/cover;
  position: relative;
}
#keyvsl .kv_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#keyvsl .kv_info > div {
  width: 100%;
  color: #fff;
  padding: 0.6rem 0;
  font-size: 1.4rem;
  text-align: center;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#keyvsl .kv_info > div.kaiin {
  background: rgba(37, 163, 109, 0.8);
}
#keyvsl .wrap {
  height: 100%;
}
#keyvsl .wrap .copy {
  position: absolute;
  left: 1rem;
  bottom: 3rem;
}
#keyvsl .wrap .copy p {
  margin: 0;
}
#keyvsl .wrap .copy p span {
  color: #25a36d;
  font-weight: bold;
  padding: 0.4rem 0.8rem;
  font-size: 1.8rem;
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
}
#keyvsl .wrap .copy p ~ p {
  margin-top: 0.6rem;
}
#keyvsl .wrap .tbl_time {
  padding: 0 1rem;
  position: absolute;
  bottom: -11rem;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
}
#keyvsl .wrap .tbl_time caption {
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.9);
}

@media screen and (min-width: 48em), print {
  #keyvsl {
    margin: 2rem auto 0;
    height: 68rem;
    padding: 0;
    background: url(../img/index_keyvsl01.jpg) no-repeat top center/auto auto;
  }
  #keyvsl .kv_info > div {
    padding: 2.2rem 3rem;
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
  }
  #keyvsl .wrap {
    position: relative;
  }
  #keyvsl .wrap .copy {
    bottom: 11.6rem;
  }
  #keyvsl .wrap .copy p span {
    font-size: 3rem;
    padding: 0.6rem 1.4rem;
  }
  #keyvsl .wrap .tbl_time {
    padding: 0;
    bottom: 11.6rem;
    right: 0;
    left: auto;
    width: 50rem;
  }
  #keyvsl .wrap .tbl_time caption {
    font-size: 1.8rem;
    padding: 1.6rem 1.8rem 3rem;
  }
  #keyvsl .wrap .tbl_time tr th[scope=col]:first-child {
    width: 28%;
    padding: 1.8rem 0 1rem;
  }
  #keyvsl .wrap .tbl_time tr th.time {
    padding-left: 1.6rem;
  }
}
/* コロナ対策バナー・問診票ダウンロード -------------------------------------- */
.bnr_item {
  padding: 2rem 1rem;
}
.bnr_item ~ .bnr_item {
  padding: 0rem 1rem 2rem;
}

@media screen and (min-width: 48em), print {
  .bnr_item {
    text-align: center;
    margin: 4rem auto 2rem;
    position: relative;
    z-index: 20;
  }
  .bnr_item ~ .bnr_item {
    margin: 0 auto 1rem;
  }
}
/* リクルートバナー -------------------------------------- */
.bnr_recruit {
  padding: 0 1rem;
  margin: 1rem 0;
}
.bnr_recruit a {
  display: block;
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .bnr_recruit {
    margin: 0 auto;
    padding: 0;
    width: 75rem;
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bnr_recruit a {
    width: 49%;
    margin: 0 1% 1.4rem 0;
  }
  .bnr_recruit a:nth-child(even) {
    margin: 0 0 1.4rem;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 0rem 0 4rem;
}
.info .wrap {
  padding: 0;
}
.info .wrap .tit_02 {
  color: #fff;
  background: url("../img/index_info_bg.gif") top left/25px;
  position: relative;
}
.info .wrap .tit_02::after {
  font-family: "fontello";
  content: "\e823";
  position: absolute;
  right: 27vw;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 3rem;
  font-weight: normal;
}
.info .wrap .tit_02 span {
  color: #fff;
}
.info .wrap dl {
  margin: 0;
  line-height: 1.4;
  padding: 2rem 1rem 0;
  height: 30rem;
  overflow-y: scroll;
}
.info .wrap dl dt {
  margin-bottom: 0.6rem;
  font-weight: bold;
  color: #25a36d;
  font-size: 110%;
  cursor: pointer;
  display: table;
}
.info .wrap dl dt:hover {
  opacity: 0.8;
}
.info .wrap dl dt:not(:first-child) {
  position: relative;
  margin: 0.8rem 0 0.4rem;
}
.info .wrap dl dt:not(:first-child)::before {
  display: block;
  content: "";
  width: 92vw;
  height: 1px;
  background: #eee;
  position: absolute;
  top: -0.6rem;
}
.info .wrap dl dd {
  padding: 1rem 0 1rem;
  margin: 0;
}
.info .wrap dl dd:nth-of-type(n+4) {
  display: none;
}
.info .wrap dl dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    margin: 0 auto 0;
    padding: 0;
    overflow: hidden;
    background: url("../img/index_info_bg.gif") repeat top left/20px;
    position: relative;
  }
  .info::before {
    content: "";
    background: #fff;
    display: block;
    width: 30vw;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
  }
  .info .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .info .wrap .tit_02 {
    width: 22%;
    margin: 0;
    padding: 6rem 0 0 0;
    font-size: 3rem;
    background: none;
  }
  .info .wrap .tit_02 span {
    font-size: 1.8rem;
  }
  .info .wrap .tit_02::after {
    position: static;
    display: block;
    margin-top: 3rem;
    font-size: 4rem;
  }
  .info .wrap .bg {
    width: 78%;
    background: #fff;
    padding: 3rem 0 3rem 4rem;
    position: relative;
  }
  .info .wrap .bg dl {
    margin: 0;
    height: 46rem;
    overflow-x: hidden;
  }
  .info .wrap .bg dl dt {
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
  }
  .info .wrap .bg dl dt:not(:first-child)::before {
    margin: 0;
    left: -1.5rem;
    top: 0;
  }
  .info .wrap .bg dl dd {
    padding: 0 1.5rem 1.6rem;
    font-size: 1.8rem;
  }
}
/* 特長 -------------------------------------- */
.tre {
  background: url("../img/index_tre_bg.jpg") no-repeat top center/cover;
  padding: 2rem 0 2rem;
}
.tre 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;
}
@media screen and (min-width: 48em), print {
  .tre ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.tre ul li {
  width: 48%;
  margin: 0 0 1rem;
}
.tre ul li a {
  height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none !important;
  padding: 1.4rem 0 1.2rem;
  border: 2px solid #7ebd52;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: relative;
}
.tre ul li a::after {
  content: "\e88f";
  font-family: "fontello";
  position: absolute;
  bottom: 0;
  right: 0.4rem;
  color: #7ebd52;
}
.tre ul li a::before {
  content: "";
  display: block;
  min-height: 4.6rem;
  width: 80%;
  margin: 0 auto 1rem;
}
.tre ul li a.ortho::before {
  background: url("../img/index_tre_ortho.svg") no-repeat center/contain;
}
.tre ul li a.rehabilitation::before {
  background: url("../img/index_tre_rehabilitation.svg") no-repeat center/contain;
}
.tre ul li a.rheumatism::before {
  background: url("../img/index_tre_rheumatism.svg") no-repeat center/contain;
}
.tre ul li a.sports_ortho::before {
  background: url("../img/index_tre_sports_ortho.svg") no-repeat center/contain;
}
.tre ul li a.osteoporosis::before {
  background: url("../img/index_tre_osteoporosis.svg") no-repeat center/contain;
}
.tre ul li a.peritoneal_release::before {
  background: url("../img/index_tre_peritoneal_release.svg") no-repeat center/contain;
}
.tre ul li a.pain_clinic::before {
  background: url("../img/index_tre_pain_clinic.svg") no-repeat center/contain;
}
.tre ul li a.selfexpense_medicalcare::before {
  background: url("../img/index_tre_selfexpense_medicalcare.svg") no-repeat center/contain;
}
.tre ul li a.pfc::before {
  background: url("../img/index_tre_pfc.svg") no-repeat center/contain;
}

@media screen and (min-width: 48em), print {
  .tre {
    background: url("../img/index_tre_bg.jpg") no-repeat top center/cover;
    padding: 4rem 0 8rem;
  }
  .tre .wrap {
    padding: 0;
  }
  .tre .wrap ul {
    margin: 3rem auto 2rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .tre .wrap ul li {
    width: 23.4%;
    margin-right: 2.4rem;
  }
  .tre .wrap ul li:nth-child(4n) {
    margin-right: 0;
  }
  .tre .wrap ul li:last-child {
    margin-right: 0;
  }
  .tre .wrap ul a {
    max-height: 25.8rem;
    font-size: 2.4rem;
    font-weight: bold;
    border: 2px solid #5eb62b;
    padding: 3.7rem 0 3.7rem;
  }
  .tre .wrap ul a::after {
    font-weight: normal;
    right: 1.6rem;
    bottom: 1rem;
    font-size: 2rem;
  }
  .tre .wrap ul a::before {
    min-height: 11.2rem;
    margin: 0 auto 1.8rem;
  }
}
/* ご挨拶-------------------------------------- */
.greeting {
  position: relative;
  padding: 2rem 0 2rem;
}
.greeting::after {
  position: absolute;
  content: "\e824";
  font-family: "fontello";
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: auto;
  opacity: 0.1;
  line-height: 1;
  color: #25a36d;
  font-size: 26rem;
}
.greeting img {
  display: block;
  margin: 0 auto;
}
.greeting .bnr {
  margin: 0.8rem 0 0;
  display: block;
}
.greeting .name {
  text-align: center;
}
.greeting .name span {
  font-weight: bold;
  font-size: 1.8rem;
  margin-left: 0.6rem;
}
.greeting .btn {
  text-align: center;
}
.greeting .btn a {
  display: inline-block;
  text-decoration: none !important;
  background: #69b72d;
  color: #fff;
  width: 80%;
  padding: 0.4rem 0;
  border-radius: 6px;
}
.greeting ul {
  color: #25a36d;
  font-weight: bold;
}
.greeting ul li::before {
  content: "・";
  display: inline-block;
}
.greeting p {
  text-align: justify;
}

@media screen and (min-width: 48em), print {
  .greeting {
    margin: 2rem 0 10rem;
  }
  .greeting::after {
    font-size: 69rem;
    line-height: 0.8;
    z-index: -1;
  }
  .greeting .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .greeting .flex div {
    width: 32%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .greeting .flex div .name {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
  .greeting .flex div .name span {
    font-size: 2.4rem;
    margin-left: 1.6rem;
  }
  .greeting .flex div .btn {
    width: 30rem;
  }
  .greeting .flex div .btn a {
    font-size: 1.8rem;
    padding: 0.8rem 0;
    width: 100%;
    display: block;
  }
  .greeting .flex div:last-child {
    width: 64%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 1.8rem;
  }
  .greeting .flex div:last-child p:first-child {
    margin: 0 0 1rem;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) > .wrap {
  margin: 0 auto 6rem;
}
body:not(.index) .main {
  margin: 0 1rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 48em), print {
  .cf .img_l, .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
/* ドクター紹介 */
/* クリニック紹介 */
.clinicslide {
  margin-bottom: 8rem;
}
.clinicslide img, .clinicslide p {
  display: none;
}

.sp-layer.sp-black.sp-padding {
  text-align: center;
  font-size: 2.4rem;
}

.sp-selected-thumbnail {
  border: 4px solid #000;
}

.device li {
  margin: 0 0 2rem;
  text-align: center;
}
.device li img {
  display: block;
  margin: 0 auto 0.6rem;
  max-width: 80%;
  height: auto;
}

@media screen and (min-width: 48em), print {
  .device {
    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;
  }
  .device li {
    width: 48%;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
/* 初めての方へ */
.first .main .tel {
  color: #26a26c;
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (min-width: 48em), print {
  .first .main .tel {
    font-size: 2.8rem;
  }
}
.first .main .tel::before {
  font-weight: normal;
  content: "\e821";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.first .main .tel + .btn {
  margin: 1rem auto 1rem;
}

/* 診療時間・アクセス */
.access .main .tel {
  color: #26a26c;
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (min-width: 48em), print {
  .access .main .tel {
    font-size: 2.8rem;
  }
}
.access .main .tel::before {
  font-weight: normal;
  content: "\e821";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.access .main .flex > div {
  padding: 0.8rem;
  border: 2px solid #25a36d;
}
.access .main .flex > div.gmap {
  height: 30rem;
  margin: 2rem 0;
}
.access .main .flex > div img {
  padding: 0.8rem;
}
.access .main .view {
  margin: 2rem auto 0;
}
.access .main .view iframe {
  width: 100%;
  height: 30rem;
}

@media screen and (min-width: 48em), print {
  .access .main .gmap {
    height: 50rem;
  }
  .access .main .parking .sp_n {
    display: none;
  }
  .access .main .flex {
    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 .flex > div {
    width: 48%;
  }
  .access .main .flex > div.gmap {
    height: 53rem;
  }
  .access .main .view iframe {
    height: 45rem;
  }
}
/* リハビリテーション */
.rehabilitation .lst_device li {
  margin: 0 auto 2.6rem;
}
.rehabilitation .lst_device li figure {
  margin: 0;
  padding: 0;
}
.rehabilitation .lst_device li figure img {
  max-width: 86%;
  display: block;
  margin: 0 auto;
  border: 2px solid #daf3e8;
}
.rehabilitation .lst_device li figure figcaption {
  width: 86%;
  margin: 0 auto;
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: #daf3e8;
}

@media screen and (min-width: 48em), print {
  .rehabilitation .lst_device {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .rehabilitation .lst_device li {
    width: 30%;
    margin: 0 1rem 3rem;
  }
  .rehabilitation .lst_device li figure img {
    max-width: 100%;
  }
  .rehabilitation .lst_device li figure figcaption {
    width: 100%;
    padding: 0.8rem 1.2rem;
  }
}
/* PFC-FD */
.pfc .lst_pfc div {
  border: 2px solid #25a36d;
  padding: 1rem;
  margin: 0 0 1.8rem;
}
.pfc .lst_pfc div dt {
  margin: 0 0 0.8rem;
  padding: 0;
  text-align: center;
  font-weight: bold;
}
.pfc .lst_pfc div dd {
  margin: 0;
  padding: 0;
}
.pfc .lst_pfc div dd ul li {
  text-indent: -1.6rem;
  padding-left: 2rem;
}
.pfc .lst_pfc div dd ul li::before {
  font-family: "fontello";
  margin-right: 0.4rem;
}
.pfc .lst_pfc div dd ul.icon_01 li::before {
  content: "✓";
  color: #25a36d;
}
.pfc .lst_pfc div dd ul.icon_02 li::before {
  font-size: 2rem;
  content: "\e803";
  color: #25a36d;
  position: relative;
  bottom: -0.1rem;
}
.pfc .flow div {
  margin: 0 0 6rem;
  padding: 1rem 2rem;
  position: relative;
  border: 2px solid #25a36d;
}
.pfc .flow div:last-child {
  margin: 0 0 2rem;
}
@media screen and (min-width: 48em), print {
  .pfc .flow div {
    margin: 0 0 10rem;
  }
}
.pfc .flow div dt {
  font-size: 1.6rem;
  margin: 0.6rem 0 0.4rem;
  padding: 0;
  text-align: center;
  font-weight: bold;
}
.pfc .flow div dd {
  margin: 0;
  padding: 0;
}
.pfc .flow div:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #ade1ba;
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}
.pfc .frame_01 .tit {
  text-align: center;
  font-weight: bold;
}
.pfc .tbl_price tbody tr th {
  width: 60%;
  padding: 0.8rem 0.2rem;
}
.pfc .tbl_price tbody tr td {
  width: 40%;
}

@media screen and (min-width: 48em), print {
  .pfc .lst_pfc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pfc .lst_pfc div {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3.4rem 0.8rem 2.6rem;
    width: 49%;
  }
  .pfc .lst_pfc div dt {
    margin: 0 0 2rem;
    font-size: 2.4rem;
  }
  .pfc .lst_pfc div dd {
    font-size: 1.6rem;
  }
  .pfc .lst_pfc div dd ul li {
    margin: 0 0 1.2rem;
  }
  .pfc .lst_pfc div dd ul.icon_02 li::before {
    font-size: 1.6rem;
  }
  .pfc .flow {
    width: 60%;
    margin: 6rem auto 2rem;
  }
  .pfc .flow div {
    padding: 2rem 2rem;
  }
  .pfc .flow div dt {
    font-size: 2.4rem;
    margin: 0 0 1.4rem;
  }
  .pfc .flow div dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pfc .flow div dd p {
    width: 56%;
  }
  .pfc .flow div dd img {
    width: 40%;
  }
  .pfc .frame_01 {
    width: 60%;
    margin: 3rem auto;
    padding: 2rem 4rem;
  }
  .pfc .frame_01 .tit {
    font-size: 2.2rem;
  }
}