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

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

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

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

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

/* ----------------------------------------------------------------------------------
モジュール　_module.scss
---------------------------------------------------------------------------------- */
/* clearfix -------------------------------------- */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

/* float -------------------------------------- */
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

/* txt -------------------------------------- */
.txt_c {
  text-align: center;
}

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

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

/* 枠 -------------------------------------- */
.waku {
  padding: 3rem;
  border: 3px solid #EC6685;
  border-radius: 2rem;
}
@media screen and (min-width: 48em), print {
  .waku {
    padding: 3rem 4rem 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;
}

.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;
  border-bottom: 1px solid #917D65;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  color: #402E19;
  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: #917D65;
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  font-size: 1.2rem;
  background: #fff;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: #fff;
  color: #917D65;
  line-height: 1;
}

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

/* タイトル回り -------------------------------------- */
.tit_01 {
  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;
  color: #917D65;
  font-size: 1.8rem;
  font-weight: 500;
  min-height: 8rem;
  width: 100%;
  padding: 0 0 0.4rem;
  margin: 0;
  position: relative;
  z-index: 1;
}
.tit_01::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: url(../img/tit_01.jpg) no-repeat center left 10%/cover;
  border-radius: 20px;
  border: 2px solid #fff;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.tit_02 {
  color: #64523D;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 1.6rem;
  padding: 0;
  line-height: 1.2;
}
.tit_02 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Readex Pro", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  color: #AB9A86;
}
.tit_02 span::before, .tit_02 span::after {
  content: "●";
  color: #F8B7C6;
  display: inline-block;
  margin: 0 0.2rem 0;
}

body:not(.index) .tit_02 {
  color: #64523D;
}
body:not(.index) .tit_02::after {
  content: "";
  display: block;
  margin: 0.4rem auto 0;
  width: 40%;
  height: 0.6rem;
  background: url("../img/tit_02.svg") no-repeat center/contain;
}

.tit_03 {
  color: #fff;
  background: #AB9A86;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 1.2rem 2rem 1.2rem 3.4rem;
  margin: 0 0 1rem;
  border-radius: 30px;
  position: relative;
}
.tit_03::before {
  content: "\f111";
  font-family: "fontello";
  position: absolute;
  top: 1.4rem;
  left: 1rem;
}

.tit_04 {
  color: #C67386;
  background: #FFEBEE;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 1.2rem 2rem 1.2rem 3.4rem;
  margin: 0 0 1rem;
  border-radius: 30px;
  position: relative;
}
.tit_04::before {
  content: "\f111";
  color: #EEC4CD;
  font-family: "fontello";
  position: absolute;
  top: 1.4rem;
  left: 1rem;
}

.tit_05 {
  color: #64523D;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  border-bottom: 2px dotted #917D65;
}
.tit_05::before {
  content: "\f111";
  color: #DCD5CC;
  font-family: "fontello";
  margin-right: 0.6rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    width: 1180px;
    height: 20.8rem;
    margin: 1.7rem auto 0;
    font-size: 3.8rem;
  }
  .tit_01::before {
    width: 140rem;
  }
  .tit_02 {
    font-size: 3.6rem;
    margin: 0 0 3.4rem;
  }
  .tit_02 span {
    font-size: 1.6rem;
    margin: 0 0.6rem 1.4rem;
  }
  body:not(.index) .tit_02 {
    font-size: 3.6rem;
  }
  body:not(.index) .tit_02::after {
    margin: 1.8rem auto 0;
    width: 19rem;
    height: 0.8rem;
  }
  .tit_03 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
    padding: 1.8rem 3rem 1.8rem 5rem;
  }
  .tit_03::before {
    top: 2rem;
    left: 1.4rem;
  }
  .tit_04 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
  .tit_04::before {
    font-size: 1.8rem;
  }
  .tit_05 {
    font-size: 1.8rem;
    margin: 0 0 2rem;
    padding: 0 0 1rem 3.8rem;
    position: relative;
  }
  .tit_05::before {
    position: absolute;
    left: 1rem;
    top: 0.2rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  text-indent: -1.4rem;
  padding-left: 1.4rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li {
    text-indent: -1.7rem;
  }
}
.lst_ul01 li::before {
  content: "\e810";
  font-family: "fontello";
  font-size: 1.2rem;
  margin-right: 0.4rem;
  color: #F292A8;
  position: relative;
  top: -0.2rem;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li::before {
    margin-right: 0.8rem;
  }
}
.lst_ul01 li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_ul01.flex li {
    width: 49%;
  }
}

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

.lst_dl01 div {
  margin: 0 0 1rem;
}
.lst_dl01 div dt {
  font-weight: bold;
}
.lst_dl01 div dd {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lst_dl01 div dt {
    width: 14rem;
  }
  .lst_dl01 div dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
/* フレックス回り -------------------------------------- */
.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li {
    width: 48%;
    margin: 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  background: #000;
  color: #fff;
  text-align: center;
  text-decoration: none !important;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  padding: 0.8rem 0;
  font-size: 1.2rem;
  display: block;
  color: #fff;
  background: #9E8E7B;
  border-radius: 30px;
  -webkit-box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}
*[class*=btn_] a::before {
  content: "\f006";
  font-family: "fontello";
  font-size: 1rem;
  color: #F8D2DA;
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] a {
    margin: 0;
    font-size: 1.8rem;
  }
  *[class*=btn_] a::before {
    font-size: 1.6rem;
    left: 1.6rem;
  }
}

.btn_01 a {
  background: #eee;
}

.btn_rsv a::before {
  content: "\e80b";
  font-size: 1.6rem;
  color: #F8D2DA;
  position: static;
  margin-right: 1.2rem;
}

/* フローチャート -------------------------------------- */
.dl_flow {
  counter-reset: num_flow;
}
.dl_flow dt {
  counter-increment: num_flow 1;
  padding: 1.4rem 1rem 1rem;
  background: #EEE8E2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 48em), print {
  .dl_flow dt {
    padding: 2rem;
  }
}
.dl_flow dt::before {
  content: counter(num_flow);
  margin-right: 0.6rem;
  font-weight: bold;
  min-width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #AB9A86;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: -0.5rem;
}
@media screen and (min-width: 48em), print {
  .dl_flow dt::before {
    top: 0;
    margin-right: 1.4rem;
  }
}
.dl_flow dd {
  margin: 1rem 0 6rem;
  padding: 1rem;
  background: #fffaf4;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .dl_flow dd {
    margin: 0 0 10rem;
    padding: 2rem 4rem;
  }
}
.dl_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;
}
.dl_flow dd:last-child {
  margin: 1rem 0 0;
}
.dl_flow dd .lst_ul01 li {
  text-indent: -1.4rem;
  padding-left: 1rem;
}

