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

*, *::before, *::after {
  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;
}

.clr_brown {
  color: #7b654e;
}

/* 囲い文字 -------------------------------------- */
.frame_01 {
  background: #fff;
  border: 4px solid #c2b2a1;
  border-radius: 7px;
  padding: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 48em), print {
  .frame_01 {
    padding: 2rem 2rem 2rem;
    margin-bottom: 2rem;
  }
}

.frame_02 {
  background: #fff;
  border: 4px solid #a2c7c6;
  border-radius: 7px;
  padding: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 48em), print {
  .frame_02 {
    padding: 2rem 2rem 2rem;
    margin-bottom: 2rem;
  }
}

/* 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 tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: #7b654e;
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th[scope=col] .tate_txt {
  display: inline-block;
  min-height: 3rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  margin: 0;
  line-height: 1em;
}
.tbl_time tr th.time {
  background: #fff;
  border-bottom: 1px solid #7b654e;
  border-left: 1px solid #7b654e;
}
.tbl_time tr td {
  text-align: center;
  color: #7b654e;
  padding: 0.6rem 0.4rem;
  background: #fff;
  border-bottom: 1px solid #7b654e;
  line-height: 1;
}
.tbl_time tr td:last-child {
  border-right: 1px solid #7b654e;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: auto;
  }
  .tbl_time caption {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.2rem 0 0;
  }
  .tbl_time caption > span ~ span {
    margin-left: 2rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.2rem 0 1rem;
    font-size: 1.7rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 29%;
  }
  .tbl_time tr th[scope=col]:last-child {
    padding-right: 3.4rem;
    width: 4rem;
  }
  .tbl_time tr th[scope=col] .tate_txt {
    min-height: auto;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .tbl_time tr th.time {
    font-size: 1.8rem;
  }
  .tbl_time tr td {
    font-size: 1.8rem;
    padding: 1.4rem 0;
  }
  .tbl_time tr td:last-child {
    padding-right: 3.4rem;
    width: 4rem;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  font-size: 2rem;
  text-align: center;
  display: inline-block;
  font-weight: bold;
  color: #717071;
  padding: 1.2rem 2rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 4px 4px 0 rgba(212, 212, 155, 0.85);
}

.tit_02 {
  color: #492b12;
  text-align: center;
  font-size: 2rem;
  margin: 0 0 3rem;
  padding: 0;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.tit_02::before {
  content: "鈴張町クリニック";
  display: block;
  width: 80%;
  margin: 0 auto 1.2rem;
  padding: 0.8rem 3rem 0.4rem;
  color: #fff;
  font-size: 1.4rem;
  background: linear-gradient(to right, #f6f2e6, #492b12 20%, #492b12 80%, #f6f2e6 100%);
}
.tit_02::after {
  content: "";
  display: block;
  margin: 0.6rem auto 0;
  width: 3rem;
  height: 0.2rem;
  background: #c49448;
}
.tit_02 span {
  position: absolute;
  z-index: -1;
  bottom: -2rem;
  right: 0;
  left: 0;
  margin: auto;
  color: #f8f8ed;
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
}

body:not(.index) .tit_02 {
  margin: 0 0 2rem;
  font-weight: 500;
}
body:not(.index) .tit_02::before {
  content: none;
}

.tit_03 {
  color: #fff;
  background: #5d4632;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0.6rem 0.4rem 0.4rem 1.4rem;
  position: relative;
}
.tit_03::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 80%;
  background: #b59070;
  border-radius: 25px;
  position: absolute;
  left: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.tit_04 {
  color: #493421;
  background: #efebd9;
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 0.6rem 0.4rem 0.4rem 1.4rem;
  margin: 0 0 1rem;
}

.tit_05 {
  color: #493421;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 0 0 0.2rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid #493421;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 4.5rem;
    padding: 6rem 15.5rem 5.4rem;
    margin: 0;
    box-shadow: 10px 10px 0 rgba(212, 212, 155, 0.85);
  }
  .tit_02 {
    font-size: 4.8rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    margin: 0 0 5rem;
  }
  .tit_02::before {
    font-size: 2.2rem;
    font-weight: normal;
    width: 52rem;
    margin: 0 auto 4rem;
    padding: 2rem 0 1.6rem;
    letter-spacing: 0;
  }
  .tit_02::after {
    width: 8rem;
    height: 0.4rem;
  }
  .tit_02 span {
    font-size: 14rem;
    letter-spacing: 1.2rem;
    bottom: -6rem;
  }
  body:not(.index) .tit_02 {
    margin: 0 0 4rem;
    font-size: 4rem;
  }
  .tit_03 {
    font-size: 2.2rem;
    padding: 2rem 0.4rem 1.6rem 3.4rem;
    margin: 0 0 2rem;
  }
  .tit_03::before {
    width: 0.6rem;
    left: 1.5rem;
    height: 68%;
  }
  .tit_04 {
    font-size: 2.4rem;
    padding: 2rem 0.4rem 1.6rem 1.4rem;
    margin: 0 0 2rem;
  }
  .tit_05 {
    font-size: 1.8rem;
    padding: 0 0 0.6rem;
    margin: 0 0 2rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  text-indent: -1.8rem;
  padding-left: 2.2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li {
    text-indent: -2rem;
  }
}
.lst_ul01 li::before {
  content: "●";
  margin-right: 0.4rem;
  color: #36ada3;
}
.lst_ul01 li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-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;
  }
}
/* フレックス回り -------------------------------------- */
.flex3 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-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: #0fb197;
  color: #fff;
  text-align: center;
  padding: 0.8rem 4rem 0.6rem;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
}
@media screen and (min-width: 48em), print {
  *[class*=btn] a {
    padding: 2.7rem 10rem 2.7rem 10rem;
  }
}
*[class*=btn] a::after {
  content: "\f006";
  font-family: "fontello";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.txt_link {
  color: #1b967f;
  text-decoration: none !important;
}
.txt_link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* テーブル -------------------------------------- */
.tbl_01 {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_01 tr th {
  width: 65%;
  background: #876f56;
  color: #fff;
  text-align: center;
  font-weight: normal;
  padding: 0.8rem;
  border: 1px solid #fff;
}
@media screen and (min-width: 48em), print {
  .tbl_01 tr th {
    padding: 1.2rem;
    width: 50%;
  }
}
.tbl_01 tr td {
  padding: 0.8rem;
  background: #fff;
  border: 1px solid #876f56;
}
@media screen and (min-width: 48em), print {
  .tbl_01 tr td {
    padding: 1.2rem;
  }
}

.tbl_access {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_access tr th {
  width: 37%;
  background: #876f56;
  border-bottom: 1px solid #fff;
  text-align: center;
  color: #fff;
  font-weight: normal;
  padding: 0.8rem;
}
.tbl_access tr td {
  padding: 0.8rem;
  background: #fff;
  border: 1px solid #876f56;
}

@media screen and (min-width: 48em), print {
  .tbl_access tr th {
    width: 30%;
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
.nolink {
  pointer-events: none !important;
}

html {
  font-size: 3.125vw;
  font-family: "Overpass", "Zen Maru Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

body {
  background: #fffff9;
  color: #3c2b19;
}

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 .overflow_area {
    overflow-x: hidden;
  }
  body .overflow_area > .wrap {
    margin: 8rem auto 11rem;
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.6rem;
    padding: 0 0 0;
    width: 100%;
    position: relative;
    z-index: 0;
  }
}
/* アイコンフォント -------------------------------------- */
@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");
}
@font-face {
  font-family: "kv_txt";
  src: url("../font/07LogoTypeGothic7.ttf") format("truetype");
}
/* ヘッダー -------------------------------------- */
.header {
  position: relative;
  z-index: 1;
}
.header .wrap {
  margin: 1rem;
}
.header .wrap .logo {
  height: 4.6rem;
}
.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 .head_column {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 1rem 0 0;
}
.header .wrap .head_column .headC {
  color: #545254;
  margin: 0 1rem 0 0;
  flex: 1;
}
.header .wrap .head_column .headC .contact_item {
  display: none;
}
.header .wrap .head_column .headC .access_item {
  margin: 0;
  padding: 0.6rem;
  border-radius: 5px;
  background: #f1f1f1;
  font-size: 1.2rem;
}
.header .wrap .head_column .headC .access_item li {
  text-indent: -1.4rem;
  padding-left: 1.8rem;
}
.header .wrap .head_column .headC .access_item li::before {
  font-family: "fontello";
  margin-right: 0.2rem;
  color: #36ada3;
}
.header .wrap .head_column .headC .access_item li.address::before {
  content: "\e800";
}
.header .wrap .head_column .headC .access_item li.access {
  margin: 0.4rem 0 0;
}
.header .wrap .head_column .headC .access_item li.access::before {
  content: "\e802";
}
.header .wrap .head_column .headR {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0.4rem 0.2rem;
  width: 28%;
  background: #f8f5e9;
}
.header .wrap .head_column .headR p {
  text-align: center;
  color: #36ada3;
}
.header .wrap .head_column .headR p::before {
  content: "";
  width: 3rem;
  height: 2rem;
  margin: 0 auto 0.4rem;
  display: block;
  background: url("../img/header_iconCar.png") no-repeat center/contain;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 1.8rem auto 1.4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .header .wrap .logo {
    width: 44.5rem;
    height: 9rem;
    margin-right: 7rem;
  }
  .header .wrap .head_column {
    flex: 1;
  }
  .header .wrap .head_column .headC {
    flex: auto;
    margin: 0 2rem 0 0;
  }
  .header .wrap .head_column .headC > div {
    text-align: right;
  }
  .header .wrap .head_column .headC > div ul {
    display: inline-block;
    text-align: left;
  }
  .header .wrap .head_column .headC > div ul.contact_item {
    margin: 0 0 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .header .wrap .head_column .headC > div ul.contact_item .tel_item > ul li .txt {
    font-size: 1.6rem;
    padding: 0.4rem 0.4rem 0.2rem;
    color: #fff;
    border-radius: 5px;
    background: #222;
    margin-right: 1.2rem;
  }
  .header .wrap .head_column .headC > div ul.contact_item .tel_item > ul li .tel {
    font-size: 2.4rem;
    font-weight: bold;
  }
  .header .wrap .head_column .headC > div ul.contact_item .tel_item > ul li .tel::before {
    content: "\e801";
    font-family: "fontello";
    margin-right: 0.4rem;
    font-weight: normal;
    color: #36ada3;
  }
  .header .wrap .head_column .headC > div ul.contact_item .tel_item > ul li.tel_01 .txt {
    background: #4cbfd8;
  }
  .header .wrap .head_column .headC > div ul.contact_item .tel_item > ul li.tel_01 .tel::before {
    color: #4cbfd8;
  }
  .header .wrap .head_column .headC > div ul.contact_item .tel_item > ul li.tel_02 .txt {
    background: #36ada3;
  }
  .header .wrap .head_column .headC > div ul.contact_item .tel_item > ul li.tel_02 .tel::before {
    color: #36ada3;
  }
  .header .wrap .head_column .headC > div ul.contact_item .tel_item > ul div {
    font-size: 1.5rem;
    margin: 0.6rem 0 0;
    position: relative;
    left: 8.6rem;
  }
  .header .wrap .head_column .headC > div ul.contact_item .rsv {
    width: 18rem;
    margin-left: 1.7rem;
  }
  .header .wrap .head_column .headC > div ul.contact_item .rsv a {
    color: #fff;
    background: linear-gradient(to bottom, #4dc0d9, #0cb290);
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    padding: 2rem 1rem 1.8rem 3rem;
    border-radius: 7px;
    display: block;
    text-decoration: none !important;
    position: relative;
  }
  .header .wrap .head_column .headC > div ul.contact_item .rsv a::before, .header .wrap .head_column .headC > div ul.contact_item .rsv a::after {
    font-family: "fontello";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .header .wrap .head_column .headC > div ul.contact_item .rsv a::before {
    content: "\e803";
    left: 3.4rem;
    font-size: 2.8rem;
  }
  .header .wrap .head_column .headC > div ul.contact_item .rsv a::after {
    content: "\f006";
    right: 2.6rem;
    top: 48%;
    font-size: 1.6rem;
  }
  .header .wrap .head_column .headC > div ul.access_item {
    background: none;
    padding: 0;
  }
  .header .wrap .head_column .headC > div ul.access_item li {
    text-indent: -1.8rem;
    font-size: 1.6rem;
  }
  .header .wrap .head_column .headR {
    width: 18%;
  }
  .header .wrap .head_column .headR p {
    font-size: 1.6rem;
  }
  .header .wrap .head_column .headR p::before {
    width: 5rem;
    height: 3rem;
    margin: 0 auto 1.2rem;
  }
}
/* 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: clr_txt;
  background: none;
  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: "ࠀ";
  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: "ࠁ";
  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: #f2f2f2;
  padding: 1.6rem;
  position: absolute;
  top: 5.4rem;
  right: 0;
  margin: auto;
}
.slicknav_menu .slicknav_nav .gnav {
  margin: 0;
}
.slicknav_menu .slicknav_nav .gnav li a {
  display: block;
  color: #3c2b19;
  padding: 1rem 0;
  font-size: 1.6rem;
  position: relative;
}
.slicknav_menu .slicknav_nav .gnav li a span {
  display: none;
}
.slicknav_menu .slicknav_nav .gnav li a .sub::after {
  position: absolute;
  right: 1rem;
  font-family: "fontello";
  content: "\e804";
  color: #2fa5a4;
  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: "\e807";
}
.slicknav_menu .slicknav_nav .gnav .subnav {
  border-top: 1px solid #3c2b19;
  border-bottom: 1px solid #3c2b19;
  background: #f9f9f9;
  margin: 0 0 0.6rem;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.slicknav_menu .slicknav_nav .gnav .subnav li {
  width: 50%;
}
.slicknav_menu .slicknav_nav .gnav .subnav li a {
  padding: 1.2rem 0.4rem 1rem 1.2rem;
}
.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;
    margin: 3.5rem 0 0;
    position: relative;
    z-index: 1;
  }
  #nav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #nav .gnav li {
    width: 16.6666666667%;
    position: relative;
  }
  #nav .gnav li:first-child::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #e1cab6;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #nav .gnav li::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #e1cab6;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #nav .gnav li a {
    display: block;
    text-align: center;
    font-size: 1.7rem;
    color: #fff;
    padding: 1rem 0 1.3rem;
  }
  #nav .gnav li a span {
    display: block;
    margin: 0.6rem 0 0;
    font-size: 1.2rem;
    color: #dcb38f;
  }
  #nav .gnav li .subnav {
    background: #fbf0e5;
    width: 30rem;
    position: absolute;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 5px;
    box-shadow: 0 2px 10px #d1d1d1;
  }
  #nav .gnav li .subnav li {
    width: 50%;
  }
  #nav .gnav li .subnav li::before, #nav .gnav li .subnav li::after {
    content: none;
  }
  #nav .gnav li .subnav li a {
    display: block;
    font-weight: bold;
    width: 100%;
    padding: 1.6rem 0;
    text-align: center;
    color: #3c2b19;
  }
  #nav .gnav li .subnav li a span {
    display: none;
  }
  /* Gナビ　ハイライト */
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: url("../img/overview_bg01.jpg") no-repeat center/cover;
}
.overview > .wrap {
  background: #fff;
  border-radius: 5px;
  padding: 1rem;
}
.overview > .wrap .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview > .wrap .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview > .wrap .address {
  margin: 0 auto;
  text-align: center;
}
.overview > .wrap .overviewL .contact_area {
  margin: 0.6rem 0 0.8rem;
  padding: 0.8rem;
  text-align: center;
  background: #f6f3e5;
}
.overview > .wrap .overviewL .contact_area .tel_item li .txt {
  font-size: 1.4rem;
  padding: 0.4rem 0.4rem 0.2rem;
  color: #fff;
  border-radius: 5px;
  background: #222;
  margin-right: 1.2rem;
}
.overview > .wrap .overviewL .contact_area .tel_item li .tel {
  font-size: 1.6rem;
  font-weight: bold;
}
.overview > .wrap .overviewL .contact_area .tel_item li .tel::before {
  content: "\e801";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-weight: normal;
  color: #36ada3;
}
.overview > .wrap .overviewL .contact_area .tel_item li.tel_01 .txt {
  background: #4cbfd8;
}
.overview > .wrap .overviewL .contact_area .tel_item li.tel_01 .tel::before {
  color: #4cbfd8;
}
.overview > .wrap .overviewL .contact_area .tel_item li.tel_02 .txt {
  background: #36ada3;
}
.overview > .wrap .overviewL .contact_area .tel_item li.tel_02 .tel::before {
  color: #36ada3;
}
.overview > .wrap .overviewL .contact_area .rsv_btn {
  margin: 0.6rem 0 0;
}
.overview > .wrap .overviewL .contact_area .rsv_btn a {
  color: #fff;
  padding: 0.4rem 2rem;
  border-radius: 7px;
  display: block;
  text-decoration: none !important;
  background: linear-gradient(to bottom, #4dc0d9, #0ab18e);
}
.overview > .wrap .overviewL .contact_area .rsv_btn a::before, .overview > .wrap .overviewL .contact_area .rsv_btn a::after {
  content: "";
  display: inline-block;
  font-family: "fontello";
  color: #fff;
}
.overview > .wrap .overviewL .contact_area .rsv_btn a::before {
  content: "\e803";
  margin-right: 2rem;
  font-size: 2.2rem;
  position: relative;
  bottom: -0.2rem;
}
.overview > .wrap .overviewL .contact_area .rsv_btn a::after {
  content: "\f006";
  margin-left: 2rem;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #3c2b19;
}
.overview > .wrap .overviewL .tbl_gaiyo th {
  width: 27%;
  height: 1rem;
  text-align: left;
  padding: 0.4rem 0;
  font-weight: normal;
  color: #3c2b19;
  border-bottom: 1px solid #3c2b19;
}
.overview > .wrap .overviewL .tbl_gaiyo th span {
  margin: 0;
  padding: 0.8rem 0.2rem 0.8rem 1rem;
  height: 100%;
  background: #f8f5e9;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.2rem;
}
.overview > .wrap .overviewL .tbl_gaiyo td {
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 0.4rem 0.4rem;
  border-bottom: 1px solid #3c2b19;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .gmap {
  height: 30rem;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 100%;
  border: 6px solid #cfc6bd;
}
.overview > .wrap .overviewR .btn_map {
  text-align: center;
}
.overview > .wrap .overviewR .btn_map a {
  display: block;
  text-decoration: none !important;
  background: #14b399;
  color: #fff;
  margin: 1.2rem 0 0;
  padding: 0.8rem 0.8rem;
  border-radius: 7px;
}
.overview > .wrap .overviewR .btn_map a::before, .overview > .wrap .overviewR .btn_map a::after {
  content: "";
  display: inline-block;
  font-family: "fontello";
  color: #fff;
}
.overview > .wrap .overviewR .btn_map a::before {
  content: "\e800";
  margin-right: 2rem;
}
.overview > .wrap .overviewR .btn_map a::after {
  content: "\f006";
  margin-left: 2rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 auto 0;
    padding: 9rem 0;
    font-size: 1.8rem;
    overflow-x: hidden;
  }
  .overview > .wrap {
    padding: 6.5rem 0 7.5rem;
    position: relative;
    z-index: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .overview > .wrap::after {
    content: "";
    display: block;
    background: #fff;
    width: 148rem;
    height: 100%;
    position: absolute;
    z-index: -1;
    border-radius: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .overview > .wrap .clinic_name {
    margin: 0 0 2.2rem;
    width: 100%;
  }
  .overview > .wrap .clinic_name img {
    max-width: 43rem;
  }
  .overview > .wrap .address {
    font-size: 1.8rem;
    width: 100%;
  }
  .overview > .wrap .overviewL,
  .overview > .wrap .overviewR {
    width: 48%;
    margin: 4rem 0 0;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .contact_area {
    margin: 0 0 2rem;
    padding: 1.7rem 3.1rem 1.7rem 1.4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .overview > .wrap .overviewL .contact_area .tel_item {
    width: 50%;
    margin-right: 0.8rem;
  }
  .overview > .wrap .overviewL .contact_area .tel_item li .txt {
    font-size: 1.6rem;
    padding: 0.4rem 0.4rem 0.2rem;
    margin-right: 1.2rem;
  }
  .overview > .wrap .overviewL .contact_area .tel_item li .tel {
    font-size: 2rem;
  }
  .overview > .wrap .overviewL .contact_area .tel_item li .tel::before {
    margin-right: 0.4rem;
  }
  .overview > .wrap .overviewL .contact_area .rsv_btn {
    margin: 0.6rem 0 0;
  }
  .overview > .wrap .overviewL .contact_area .rsv_btn a {
    width: 25rem;
    font-size: 2rem;
    font-weight: 500;
    padding: 1.4rem 2rem 1.2rem 3rem;
    border-radius: 7px;
    position: relative;
  }
  .overview > .wrap .overviewL .contact_area .rsv_btn a::before {
    font-size: 3rem;
    position: absolute;
    left: 3rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .overview > .wrap .overviewL .contact_area .rsv_btn a::after {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .overview > .wrap .overviewL .tbl_gaiyo th {
    width: 21%;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th span {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.4rem 0.2rem 1.4rem 2.1rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 1.4rem 0.2rem 1.4rem 1.8rem;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
  }
  .overview > .wrap .overviewR .gmap {
    height: 51rem;
  }
  .overview > .wrap .overviewR .gmap iframe {
    border: 8px solid #cfc6bd;
  }
  .overview > .wrap .overviewR .btn_map {
    text-align: center;
  }
  .overview > .wrap .overviewR .btn_map a {
    width: 24rem;
    margin: 0 auto;
    padding: 1.4rem 0 1rem 4rem;
    font-weight: 500;
    font-size: 1.6rem;
    position: relative;
  }
  .overview > .wrap .overviewR .btn_map a::before {
    font-size: 2.2rem;
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 6rem;
  right: 1rem;
  z-index: 1;
  cursor: pointer;
}
#pageup a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.4rem;
  background: #7c6144;
  border-radius: 50%;
}
#pageup a::before {
  text-align: center;
  font-size: 1.8rem;
  font-family: "fontello";
  content: "\f005";
  color: #fff;
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    bottom: 12rem;
    right: 6rem;
  }
  #pageup a {
    width: 6.4rem;
    height: 6.4rem;
  }
  #pageup a::before {
    font-size: 2.2rem;
  }
}
.tel_rsv {
  width: 100%;
  height: 4.6rem;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.tel_rsv .tel_item {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  background: #4cbfd8;
  color: #fff;
  width: 32%;
  height: 100%;
  font-size: 1.4rem;
}
.tel_rsv .tel_item a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.tel_rsv .tel_item a::before {
  content: "\e801";
  font-family: "fontello";
  margin-right: 0.4rem;
  color: #fff;
}
.tel_rsv .tel_item_yoyaku {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  width: 32%;
  height: 100%;
  font-size: 1.4rem;
  text-align: center;
}
.tel_rsv .tel_item_yoyaku a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.tel_rsv .tel_item_yoyaku a::before {
  content: "\e801";
  font-family: "fontello";
  margin-right: 0.4rem;
  color: #36ada3;
}
.tel_rsv .rsv {
  width: 36%;
  height: 100%;
}
.tel_rsv .rsv a {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.6rem;
  text-align: center;
  padding: 0 0.4rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(to bottom, #4dc0d9, #0ab18e);
  position: relative;
}
.tel_rsv .rsv a::before {
  content: "\e803";
  font-family: "fontello";
  font-size: 1.6rem;
  position: absolute;
  left: 1rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.tel_rsv .rsv a::after {
  content: "\f006";
  font-family: "fontello";
  position: absolute;
  right: 1rem;
  top: 46%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (min-width: 48em), print {
  .tel_rsv {
    display: none;
    width: 8rem;
    bottom: 4rem;
    right: 2rem;
    left: auto;
    cursor: pointer;
    background: none;
    padding: 0;
  }
  .tel_rsv .tel_item_a,
  .tel_rsv .tel_item_b {
    display: none;
  }
  .tel_rsv .rsv {
    display: none;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4.6rem;
  background: #493421;
}
.footer .copy {
  display: block;
  background: #5e442d;
  color: #fff;
  padding: 1.4rem 0 1.2rem;
  font-size: 1.2rem;
}
.footer .menu_flex {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 6.6rem 0 0;
  }
  .footer .copy {
    margin: 8rem 0 0;
    padding: 2.8rem 0 2.6rem;
    font-size: 1.6rem;
  }
  .footer .menu_flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .footer .menu_flex > div {
    color: #fff;
    width: 50rem;
    margin-right: 4rem;
  }
  .footer .menu_flex > div p {
    font-size: 1.8rem;
    padding: 0 0 1.4rem;
    margin: 0 0 3rem;
    text-align: left;
    border-bottom: 1px solid #8b6644;
  }
  .footer .menu_flex > div ul {
    text-align: left;
    font-size: 1.6rem;
    column-count: 2;
    width: 36rem;
  }
  .footer .menu_flex > div ul li {
    margin: 0 0 2.4rem;
  }
  .footer .menu_flex > div ul li.treatment {
    display: none;
  }
  .footer .menu_flex > div ul li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .footer .menu_flex > div ul li a::before {
    content: "\f006";
    display: inline-block;
    font-family: "fontello";
    margin-right: 0.8rem;
    color: #b28e69;
    font-size: 1.4rem;
  }
  .footer .menu_flex > div ul li a span:not(.br) {
    display: none;
  }
  .footer .menu_flex > div ~ div {
    margin-left: 4rem;
  }
  .footer .menu_flex > div ~ div ul {
    column-count: 3;
    width: 56rem;
  }
  .footer .menu_flex > div ~ div ul li a div {
    display: inline;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
.kv_area {
  position: relative;
  z-index: 1;
}
.kv_area::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 12rem;
  background: linear-gradient(to bottom, #c8aa8f, #755c46);
  position: absolute;
  z-index: -1;
  bottom: -3rem;
  left: 0;
  right: 0;
  box-shadow: 0 3px 5px #ece7df;
}
.kv_area .wrap {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.kv_area .wrap #keyvsl {
  margin: 1rem 0rem 12rem;
  height: 16rem;
  background: url(../img/index_keyvsl01.jpg) no-repeat center center/cover;
}
.kv_area .wrap .txt_area {
  font-size: 1.4rem;
  width: 100%;
  height: 16rem;
  position: absolute;
  top: 0;
  left: 0;
}
.kv_area .wrap .txt_area .kv_txt {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -12.5rem;
}
.kv_area .wrap .txt_area .kv_txt .bg {
  display: inline-block !important;
  width: 90%;
  padding: 0.6rem;
  background: white;
  position: relative;
  color: #545254;
  text-align: left;
  font-family: "kv_txt";
}
.kv_area .wrap .txt_area .kv_txt .bg::before {
  content: "";
  background: rgba(219, 219, 168, 0.85);
  position: absolute;
  left: -1rem;
  top: -1rem;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.kv_area .wrap .txt_area .kv_txt .bg::after {
  content: "";
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
}
.kv_area .wrap .txt_area .kv_txt .bg .clr_txt {
  color: #16a498;
}

@media screen and (min-width: 48em), print {
  .kv_area::before {
    height: 52rem;
    bottom: -13rem;
    box-shadow: 0 10px 16px #ece7df;
  }
  .kv_area .wrap {
    margin: 0 auto;
  }
  .kv_area .wrap #keyvsl {
    margin: 0 calc(50% - 800px);
    width: 1600px;
    height: 68.2rem;
    background: url(../img/index_keyvsl01.jpg) no-repeat center center/auto auto;
  }
  .kv_area .wrap .txt_area {
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
  .kv_area .wrap .txt_area .kv_txt {
    width: 23.5rem;
    height: 53rem;
    font-size: 3.2rem;
    bottom: 8rem;
    left: 5rem;
    text-align: center;
  }
  .kv_area .wrap .txt_area .kv_txt .bg {
    padding: 3rem 2.8rem;
    width: 100%;
    display: flex !important;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .kv_area .wrap .txt_area .kv_txt .bg::before {
    width: calc(100% + 2.3rem);
    height: calc(100% + 2.3rem);
    left: -2.3rem;
    top: -2.3rem;
  }
  .kv_area .wrap .txt_area .kv_txt .bg::after {
    width: calc(100% + 2.3rem);
    height: calc(100% + 2.3rem);
  }
  .kv_area .wrap .txt_area .kv_txt .bg span {
    display: block;
  }
  .kv_area .wrap .txt_area .kv_txt .bg span.clr_txt {
    display: inline;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 4rem 0 4rem;
}
.info .tit_02::before {
  content: none;
}
.info .tit_02 span {
  letter-spacing: 1rem;
}
.info dl {
  margin: 0;
  padding: 1rem;
  background: #dfdfca;
  line-height: 1.4;
  height: 100%;
}
.info dl dt {
  font-weight: bold;
  color: #55402f;
  margin: 0.4rem 0 0;
  padding: 1rem 1rem 1rem 3rem;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.info dl dt:first-child {
  margin: 0;
}
.info dl dt .date {
  display: block;
  line-height: 1.8;
  position: relative;
  left: -2rem;
}
.info dl dt::before {
  content: "\e804";
  font-family: "fontello";
  position: absolute;
  top: 3.2rem;
  left: 1rem;
  font-weight: normal;
  color: #2fa5a4;
}
.info dl dt.close::before {
  content: "\e807";
}
.info dl dd {
  padding: 0 1rem 1rem;
  background: #fff;
  margin: 0;
}
.info dl dd:nth-of-type(n + 4) {
  display: none;
}
.info dl dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 9.6rem 0 9.2rem;
  }
  .info dl {
    padding: 2rem;
  }
  .info dl dt {
    padding: 2.1rem 1rem 2.1rem 17rem;
    margin: 0.5rem 0 0;
    font-size: 1.8rem;
  }
  .info dl dt:first-child {
    margin: 0;
  }
  .info dl dt:hover {
    color: rgba(85, 64, 47, 0.8);
  }
  .info dl dt:hover::before {
    opacity: 0.8;
  }
  .info dl dt .date {
    position: absolute;
    top: 1.8rem;
    left: 6.4rem;
  }
  .info dl dt::before {
    top: 1.8rem;
    left: 2.4rem;
    font-size: 2.2rem;
  }
  .info dl dd {
    padding: 0 1rem 2.1rem 2.4rem;
  }
}
/* 診療のご案内 -------------------------------------- */
.treatment_menu {
  padding: 4rem 2rem;
  background: #f8f5e9;
}
.treatment_menu ul li ~ li {
  margin-top: 1.2rem;
}
.treatment_menu ul li a {
  box-shadow: 4px 4px 4px #d1d1d1;
  display: block;
  border-radius: 5px;
  padding: 1rem;
  text-decoration: none !important;
  color: #fff;
  background: linear-gradient(to bottom, #b0956a, #7e6752);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}
.treatment_menu ul li a::before {
  content: "";
  width: 6rem;
  height: 6rem;
  background: #fff;
  border-radius: 50%;
}
.treatment_menu ul li a div {
  text-align: center;
  flex: 1;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.treatment_menu ul li a div span:not(.br) {
  display: block;
  margin: 0.2rem auto 0;
  padding: 0.2rem 0 0;
  width: 80%;
  border-top: 1px solid #dcb38f;
  color: #dcb38f;
  font-size: 1.2rem;
}
.treatment_menu ul li a div::before, .treatment_menu ul li a div::after {
  content: "";
  display: block;
  position: absolute;
}
.treatment_menu ul li a div::before {
  z-index: 2;
  right: -8rem;
  bottom: -9rem;
  width: 10rem;
  height: 10rem;
  background: #2fa5a4;
  transform: rotate(45deg);
}
.treatment_menu ul li a div::after {
  z-index: 1;
  right: -8rem;
  bottom: -8rem;
  width: 10rem;
  height: 10rem;
  background: rgba(47, 165, 164, 0.6);
  transform: rotate(45deg);
}
.treatment_menu ul li a.internal::before {
  background: url("../img/index_treatmentMenu_internal.svg") no-repeat center/60% auto, #fff;
}
.treatment_menu ul li a.diabetes::before {
  background: url("../img/index_treatmentMenu_diabetes.svg") no-repeat center/60% auto, #fff;
}
.treatment_menu ul li a.thyroid::before {
  background: url("../img/index_treatmentMenu_thyroid.svg") no-repeat center/60% auto, #fff;
}
.treatment_menu ul li a.hypertension::before {
  background: url("../img/index_treatmentMenu_hypertension.svg") no-repeat center/60% auto, #fff;
}
.treatment_menu ul li a.abnormality::before {
  background: url("../img/index_treatmentMenu_abnormality.svg") no-repeat center/60% auto, #fff;
}
.treatment_menu ul li a.gout::before {
  background: url("../img/index_treatmentMenu_gout.svg") no-repeat center/60% auto, #fff;
}
.treatment_menu ul li a.endocrinedisorders::before {
  background: url("../img/index_treatmentMenu_endocrinedisorders.svg") no-repeat center/60% auto, #fff;
}
.treatment_menu ul li a.checkup::before {
  background: url("../img/index_treatmentMenu_checkup.svg") no-repeat center/60% auto, #fff;
}
.treatment_menu ul li a.vaccination::before {
  background: url("../img/index_treatmentMenu_vaccination.svg") no-repeat center/60% auto, #fff;
}
.treatment_menu ul li a.self::before {
  background: url("../img/index_treatmentMenu_self.svg") no-repeat center/60% auto, #fff;
}

@media screen and (min-width: 48em), print {
  .treatment_menu {
    padding: 9.5rem 0 12rem;
  }
  .treatment_menu ul {
    margin: 6rem auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .treatment_menu ul li {
    width: 38rem;
    margin: 0 2.8rem 2rem 0;
    position: relative;
    z-index: 1;
  }
  .treatment_menu ul li::after {
    content: "";
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 5px;
  }
  .treatment_menu ul li ~ li {
    margin-top: 0;
  }
  .treatment_menu ul li:nth-child(3n) {
    margin: 0 0 2rem 0;
  }
  .treatment_menu ul li a {
    padding: 2.6rem 1rem 2.6rem 2.4rem;
    line-height: 1;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .treatment_menu ul li a::before {
    width: 11rem;
    height: 11rem;
  }
  .treatment_menu ul li a div {
    font-size: 2.8rem;
    padding: 0 0 2rem;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .treatment_menu ul li a div span:not(.br) {
    padding: 1rem 0 0;
    margin: 1rem auto 0;
  }
  .treatment_menu ul li a div::before {
    right: -8rem;
    bottom: -8rem;
  }
  .treatment_menu ul li a div::after {
    right: -6.5rem;
    bottom: -8rem;
  }
}
/* 特長 -------------------------------------- */
.feature {
  padding: 4rem 0 4rem;
}
.feature .wrap {
  padding: 0;
}
.feature .wrap ul {
  counter-reset: feature_num;
}
.feature .wrap ul li {
  counter-increment: feature_num 1;
  margin: 0 0 2rem;
  padding: 0.2rem 1rem 1rem;
  background: #f8f5e9;
}
.feature .wrap ul li .tit {
  padding: 0.4rem 0.4rem 0.4rem 1rem;
  overflow: hidden;
  background: #bba17a;
  color: #fff;
  position: relative;
  z-index: 1;
}
.feature .wrap ul li .tit::before, .feature .wrap ul li .tit::after {
  content: "";
  width: 40%;
  height: 300%;
  display: block;
  position: absolute;
  z-index: -1;
  top: -46px;
  transform: rotate(30deg);
}
.feature .wrap ul li .tit::before {
  background: #2fa5a4;
  left: -10px;
}
.feature .wrap ul li .tit::after {
  background: rgba(47, 165, 164, 0.6);
  left: 4px;
}
.feature .wrap ul li .tit span {
  display: inline-block;
}
.feature .wrap ul li .tit span::after {
  content: counter(feature_num, decimal-leading-zero);
  display: inline-block;
  font-size: 2rem;
  margin-left: 0.2rem;
}
.feature .wrap ul li .img {
  width: 96%;
  position: relative;
  z-index: 1;
}
.feature .wrap ul li .img::after {
  content: "";
  display: block;
  background: #8b6c52;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: -1;
}
.feature .wrap ul li .img img {
  display: block;
  height: auto;
  margin: 0 auto 0 0;
}
.feature .wrap ul li .img + p {
  margin: 2rem 0 0;
  font-weight: 500;
}
.feature .wrap ul li:nth-child(even) .img {
  margin: 0 0 0 auto;
}
.feature .wrap ul li:nth-child(even) .img::after {
  right: 1rem;
}
.feature .wrap ul li:nth-child(even) .img img {
  margin: 0 0 0 auto;
}
@media screen and (min-width: 48em), print {
  .feature {
    padding: 12rem 0 2rem;
  }
  .feature .wrap ul {
    margin: 12rem 0 0;
  }
  .feature .wrap ul li {
    position: relative;
    min-height: 41rem;
    margin: 0 0 5rem;
    background: none;
  }
  .feature .wrap ul li::before {
    content: "";
    display: block;
    height: 34.2rem;
    width: 1200px;
    background: #f8f5e9;
    position: absolute;
    z-index: -1;
    top: 36%;
    left: -600px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .feature .wrap ul li .tit {
    width: 50%;
    font-size: 1.8rem;
    padding: 0.6rem 0 1rem 2.6rem;
  }
  .feature .wrap ul li .tit::before, .feature .wrap ul li .tit::after {
    height: 335%;
    width: 40%;
    top: -74px;
  }
  .feature .wrap ul li .tit::before {
    left: 0;
  }
  .feature .wrap ul li .tit::after {
    left: 10px;
  }
  .feature .wrap ul li .tit span::after {
    font-size: 4.2rem;
    line-height: 1;
    position: relative;
    bottom: -0.5rem;
  }
  .feature .wrap ul li .img {
    width: 64rem;
    position: absolute;
    right: 2.6rem;
    top: -6rem;
  }
  .feature .wrap ul li .img::after {
    bottom: -2.6rem;
    right: -2.6rem;
  }
  .feature .wrap ul li .img + p {
    font-size: 2.7rem;
    margin: 2.8rem 0 0;
    width: 50rem;
  }
  .feature .wrap ul li:nth-child(even)::before {
    left: auto;
    right: -600px;
  }
  .feature .wrap ul li:nth-child(even) .tit {
    margin: 0 0 0 auto;
    padding: 0.6rem 0 1rem 12rem;
  }
  .feature .wrap ul li:nth-child(even) .tit::before {
    left: 60px;
  }
  .feature .wrap ul li:nth-child(even) .tit::after {
    left: 70px;
  }
  .feature .wrap ul li:nth-child(even) .img {
    left: 2.6rem;
    right: auto;
  }
  .feature .wrap ul li:nth-child(even) .img::after {
    left: -2.6rem;
    right: auto;
  }
  .feature .wrap ul li:nth-child(even) .img + p {
    margin: 2.8rem 0 0 auto;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .h1_area {
  max-width: 100%;
  height: 9rem;
  margin: 0 0 6rem;
  position: relative;
  z-index: 1;
}
body:not(.index) .h1_area::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 7rem;
  background: linear-gradient(to bottom, #c8aa8f, #755c46);
  position: absolute;
  z-index: -1;
  bottom: -2rem;
  left: 0;
  right: 0;
  box-shadow: 0 3px 5px #ece7df;
}
body:not(.index) .h1_area .bg {
  background: url("../img/tit_01.jpg") no-repeat center/cover;
  max-width: 100%;
  height: 100%;
  margin: 0 2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .h1_area {
    height: 40rem;
    margin: 0;
  }
  body:not(.index) .h1_area::before {
    height: 36rem;
    bottom: -13rem;
    box-shadow: 0 10px 16px #ece7df;
  }
  body:not(.index) .h1_area .bg {
    background: url("../img/tit_01.jpg") no-repeat center/auto auto;
    width: 1600px;
    margin: 0 auto;
  }
}
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    width: 1200px;
    margin: 8rem auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  body:not(.index) .breadcrumb_list li {
    font-size: 1.5rem;
    display: inline-block;
  }
  body:not(.index) .breadcrumb_list li:not(:last-child)::after {
    content: "＞";
    display: inline-block;
    margin: 0 1rem;
  }
  body:not(.index) .breadcrumb_list li a {
    color: #1b967f;
  }
  body:not(.index) .breadcrumb_list li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
body:not(.index) .main {
  margin: 0 0 6rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 6rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 48em), print {
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
/* ドクター紹介 */
.doctor .img_doctor {
  display: block;
  max-width: 30%;
  height: auto;
  margin: 1rem auto 2rem;
}
.doctor .txt_doctor {
  text-align: left;
}
.doctor .doctor_name {
  text-align: right;
}
.doctor .doctor_name span {
  font-size: 120%;
}

@media screen and (min-width: 48em), print {
  .doctor .img_doctor {
    float: right;
    max-width: 16%;
    margin: 0 0 2rem 6rem;
  }
  .doctor .txt_doctor {
    width: 90%;
    margin: 0 auto;
  }
  .doctor .doctor_name {
    margin: 4rem 0 0;
  }
  .doctor .flex2 > section {
    width: 53%;
  }
  .doctor .flex2 > div {
    width: 43%;
  }
}
/* クリニック紹介 */
#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;
}

.flex_img figure img {
  display: block;
  width: 0 auto;
}
.flex_img figure figcaption {
  text-align: left;
  padding: 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #clinicslide {
    margin-bottom: 14rem;
  }
  .flex_img {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex_img > * {
    width: 48%;
    margin-top: 0 !important;
    margin: 0 0 4rem;
  }
  .flex_img > * figure figcaption {
    padding: 1.2rem 0 0;
    font-size: 1.8rem;
  }
}
/* 初めての方へ */
.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 .gmap {
  height: 30rem;
  margin: 2rem 0;
}

@media screen and (min-width: 48em), print {
  .access .gmap {
    height: 50rem;
  }
}