@charset "UTF-8";
:root {
  --clr_purple: #C2ACD2;
  --clr_purple02: 83,42,113;
  --clr_purple03: #F5EFF9;
  --clr_purple04: #A285B8;
  --clr_purple05: #AC94BE;
  --clr_purple06: #F0E1F9;
  --clr_purple07: #B8ABC1;
  --clr_purple08: #FCF8FF;
  --clr_gray: #F7F7F7;
  --clr_gray02: #808080;
  --clr_gray03: #C8C8C8;
  --clr_gray04: #C3C3C3;
  --clr_gray05: #979797;
  --clr_yellow: #FFF56B;
}

/* ----------------------------------------------------------------------------------
リセット　_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;
}

.underline {
  text-decoration: underline;
}

.red {
  color: #ff0000;
}

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

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

section > section:first-of-type {
  margin-top: 4rem;
}

.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;
  }
  section > section:first-of-type {
    margin-top: 4rem;
  }
  .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: 100%;
  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: var(--clr_purple);
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
}
.tbl_time tr th[scope=col] .tate {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: pre;
  display: inline-block;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  background: #fff;
  border-bottom: 1px solid var(--clr_purple);
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: #fff;
  border-bottom: 1px solid var(--clr_purple);
  line-height: 1;
}
.tbl_time tr:last-child th, .tbl_time tr:last-child td {
  border-bottom: 2px solid var(--clr_purple);
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.6rem;
  }
  .tbl_time caption {
    font-size: 1.4rem;
    padding: 1.2rem 0 0;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.6rem 0;
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col] .tate {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: 1rem 0;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.tit_02 {
  color: var(--clr_gray02);
  font-size: 2rem;
  margin: 0 0 1.6rem;
  padding: 0 0 0.6rem;
  letter-spacing: 0.2rem;
  line-height: 1.2;
  border-bottom: 1px solid var(--clr_gray03);
}
.tit_02 span {
  font-size: 1.4rem;
  margin-left: 0.8rem;
  color: var(--clr_gray03);
}

body:not(.index) .tit_02 span {
  unset: all;
}

.tit_03 {
  color: var(--clr_purple05);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0 0.8rem 0.4rem;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--clr_purple06)), color-stop(1.4rem), color-stop(1.4rem, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, var(--clr_purple06), 1.4rem, rgba(255, 255, 255, 0) 1.4rem);
}

.tit_04 {
  color: var(--clr_purple);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0 0.8rem 0.8rem;
  border-bottom: 1px solid var(--clr_purple);
}

.tit_05 {
  color: var(--clr_gray05);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0 0.8rem 0.8rem;
  border-bottom: 1px dashed var(--clr_gray05);
}

.tit_06 {
  color: var(--clr_purple);
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0 0.8rem 0.8rem;
  border-bottom: 1px dashed var(--clr_purple);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center/auto auto;
    font-size: 3.6rem;
    height: 12rem;
    padding: 1rem;
    margin: 0 0 3rem;
  }
  .tit_02 {
    font-size: 3rem;
    letter-spacing: 0.5rem;
    margin: 0 0 2rem;
    padding: 0 0 1.3rem;
  }
  .tit_03 {
    font-size: 2.6rem;
    margin: 0 0 2rem;
    padding: 0 2rem 0.8rem;
    background: -webkit-gradient(linear, left bottom, left top, from(var(--clr_purple06)), color-stop(2.25rem), color-stop(2.25rem, rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, var(--clr_purple06), 2.25rem, rgba(255, 255, 255, 0) 2.25rem);
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
    padding: 0 2rem 1.3rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 2rem;
    padding: 0 2rem 1.1rem;
  }
  .tit_06 {
    font-size: 2rem;
    margin: 0 0 2rem;
    padding: 0 2rem 1.1rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  text-indent: -1.8rem;
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
.lst_ul01 li:last-child {
  padding-bottom: 0;
}
.lst_ul01 li::before {
  content: "●";
  margin-right: 0.4rem;
  color: var(--clr_purple);
}
.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-weight: bold;
}

.lst_dl01 div {
  margin: 0 0 1rem;
}
.lst_dl01 div dt {
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.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: 20rem;
  }
  .lst_dl01 div dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.dl_itembox dt {
  background: var(--clr_purple);
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  color: #fff;
}
@media screen and (min-width: 48em), print {
  .dl_itembox dt {
    padding: 0.8rem 2rem;
  }
}
.dl_itembox dd {
  margin: 0 0 1.8rem;
  padding: 0.6rem 0.4rem;
}
@media screen and (min-width: 48em), print {
  .dl_itembox dd {
    margin: 0 0 2.4rem;
    padding: 1.2rem 0.4rem;
  }
}

/* フレックス回り -------------------------------------- */
.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 {
  width: 80%;
  background: var(--clr_purple);
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: inline-block;
  text-decoration: none !important;
  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;
}
*[class*=btn_] a::before {
  content: "\e80a";
  font-family: "fontello";
  margin: 0 0.4rem 0 0;
}
*[class*=btn_] a:hover {
  opacity: 1;
  background: var(--clr_purple07);
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
  *[class*=btn_] a {
    display: inline-block;
    min-width: 22rem;
    width: auto;
    padding: 1.4rem 4rem;
    margin: 2rem 0;
  }
  *[class*=btn_] a::before {
    margin: 0 1.2rem 0 0;
  }
}