/* テーブル -------------------------------------- */
.tbl_01 {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_01 thead tr th {
  width: 30%;
  background: #917D65;
  color: #fff;
  text-align: center;
  font-weight: normal;
  border-right: 1px solid #FFFFFF;
}
.tbl_01 tbody tr th {
  padding: 0.8rem;
  color: #231815;
  background: #EEE8E2;
  border: 1px solid #917D65;
}
.tbl_01 tbody tr td {
  padding: 0.8rem;
  border: 1px solid #917D65;
}

.tbl_price {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_price thead tr th {
  width: 30%;
  background: #917D65;
  color: #fff;
  text-align: center;
  font-weight: normal;
  border-right: 1px solid #FFFFFF;
}
.tbl_price tbody tr th {
  width: 54%;
  text-align: left;
  padding: 0.8rem;
  color: #231815;
  background: #EEE8E2;
  border: 1px solid #917D65;
}
@media screen and (min-width: 48em), print {
  .tbl_price tbody tr th {
    width: 50%;
    text-align: center;
  }
}
.tbl_price tbody tr td {
  padding: 0.8rem;
  border: 1px solid #917D65;
}
@media screen and (min-width: 48em), print {
  .tbl_price tbody tr td {
    padding: 0.8rem 2rem;
  }
}

.tbl_price02 {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 2rem;
}
.tbl_price02 tbody tr th {
  width: 30%;
  text-align: left;
  padding: 0.8rem;
  background: #917D65;
  color: #fff;
  border: 1px solid #917D65;
}
@media screen and (min-width: 48em), print {
  .tbl_price02 tbody tr th {
    width: 30%;
    text-align: center;
  }
}
.tbl_price02 tbody tr td {
  padding: 0.8rem;
  border: 1px solid #917D65;
}
@media screen and (min-width: 48em), print {
  .tbl_price02 tbody tr td {
    padding: 0.8rem 2rem;
  }
}
.tbl_price02 tbody tr td.bg {
  background: #EEE8E2;
}
@media screen and (min-width: 48em), print {
  .tbl_price02 tbody tr td.bg {
    width: 30%;
  }
}
.tbl_price02 tbody tr td.bg02 {
  background: #f7f5e3;
}
@media screen and (min-width: 48em), print {
  .tbl_price02 tbody tr td.wide_s {
    width: 15%;
  }
}

.tbl_access {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_access tr {
  display: block;
}
.tbl_access tr th {
  display: block;
  width: 100%;
  background: #EEE8E2;
  text-align: center;
  font-weight: bold;
  padding: 0.2rem;
}
.tbl_access tr td {
  padding: 0.8rem;
  margin: 0 0 1rem;
  display: block;
}

@media screen and (min-width: 48em), print {
  .tbl_access tr {
    display: table-row;
  }
  .tbl_access tr th {
    width: 30%;
    padding: 2rem;
    display: table-cell;
    border-bottom: 2px solid #fff;
  }
  .tbl_access tr td {
    padding: 2rem 2rem;
    border-bottom: 2px solid #EEE8E2;
    display: table-cell;
  }
  .tbl_access tr:first-child td {
    border-top: 2px solid #EEE8E2;
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
html {
  font-size: 3.125vw;
  font-family: "Zen Kaku Gothic New", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

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

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

.wrap {
  padding: 0 1rem 0;
}

.main {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 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: 1200px;
  }
  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: 1180px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 2rem;
    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: 2rem 1rem 1rem;
}
.header .wrap .logo {
  height: 3.2rem;
}
.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 {
  font-size: 1.4rem;
}
.header .wrap .headR .head_contact {
  margin: 2.2rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .wrap .headR .head_contact .tel_item .tel {
  font-size: 1.6rem;
  font-weight: bold;
  color: #917D65;
}
.header .wrap .headR .head_contact .tel_item .tel::before {
  content: "\e809";
  font-family: "fontello";
  font-weight: normal;
  margin-right: 0.2rem;
}
.header .wrap .headR .head_contact .rsv_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 50%;
  margin-left: 0.8rem;
}
.header .wrap .headR .head_contact .rsv_item a {
  width: 100%;
  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;
  background: #E58B9F;
  padding: 0.2rem 0 0.3rem;
  font-weight: 500;
  color: #fff;
  border-radius: 30px;
}
.header .wrap .headR .head_contact .rsv_item a::before {
  content: "\e80b";
  font-family: "fontello";
  font-weight: normal;
  margin-right: 0.2rem;
}
.header .wrap .headR .head_access {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1rem 0 0;
}
.header .wrap .headR .head_access li {
  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 .head_access li::before {
  width: 1.4rem;
  font-family: "fontello";
  display: inline-block;
  text-align: center;
  color: #917D65;
}
.header .wrap .headR .head_access li.access_item::before {
  content: "\e805";
  font-size: 1.6rem;
  margin-right: 0.2rem;
}
.header .wrap .headR .head_access li.address_item::before {
  content: "\e80c";
  margin-right: 0.2rem;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    padding: 2.1rem 0 1.8rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .wrap .logo {
    width: 44rem;
    height: 6.7rem;
  }
  .header .wrap .headR {
    width: 50%;
    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;
  }
  .header .wrap .headR .head_contact {
    margin: 0;
    display: block;
  }
  .header .wrap .headR .head_contact .tel_item .tel {
    font-size: 2.8rem;
  }
  .header .wrap .headR .head_contact .rsv_item {
    margin: 0.7rem 0 0;
    max-width: 100%;
    min-width: 20rem;
  }
  .header .wrap .headR .head_contact .rsv_item a {
    padding: 0.6rem 0;
    font-size: 1.8rem;
  }
  .header .wrap .headR .head_contact .rsv_item a::before {
    margin-right: 0.8rem;
  }
  .header .wrap .headR .head_access {
    margin: 0;
    font-size: 1.8rem;
  }
  .header .wrap .headR .head_access li::before {
    width: 2rem;
  }
  .header .wrap .headR .head_access li.access_item::before {
    font-size: 2.8rem;
  }
  .header .wrap .headR .head_access li.address_item {
    margin: 1rem 0 0;
  }
}
/*hamburger*/
#menu {
  z-index: 9999;
  background: #6495ED;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#menu .fixed_menu_btn {
  width: 6rem;
  height: 5.6rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0.4rem 0.4rem;
  position: fixed;
  top: 1.4rem;
  right: 1rem;
  z-index: 204;
}
#menu .fixed_menu_btn .hamburger {
  height: 100%;
}
#menu .fixed_menu_btn .hamburger 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.8rem 0rem;
  height: 100%;
  text-decoration: none;
  border: 2px solid #fff;
  background: #F9D7DF;
  color: #E58B9F;
  font-size: 1.2rem;
  border-radius: 5px;
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "\e802";
  font-family: "fontello";
  font-size: 2.6rem;
  line-height: 0.8;
}
#menu .fixed_menu_btn .hamburger a::after {
  content: "MENU";
  font-size: 1rem;
  color: #231815;
}
#menu .fixed_menu_btn.active .hamburger a::before {
  content: "\e806";
}
#menu .fixed_menu_btn.active .hamburger a::after {
  content: "CLOSE";
}
#menu #nav {
  display: none;
}
#menu #nav.sp_nav {
  width: 94%;
  height: 100%;
  padding: 9rem 2rem 6rem;
  background-color: white;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 203;
  -webkit-transform: translate(105%);
  transform: translate(105%);
}
#menu #nav.sp_nav.open {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#menu #nav.sp_nav ul {
  display: block;
  font-size: 1.2rem;
}
#menu #nav.sp_nav ul li {
  text-align: left;
  margin: 0;
  border-bottom: 1px solid #ddd;
}
#menu #nav.sp_nav ul li a {
  display: block;
  padding: 1.2rem 0.2rem 1.2rem;
  font-weight: bold;
  color: #9E8E7B;
  text-decoration: none !important;
}
#menu #nav.sp_nav ul li a.sub {
  pointer-events: none;
  margin: 0;
  padding: 0.8rem 0.2rem 0.2rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav {
  padding: 0.4rem 0.2rem 1.2rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  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;
}
#menu #nav.sp_nav ul li a.sub + .subnav li {
  width: 50%;
  border-top: 1px solid #E3E0DC;
  border-bottom: none;
  text-align: left;
}
#menu #nav.sp_nav ul li a.sub + .subnav li:nth-child(1), #menu #nav.sp_nav ul li a.sub + .subnav li:nth-child(2) {
  border-top: none;
}
#menu #nav.sp_nav ul li a.sub + .subnav li:nth-child(odd) {
  border-right: 1px solid #E3E0DC;
}
#menu #nav.sp_nav ul li a.sub + .subnav li a {
  font-weight: normal;
  color: #231815;
  padding: 0.8rem 0 0.8rem 0.4rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav li a::after {
  content: none;
}
#menu #nav.sp_nav ul li a:not(.sub) {
  position: relative;
}
#menu #nav.sp_nav ul li a:not(.sub)::after {
  content: "2";
  color: #8FD6E5;
  font-family: "fontello";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 1rem;
}
#menu #nav.sp_nav ul li.rsv_item {
  display: none;
}
#menu .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#menu .overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

#nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_menu_btn {
    display: none;
  }
  #menu {
    display: block;
    background: none;
    /* Gナビ　ハイライト */
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: #FFF;
    position: relative;
    z-index: 20;
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  }
  #menu #nav.fixed .gnav > li {
    width: 12.5%;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    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;
  }
  #menu #nav.fixed .gnav > li.rsv_item {
    display: block;
    width: 13.6rem;
    padding: 0 0 0 1rem;
  }
  #menu #nav.fixed .gnav > li.rsv_item a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #menu #nav.fixed .gnav > li a {
    padding: 0;
  }
  #menu #nav.fixed .gnav > li a.access {
    font-size: 1.2rem;
  }
  #menu #nav .gnav {
    width: 1180px;
    padding: 0.6rem 0 0.6rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #menu #nav .gnav > li {
    width: 14.2857142857%;
    padding: 0;
    position: relative;
  }
  #menu #nav .gnav > li::after, #menu #nav .gnav > li:first-child::before {
    content: "";
    display: block;
    width: 0.1rem;
    height: 100%;
    border-right: 3px dotted #AB9A86;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #menu #nav .gnav > li::after {
    right: 0;
  }
  #menu #nav .gnav > li:first-child::before {
    left: 0;
  }
  #menu #nav .gnav > li.rsv_item {
    display: none;
  }
  #menu #nav .gnav > li.rsv_item::after {
    content: none;
  }
  #menu #nav .gnav > li.rsv_item a {
    width: 100%;
    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;
    background: #E58B9F;
    padding: 0.6rem 1rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    border-radius: 30px;
  }
  #menu #nav .gnav > li.rsv_item a::before {
    content: "\e80b";
    font-family: "fontello";
    font-weight: normal;
    margin-right: 0.8rem;
  }
  #menu #nav .gnav > li a {
    display: block;
    padding: 0.7rem 0;
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
  }
  #menu #nav .gnav > li a.sub::after {
    content: "\e80d";
    font-family: "fontello";
    font-size: 1.2rem;
    margin-left: 0.2rem;
  }
  #menu #nav .gnav > li .subnav {
    width: 36rem;
    visibility: hidden;
    position: absolute;
    top: 3.8rem;
    left: 0;
    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;
  }
  #menu #nav .gnav > li .subnav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    border-bottom: 1px solid #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #menu #nav .gnav > li .subnav li:nth-child(odd) {
    border-right: 1px solid #fff;
  }
  #menu #nav .gnav > li .subnav li a {
    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;
    background: rgba(213, 105, 129, 0.91);
    width: 100%;
    padding: 0.6rem 0.2rem 0.6rem 0;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
  }
  #menu #nav .gnav > li .subnav li a::before {
    content: "・";
    margin-right: 0.2rem;
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 3rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: url("../img/overview_bg01.jpg") no-repeat center/cover;
}
.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 .gaiyo_column {
  padding: 2rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
}
.overview > .wrap .overviewL .gaiyo_column ul {
  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 .overviewL .gaiyo_column ul li {
  width: 52%;
  text-align: center;
}
.overview > .wrap .overviewL .gaiyo_column ul li:last-child {
  width: 47%;
}
.overview > .wrap .overviewL .gaiyo_column ul li > .tel {
  font-weight: bold;
  color: #917D65;
}
.overview > .wrap .overviewL .gaiyo_column ul li > .tel::before {
  content: "\e809";
  font-family: "fontello";
  margin-right: 0.2rem;
  font-weight: normal;
}
.overview > .wrap .overviewL .gaiyo_column ul li > a {
  background: #E58B9F;
  display: block;
  font-weight: 500;
  border-radius: 20px;
  text-decoration: none !important;
  text-align: center;
  color: #fff;
}
.overview > .wrap .overviewL .gaiyo_column ul li > a::before {
  content: "\e80b";
  font-family: "fontello";
  margin-right: 0.2rem;
}
.overview > .wrap .overviewL .gaiyo_column .tbl_gaiyo {
  width: 100%;
  display: block;
  margin: 1.6rem 0 0;
}
.overview > .wrap .overviewL .gaiyo_column .tbl_gaiyo th {
  width: 36%;
  text-align: center;
  font-weight: normal;
  display: block;
}
.overview > .wrap .overviewL .gaiyo_column .tbl_gaiyo th span {
  background: #917D65;
  color: #fff;
  paddng: 0.2rem;
  border-radius: 20px;
  display: block;
}
.overview > .wrap .overviewL .gaiyo_column .tbl_gaiyo td {
  display: block;
  padding: 0.4rem;
  margin: 0 0 1rem;
}
.overview > .wrap .overviewL .gaiyo_column .tbl_gaiyo + p {
  margin: 0;
}
.overview > .wrap .overviewL .gaiyo_column .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
  text-align: center;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 30rem;
  border-radius: 20px;
}
.overview > .wrap .overviewR .btn_map {
  display: inline-block;
  margin: 0.8rem auto 0;
  font-weight: 500;
  border-radius: 20px;
  padding: 0.2rem 1.4rem;
  border: 1px solid #64523D;
  color: #64523D;
}
.overview > .wrap .overviewR .btn_map::before {
  content: "\e817";
  font-family: "fontello";
  margin-right: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 0 0;
    padding: 8.8rem 0 4.6rem;
    font-size: 1.6rem;
  }
  .overview > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 48%;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .clinic_name {
    margin: 0 0 3.4rem;
  }
  .overview > .wrap .overviewL .clinic_name img {
    max-width: 55rem;
  }
  .overview > .wrap .overviewL .gaiyo_column {
    padding: 3.4rem 4.7rem 6.8rem 4rem;
  }
  .overview > .wrap .overviewL .gaiyo_column ul li {
    width: 52%;
  }
  .overview > .wrap .overviewL .gaiyo_column ul li:last-child {
    width: 47%;
  }
  .overview > .wrap .overviewL .gaiyo_column ul li > .tel {
    font-size: 3.2rem;
    white-space: nowrap;
  }
  .overview > .wrap .overviewL .gaiyo_column ul li > .tel::before {
    margin-right: 0.5rem;
  }
  .overview > .wrap .overviewL .gaiyo_column ul li > a {
    font-size: 2rem;
    padding: 0.4rem 0;
  }
  .overview > .wrap .overviewL .gaiyo_column ul li > a::before {
    margin-right: 0.7rem;
  }
  .overview > .wrap .overviewL .gaiyo_column .tbl_gaiyo {
    margin: 4.3rem 0 0;
  }
  .overview > .wrap .overviewL .gaiyo_column .tbl_gaiyo th {
    padding: 0 0 2.6rem;
    width: 9.6rem;
    display: table-cell;
  }
  .overview > .wrap .overviewL .gaiyo_column .tbl_gaiyo th span {
    font-size: 1.6rem;
  }
  .overview > .wrap .overviewL .gaiyo_column .tbl_gaiyo td {
    display: table-cell;
    padding: 0 0 2.6rem 1.4rem;
  }
  .overview > .wrap .overviewL .gaiyo_column .tbl_time {
    margin: 3rem 0 0;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    margin: 0;
  }
  .overview > .wrap .overviewR .gmap iframe {
    height: 65.6rem;
  }
  .overview > .wrap .overviewR .btn_map {
    margin: 1.8rem 0 0;
    padding: 0.2rem 2.4rem;
    border-radius: 30px;
  }
  .overview > .wrap .overviewR .btn_map::before {
    font-size: 2.6rem;
    margin-right: 0.6rem;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 6.2rem;
  right: 1rem;
  z-index: 20;
  cursor: pointer;
}
#pageup a {
  display: block;
  width: 5rem;
  height: 5rem;
  background: url("../img/i_pagetop.svg") no-repeat center/contain;
  border-radius: 50%;
  -webkit-box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 48em), print {
  #pageup {
    bottom: 3rem;
    right: 3rem;
  }
  #pageup a {
    width: 9.8rem;
    height: 9.8rem;
  }
}
.footer_fixedMenu {
  width: 100%;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  font-size: 1.4rem;
  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;
}
.footer_fixedMenu li {
  width: 33.3333333333%;
}
.footer_fixedMenu li:not(:last-child) {
  border-right: 2px solid #917D65;
}
.footer_fixedMenu li a {
  display: block;
  padding: 1rem 0;
  text-align: center;
  background: #E3E0DC;
  color: #917D65;
  font-weight: bold;
}
.footer_fixedMenu li a::before {
  content: "";
  font-family: "fontello";
  font-weight: normal;
  margin-right: 0.2rem;
}
.footer_fixedMenu li a.i_tel::before {
  content: "\e809";
}
.footer_fixedMenu li a.i_rsv::before {
  content: "\e80b";
}
.footer_fixedMenu li a.i_access::before {
  content: "\e80a";
}