.anc_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 48em), print {
  .anc_link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.anc_link li {
  width: 48%;
  margin: 0 0 1rem;
}
@media screen and (min-width: 48em), print {
  .anc_link li {
    width: 23%;
    margin: 0 2.2% 2rem 0;
  }
  .anc_link li:nth-child(4n) {
    margin: 0 0 2rem;
  }
}
.anc_link li a {
  width: 100%;
  background: var(--clr_purple);
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 0.8rem 2.2rem;
  display: inline-block;
  text-decoration: none !important;
  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;
}
.anc_link li a::after {
  content: "\f004";
  font-family: "fontello";
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 0.8rem;
}
@media screen and (min-width: 48em), print {
  .anc_link li a::after {
    right: 1.2rem;
  }
}
.anc_link li a:hover {
  opacity: 1;
  background: var(--clr_purple07);
}

.txt_link {
  color: #222;
}
.txt_link:hover {
  opactiy: 1;
  border-bottom: 1px solid #222;
}

/* フローチャート -------------------------------------- */
.flow dd {
  margin: 0 0 6rem;
  position: relative;
}
.flow dd:last-child {
  margin: 0;
}
@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;
}

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low tr th {
  width: 30%;
  background: var(--clr_purple08);
  text-align: center;
  font-weight: normal;
  border: 1px solid var(--clr_gray02);
  padding: 1rem 0.8rem;
}
@media screen and (min-width: 48em), print {
  .tbl_low tr th {
    paddding: 2rem 2rem;
  }
}
.tbl_low tr td {
  padding: 0.8rem;
  border: 1px solid var(--clr_gray02);
  padding: 1rem 0.8rem;
}
@media screen and (min-width: 48em), print {
  .tbl_low tr td {
    padding: 2rem 2rem;
  }
}
.tbl_low.price tr th {
  width: 70%;
}
@media screen and (min-width: 48em), print {
  .tbl_low.price tr th {
    width: 70%;
  }
}
.tbl_low.price tr td {
  width: 30%;
  text-align: right;
}
@media screen and (min-width: 48em), print {
  .tbl_low.price tr td {
    width: 30%;
    padding: 2rem 4rem;
  }
}

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

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