@media screen and (min-width: 48em), print {
  .footer_fixedMenu {
    display: none;
  }
  .footer_fixedMenu > * {
    display: none;
  }
}
.footer {
  text-align: center;
  background: #917D65;
  padding: 0 0 4.6rem;
  color: #fff;
}
.footer ul {
  display: none;
}
.footer .copy {
  display: block;
  padding: 0.6rem 0;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 4rem 0 0;
  }
  .footer ul {
    display: block;
    text-align: center;
    margin: 0 auto 2rem;
  }
  .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 span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer .copy {
    font-size: 1.2rem;
    padding: 2.8rem 0 2.8rem;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
@media screen and (min-width: 48em), print {
  .main > .overflow {
    overflow: hidden;
  }
}

/* キービジュアル -------------------------------------- */
#keyvsl {
  margin: 1rem auto 2rem;
  max-width: 100%;
}
#keyvsl .wrap {
  position: relative;
}
#keyvsl .wrap::before {
  content: "";
  max-width: 100vw;
  width: 100vw;
  height: 90%;
  margin: auto;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
  background: #E3E0DC;
}
#keyvsl .wrap > div {
  border-radius: 20px;
}
#keyvsl .wrap .kv_img {
  height: 12rem;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 0 0 0.8rem;
  border-radius: 20px;
  background: url(../img/index_keyvsl01.jpg) no-repeat center center/cover;
  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;
  z-index: 10;
}
#keyvsl .wrap .kv_img .kv_txt {
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  text-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.8), 0 0 0.8rem rgba(0, 0, 0, 0.8);
  z-index: 11;
}
#keyvsl .wrap .kv_info .kaiin_txt {
  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;
  padding: 1rem 0;
}
#keyvsl .wrap .kv_info .kaiin_txt li {
  width: 100%;
  color: #64523D;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
#keyvsl .wrap .kv_info .kaiin_txt li span {
  font-size: 1.4rem;
  margin-right: 0.6rem;
}
#keyvsl .wrap .kv_info .kv_feature {
  background: #fff;
  border-radius: 10px 0 0 10px;
  padding: 1rem;
  position: relative;
}
#keyvsl .wrap .kv_info .kv_feature::before {
  content: "";
  display: block;
  width: 2rem;
  height: 100%;
  background: #fff;
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#keyvsl .wrap .kv_info .kv_feature ul {
  margin: 1.4rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#keyvsl .wrap .kv_info .kv_feature ul li {
  width: 31%;
  height: 8rem;
  border-radius: 50%;
  background: #F9D7DF;
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
#keyvsl .wrap .kv_info .kv_feature ul li::before {
  font-family: "fontello";
  color: #F8B7C6;
  font-size: 2.2rem;
  margin: 0 0 0.2rem;
}
#keyvsl .wrap .kv_info .kv_feature ul li.item_01::before {
  content: "\e80e";
}
#keyvsl .wrap .kv_info .kv_feature ul li.item_02::before {
  content: "\e80f";
}
#keyvsl .wrap .kv_info .kv_feature ul li.item_03::before {
  line-height: 1;
  margin: 0;
  font-size: 2.8rem;
  content: "\e811";
}