html {
  font-size: 3.125vw;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

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

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

.wrap {
  padding: 0 1rem 0;
}

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1280px;
  }
  body > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 10rem auto 0;
  }
  a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.6rem;
    padding: 0 0 0;
    width: 100%;
  }
}
/* アイコンフォント -------------------------------------- */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
/* ヘッダー -------------------------------------- */
.header .wrap {
  margin: 2.6rem 0 2rem;
}
.header .wrap .logo {
  height: 3rem;
}
.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 {
  display: none;
}
.header .wrap .headR .tel {
  display: inline-block;
  font-size: 1.8rem;
}
.header .wrap .headR .tel a {
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .header {
    background: #fff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 200;
    color: var(--clr_gray02);
  }
  .header.sticky-shadow {
    -webkit-box-shadow: 1px 0 17px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 0 17px 2px rgba(0, 0, 0, 0.2);
  }
  .header .wrap {
    line-height: 0.8;
    padding: 2.26rem 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .header .wrap .logo {
    width: 33rem;
    height: 4.5rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .header .wrap #menu {
    margin: 0 2rem;
  }
  .header .wrap .headR {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .header .wrap .headR .tel {
    font-size: 3.2rem;
  }
  .header .wrap .headR .tel::before {
    content: "tel.";
    display: inline-block;
    font-size: 1.6rem;
    margin-right: 0.8rem;
  }
}
/* SP ドロップダウンメニュー -------------------------------------- */
#menu {
  z-index: 9999;
  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;
  background: var(--clr_purple04);
  color: #fff;
  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;
}
#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: 27rem;
  height: 100%;
  padding: 4rem 2rem 6rem;
  background-color: white;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 203;
  -webkit-transform: translate(27rem);
  transform: translate(27rem);
}
#menu #nav.sp_nav.open {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#menu #nav.sp_nav .gnav {
  display: block;
  font-size: 1.2rem;
}
#menu #nav.sp_nav .gnav li {
  text-align: left;
  margin: 0;
  border-bottom: 1px solid #ddd;
}
#menu #nav.sp_nav .gnav li a {
  display: block;
  padding: 1.2rem 0.2rem 1.2rem;
  font-weight: bold;
  color: var(--clr_purple04);
  text-decoration: none !important;
  position: relative;
}
#menu #nav.sp_nav .gnav li a.sub {
  margin: 0;
}
#menu #nav.sp_nav .gnav li a.sub::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "\f004";
  color: var(--clr_purple04);
  font-family: "fontello";
  margin-left: 0.4rem;
}
#menu #nav.sp_nav .gnav li a.sub.close::after {
  content: "\f005";
}
#menu #nav.sp_nav .gnav li a.sub + .subnav {
  padding: 0.4rem 0.2rem 1.2rem;
  display: none;
}
#menu #nav.sp_nav .gnav li a.sub + .subnav li {
  width: 100%;
  border-bottom: none;
  text-align: left;
}
#menu #nav.sp_nav .gnav li a.sub + .subnav li a {
  font-weight: normal;
  color: #333;
  padding: 1rem 0.2rem;
  border-bottom: 1px solid #eee;
}
#menu #nav.sp_nav .gnav li a.sub + .subnav li a::after {
  content: none;
}
#menu #nav.sp_nav .gnav li a.sub + .subnav li:last-child a {
  border-bottom: none;
}
#menu #nav.sp_nav .sns_link {
  text-align: center;
}
#menu #nav.sp_nav .sns_link li {
  margin: 24px 12px 0;
  display: inline-block;
}
#menu #nav.sp_nav .sns_link li a img {
  width: auto;
  height: 34px;
}
#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;
    /* Gナビ　ハイライト */
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    background: #FFF;
  }
  #menu #nav .gnav {
    margin: 0;
    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: auto;
    position: relative;
  }
  #menu #nav .gnav > li:not(:last-of-type) {
    margin-right: 1em;
    padding-right: 1em;
    border-right: 1px solid var(--clr_gray02);
  }
  #menu #nav .gnav > li::after {
    content: none;
    display: none;
  }
  #menu #nav .gnav > li.home_item {
    display: none;
  }
  #menu #nav .gnav > li > a {
    display: block;
    text-align: center;
    font-size: 1.6rem;
  }
  #menu #nav .gnav > li > a:hover {
    opacity: 1;
    color: var(--clr_purple04);
  }
  #menu #nav .gnav > li .subnav {
    visibility: hidden;
    width: 40rem;
    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;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: 3.5rem;
  }
  #menu #nav .gnav > li .subnav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 50%;
    border-bottom: 1px solid var(--clr_gray);
  }
  #menu #nav .gnav > li .subnav > li:nth-child(even) {
    border-left: 1px solid var(--clr_gray);
  }
  #menu #nav .gnav > li .subnav > li::after {
    content: none;
  }
  #menu #nav .gnav > li .subnav > li > 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;
    font-size: 1.6rem;
    line-height: 1.4;
    width: 100%;
    background: white;
    padding: 1.6rem 0.2rem;
    text-align: center;
    color: var(--clr_purple04);
  }
  #menu #nav .gnav > li .subnav > li > a:hover {
    opacity: 1;
    color: #fff;
    background: var(--clr_purple04);
  }
  #menu #nav .sns_link {
    text-align: center;
  }
  #menu #nav .sns_link li {
    display: inline-block;
    margin: 0 0 0 15px;
  }
  #menu #nav .sns_link li a img {
    height: 30px;
    width: auto;
  }
}
/* クリニック概要 -------------------------------------- */
.gmap {
  text-align: right;
}
.gmap iframe {
  height: 30rem;
}