@media screen and (min-width: 48em), print {
  #keyvsl {
    margin: 2.6rem auto 0;
    padding: 0 0 20rem;
    overflow: hidden;
  }
  #keyvsl .wrap {
    height: 58rem;
    position: relative;
    z-index: 1;
  }
  #keyvsl .wrap::before {
    width: 2000px;
    max-width: 2000px;
    height: 40rem;
    bottom: -20rem;
  }
  #keyvsl .wrap .kv_img {
    position: absolute;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 1400px;
    max-width: 1400px;
    height: 58rem;
    z-index: 20;
  }
  #keyvsl .wrap .kv_img .kv_txt {
    width: 1180px;
    margin: 0 auto;
    text-align: left;
    font-size: 3.6rem;
    text-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.8);
  }
  #keyvsl .wrap .kv_info {
    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;
    width: 100%;
    position: absolute;
    bottom: -22rem;
    z-index: 21;
  }
  #keyvsl .wrap .kv_info .kaiin_txt {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #keyvsl .wrap .kv_info .kaiin_txt li {
    width: 100%;
    font-size: 3.4rem;
    white-space: nowrap;
    padding: 0 0 9rem;
  }
  #keyvsl .wrap .kv_info .kaiin_txt li span {
    font-size: 2.4rem;
  }
  #keyvsl .wrap .kv_info .kv_feature {
    -ms-flex-preferred-size: 67%;
        flex-basis: 67%;
    border-radius: 20px 0 0 20px;
    top: -6.5rem;
    z-index: 10;
    padding: 4.7rem 0 4.6rem 2.1rem;
    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;
  }
  #keyvsl .wrap .kv_info .kv_feature::before {
    width: 39rem;
    right: -39rem;
  }
  #keyvsl .wrap .kv_info .kv_feature .tbl_time {
    width: 38.8rem;
  }
  #keyvsl .wrap .kv_info .kv_feature ul {
    margin: 0;
  }
  #keyvsl .wrap .kv_info .kv_feature ul li {
    width: 11.8rem;
    height: 11.8rem;
    font-size: 1.8rem;
  }
  #keyvsl .wrap .kv_info .kv_feature ul li:not(:last-child) {
    margin: 0 0.6rem 0 0;
  }
  #keyvsl .wrap .kv_info .kv_feature ul li::before {
    font-size: 3.4rem;
  }
  #keyvsl .wrap .kv_info .kv_feature ul li.item_03::before {
    font-size: 4.6rem;
    line-height: 0.8;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 2rem 0 2rem;
}
.info .tit_02 {
  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;
  color: #64523D;
  font-weight: 500;
}
.info .tit_02::before {
  content: "\e812";
  font-family: "fontello";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 0.6rem 0 0;
  border-radius: 50%;
  color: #fff;
  background: #AB9A86;
}
.info .tit_02 span {
  margin: 0.6rem 0 0 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1;
}
.info .tit_02 span::before, .info .tit_02 span::after {
  all: unset;
}
.info dl {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  height: 100%;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  border-top: 2px dotted #917D65;
}
.info dl .line {
  border-bottom: 2px dotted #917D65;
  padding: 0 0 0.4rem;
  margin: 0.4rem 0 0.4rem;
}
.info dl .line:nth-of-type(n+4) dd {
  display: none;
}
.info dl .line dt {
  margin: 0;
  font-weight: bold;
  color: #231815;
  cursor: pointer;
  display: table;
}
.info dl .line dt::before {
  content: "\e813";
  font-family: "fontello";
  font-weight: normal;
  color: #D56981;
  margin-right: 0.4rem;
}
.info dl .line dt:hover {
  opacity: 0.8;
}
.info dl .line dt.close::before {
  content: "\e81a";
}
.info dl .line dd {
  padding: 0;
  margin: 0;
}
.info dl .line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 7.1rem 0 0;
  }
  .info .tit_02 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .info .tit_02::before {
    width: 4.5rem;
    height: 4.6rem;
    font-size: 2.4rem;
    margin: 0 1.5rem 0 0;
  }
  .info .tit_02 span {
    padding: 0 0 0.8rem;
    margin: 0 0 0 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .info dl {
    border-top: 3px dotted #917D65;
  }
  .info dl .line {
    border-bottom: 3px dotted #917D65;
    padding: 1.75rem 0 0.75rem;
  }
  .info dl .line dt {
    font-size: 1.8rem;
    margin: 0 0 0.7rem;
    padding: 0 0 0 2.6rem;
    text-indent: -2.7rem;
  }
  .info dl .line dd {
    margin: 0 0 0.7rem;
    padding: 0 0 0 2.7rem;
    font-size: 1.6rem;
  }
}
/* あなたに合わせた、最善の歯科診療のために -------------------------------------- */
.concept {
  padding: 2rem 0 2rem;
}
.concept .wrap {
  position: relative;
  padding: 0;
}
.concept .wrap::before {
  content: "";
  display: block;
  width: 80%;
  height: 12rem;
  background: url("../img/index_concept_01.jpg") no-repeat center/cover;
  border-radius: 0 20px 20px 0;
}
.concept .wrap .txt_box {
  padding: 1.4rem 1.6rem;
  margin: 1rem 0 0;
  position: relative;
}
.concept .wrap .txt_box::before, .concept .wrap .txt_box::after {
  content: "\e814";
  font-family: "fontello";
  font-size: 1.6rem;
  position: absolute;
  top: 0;
  color: #C4B29D;
}
.concept .wrap .txt_box::before {
  left: 0.4rem;
}
.concept .wrap .txt_box::after {
  right: 0.4rem;
}
.concept .wrap .txt_box > div::before, .concept .wrap .txt_box > div::after {
  content: "\e814";
  font-family: "fontello";
  font-size: 1.6rem;
  position: absolute;
  bottom: 0;
  color: #C4B29D;
}
.concept .wrap .txt_box > div::before {
  left: 0.4rem;
}
.concept .wrap .txt_box > div::after {
  right: 0.4rem;
}
.concept .wrap .txt_box p {
  text-align: center;
}
.concept .wrap .txt_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.concept .wrap .txt_box ul li {
  width: 32%;
  min-height: 9rem;
  border: 2px dotted #C4B29D;
  border-radius: 50%;
  text-align: center;
  font-weight: 500;
  margin: 0 0.2rem 0;
  font-size: 1.2rem;
  color: #917D65;
  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;
}