.overview_bg {
  background: url("../img/overview_bg01.jpg") no-repeat center/cover;
}

.overview {
  padding: 2rem 1rem 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
.overview > .wrap {
  padding: 2rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.8);
}
.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 .sns_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.overview > .wrap .overviewL .sns_link li {
  margin: 0 10px;
}
.overview > .wrap .overviewL .sns_link li a img {
  width: auto;
  height: 40px;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
}
.overview > .wrap .overviewR .tbl_gaiyo th {
  text-align: left;
  display: block;
  width: 100%;
  font-weight: normal;
  color: #fff;
}
.overview > .wrap .overviewR .tbl_gaiyo th span {
  background: var(--clr_purple);
  width: 100%;
  display: block;
  padding: 0.4rem 1rem;
  border-radius: 3px;
}
.overview > .wrap .overviewR .tbl_gaiyo td {
  padding: 0.4rem 0.4rem 1.2rem;
  display: block;
}
.overview > .wrap .overviewR .tbl_time {
  margin: 1.6rem 0;
}

@media screen and (min-width: 48em), print {
  .gmap iframe {
    height: 50rem;
  }
  .overview {
    margin: 0 0 0;
    padding: 8rem 0rem 4.9rem;
    font-size: 1.6rem;
  }
  .overview > .wrap {
    padding: 5.7rem 0 4.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .overview > .wrap .overviewL {
    width: 64.4rem;
    padding: 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .overview > .wrap .overviewL .clinic_name {
    margin: 0;
  }
  .overview > .wrap .overviewL .clinic_name img {
    max-width: 39.6rem;
  }
  .overview > .wrap .overviewL .sns_link {
    margin: 30px 0 0;
    width: 100%;
  }
  .overview > .wrap .overviewL .sns_link li {
    margin: 0 13px;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .overview > .wrap .overviewR .tbl_gaiyo th {
    display: table-cell;
    vertical-align: top;
    width: 11.7rem;
    padding: 0 0 1.3rem;
    text-align: center;
  }
  .overview > .wrap .overviewR .tbl_gaiyo td {
    display: table-cell;
    vertical-align: top;
    padding: 0.4rem 0 1.3rem 1.6rem;
  }
  .overview > .wrap .overviewR .tbl_time {
    width: 46rem;
  }
}
/* フッター -------------------------------------- */
.fixed_rsv {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_rsv {
    display: block;
    font-size: 2rem;
    position: fixed;
    top: 10rem;
    right: 0;
    z-index: 200;
    color: #fff;
    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;
  }
  .fixed_rsv a {
    padding: 1.4rem 1.4rem;
    border-radius: 10px 0px 0px 10px;
    background: var(--clr_purple);
    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;
  }
  .fixed_rsv a::before {
    content: "\e80e";
    font-family: "fontello";
    font-weight: normal;
    font-size: 3rem;
    margin-bottom: 0.2rem;
  }
  .fixed_rsv a:hover {
    opacity: 1;
    -webkit-filter: brightness(106%);
            filter: brightness(106%);
  }
  .-online {
    font-size: 1.6rem;
    top: 20rem;
    right: 0;
  }
}
#pageup {
  display: none;
  position: fixed;
  bottom: 6rem;
  right: 1rem;
  z-index: 1;
  cursor: pointer;
}
#pageup a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 5rem;
  height: 5rem;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding: 0.4rem;
  background: var(--clr_purple04);
  border-radius: 50%;
}
#pageup a::before {
  text-align: center;
  font-size: 1rem;
  font-family: "fontello";
  content: "\f005";
  color: #fff;
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    bottom: 2rem;
  }
  #pageup a {
    width: 6.4rem;
    height: 6.4rem;
  }
  #pageup a::before {
    font-size: 2rem;
  }
  #pageup a span {
    display: block;
  }
}
.tel_rsv {
  width: 100%;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tel_rsv .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-weight: bold;
  padding: 1.2rem 0;
  width: 30%;
  font-size: 1.1rem;
  line-height: 1;
}
.tel_rsv .tel::before {
  content: "\e801";
  font-weight: normal;
  font-family: "fontello";
  margin-right: 0.4rem;
}
.tel_rsv .rsv {
  width: 29%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  background: var(--clr_purple04);
  text-align: center;
  line-height: 1;
  padding: 1.2rem 0;
  color: #fff !important;
}
.tel_rsv .rsv::before {
  text-align: center;
  font-size: 1.4rem;
  font-weight: normal;
  font-family: "fontello";
  content: "\e80e";
  margin-right: 0.4rem;
}
.tel_rsv .rsv-online {
  width: 41%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  background: var(--clr_purple04);
  text-align: center;
  line-height: 1;
  padding: 1.2rem 0;
  color: #fff !important;
}
.tel_rsv .rsv-online::before {
  text-align: center;
  font-size: 1.4rem;
  font-weight: normal;
  font-family: "fontello";
  content: "\e80e";
  margin-right: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .tel_rsv {
    display: none !important;
  }
  .tel_rsv .tel {
    display: none !important;
  }
  .tel_rsv .rsv, .tel_rsv .rsv-online {
    display: none !important;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  background: rgba(var(--clr_purple02), 0.37);
}
.footer ul {
  display: none;
}
.footer .copy {
  display: block;
  background: rgba(var(--clr_purple02), 0.37);
  color: #fff;
  padding: 1.4rem 0.2rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 3rem 0 0;
  }
  .footer ul {
    display: block;
    text-align: center;
    margin: 0 auto;
    color: #fff;
  }
  .footer ul.footer_gnav {
    margin: 0 0 3rem;
  }
  .footer ul.footer_treatment {
    margin: 0 0 1.2rem;
  }
  .footer ul.footer_treatment:last-child {
    margin: 0;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.4rem;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0 1.6rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer .copy {
    margin: 3.6rem 0 0;
    padding: 1.1rem 0;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
#keyvsl {
  margin: 0 0 14rem;
  max-width: 100%;
  height: 20rem;
  background: url(../img/index_keyvsl01.jpg) no-repeat center center/cover;
}
#keyvsl .wrap {
  position: relative;
  height: 100%;
}
#keyvsl .wrap .kv_txt {
  display: inline-block !important;
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  position: absolute;
  bottom: 1.2rem;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff;
}
#keyvsl .wrap .kv_timetbl {
  position: absolute;
  bottom: -13rem;
  left: 0;
  right: 0;
  margin: 0 1rem;
}