@media screen and (min-width: 48em), print {
  .concept {
    padding: 10.5rem 0 0;
  }
  .concept .wrap {
    position: relative;
  }
  .concept .wrap::before {
    width: 96rem;
    height: 100%;
    position: absolute;
    left: -400px;
    top: 0;
  }
  .concept .wrap .txt_box {
    width: 58rem;
    padding: 2.8rem 0;
    margin: 0 0 0 auto;
    position: relative;
  }
  .concept .wrap .txt_box::before, .concept .wrap .txt_box::after {
    font-size: 2.8rem;
  }
  .concept .wrap .txt_box::before {
    left: 0;
  }
  .concept .wrap .txt_box::after {
    right: 0;
  }
  .concept .wrap .txt_box > div::before, .concept .wrap .txt_box > div::after {
    font-size: 2.8rem;
  }
  .concept .wrap .txt_box > div::before {
    left: 0;
  }
  .concept .wrap .txt_box > div::after {
    right: 0;
  }
  .concept .wrap .txt_box p {
    font-size: 2rem;
  }
  .concept .wrap .txt_box ul {
    width: 90%;
    margin: 0 auto;
  }
  .concept .wrap .txt_box ul li {
    width: 31.4%;
    min-height: 16.3rem;
    line-height: 1.2;
    margin: 0;
    font-size: 2.2rem;
  }
  .concept .wrap .txt_box ul li:not(:first-child):not(:last-child) {
    margin: 0 1.3rem;
  }
}
/* 当歯科医院が選ばれる理由 -------------------------------------- */
.reason {
  padding: 2rem 0 2rem;
}
.reason .wrap {
  padding: 0;
}
.reason .wrap ul {
  counter-reset: num_reason;
}
.reason .wrap ul li {
  counter-increment: num_reason 1;
  background: url("../img/index_reason_parts01.svg") no-repeat center/cover, #E3E0DC;
  color: #402E19;
}
.reason .wrap ul li::before {
  content: "";
  display: block;
  width: 100%;
  height: 11rem;
  background-color: #222;
  background-repeat: no-repeat;
  background-size: cover;
}
.reason .wrap ul li section {
  padding: 1.6rem 1.4rem 2.6rem;
  position: relative;
}
.reason .wrap ul li section::before, .reason .wrap ul li section::after {
  position: absolute;
  bottom: -0.2rem;
  line-height: 1;
}
.reason .wrap ul li section::before {
  content: "Reason";
  right: 4rem;
  font-size: 2rem;
}
.reason .wrap ul li section::after {
  content: counter(num_reason);
  right: 2rem;
  font-size: 2.8rem;
}
.reason .wrap ul li section .tit_reason {
  font-weight: 500;
  font-size: 110%;
  margin: 0 0 0.8rem;
}
.reason .wrap ul li section p {
  margin: 0;
}
.reason .wrap ul li:nth-child(even) {
  background: url("../img/index_reason_parts02.svg") no-repeat center/cover, #9E8E7B;
  color: #fff;
}
.reason .wrap ul li.item_01::before {
  background-image: url("../img/index_reason_01.jpg");
  background-color: #E4E5E9;
  background-position: left;
}
.reason .wrap ul li.item_02::before {
  background-color: #fff;
  background-image: url("../img/index_reason_02.jpg");
  background-position: right;
}
.reason .wrap ul li.item_03::before {
  background-image: url("../img/index_reason_03.jpg");
  background-color: #fff;
  background-position: left;
}
.reason .wrap ul li.item_04::before {
  background-image: url("../img/index_reason_04.jpg");
  background-color: #fff;
  background-position: right;
}

@media screen and (min-width: 48em), print {
  .reason {
    padding: 10.5rem 0 0;
  }
  .reason .wrap ul li {
    height: 37.2rem;
    position: relative;
    background: url("../img/index_reason_parts01.svg") no-repeat center left/auto auto, #E3E0DC;
  }
  .reason .wrap ul li::before {
    height: 100%;
    width: 1000px;
    position: absolute;
    left: 50%;
    background-size: auto auto;
  }
  .reason .wrap ul li::after {
    content: "";
    height: 100%;
    width: 1000%;
    display: block;
    position: absolute;
    z-index: -1;
    right: 50%;
    top: 0;
    background: #e3e0dc;
  }
  .reason .wrap ul li section {
    width: 50%;
    height: 100%;
    padding: 1.6rem 1.4rem 2.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reason .wrap ul li section::before {
    font-size: 5rem;
    bottom: -0.4rem;
    right: 13.6rem;
  }
  .reason .wrap ul li section::after {
    font-size: 7.8rem;
    bottom: -0.6rem;
    right: 9.2rem;
  }
  .reason .wrap ul li section .tit_reason {
    font-size: 2.6rem;
    margin: 0 0 1rem;
  }
  .reason .wrap ul li section p {
    font-size: 2rem;
  }
  .reason .wrap ul li:nth-child(even) {
    background: url("../img/index_reason_parts02.svg") no-repeat center right/auto auto, #9E8E7B;
    color: #fff;
  }
  .reason .wrap ul li:nth-child(even)::before {
    left: -410px;
  }
  .reason .wrap ul li:nth-child(even)::after {
    left: 50%;
    background: #9e8e7b;
  }
  .reason .wrap ul li:nth-child(even) section {
    margin: 0 0 0 auto;
    padding: 0 0 0 11rem;
  }
}
/* 当院の診療内容 -------------------------------------- */
.treatment_menu .treatment_item > li {
  border: 1px dashed #917D65;
  margin: 0 0 1rem;
  padding: 1rem 0.4rem;
}
.treatment_menu .treatment_item > li *[class*=tit_] {
  all: unset;
  text-align: center;
  display: block;
  margin: 0 0 1rem;
  color: #402E19;
  font-size: 1.8rem;
}
.treatment_menu .treatment_item > li *[class*=tit_]::before {
  content: "\e814";
  font-family: "fontello";
  color: #C4B29D;
}
.treatment_menu .treatment_item > li *[class*=tit_]::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.treatment_menu .treatment_item > li *[class*=tit_].tit_item01::after {
  background-image: url("../img/index_treatmentMenu_h3parts01.svg");
}
.treatment_menu .treatment_item > li *[class*=tit_].tit_item02::after {
  background-image: url("../img/index_treatmentMenu_h3parts02.svg");
}
.treatment_menu .treatment_item > li *[class*=tit_].tit_item03::after {
  width: 4rem;
  background-image: url("../img/index_treatmentMenu_h3parts03.svg");
}
.treatment_menu .treatment_item > li *[class*=tit_].tit_item04::after {
  background-image: url("../img/index_treatmentMenu_h3parts04.svg");
}
.treatment_menu .treatment_item > li *[class*=tit_].tit_item05::after {
  background-image: url("../img/index_treatmentMenu_h3parts05.svg");
}
.treatment_menu .treatment_item > li ul {
  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;
}
.treatment_menu .treatment_item > li ul.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.treatment_menu .treatment_item > li ul li {
  width: 49%;
  margin: 0 0 1rem;
}
.treatment_menu .treatment_item > li ul li a {
  text-decoration: none !important;
  text-align: center;
  padding: 0.8rem 0;
  font-size: 1.2rem;
  display: block;
  color: #fff;
  background: #9E8E7B;
  border-radius: 30px;
  -webkit-box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}
.treatment_menu .treatment_item > li ul li a::before {
  content: "\f006";
  font-family: "fontello";
  font-size: 1rem;
  color: #F8D2DA;
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.treatment_menu .treatment_item > li:first-child {
  border-radius: 20px 20px 0 0;
}
.treatment_menu .treatment_item > li:nth-child(even) {
  background: #E3E0DC;
  border: none;
}
.treatment_menu .treatment_item > li:nth-child(even) *[class*=tit_]::before {
  color: #C4B29D;
}
.treatment_menu .treatment_item > li:nth-child(even) ul li a {
  color: #9E8E7B;
  background: #fff;
}
.treatment_menu .treatment_item > li.bg_img01 {
  background: url("../img/index_treatmentMenu_bg01.jpg") no-repeat center/cover;
  height: 12rem;
  width: 100%;
  border-radius: 0 0 20px 20px;
}

@media screen and (min-width: 48em), print {
  .treatment_menu {
    padding: 12.7rem 0 0;
  }
  .treatment_menu .treatment_item {
    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;
  }
  .treatment_menu .treatment_item > li {
    width: 59rem;
    min-height: 28.3rem;
    border: none;
    margin: 0;
    padding: 3.2rem 0 0;
    position: relative;
  }
  .treatment_menu .treatment_item > li::before {
    content: "";
    width: 58rem;
    height: calc(100% - 1rem);
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 1rem;
    border: 2px dotted #917D65;
  }
  .treatment_menu .treatment_item > li:first-child::before {
    border-radius: 20px 0 0 0;
    top: 0;
  }
  .treatment_menu .treatment_item > li:nth-child(2) {
    border-radius: 0 20px 0 0;
  }
  .treatment_menu .treatment_item > li:nth-last-child(2)::before {
    border-radius: 0 0 0 20px;
  }
  .treatment_menu .treatment_item > li:not(.bg):nth-child(even)::before {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    height: calc(100% - 2rem);
  }
  .treatment_menu .treatment_item > li:nth-child(even) {
    background: none;
  }
  .treatment_menu .treatment_item > li:nth-child(even) *[class*=tit_]::before {
    color: #C4B29D;
  }
  .treatment_menu .treatment_item > li:nth-child(even) ul li a {
    background: #9E8E7B;
    color: #fff;
  }
  .treatment_menu .treatment_item > li.bg {
    border: none;
    background: #E3E0DC;
  }
  .treatment_menu .treatment_item > li.bg::before {
    content: none;
  }
  .treatment_menu .treatment_item > li.bg ul li a {
    background: #fff;
    color: #402E19;
  }
  .treatment_menu .treatment_item > li.bg_img01 {
    background: url("../img/index_treatmentMenu_bg01.jpg") no-repeat center/cover;
    height: auto;
    width: 50%;
    border-radius: 0 0 20px 0;
  }
  .treatment_menu .treatment_item > li.bg_img01::before {
    content: none;
  }
  .treatment_menu .treatment_item > li *[class*=tit_] {
    font-size: 3rem;
    margin: 0 0 2.2rem;
  }
  .treatment_menu .treatment_item > li *[class*=tit_]::after {
    height: 6.9rem;
  }
  .treatment_menu .treatment_item > li *[class*=tit_].tit_item01::after {
    width: 6.1rem;
  }
  .treatment_menu .treatment_item > li *[class*=tit_].tit_item02::after {
    width: 9.4rem;
  }
  .treatment_menu .treatment_item > li *[class*=tit_].tit_item03::after {
    width: 11.6rem;
  }
  .treatment_menu .treatment_item > li *[class*=tit_].tit_item04::after {
    width: 5.2rem;
  }
  .treatment_menu .treatment_item > li *[class*=tit_].tit_item05::after {
    width: 6rem;
  }
  .treatment_menu .treatment_item > li ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .treatment_menu .treatment_item > li ul.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .treatment_menu .treatment_item > li ul.column li {
    margin: 0 0 2rem;
  }
  .treatment_menu .treatment_item > li ul li {
    margin: 0 1rem 2rem;
    width: 22.2rem;
  }
  .treatment_menu .treatment_item > li ul li a {
    width: 100%;
    margin: 0;
    font-size: 1.8rem;
  }
  .treatment_menu .treatment_item > li ul li a::before {
    font-size: 1.6rem;
    left: 1.6rem;
  }
}
/* ご挨拶 -------------------------------------- */
.greeting {
  padding: 2rem 0 2rem;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(43%, #FFF3F5), color-stop(43%, #fff));
  background: linear-gradient(to top, #FFF3F5 43%, #fff 43%);
}
.greeting .frame {
  padding: 1rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #F8D2DA;
}
.greeting .frame p {
  font-weight: 500;
  color: #402E19;
  margin: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  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;
}
.greeting .frame p::before {
  content: "";
  width: 6rem;
  height: 6rem;
  margin-right: 1.2rem;
  background: url("../img/index_greeting_parts01.svg") no-repeat center/contain;
}
.greeting .size_l {
  font-size: 110%;
  font-weight: 500;
  color: #EC6685;
}
.greeting .dr_name {
  text-align: right;
}
.greeting .dr_name span {
  font-size: 120%;
}
.greeting .dr_name .btn_greeting a {
  background: none;
  color: #231815;
  border: 1px solid #231815;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.greeting .dr_name .btn_greeting a::before {
  content: "2";
  font-family: "fontello";
  color: #231815;
  margin-right: 0.2rem;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 10rem 0 9.2rem;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(59%, #FFF3F5), color-stop(59%, #fff));
    background: linear-gradient(to top, #FFF3F5 59%, #fff 59%);
  }
  .greeting .wrap .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 .wrap .flex > div {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .greeting .wrap .flex > div .frame {
    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;
    margin: 2.3rem 0 3.4rem;
    padding: 2.3rem 0;
  }
  .greeting .wrap .flex > div .frame p {
    font-size: 2.4rem;
  }
  .greeting .wrap .flex > div .frame p::before {
    width: 11rem;
    height: 11rem;
    margin-right: 2.6rem;
  }
  .greeting .wrap .flex > div .size_l {
    font-size: 2.4rem;
  }
  .greeting .wrap .flex > div .dr_name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .greeting .wrap .flex > div .dr_name span {
    font-size: 2.6rem;
  }
  .greeting .wrap .flex > div .dr_name .btn_greeting {
    margin-left: 1.5rem;
  }
  .greeting .wrap .flex > div .dr_name .btn_greeting a {
    width: 16rem;
    font-size: 1.6rem;
    padding: 0.4rem 0;
  }
  .greeting .wrap .flex > div .dr_name .btn_greeting a::before {
    margin-right: 0.4rem;
  }
}
/* クリニックについて詳しくはこちら */
.about_more {
  padding: 0 0 2rem;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(59%, #FFF3F5), color-stop(59%, #fff));
  background: linear-gradient(to bottom, #FFF3F5 59%, #fff 59%);
}
.about_more .wrap {
  position: relative;
  padding: 8rem 1rem 0;
}
.about_more .wrap .btn_more 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  background: #917D65;
  border-radius: 8px;
  width: 80%;
  margin: 0 auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0.2rem 0.4rem 1.8rem;
  position: relative;
  z-index: 2;
}
.about_more .wrap .btn_more a::before {
  content: none;
}
.about_more .wrap .btn_more a::after {
  content: "\e819";
  font-family: "fontello";
  position: absolute;
  display: block;
  line-height: 0;
  font-size: 2.8rem;
  top: auto;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.about_more .wrap .index_slider {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.about_more .wrap .index_slider .slick-slide {
  margin: 0 0.2rem;
}

@media screen and (min-width: 48em), print {
  .about_more {
    padding: 3rem 0 18rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(32%, #FFF3F5), color-stop(32%, #fff));
    background: linear-gradient(to bottom, #FFF3F5 32%, #fff 32%);
  }
  .about_more .wrap {
    padding: 0;
  }
  .about_more .wrap .btn_more {
    margin: 0;
    position: relative;
  }
  .about_more .wrap .btn_more::before {
    content: "";
    display: block;
    width: 16.5rem;
    height: 16.5rem;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    left: 0;
    opacity: 1;
  }
  .about_more .wrap .btn_more a {
    font-size: 1.6rem;
    border-radius: 50%;
    width: 16.5rem;
    height: 16.5rem;
    padding: 0;
    margin: 0 auto 0 0;
  }
  .about_more .wrap .btn_more a::after {
    font-size: 8rem;
    bottom: 4rem;
  }
  .about_more .wrap .index_slider {
    width: 1460px;
    margin: 0 0 0 auto;
    left: auto;
    top: -2.8rem;
    right: -400px;
  }
  .about_more .wrap .index_slider .slick-slide {
    margin: 0 0.5rem;
    width: 28rem !important;
    height: 20.8rem !important;
  }
  .about_more .wrap .index_slider .slick-slide > img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .tit_area {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #E3E0DC), color-stop(80%, #fff));
  background: linear-gradient(to top, #E3E0DC 80%, #fff 80%);
  padding: 0 1rem 2rem;
  margin: 0 0 2rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .tit_area {
    overflow: hidden;
    padding: 0 0 7rem;
    margin: 0 auto 1.2rem;
  }
}
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    width: 1180px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body:not(.index) .breadcrumb_list li {
    display: inline-block;
    font-size: 1.8rem;
  }
  body:not(.index) .breadcrumb_list li:not(:last-child)::after {
    content: "\f006";
    font-family: "fontello";
    display: inline-block;
    margin: 0 1rem;
  }
  body:not(.index) .breadcrumb_list li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
body:not(.index) .main {
  margin: 0 1rem 6rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 6rem;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 48em), print {
  .cf .img_l, .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
.flex_img img {
  margin: 0 0 1.4rem;
}

@media screen and (min-width: 48em), print {
  .flex_img {
    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;
  }
  .flex_img img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: block;
    max-width: 40%;
    height: auto;
    margin: 0;
  }
  .flex_img > *:not(img) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 56%;
  }
}
/* スタッフ紹介 */
.staff .cf > img {
  max-width: 60%;
  border-radius: 10px;
}
.staff .txt_dr {
  text-align: right;
}
.staff .txt_dr span {
  font-size: 120%;
}

/* クリニック紹介 */
#slider, #thumbnail_slider {
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #slider, #thumbnail_slider {
    max-width: 750px;
  }
}

#slider {
  margin: 0 auto 0.2rem;
}
#slider figure {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
#slider figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem 0.2rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  background: rgba(34, 34, 34, 0.8);
}
@media screen and (min-width: 48em), print {
  #slider figure figcaption {
    padding: 0.8rem 1rem;
    font-size: 1.6rem;
  }
}

#thumbnail_slider {
  margin: 0 auto 2rem;
}
#thumbnail_slider .slick-list .thumbnail-item img {
  cursor: -webkit-grab;
  cursor: grab;
}
#thumbnail_slider .slick-list .thumbnail-item img:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
#thumbnail_slider .slick-list .slick-current {
  position: relative;
}
#thumbnail_slider .slick-list .slick-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid #222;
}
#thumbnail_slider .slick-list .slick-current img {
  width: 100%;
  display: block;
}
#thumbnail_slider .slick-prev::before, #thumbnail_slider .slick-next::before {
  color: #222;
}

.slide-item img {
  width: 100%;
  height: auto;
}

.thumbnail-item img {
  width: 98%;
  display: block;
  margin: 0 auto;
}

.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 .lst_first li {
  text-align: center;
}
.first .lst_first li .tel {
  font-size: 120%;
}

@media screen and (min-width: 48em), print {
  .first .lst_first {
    width: 100%;
    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;
  }
  .first .lst_first li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .first .lst_first li .tel {
    font-size: 2.6rem;
    letter-spacing: 0.2rem;
    font-weight: bold;
  }
  .first .lst_first li .btn_rsv {
    width: 30rem;
    margin-left: 4rem;
  }
}
/* 診療時間・アクセス */
.access .gmap {
  height: 30rem;
  margin: 2rem 0;
}
.access .access_img p {
  font-size: 1.4rem;
  line-height: 1.6;
  background: #EEE8E2;
  text-align: center;
  font-weight: bold;
  margin: 0 0 1rem;
  padding: 0.2rem;
}
.access .access_img figure {
  margin: 0;
  padding: 0;
}
.access .access_img figure figcaption {
  padding: 0.4rem 0 0;
}

@media screen and (min-width: 48em), print {
  .access .main .tbl_time {
    font-size: 1.8rem;
  }
  .access .main .tbl_time caption {
    margin: 1.2rem 0 0;
    font-size: 2rem;
    line-height: 1.4;
  }
  .access .main .tbl_time tr th[scope=col] {
    padding: 1.6rem 0;
    font-size: 1.8rem;
  }
  .access .main .tbl_time tr th.time {
    font-size: 2rem;
    padding: 1.8rem 0;
  }
  .access .main .tbl_time tr td {
    padding: 1.6rem 0;
  }
  .access .access_img {
    margin: 6rem auto;
  }
  .access .access_img p {
    width: 100%;
    font-size: 1.8rem;
    padding: 2rem;
  }
  .access .access_img figure {
    margin: 0;
    padding: 0;
  }
  .access .access_img figure img {
    display: block;
    margin: 2rem auto 2rem;
  }
  .access .access_img figure figcaption {
    padding: 0.4rem 0 0;
    text-align: center;
  }
  .access .gmap {
    height: 50rem;
  }
}