@media screen and (min-width: 48em), print {
  #keyvsl {
    height: 81rem;
    margin: 0 auto 0;
    padding: 0;
    background: url(../img/index_keyvsl01.jpg) no-repeat center center/auto auto;
  }
  #keyvsl .wrap .kv_txt {
    font-size: 2.6rem;
    right: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #keyvsl .wrap .kv_timetbl {
    width: 53rem;
    bottom: 4rem;
    left: auto;
    margin: 0;
    padding: 2.1rem 4rem;
    background: rgba(255, 255, 255, 0.5);
  }
}
/* 開院用テキスト -------------------------------------- */
.kaiin {
  text-align: center;
  padding: 2rem 0 0;
}
.kaiin p {
  margin: 0;
  letter-spacing: 0.2rem;
}
.kaiin p .line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(255, 255, 255, 0)), color-stop(70%, var(--clr_yellow)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, var(--clr_yellow) 70%);
}
.kaiin p .size_s {
  font-weight: bold;
  font-size: 1.2rem;
}
.kaiin p .size_l {
  font-size: 2.2rem;
}
.kaiin p .ex {
  font-weight: bold;
  font-size: 2.2rem;
}
.kaiin p .dow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--clr_purple);
  vertical-align: text-bottom;
  padding: 0.2rem 0.4rem;
  margin-right: 0.4rem;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 1.2;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 48em), print {
  .kaiin {
    padding: 3.8rem 0 3.5rem;
  }
  .kaiin p {
    font-size: 2.6rem;
    line-height: 1.1;
  }
  .kaiin p .line {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(255, 255, 255, 0)), color-stop(60%, var(--clr_yellow)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, var(--clr_yellow) 60%);
  }
  .kaiin p .size_s {
    font-size: 1.2rem;
  }
  .kaiin p .size_l {
    font-size: 4.4rem;
  }
  .kaiin p .ex {
    font-size: 4.4rem;
    margin-left: 1.2rem;
  }
  .kaiin p .dow {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    vertical-align: bottom;
    padding: 0.6rem;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 2rem 1rem 4rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(6rem, rgba(255, 255, 255, 0)), color-stop(6rem, var(--clr_gray)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 6rem, var(--clr_gray) 6rem);
}
.info .wrap {
  background: #fff;
  padding: 2rem 1rem;
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 6px 10px rgba(0, 0, 0, 0.16);
}
.info .wrap dl {
  margin: 0;
  line-height: 1.4;
  padding: 0;
  height: 100%;
}
.info .wrap dl .line {
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--clr_gray04);
}
.info .wrap dl .line:last-child {
  border-bottom: none;
}
.info .wrap dl .line dt {
  margin-bottom: 0.4rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--clr_purple);
  font-size: 110%;
  cursor: pointer;
  display: table;
}
.info .wrap dl .line dt .date {
  display: block;
}
.info .wrap dl .line dt .date::before {
  content: "\e80c";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.info .wrap dl .line dt.close .date::before {
  content: "\e80b";
}
.info .wrap dl .line dt:hover {
  opacity: 0.8;
}
.info .wrap dl .line dd {
  padding: 0;
  margin: 0;
}
.info .wrap dl .line dd:nth-of-type(n + 4) {
  display: none;
}
.info .wrap dl .line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 0 0 8.3rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(6rem, rgba(255, 255, 255, 0)), color-stop(6rem, var(--clr_gray)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 6rem, var(--clr_gray) 6rem);
  }
  .info .wrap {
    min-height: 30rem;
    width: calc(1200px - 4rem);
    padding: 3rem 6.3rem 3rem 0;
    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;
  }
  .info .wrap .tit_02 {
    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;
    margin: 14.2rem 0 0;
    width: 27.3rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    border-bottom: none;
  }
  .info .wrap dl {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .info .wrap dl .line {
    padding: 0 0 4.2rem;
  }
  .info .wrap dl .line:nth-of-type(n + 4) dd {
    display: none;
  }
  .info .wrap dl .line dt {
    margin-bottom: 0;
    padding-left: 14rem;
    line-height: 1.2;
    font-size: 1.8rem;
    position: relative;
  }
  .info .wrap dl .line dt .date {
    letter-spacing: 0.2rem;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.6rem;
  }
  .info .wrap dl .line dt .date::before {
    margin-right: 1rem;
    font-size: 1.8rem;
  }
  .info .wrap dl .line dt.close {
    margin-bottom: 0;
  }
  .info .wrap dl .line dt:hover {
    opacity: 0.8;
  }
  .info .wrap dl .line dd {
    padding: 1rem 0 0 2rem;
    margin: 0;
  }
  .info .wrap dl .line dd p {
    margin: 0;
  }
}
/* 診療内容 -------------------------------------- */
.treatments {
  padding: 4rem 0;
}
.treatments .tit_02 {
  margin: 0 1rem 2rem;
}
.treatments .bg {
  background-color: var(--clr_purple03);
  background-size: 90% auto;
  background-repeat: no-repeat;
  background-position: center;
}
.treatments .bg ul {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.treatments .bg ul li {
  width: 49%;
  margin: 0 0 1.8rem;
}
.treatments .bg ul li a {
  display: block;
  text-align: center;
  text-decoration: none !important;
  color: var(--clr_gray02);
}
.treatments .bg ul li a::before {
  content: "";
  width: 10rem;
  height: 10rem;
  margin: 0 auto 0.6rem;
  padding: 1.4rem;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 60%;
}
.treatments .bg ul li a.gynecology::before {
  background-image: url("../img/index_treatments_gynecology.svg");
}
.treatments .bg ul li a.respiratory::before {
  background-image: url("../img/index_treatments_respiratory.svg");
}
.treatments .bg ul li a.antenatal::before {
  background-image: url("../img/index_treatments_antenatal.svg");
}
.treatments .bg ul li a.bridal::before {
  background-image: url("../img/index_treatments_bridal.svg");
}
.treatments .bg ul li a.fertility::before {
  background-image: url("../img/index_treatments_fertility.svg");
}
.treatments .bg ul li a.menopause::before {
  background-image: url("../img/index_treatments_menopause.svg");
}
.treatments .bg ul li a.uterine-descent::before {
  background-image: url("../img/index_treatments_uterine-descent.svg");
}
.treatments .bg ul li a.puberty::before {
  background-image: url("../img/index_treatments_puberty.svg");
}
.treatments .bg ul li a.female-athlete::before {
  background-image: url("../img/index_treatments_female-athlete.svg");
}
.treatments .bg ul li a.pill::before {
  background-image: url("../img/index_treatments_pill.svg");
}
.treatments .bg ul li a.breastcancer::before {
  background-image: url("../img/index_treatments_breastcancer.svg");
}
.treatments .bg ul li a.std::before {
  background-image: url("../img/index_treatments_std.svg");
}
.treatments .bg ul li a.vaccination::before {
  background-image: url("../img/index_treatments_vaccination.svg");
}
.treatments .bg ul li a.price::before {
  background-image: url("../img/index_treatments_price.svg");
}

@media screen and (min-width: 48em), print {
  .treatments {
    padding: 10rem 0 8rem;
  }
  .treatments .tit_02 {
    margin: 0 auto 4rem;
    width: 1200px;
  }
  .treatments .bg {
    background-color: var(--clr_purple03);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(7.5rem, rgba(255, 255, 255, 0)), color-stop(7.5rem, var(--clr_purple03)), color-stop(var(--clr_purple03)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 7.5rem, var(--clr_purple03) 7.5rem, var(--clr_purple03) calc(100% - 19rem), rgba(255, 255, 255, 0) calc(100% - 19rem));
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .treatments .bg ul {
    padding: 0 2rem;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .treatments .bg ul li {
    width: 15rem;
    margin: 0 5rem 7rem 0;
  }
  .treatments .bg ul li:nth-child(6n) {
    margin: 0 0 7rem;
  }
  .treatments .bg ul li a {
    white-space: nowrap;
    font-size: 1.8rem;
  }
  .treatments .bg ul li a:hover {
    opacity: 1;
    -webkit-filter: brightness(1.08);
            filter: brightness(1.08);
  }
  .treatments .bg ul li a::before {
    width: 15rem;
    height: 15rem;
    margin: 0 auto 2.2rem;
    padding: 0;
    background-size: auto 60%;
  }
  .treatments .bg ul li a.gynecology::before {
    background-image: url("../img/index_treatments_gynecology.svg");
  }
  .treatments .bg ul li a.respiratory::before {
    background-image: url("../img/index_treatments_respiratory.svg");
  }
  .treatments .bg ul li a.antenatal::before {
    background-image: url("../img/index_treatments_antenatal.svg");
  }
  .treatments .bg ul li a.bridal::before {
    background-image: url("../img/index_treatments_bridal.svg");
  }
  .treatments .bg ul li a.fertility::before {
    background-image: url("../img/index_treatments_fertility.svg");
  }
  .treatments .bg ul li a.menopause::before {
    background-image: url("../img/index_treatments_menopause.svg");
  }
  .treatments .bg ul li a.uterine-descent::before {
    background-image: url("../img/index_treatments_uterine-descent.svg");
  }
  .treatments .bg ul li a.puberty::before {
    background-image: url("../img/index_treatments_puberty.svg");
  }
  .treatments .bg ul li a.female-athlete::before {
    background-image: url("../img/index_treatments_female-athlete.svg");
  }
  .treatments .bg ul li a.pill::before {
    background-image: url("../img/index_treatments_pill.svg");
  }
  .treatments .bg ul li a.breastcancer::before {
    background-image: url("../img/index_treatments_breastcancer.svg");
  }
  .treatments .bg ul li a.breastcancer .br {
    display: block;
  }
  .treatments .bg ul li a.std::before {
    background-image: url("../img/index_treatments_std.svg");
  }
  .treatments .bg ul li a.vaccination::before {
    background-image: url("../img/index_treatments_vaccination.svg");
  }
}
/* 当院の特長 -------------------------------------- */
.features {
  padding: 2rem 0 4rem;
}
.features ul li {
  margin: 0 0 1.4rem;
}
.features ul li:last-child {
  margin: 0;
}
.features ul li figure {
  width: 80%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.features ul li figure img {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.features ul li figure figcaption {
  color: var(--clr_gray02);
  padding: 1rem 1rem 2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 60%;
  width: 80%;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transform: translateY(72%);
          transform: translateY(72%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.features ul li figure figcaption .tit {
  text-align: center;
  border-bottom: 1px solid var(--clr_gray03);
  padding: 0 0 0.4rem;
  margin: 0 0 1rem;
}
.features ul li figure figcaption .txt {
  font-size: 1.2rem;
}
.features ul li figure.active img {
  -webkit-filter: blur(4px);
          filter: blur(4px);
}
.features ul li figure.active figcaption {
  -webkit-transform: translateY(-3%);
          transform: translateY(-3%);
}

@media screen and (min-width: 48em), print {
  .features {
    padding: 6rem 0 6rem;
  }
  .features ul {
    margin: 4.3rem 0 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;
  }
  .features ul li {
    width: 36rem;
    margin: 0;
  }
  .features ul li:last-child {
    margin: 0;
  }
  .features ul li figure {
    width: 100%;
    margin: 0;
  }
  .features ul li figure figcaption {
    padding: 3rem 3rem 1rem;
    height: 28rem;
    width: 30rem;
    -webkit-transform: translateY(67%);
            transform: translateY(67%);
  }
  .features ul li figure figcaption .tit {
    font-size: 2rem;
    padding: 0 0 2.55rem;
    margin: 0 0 2.75rem;
  }
  .features ul li figure figcaption .txt {
    font-size: 1.4rem;
  }
  .features ul li figure.active img {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body:not(.index) .breadcrumb_list li {
    font-size: 1.6rem;
    display: inline-block;
  }
  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 4rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 10rem;
    line-height: 1.75;
  }
}

@media screen and (min-width: 48em), print {
  .cf .img_l, .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
/* ドクター紹介 */
.doctor .dr_name {
  text-align: right;
}
.doctor .dr_name span {
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  .doctor .dr_name span {
    font-size: 2.4rem;
  }
}

/* クリニック紹介 */
#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;
}

/* 初めての方へ */
/* 診療時間・アクセス */
.access .gmap {
  height: 30rem;
  margin: 2rem 0;
}

@media screen and (min-width: 48em), print {
  .access .gmap {
    height: 50rem;
  }
  .access .tbl_time {
    font-size: 1.8rem;
  }
  .access .tbl_time caption {
    font-size: 1.8rem;
  }
  .access .tbl_time tr th[scope=col] {
    font-size: 1.8rem;
  }
  .access .tbl_time tr th.time {
    padding: 1.8rem 0;
  }
}