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

.maker {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(47, 142, 174, 0.3)), color-stop(30%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, rgba(47, 142, 174, 0.3) 30%, rgba(255, 255, 255, 0) 30%);
}

.clr_blue {
  color: #2f8eae;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  background: #ffefa7;
  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: #f9f9f9;
}
*[class*=frame_].frame_02 {
  background: #f6fafb;
}
*[class*=frame_].frame_03 {
  background: #fff;
}

/* img -------------------------------------- */
.img_c {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}
@media screen and (min-width: 48em), print {
  .img_c {
    max-width: 60%;
  }
}
@media screen and (min-width: 48em), print {
  .img_c.size_l {
    max-width: 100%;
  }
}

.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;
  }
  .bnr_link {
    width: 44rem;
    display: block;
  }
  .bnr_link > img {
    max-width: 100%;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

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

.mt40 {
  margin-top: 4rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

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

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

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

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

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .main > section ~ section,
  .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section,
  .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section,
  .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section,
  .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption .clr_blue {
  color: #2f8eae;
}
.tbl_time caption p {
  margin: 0.8rem 0;
}
.tbl_time tr th {
  font-weight: normal;
  border-bottom: 1px solid #707070;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  font-size: 1.2rem;
  font-weight: normal;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  border-bottom: 1px solid #707070;
}
.tbl_time tr td {
  text-align: center;
  color: #2f8eae;
  padding: 0.6rem 0.4rem;
  border-bottom: 1px solid #707070;
  line-height: 1;
}
.tbl_time tr:last-child th,
.tbl_time tr:last-child td {
  border-bottom: none;
}

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

/* タイトル回り -------------------------------------- */
.tit_01 {
  font-size: 2.2rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #fff;
  font-weight: 600;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.4), 0 3px 3px rgba(0, 0, 0, 0.4), 0 3px 3px rgba(0, 0, 0, 0.4);
  height: 12rem;
  padding: 0 2% 0 10%;
  margin: 0 0 4.2rem;
  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;
  position: relative;
  z-index: 1;
}
.tit_01::before {
  content: "";
  display: block;
  width: 92%;
  height: 100%;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("../img/tit_01.jpg") no-repeat center/cover;
}
.tit_01::after {
  content: "";
  display: block;
  width: 50%;
  height: 80%;
  position: absolute;
  top: 30%;
  left: 0;
  z-index: -2;
  background: #f9f9f9;
}

.tit_02 {
  color: #2f8eae;
  font-size: 1.8rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-align: center;
  margin: 0 0 3.4rem;
  padding: 1.4rem 0;
  line-height: 1.2;
}

body.index .tit_02 span {
  display: block;
  font-size: 1.4rem;
  margin: 1.2rem 0 0;
}
body.index .tit_02 span::before, body.index .tit_02 span::after {
  content: "-";
  display: inline-block;
  margin: 0 0.2rem;
}

body:not(.index) .tit_02 {
  font-size: 2.4rem;
}

.tit_03 {
  color: #2f8eae;
  font-size: 1.8rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  line-height: 1.2;
  margin: 4rem 0 3rem;
  padding: 0 0 0.4rem 0.8rem;
  border-bottom: 1px solid #2f8eae;
  position: relative;
}
.tit_03::before {
  content: "";
  width: 3px;
  height: 100%;
  background: #2f8eae;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.tit_04 {
  color: #333;
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin: 0 0 1rem;
  padding: 0 0 0.4rem;
  border-bottom: 1px solid #2f8eae;
}

.tit_05 {
  color: #333;
  font-size: 1.8rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  display: inline-block;
  border-bottom: 1px dashed #2f8eae;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.tit_05 {
  color: #333;
  font-size: 1.8rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  line-height: 1.2;
  margin: 0 0 1rem;
}

.tit_06 {
  color: #2f8eae;
  font-size: 1.6rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-align: center;
  margin: 0 0 3.4rem;
  padding: 1.4rem 0;
  line-height: 1.2;
}

.tit_07 {
  color: #2f8eae;
  font-size: 1.6rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin-bottom: 1em;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3rem;
    margin: 0 0 2rem;
    min-height: 30.3rem;
    overflow: hidden;
  }
  .tit_01::before {
    width: 160rem;
    height: 26.8rem;
    background: url("../img/tit_01.jpg") no-repeat top -10rem center/auto auto;
    left: calc(50% - 60rem);
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
  .tit_01::after {
    top: auto;
    bottom: -3.5rem;
  }
  .tit_01 span {
    width: 1200px;
    margin: 0 auto;
    padding: 0 0 3.5rem 6rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .tit_02 {
    font-size: 2.6rem;
    margin: 0 0 6rem;
  }
  body.index .tit_02 span {
    margin: 2rem 0 0;
  }
  body:not(.index) .tit_02 {
    font-size: 3.4rem;
  }
  .tit_03 {
    font-size: 2.6rem;
    margin: 0 0 4rem;
    padding: 0.8rem 0 0.8rem 1.3rem;
  }
  .tit_04 {
    font-size: 2.2rem;
    margin: 0 0 4rem;
    padding: 0 0 0.8rem;
  }
  .tit_05 {
    font-size: 1.8rem;
    margin: 0 0 4rem;
    padding: 0 0 0.6rem;
  }
  .tit_06 {
    font-size: 2.6rem;
    margin: 0 0 6rem;
  }
  .tit_07 {
    font-size: 2rem;
    margin: 0 0 6rem;
  }
}
/* リスト回り -------------------------------------- */
ul[class*=lst_ul] li {
  text-indent: -1.8rem;
  padding-left: 2.4rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
ul[class*=lst_ul] li:last-child {
  padding-bottom: 0;
}
ul[class*=lst_ul] li > * {
  padding-left: 0;
  text-indent: 0;
}
@media screen and (min-width: 48em), print {
  ul[class*=lst_ul] li {
    text-indent: -2.3rem;
  }
}
ul[class*=lst_ul] li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  ul[class*=lst_ul].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;
  }
  ul[class*=lst_ul].flex li {
    width: 49%;
  }
}
ul[class*=lst_ul].lst_ul01 li::before {
  content: "\e80d";
  font-family: "fontello";
  margin-right: 0.4rem;
  color: #2f8eae;
}
@media screen and (min-width: 48em), print {
  ul[class*=lst_ul].lst_ul01 li::before {
    margin-right: 0.6rem;
  }
}
ul[class*=lst_ul].lst_ul02 li::before {
  content: "●";
  margin-right: 0.2rem;
  color: #a58e59;
}
ul[class*=lst_ul].lst_ul02 li.dummy {
  pointer-events: none;
  visibility: hidden;
}
ul[class*=lst_ul].lst_ul02 li.dummy::before {
  content: "";
}
ul[class*=lst_ul].lst_ul03 li {
  text-indent: -1.5rem;
  padding-left: 1.6rem;
}
ul[class*=lst_ul].lst_ul03 li::before {
  content: "・";
  margin-right: 0.2rem;
}
ul[class*=lst_ul].lst_ul04 li::before {
  content: "●";
  margin-right: 0.2rem;
  color: #2f8eae;
}
ul[class*=lst_ul].lst_ul05 {
  text-indent: 0;
}
ul[class*=lst_ul].lst_ul05 li {
  padding: 0;
  padding-left: 0;
  margin: 0 0 1rem;
  text-indent: 0;
}
@media screen and (min-width: 48em), print {
  ul[class*=lst_ul].lst_ul05 li {
    margin: 0 0 1.6rem;
  }
}
ul[class*=lst_ul].lst_ul06 li::before {
  content: "※";
  margin-right: 0.2rem;
}

.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;
}
@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;
  }
}
/* フレックス回り -------------------------------------- */
.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;
  }
  .flex2 .mt60 {
    margin: 0;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  display: inline-block;
  background: #2f8eae;
  color: #fff;
  text-align: center;
  padding: 0.6rem 3rem;
  margin: 1rem 0;
  border-radius: 40px;
  min-width: 80%;
  text-decoration: none !important;
}
*[class*=btn_] a::before {
  content: "\e80a";
  font-family: "fontello";
  margin-right: 0.6rem;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
    display: inline-block !important;
    margin: 2.6rem;
  }
  *[class*=btn_] a {
    min-width: 35rem;
    padding: 1.6rem 4rem 2rem;
    margin: 0;
    display: block;
  }
}

.txt_link {
  color: #2f8eae;
}
.txt_link::before {
  content: "2";
  font-family: "fontello";
  display: inline-block;
  margin-right: 0.4rem;
}

/* フローチャート -------------------------------------- */
.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: -8rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #69adc5;
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

/* テーブル -------------------------------------- */
.main *[class*=tbl_]:not(.tbl_time) {
  table-layout: fixed;
  caption-side: bottom;
  border-collapse: collapse;
  width: 100%;
}
.main *[class*=tbl_]:not(.tbl_time) caption {
  padding: 0.6rem 0 0;
  text-align: left;
}
@media screen and (min-width: 48em), print {
  .main *[class*=tbl_]:not(.tbl_time) caption {
    padding: 1.6rem 0 0;
  }
}
.main *[class*=tbl_]:not(.tbl_time) thead tr th {
  padding: 0.8rem;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  background: #2f8eae;
  border: 1px solid #ccc;
}
@media screen and (min-width: 48em), print {
  .main *[class*=tbl_]:not(.tbl_time) thead tr th {
    padding: 1.6rem 2rem;
  }
}
.main *[class*=tbl_]:not(.tbl_time) tbody tr th {
  width: 30%;
  background: #e9f2f6;
  text-align: center;
  font-weight: normal;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 48em), print {
  .main *[class*=tbl_]:not(.tbl_time) tbody tr th {
    padding: 1.6rem 2rem;
  }
}
.main *[class*=tbl_]:not(.tbl_time) tbody tr td {
  padding: 0.8rem;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 48em), print {
  .main *[class*=tbl_]:not(.tbl_time) tbody tr td {
    padding: 1.6rem 2rem;
  }
}
.main *[class*=tbl_]:not(.tbl_time) tbody tr td.txt_c {
  text-align: center;
}
.main *[class*=tbl_]:not(.tbl_time).tbl_price tbody tr th {
  padding: 1rem 1rem;
  width: 70%;
}
@media screen and (min-width: 48em), print {
  .main *[class*=tbl_]:not(.tbl_time).tbl_price thead tr th {
    width: 35%;
  }
  .main *[class*=tbl_]:not(.tbl_time).tbl_price thead tr th:first-child {
    width: 65%;
  }
  .main *[class*=tbl_]:not(.tbl_time).tbl_price tbody th {
    width: 65%;
  }
  .main *[class*=tbl_]:not(.tbl_time).tbl_price tbody td {
    width: 35%;
  }
}
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead,
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit tbody {
  display: block;
}
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr,
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit tbody tr {
  display: block;
}
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr th,
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit tbody tr th {
  width: 100%;
  display: block;
}
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr td,
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit tbody tr td {
  width: 100%;
  display: block;
}
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr {
  display: block;
}
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr th {
  width: 100%;
  display: block;
}
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr th:first-child {
  border-bottom: none;
  padding: 0.6rem 0 0;
  font-weight: normal;
}
.main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr th:last-child {
  border-top: none;
  padding: 0 0 1.2rem;
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  .main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead,
  .main *[class*=tbl_]:not(.tbl_time).tbl_recruit tbody {
    display: table-row-group;
  }
  .main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr,
  .main *[class*=tbl_]:not(.tbl_time).tbl_recruit tbody tr {
    display: table-row;
  }
  .main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr th,
  .main *[class*=tbl_]:not(.tbl_time).tbl_recruit tbody tr th {
    width: 30%;
    display: table-cell;
  }
  .main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr td,
  .main *[class*=tbl_]:not(.tbl_time).tbl_recruit tbody tr td {
    width: 70%;
    display: table-cell;
  }
  .main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr th:first-child {
    width: 30%;
    border-bottom: 1px solid #ccc;
    padding: 1.8rem 0;
    font-weight: bold;
  }
  .main *[class*=tbl_]:not(.tbl_time).tbl_recruit thead tr th:last-child {
    width: 70%;
    border-top: 1px solid #ccc;
    padding: 1.8rem 0;
    font-size: 100%;
  }
}

.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
---------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
html {
  font-size: 3.125vw;
  font-family: "Zen Maru Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

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

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

.wrap {
  padding: 0 1rem 0;
}

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1220px;
  }
  body > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 10rem auto 0;
  }
  a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
    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: 0.8rem 1rem;
}
.header .wrap .logo {
  height: 5rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat center center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headR {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 0 auto 0;
    padding: 2.2rem 0;
    border-bottom: 1px solid #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .wrap .logo {
    width: 32rem;
    height: 8.8rem;
  }
  .header .wrap .headR {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    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;
  }
  .header .wrap .headR .tbl_time_txt {
    font-size: 1.8rem;
    margin: 0 3rem 0 0;
    text-align: right;
    line-height: 1.4;
  }
  .header .wrap .headR .head_info .tel_item {
    margin: 0 0 0.8rem;
  }
  .header .wrap .headR .head_info .tel_item .tel {
    font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-size: 3rem;
    font-weight: 600;
    color: #2f8eae;
  }
  .header .wrap .headR .head_info .tel_item .tel::before {
    content: "\e80b";
    font-family: "fontello";
    font-weight: normal;
    margin-right: 0.2rem;
  }
  .header .wrap .headR .head_info .rsv_item {
    width: 21rem;
  }
  .header .wrap .headR .head_info .rsv_item 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;
    background: #2f8eae;
    padding: 1.4rem 0.2rem;
    font-size: 2.2rem;
    font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    border-radius: 30px;
    color: #fff;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
  }
  .header .wrap .headR .head_info .rsv_item a::before {
    content: "\e80e";
    font-family: "fontello";
    margin-right: 0.4rem;
  }
}
/* SP ドロップダウンメニュー-------------------------------------- */
#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: 4rem;
  height: 4rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0.4rem 0.4rem;
  position: fixed;
  top: 1.2rem;
  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: none;
  color: #2f8eae;
  font-size: 1.8rem;
  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.active .hamburger a::before {
  content: "\e806";
}
#menu #nav {
  display: none;
}
#menu #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 4rem 2rem 6rem;
  background: rgba(255, 255, 255, 0.94);
  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 ul {
  display: block;
  font-size: 1.2rem;
}
#menu #nav.sp_nav ul li {
  text-align: left;
  margin: 0;
}
#menu #nav.sp_nav ul li a {
  display: block;
  font-size: 1.8rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  padding: 1.2rem 0.2rem 1.2rem;
  font-weight: bold;
  color: #212121;
  text-decoration: none !important;
}
#menu #nav.sp_nav ul li a.sub {
  pointer-events: none;
  margin: 0;
  padding: 0.8rem 0.2rem 0.8rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav {
  padding: 0 0.2rem 0 8rem;
  text-align: left;
}
#menu #nav.sp_nav ul li a.sub + .subnav a {
  font-weight: normal;
  color: #212121;
  padding: 0.8rem 0.2rem;
  position: relative;
}
#menu #nav.sp_nav ul li a.sub + .subnav a::before {
  content: "";
  width: 2rem;
  height: 0.1rem;
  background: #212121;
  display: inline-block;
  position: absolute;
  left: -2.2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#menu .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.2);
  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;
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 10;
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  #menu #nav .gnav {
    width: calc(1200px - 2rem);
    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 a {
    display: block;
    text-align: center;
    padding: 2.8rem 0;
    font-size: 2.2rem;
    font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  }
  #menu #nav .gnav li .subnav {
    width: 22.2rem;
    padding: 4rem 0.4rem;
    background: rgba(255, 255, 255, 0.84);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: none;
    position: absolute;
  }
  #menu #nav .gnav li .subnav li {
    width: 100%;
    margin: 0 0 2.4rem;
  }
  #menu #nav .gnav li .subnav li:last-child {
    margin: 0;
  }
  #menu #nav .gnav li .subnav li a {
    display: block;
    width: 100%;
    padding: 0;
    text-align: center;
    color: #212121;
  }
  #menu #nav .gnav li .subnav li a:hover {
    color: #000;
  }
  #menu {
    /* Gナビ　ハイライト */
  }
}
/* フッター -------------------------------------- */
.tel_up {
  width: 100%;
  background: #2f8eae;
  display: block;
  color: #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_up > * {
  width: 33.3333333333%;
  border: 1px solid #fff;
  border-right: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tel_up > *.tel span::before {
  content: "\e80b";
}
.tel_up > *.rsv span::before {
  content: "\e80e";
}
.tel_up > *.pageup {
  cursor: pointer;
  border-right: 1px solid #fff;
}
.tel_up > *.pageup span::before {
  content: "\e825";
}
.tel_up > * a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  padding: 1.4rem 0;
}
.tel_up > * a span {
  display: block;
}
.tel_up > * a span::before {
  font-family: "fontello";
  margin-right: 0.2rem;
}

@media screen and (min-width: 48em), print {
  .tel_up {
    display: block;
    width: 8rem;
    bottom: 4rem;
    right: 8rem;
    left: auto;
    cursor: pointer;
    background: none;
    padding: 0;
  }
  .tel_up .tel,
  .tel_up .rsv {
    display: none;
  }
  .tel_up .pageup {
    border: none;
    width: 11rem;
    height: 11rem;
  }
  .tel_up .pageup a {
    display: block;
    padding: 0;
  }
  .tel_up .pageup a span {
    height: 100%;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: rgba(47, 142, 174, 0.72);
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.8rem;
    font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    border-radius: 50%;
  }
  .tel_up .pageup a span::before {
    font-size: 4.6rem;
    margin: 0 0 0.6rem;
  }
}
.index .overview_low {
  display: none;
}

.footer {
  text-align: center;
  padding: 0 0 5.6rem;
  background: #2f8eae;
}
.footer .overview_low {
  background: #fff;
  padding: 2rem 1rem 2rem;
  border-top: 1px solid #eee;
}
.footer .overview_low .flex_01 .time_tbl .btn_cal {
  margin: 2rem auto 0;
}
.footer .overview_low .flex_01 .time_tbl .btn_cal 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;
  text-decoration: none !important;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 1.4rem;
  padding: 0.8rem 0;
  color: #fff;
  background: #2f8eae;
  border-radius: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.footer .overview_low .flex_01 .map {
  margin: 7rem 0 4rem;
}
.footer .overview_low .flex_01 .map img {
  display: block;
  max-width: 100%;
  margin: 3rem auto 2rem;
}
.footer .overview_low .flex_01 .map .map_btn {
  display: block;
  text-align: center;
}
.footer .overview_low .flex_01 .map .map_btn a {
  background: #2f8eae;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  padding: 0.6rem 4rem;
  margin: 1rem 0;
  border-radius: 40px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  min-width: 80%;
  text-decoration: none !important;
}
.footer .overview_low .flex_01 .map .map_btn a::before {
  content: "\e80a";
  font-family: "fontello";
  margin-right: 0.6rem;
}
.footer .flex_02 {
  color: #fff;
  padding: 2rem 1rem 0;
}
.footer .flex_02 .overview {
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
.footer .flex_02 .overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.footer .flex_02 .overview .clinic_name img {
  max-width: 80%;
  height: auto;
}
.footer .flex_02 .overview .tbl_gaiyo {
  width: 80%;
  margin: 0 auto 1.4rem;
  border-collapse: collapse;
}
.footer .flex_02 .overview .tbl_gaiyo th {
  width: 27%;
  text-align: left;
  vertical-align: top;
  padding: 0.4rem;
  font-weight: normal;
}
.footer .flex_02 .overview .tbl_gaiyo td {
  padding: 0.4rem;
  text-align: left;
}
.footer .flex_02 .overview .tbl_gaiyo td .tel {
  font-family: font_mincho;
}
.footer .flex_02 .overview .tbl_gaiyo td .tel::before {
  content: "\e80b";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.footer .flex_02 .overview .link_nav {
  padding: 0;
  margin: 0 0 2rem;
  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 .flex_02 .overview .link_nav li {
  width: 32%;
}
.footer .flex_02 .overview .link_nav li a {
  color: #212121;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  background: #fff;
  padding: 0.2rem 0.4rem;
  border-radius: 30px;
  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;
}
.footer .flex_02 .overview .link_nav li a::before {
  font-family: "fontello";
  margin-right: 0.2rem;
}
.footer .flex_02 .overview .link_nav li a.rsv::before {
  content: "\e80e";
}
.footer .flex_02 .overview .link_nav li a.contact::before {
  content: "\e80f";
}
.footer .flex_02 .overview .link_nav li a.recruit::before {
  content: "\e80c";
}
.footer .flex_02 .overview .sns_nav {
  margin: 0.4rem 0 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .flex_02 .overview .sns_nav li {
  margin: 0 1.4rem;
}
.footer .flex_02 .overview .sns_nav li a {
  display: block;
  width: 5rem;
  height: 5rem;
  position: relative;
  overflow: hidden;
}
.footer .flex_02 .overview .sns_nav li a::before {
  font-size: 4rem;
  font-family: "fontello";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.footer .flex_02 .overview .sns_nav li a.i_twitter::before {
  content: "\f309";
}
.footer .flex_02 .overview .sns_nav li a.i_insta::before {
  content: "\f16d";
}
.footer .flex_02 .overview .sns_nav li a span {
  visibility: hidden;
}
.footer .flex_02 .footer_nav {
  padding: 0 3rem;
  margin: 0 0 3rem;
  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;
}
.footer .flex_02 .footer_nav ul {
  width: 48%;
}
.footer .flex_02 .footer_nav ul li {
  text-align: left;
  margin: 0 0 1.2rem;
}
.footer .flex_02 .footer_nav ul li.treatment {
  display: none;
}
.footer .flex_02 .footer_nav ul li a {
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 1.2rem;
}
.footer .copy {
  display: block;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 0 0;
  }
  .footer .overview_low {
    padding: 0;
  }
  .footer .overview_low .flex_01 {
    padding: 7.2rem 0 8rem;
    width: 1200px;
    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: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .overview_low .flex_01 .time_tbl {
    width: 53.5rem;
  }
  .footer .overview_low .flex_01 .time_tbl .btn_cal {
    margin: 2.7rem auto 0;
  }
  .footer .overview_low .flex_01 .time_tbl .btn_cal a {
    font-size: 1.8rem;
    width: 35.6rem;
    padding: 0.8rem 0;
    margin: 0 auto;
  }
  .footer .overview_low .flex_01 .map {
    width: 60rem;
  }
  .footer .overview_low .flex_01 .map img {
    margin: 0;
  }
  .footer .overview_low .flex_01 .map .map_btn {
    margin: 3rem 0 0;
    width: 50rem;
  }
  .footer .overview_low .flex_01 .map .map_btn a {
    font-size: 1.8rem;
    padding: 0.6rem 4rem 0.8rem;
  }
  .footer .flex_02 {
    color: #fff;
    width: 1200px;
    padding: 7.2rem 0 0;
    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;
  }
  .footer .flex_02 .overview {
    padding: 0;
    margin: 0 14rem 0 0;
    width: 68.5rem;
    position: relative;
  }
  .footer .flex_02 .overview .clinic_name {
    text-align: left;
    margin: 0 0 4.7rem;
  }
  .footer .flex_02 .overview .clinic_name img {
    width: 32rem;
  }
  .footer .flex_02 .overview .tbl_gaiyo {
    width: 100%;
    margin: 0 auto 1.7rem;
    padding: 0;
    font-size: 1.8rem;
  }
  .footer .flex_02 .overview .tbl_gaiyo th {
    width: 9.7rem;
    padding: 0 0 1.4rem;
  }
  .footer .flex_02 .overview .tbl_gaiyo td {
    padding: 0 0 1.4rem;
  }
  .footer .flex_02 .overview .link_nav {
    margin: 0 0 5rem;
  }
  .footer .flex_02 .overview .link_nav li a {
    font-size: 1.8rem;
    background: #fff;
    color: #212121;
    padding: 1.2rem 0 1rem;
    position: relative;
  }
  .footer .flex_02 .overview .link_nav li a::before {
    margin: 0 1rem 0 0;
  }
  .footer .flex_02 .overview .link_nav li a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px;
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .footer .flex_02 .overview .link_nav li a:hover {
    opacity: 1;
  }
  .footer .flex_02 .overview .link_nav li a:hover::after {
    opacity: 0.4;
  }
  .footer .flex_02 .overview .sns_nav {
    position: absolute;
    right: 0;
    top: 0;
  }
  .footer .flex_02 .overview .sns_nav li {
    margin: 0 3rem 0 0;
  }
  .footer .flex_02 .overview .sns_nav li:last-child {
    margin: 0;
  }
  .footer .flex_02 .overview .sns_nav li a::before {
    font-size: 5rem;
  }
  .footer .flex_02 .footer_nav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    margin: 1rem auto 2rem;
    padding: 0;
  }
  .footer .flex_02 .footer_nav ul li {
    margin: 0 0 2rem;
  }
  .footer .flex_02 .footer_nav ul li a {
    opacity: 1;
    font-size: 1.8rem;
  }
  .footer .flex_02 .footer_nav ul li a span {
    display: none;
  }
  .footer .flex_02 .footer_nav ul li a:hover {
    text-decoration: underline;
  }
  .footer .flex_02 .footer_nav ul li.treatment {
    display: none;
  }
  .footer .copy {
    font-size: 1.6rem;
    padding: 0 0 2rem;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
#keyvsl {
  margin: 0;
  max-width: 100%;
  height: 20rem;
}
#keyvsl .wrap {
  position: relative;
  height: 100%;
}
#keyvsl .wrap .kv_img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  margin: auto;
  background: url(../img/index_keyvsl01.jpg) no-repeat center center/cover;
  z-index: -1;
}
#keyvsl .wrap .kv_txt {
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #fff;
  height: 100%;
  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;
  font-size: 1.4rem;
}
#keyvsl .wrap .kv_txt p {
  margin: 0.6rem 0 0;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4), 0 2px 2px rgba(0, 0, 0, 0.4), 0 2px 2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}
#keyvsl .wrap .kv_txt p.size_l {
  font-size: 1.6rem;
}
#keyvsl .wrap .kv_txt p.size_s {
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  #keyvsl {
    margin: 0 auto 0;
    padding: 0;
    height: 61.3rem;
    overflow-x: hidden;
  }
  #keyvsl .wrap {
    z-index: 1;
  }
  #keyvsl .wrap::before {
    content: "";
    display: block;
    width: 100rem;
    height: 45rem;
    position: relative;
    left: -40rem;
    bottom: -16rem;
    z-index: -2;
    background: #f9f9f9;
  }
  #keyvsl .wrap .kv_img {
    width: 1600px;
    height: 55.3rem;
  }
  #keyvsl .wrap .kv_txt {
    width: calc(50% - 9.8rem);
    position: absolute;
    top: 0;
    left: 9.8rem;
    height: 55.3rem;
    font-size: 2rem;
    padding: 0;
  }
  #keyvsl .wrap .kv_txt p {
    margin: 0 0 2rem;
    line-height: 1.4;
  }
  #keyvsl .wrap .kv_txt p.size_l {
    font-size: 3rem;
  }
  #keyvsl .wrap .kv_txt p.size_s {
    font-size: 2rem;
    text-align: right;
    width: 100%;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 4rem 0 1rem;
  /*background: url("../img/index_info_bg01sp.jpg") no-repeat top center / contain;*/
}
.info section.wrap {
  background: #f8f8f8;
  padding: 0 0 2% 0;
}
.info section.wrap dl {
  overflow-y: scroll;
  background: #fff;
  width: 96%;
  height: 30rem;
  margin: 0 auto;
  padding: 2%;
  line-height: 1.4;
}
.info section.wrap dl dt {
  margin: 1rem 0 0.4rem;
  padding: 0 0 0 1.8rem;
  font-weight: bold;
  color: #2f8eae;
  cursor: pointer;
  display: table;
  position: relative;
}
.info section.wrap dl dt:hover {
  opacity: 0.8;
}
.info section.wrap dl dt::before {
  content: "\e800";
  font-family: "fontello";
  font-weight: normal;
  margin-right: 0.2rem;
  position: absolute;
  left: 0;
  top: 1px;
}
.info section.wrap dl dt .date {
  display: block;
}
.info section.wrap dl dt.close::before {
  content: "\e803";
}
.info section.wrap dl dd {
  padding: 0;
  margin: 0 0 2rem;
  /*&:nth-of-type(n + 4) {
    display: none;
  }*/
}
.info section.wrap dl dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 7.8rem 0 2rem;
    background: none;
  }
  .info dl {
    font-size: 1.8rem;
    height: 50rem !important;
  }
  .info dl dt {
    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;
    padding: 0 0 0 2.4rem;
  }
  .info dl dt .date {
    margin-right: 4rem;
  }
}
/* 診療時間表 -------------------------------------- */
.timeTbl_area {
  padding: 2rem 0 2rem;
  background: url("../img/index_timeTblArea_bg01.jpg") no-repeat bottom center/contain;
}
.timeTbl_area .btn_cal 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;
  text-decoration: none !important;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  padding: 0.8rem 0;
  color: #fff;
  background: #2f8eae;
  border-radius: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.btn-line 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;
  text-decoration: none !important;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  padding: 0.8rem 0;
  color: #06c755;
  background: #fff;
  border: #06c755 2px solid;
  border-radius: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn-line a::before {
  color: #06c755;
  content: "\e80a";
  font-family: "fontello";
  margin-right: 0.6rem;
}

@media screen and (min-width: 48em), print {
  .timeTbl_area {
    padding: 5rem 0 8rem;
    background: url("../img/index_timeTblArea_bg01.jpg") no-repeat bottom center/auto auto;
  }
  .timeTbl_area .tbl_time {
    width: 53.5rem;
    margin: 0 auto 2.7rem;
  }
  .timeTbl_area .btn_cal {
    text-align: center;
    display: block !important;
  }
  .timeTbl_area .btn_cal a {
    font-size: 1.8rem;
    width: 35.6rem !important;
    min-width: auto !important;
    padding: 0.8rem 0;
    margin: 0 auto;
  }
  .btn-line {
    text-align: center;
    display: block !important;
  }
  .btn-line a {
    font-size: 1.8rem;
    width: 35.6rem !important;
    min-width: auto !important;
    padding: 0.8rem 0;
    margin: 0 auto;
  }
}
.line_btn .btn_cal {
  display: inline-block;
}
.line_btn .btn_cal 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;
  text-decoration: none !important;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  padding: 0.8rem 1.5rem;
  color: #fff;
  background: #2f8eae;
  border-radius: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 48em), print {
  .line_btn .btn_cal {
    text-align: center;
    display: block !important;
  }
  .line_btn .btn_cal a {
    font-size: 16px;
    width: 30rem !important;
    min-width: auto !important;
    padding: 0.8rem 0;
    margin: 0 auto;
  }
}
/* SNSリンク -------------------------------------- */
.sns_area {
  background: url("../img/index_snsArea_bg01.jpg") no-repeat center/cover;
  padding: 2.6rem 0 5rem;
}
.sns_area ul {
  max-width: 80%;
  margin: 0 auto;
}
.sns_area ul li {
  margin: 0 0 2rem;
}
.sns_area ul li:last-child {
  margin: 0;
}
.sns_area ul li::before {
  content: "Follow us !";
  color: #fff;
  display: block;
  text-align: center;
  font-weight: bold;
  height: 5rem;
  width: 12rem;
  padding: 0 0 2rem;
  margin: 0 0 0 auto;
  background: url("../img/index_snsArea_parts01.svg") no-repeat center right/12rem auto;
}
.sns_area ul 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;
  text-decoration: none !important;
  min-height: 6rem;
  background: #fff;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.36);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.36);
}
.sns_area ul li a::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  margin: 0 2rem 0 0;
}
.sns_area ul li a.twitter::before {
  background: url("../img/i_twitter.png") no-repeat center/contain;
}
.sns_area ul li a.insta::before {
  background: url("../img/i_insta.png") no-repeat center/contain;
}
.sns_area ul li a.line::before {
  background: url("../img/i_line.svg") no-repeat center/contain;
}

@media screen and (min-width: 48em), print {
  .sns_area {
    background: url("../img/index_snsArea_bg01.jpg") no-repeat center/auto auto;
    padding: 12rem 0 13.3rem;
  }
  .sns_area ul {
    max-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;
  }
  .sns_area ul li {
    margin: 0 2.5rem 0 0;
    min-width: 35.6rem;
  }
  .sns_area ul li:last-child {
    margin: 0 0 0 2.5rem;
  }
  .sns_area ul li::before {
    height: 6rem;
    width: 15rem;
    font-size: 1.6rem;
    background: url("../img/index_snsArea_parts01.svg") no-repeat center right/15rem auto;
  }
  .sns_area ul li a {
    padding: 2.5rem 0;
    font-size: 2.2rem;
    position: relative;
  }
  .sns_area ul li a::before {
    width: 4rem;
    height: 4rem;
    margin: 0 2rem 0 0;
  }
  .sns_area ul li a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px;
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sns_area ul li a:hover {
    opacity: 1;
  }
  .sns_area ul li a:hover::after {
    opacity: 0.4;
  }
}
/* 診療案内 -------------------------------------- */
.treatment_menu01 {
  padding: 4rem 0 2rem;
  background: url("../img/index_treatmentMenu01_bg01.jpg") repeat-y top center/100% 20rem;
}
.treatment_menu01 .wrap > ul > li {
  padding: 1.4rem;
  margin: 0 0 1.6rem;
  position: relative;
  z-index: 1;
}
.treatment_menu01 .wrap > ul > li::before {
  content: "";
  display: block;
  margin: 0 auto 0.4rem;
  width: 100%;
  height: 8rem;
  background: #222;
  z-index: 1;
}
.treatment_menu01 .wrap > ul > li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-filter: opacity(20%);
          filter: opacity(20%);
}
.treatment_menu01 .wrap > ul > li dl dt {
  margin: 0 0 0.6rem;
}
.treatment_menu01 .wrap > ul > li dl dt a {
  text-decoration: none !important;
  display: block;
  font-size: 2rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.treatment_menu01 .wrap > ul > li dl dd {
  padding: 0;
  margin: 0;
}
.treatment_menu01 .wrap > ul > li dl dd ul {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.treatment_menu01 .wrap > ul > li dl dd ul li {
  display: inline-block;
  margin: 0 1.8rem 1rem 0;
  padding: 0;
}
.treatment_menu01 .wrap > ul > li dl dd ul li a {
  text-decoration: none !important;
  padding: 0.2rem 0.2rem;
}
.treatment_menu01 .wrap > ul > li dl dd ul li a::before {
  content: "\e80d";
  color: #2f8eae;
  font-family: "fontello";
  margin-right: 0.4rem;
}
.treatment_menu01 .wrap > ul > li.nav_dermatology::before {
  background: url("../img/index_treatmentMenu01_dermatology.jpg") no-repeat center/cover;
}
.treatment_menu01 .wrap > ul > li.nav_dermatology::after {
  background: url("../img/index_treatmentMenu01_dermatology.jpg") no-repeat center/cover;
}
.treatment_menu01 .wrap > ul > li.nav_kids::before {
  background: url("../img/index_treatmentMenu01_kids.jpg") no-repeat center/cover;
}
.treatment_menu01 .wrap > ul > li.nav_kids::after {
  background: url("../img/index_treatmentMenu01_kids.jpg") no-repeat center/cover;
}
.treatment_menu01 .wrap > ul > li.nav_beauty::before {
  background: url("../img/index_treatmentMenu01_beauty.jpg") no-repeat center/cover;
}
.treatment_menu01 .wrap > ul > li.nav_beauty::after {
  background: url("../img/index_treatmentMenu01_beauty.jpg") no-repeat center/cover;
}

@media screen and (min-width: 48em), print {
  .treatment_menu01 {
    padding: 7.3rem 0 6.4rem;
  }
  .treatment_menu01 .wrap > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .treatment_menu01 .wrap > ul > li {
    width: 39rem;
    padding: 4rem 3.5rem 3.7rem;
  }
  .treatment_menu01 .wrap > ul > li::before {
    height: 17rem;
    margin: 0 0 2.6rem;
  }
  .treatment_menu01 .wrap > ul > li dl dt a {
    font-size: 2.6rem;
    margin: 0 0 1.8rem;
  }
  .treatment_menu01 .wrap > ul > li dl dd ul li a {
    font-size: 1.8rem;
  }
}
/* お悩みから探す -------------------------------------- */
.treatment_menu02 {
  padding: 4rem 0 2rem;
}
.treatment_menu02 ul li {
  margin: 0 0 2rem;
}
.treatment_menu02 ul li a {
  padding: 2.4rem 3.8rem;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  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;
  text-decoration: none !important;
  font-size: 1.6rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.treatment_menu02 ul li a::before {
  content: "";
  background: url("../img/i_cursor.svg") no-repeat center/contain;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 1.2rem;
}
.treatment_menu02 ul li a.item_01 {
  background-image: url("../img/index_treatmentMenu02_01.jpg");
}
.treatment_menu02 ul li a.item_02 {
  background-image: url("../img/index_treatmentMenu02_02.jpg");
}
.treatment_menu02 ul li a.item_03 {
  background-image: url("../img/index_treatmentMenu02_03.jpg");
}
.treatment_menu02 ul li a.item_04 {
  background-image: url("../img/index_treatmentMenu02_04.jpg");
}
.treatment_menu02 ul li a.item_05 {
  background-image: url("../img/index_treatmentMenu02_05.jpg");
}
.treatment_menu02 ul li a.item_06 {
  background-image: url("../img/index_treatmentMenu02_06.jpg");
}
.treatment_menu02 ul li a.item_07 {
  background-image: url("../img/index_treatmentMenu02_07.jpg");
}
.treatment_menu02 ul li a.item_08 {
  background-image: url("../img/index_treatmentMenu02_08.jpg");
}
.treatment_menu02 ul li a.item_09 {
  background-image: url("../img/index_treatmentMenu02_09.jpg");
}
.treatment_menu02 ul li a.item_10 {
  background-image: url("../img/index_treatmentMenu02_10.jpg");
}
.treatment_menu02 ul li a.item_11 {
  background-image: url("../img/index_treatmentMenu02_11.jpg");
}
.treatment_menu02 ul li a.herpes {
  background-image: url("../img/index_treatmentMenu02_herpes.jpg");
}
.treatment_menu02 ul li a.hyperhidrosis {
  background-image: url("../img/index_treatmentMenu02_hyperhidrosis.jpg");
}
.treatment_menu02 ul li a {
  /*		&.volnewmer {
            background-image: url("../img/index_treatmentMenu02_volnewmer.jpg");
          }*/
}

.treatment_menu02.-calendar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.treatment_menu02.-calendar ul a {
  padding: initial;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.treatment_menu02.-calendar ul a::before {
  display: none;
}

@media screen and (min-width: 48em), print {
  .treatment_menu02 {
    padding: 7.7rem 0 5.2rem;
  }
  .treatment_menu02 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .treatment_menu02 ul li {
    margin-bottom: 3.1rem;
    margin-right: 3.6rem;
    width: 37.6rem;
  }
  .treatment_menu02 ul li:nth-child(3n) {
    margin-right: 0;
  }
  .treatment_menu02 ul li a {
    font-size: 2.2rem;
    min-height: 11rem;
    line-height: 1;
  }
  .treatment_menu02 ul li a::before {
    width: 2.2rem;
    height: 2.2rem;
  }
  .treatment_menu02 ul li a.item_01 {
    background-position: bottom -10rem center;
  }
  .treatment_menu02 ul li a.item_02 {
    background-size: 140% auto;
    background-position: bottom -15rem left -2rem;
  }
  .treatment_menu02 ul li a.item_03 {
    background-position: bottom -13rem center;
  }
  .treatment_menu02 ul li a.item_04 {
    background-position: bottom -5rem center;
  }
  .treatment_menu02 ul li a.item_08 {
    background-size: 130% auto;
    background-position: center right 2rem;
  }
  .treatment_menu02 ul li a.item_09 {
    background-position: bottom -6rem center;
  }
  .treatment_menu02 ul li a.item_10 {
    background-position: bottom -6rem center;
  }
  .treatment_menu02 ul li a.item_11 {
    background-position: bottom -5rem center;
  }
  .treatment_menu02 ul li a.herpes {
    background-position: center;
  }
  .treatment_menu02.-calendar ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .treatment_menu02.-calendar ul a::before {
    display: none;
  }
}
/* 施術・治療法から探す -------------------------------------- */
.treatment_menu03 {
  padding: 4rem 0 2rem;
  background: url("../img/index_treatmentMenu03_bg01.jpg") repeat-y top center/100% 20rem;
}
.treatment_menu03 ul li {
  margin: 0 0 2rem;
}
.treatment_menu03 ul li a {
  padding: 0.5rem 1rem;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dceff5));
  background: linear-gradient(to bottom, #fff, #dceff5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  position: relative;
}
.treatment_menu03 ul li a::before {
  content: "";
  display: block;
  min-width: 6rem;
  height: auto;
  aspect-ratio: 1/1;
  margin-right: 0.8rem;
  border-radius: 50%;
  background: #222;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.treatment_menu03 ul li a span {
  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;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
.treatment_menu03 ul li a span::before {
  content: "";
  background: url("../img/i_cursor.svg") no-repeat center/contain;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.8rem;
}
.treatment_menu03 ul li a.piercing::before {
  background-image: url("../img/index_treatmentMenu03_piercing.jpg");
}
.treatment_menu03 ul li a.UV::before {
  background-image: url("../img/index_treatmentMenu03_UV.jpg");
}
.treatment_menu03 ul li a.item_02::before {
  background-image: url("../img/index_treatmentMenu03_02.jpg");
}
.treatment_menu03 ul li a.item_03::before {
  background-image: url("../img/index_treatmentMenu03_03.jpg");
}
.treatment_menu03 ul li a.item_04::before {
  background-image: url("../img/index_treatmentMenu03_04.jpg");
}
.treatment_menu03 ul li a.item_05::before {
  background-image: url("../img/index_treatmentMenu03_05.jpg");
}
.treatment_menu03 ul li a.item_06::before {
  background-image: url("../img/index_treatmentMenu03_06.jpg");
}
.treatment_menu03 ul li a.item_07::before {
  background-image: url("../img/index_treatmentMenu03_07.jpg");
}
.treatment_menu03 ul li a.item_08::before {
  background-image: url("../img/index_treatmentMenu03_08.jpg");
}
.treatment_menu03 ul li a.item_09::before {
  background-image: url("../img/index_treatmentMenu03_09.jpg");
}
.treatment_menu03 ul li a.item_12::before {
  background-image: url("../img/index_treatmentMenu03_12.jpg");
}
.treatment_menu03 ul li a.inmode::before {
  background-image: url("../img/index_treatment_inmode.jpg");
}
.treatment_menu03 ul li a.massage_peel::before {
  background-image: url("../img/index_treatmentMenu03_massage_peel.jpg");
}
.treatment_menu03 ul li a.reverse_peel::before {
  background-image: url("../img/index_treatmentMenu03_reverse_peel.jpg");
}
.treatment_menu03 ul li a.allergy_test::before {
  background-image: url("../img/index_treatmentMenu03_allergy_test.jpg");
}
.treatment_menu03 ul li a.Isotretinoin::before {
  background-image: url("../img/index_treatmentMenu03_Isotretinoin.jpg");
}
.treatment_menu03 ul li a.herpes::before {
  background-image: url("../img/index_treatmentMenu03_herpes.jpg");
}
.treatment_menu03 ul li a.item_10::before {
  background-image: url("../img/index_treatmentMenu03_10.jpg");
}
.treatment_menu03 ul li a.item_11::before {
  background-image: url("../img/index_treatmentMenu03_11.jpg");
}
.treatment_menu03 ul li a.item_12::before {
  background-image: url("../img/index_treatmentMenu03_12.jpg");
}
.treatment_menu03 ul li a.inmode::before {
  background-image: url("../img/index_treatment_inmode.jpg");
}
.treatment_menu03 ul li a.aga::before {
  background-image: url("../img/index_treatmentMenu03_aga.jpg");
}
.treatment_menu03 ul li a.ingrown_nails::before {
  background-image: url("../img/index_treatmentMenu03_ingrown_nails.jpg");
}
.treatment_menu03 ul li a.CryoPro::before {
  background-image: url("../img/index_treatmentCryoPro.jpg");
}
.treatment_menu03 ul li a.surgetron::before {
  background-image: url("../img/index_treatmentsurgetron.jpg");
}
.treatment_menu03 ul li a.volnewmer::before {
  background-image: url("../img/index_treatmentvolnewmer.jpg");
}

@media screen and (min-width: 48em), print {
  .treatment_menu03 {
    padding: 6.2rem 0 5rem;
  }
  .treatment_menu03 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .treatment_menu03 ul li {
    width: 28.6rem;
    margin-right: 1.8rem;
    margin-bottom: 3rem;
  }
  .treatment_menu03 ul li:nth-child(4n) {
    margin-right: 0;
  }
  .treatment_menu03 ul li a {
    min-height: 10rem;
  }
  .treatment_menu03 ul li a::before {
    min-width: 8rem;
  }
  .treatment_menu03 ul li a span {
    font-size: 1.6rem;
  }
  .treatment_menu03 ul li a span::before {
    min-width: 2.2rem;
    height: 2.2rem;
  }
}
/* ----------------------------------------------------------------------------------
下層　_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.8rem;
    font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-weight: 500;
    display: inline-block;
  }
  body:not(.index) .breadcrumb_list li:not(:last-child)::after {
    content: "\e809";
    font-family: "fontello";
    color: #2f8eae;
    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 10rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 10rem;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 48em), print {
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
.img_flex {
  margin: 1rem auto;
}
.img_flex li {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 0 auto;
}
.img_flex li ~ li {
  margin: 2rem auto;
}

@media screen and (min-width: 48em), print {
  .img_flex {
    margin: 4rem auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .img_flex li {
    width: 48%;
  }
  .img_flex li ~ li {
    margin: 0;
  }
}
/* 項目を小さく表示する */
.small_item {
  font-size: 90%;
  color: #2f8eae;
}
.small_item *[class*=tit_] {
  font-size: 90%;
  margin: 2rem 0;
}

/* クリニック案内 */
.clinic .doctor_name {
  text-align: right;
}
.clinic .doctor_name span {
  font-size: 120%;
}
.clinic .tit {
  font-size: 120%;
}
.clinic .doctor_img {
  max-width: 40%;
  display: block;
  margin: 2rem auto 2rem;
}
@media screen and (min-width: 48em), print {
  .clinic .doctor_img {
    max-width: 16%;
    margin: 4rem auto 2rem;
  }
  .clinic .flex2 > *:last-child {
    margin-left: 8rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/* 受診案内 */
.visitor .main .tel-rsv_box {
  margin: 2rem auto 2rem;
  text-align: center;
}
.visitor .main .tel-rsv_box .tel {
  padding: 0 2rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 2rem;
  font-weight: 600;
  color: #2f8eae;
}
.visitor .main .tel-rsv_box .tel::before {
  content: "\e80b";
  font-family: "fontello";
  font-weight: normal;
  margin-right: 0.2rem;
}
@media screen and (min-width: 48em), print {
  .visitor .main .tel-rsv_box {
    margin: 4rem auto 0;
    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;
  }
  .visitor .main .tel-rsv_box .tel {
    font-size: 2.8rem;
  }
}
.visitor .main .lst_ul02 li > p {
  text-indent: 0;
  padding-left: 0;
}

/* 診療時間・アクセス */
.access .br:before {
  content: "\a";
  white-space: pre;
}
.access .lst_ul02.txt_c {
  text-align: left;
}
.access .map {
  margin: 0 auto 8rem;
}
.access .map img {
  display: block;
  max-width: 100%;
  margin: 3rem auto 2rem;
}
.access .map .map_btn {
  display: block;
  text-align: center;
}
.access .map .map_btn a {
  background: #2f8eae;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  padding: 0.6rem 4rem;
  margin: 1rem 0;
  border-radius: 40px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  min-width: 80%;
  text-decoration: none !important;
}
.access .map .map_btn a::before {
  content: "\e80a";
  font-family: "fontello";
  margin-right: 0.6rem;
}
.access .time_tbl {
  margin: 4rem 0 4rem;
}
.access .time_tbl .btn_cal {
  margin: 2rem auto 0;
}
.access .time_tbl .btn_cal 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;
  text-decoration: none !important;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 1.4rem;
  padding: 0.8rem 0;
  color: #fff;
  background: #2f8eae;
  border-radius: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.access .overview_low {
  display: none;
}

@media screen and (min-width: 48em), print {
  .access .lst_ul02.txt_c {
    text-align: center;
  }
  .access .map {
    margin: 6rem auto 12rem;
  }
  .access .map img {
    width: 60rem;
  }
  .access .map .map_btn {
    margin: 3rem auto 0;
    width: 50rem;
  }
  .access .map .map_btn a {
    font-size: 1.8rem;
    padding: 0.6rem 4rem 0.8rem;
  }
  .access .time_tbl .btn_cal {
    margin: 2.7rem auto 0;
  }
  .access .time_tbl .btn_cal a {
    font-size: 1.8rem;
    width: 35.6rem;
    padding: 0.8rem 0;
    margin: 0 auto;
  }
}
.homecare .main > section {
  padding: 1rem 1.8rem 2rem;
  background: #f8f8f8;
}
.homecare .main > section:first-of-type {
  margin: 3.4rem auto 0;
}
.homecare .main > section .frame_03 > p {
  margin: 0 0 1rem;
}
.homecare .price_txt {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2f8eae;
  margin: 0;
}
.homecare .flex_img .img img {
  display: block;
  width: 60%;
  margin: 0 auto 1rem;
}
.homecare .content {
  margin: 3rem 0 3rem;
}

@media screen and (min-width: 48em), print {
  .homecare .main > section {
    padding: 3rem 6rem 6rem;
  }
  .homecare .main > section:first-of-type {
    margin: 6rem auto 0;
  }
  .homecare .main > section .frame_03 {
    margin: 2rem 0 0;
  }
  .homecare .main > section .frame_03 > p {
    margin: 0 0 2rem;
  }
  .homecare .price_txt {
    font-size: 2rem;
    margin: 2rem 0 0;
  }
  .homecare .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;
  }
  .homecare .flex_img .img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 32%;
  }
  .homecare .flex_img .img img {
    width: 100%;
    margin: 0;
  }
  .homecare .flex_img .content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
    margin-right: 6rem;
  }
  .homecare .flex_img .content > *:first-child {
    margin: 0;
  }
}
.recruit .line_area {
  border: 4px solid #adb9ca;
  outline: 1px solid #adb9ca;
  outline-offset: 2px;
  padding: 3.8rem 1.4rem 1.8rem 1.4rem;
  margin: 5px;
  position: relative;
}
.recruit .line_area::before, .recruit .line_area::after {
  content: "";
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/recruit_parts01.png");
  position: absolute;
  top: 0.4rem;
}
.recruit .line_area::before {
  left: 0.4rem;
}
.recruit .line_area::after {
  right: 0.4rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.recruit .line_area > .item_parts {
  display: block;
}
.recruit .line_area > .item_parts::before, .recruit .line_area > .item_parts::after {
  content: "";
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/recruit_parts01.png");
  position: absolute;
  bottom: 0.4rem;
}
.recruit .line_area > .item_parts::before {
  left: 0.4rem;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.recruit .line_area > .item_parts::after {
  right: 0.4rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.recruit .line_area .clinic_name {
  margin: 2.2rem 0 4rem;
}

@media screen and (min-width: 48em), print {
  .recruit .line_area {
    border: 4px solid #adb9ca;
    outline: 1px solid #adb9ca;
    outline-offset: 2px;
    padding: 16rem 8rem 13rem;
    margin: 5px;
  }
  .recruit .line_area::before, .recruit .line_area::after {
    width: 12.5rem;
    height: 12.5rem;
    top: 2rem;
  }
  .recruit .line_area::before {
    left: 2rem;
  }
  .recruit .line_area::after {
    right: 2rem;
  }
  .recruit .line_area > .item_parts {
    display: block;
  }
  .recruit .line_area > .item_parts::before, .recruit .line_area > .item_parts::after {
    width: 12.5rem;
    height: 12.5rem;
    bottom: 2rem;
  }
  .recruit .line_area > .item_parts::before {
    left: 2rem;
  }
  .recruit .line_area > .item_parts::after {
    right: 2rem;
  }
  .recruit .line_area .clinic_name {
    margin: 4rem 0 4rem;
    font-size: 110%;
  }
}
.price_menu {
  padding: 0 0 8rem;
}
.price_menu ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.price_menu ul li {
  margin: 0;
}
.price_menu ul li a {
  display: block;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none !important;
  font-size: 1.6rem;
  font-family: "游明朝体", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.price_menu ul img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 48em), print {
  .price_menu ul {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.price_menu.-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.price_menu.-menu ul li {
  max-width: 100%;
}
.price_menu.-menu ul li a {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-family: inherit;
  color: inherit;
  display: block;
}
.price_menu.-menu ul li a::before {
  display: none;
}

.caresys .flex_img .img img {
  display: block;
  width: 60%;
  margin: 0 auto 1rem;
}
.caresys .content {
  margin: 3rem 0 3rem;
}

@media screen and (min-width: 48em), print {
  .caresys .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;
  }
  .caresys .flex_img .img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 32%;
  }
  .caresys .flex_img .img img {
    width: 100%;
    margin: 0;
  }
  .caresys .flex_img .content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
    margin-right: 6rem;
  }
  .caresys .flex_img .content > *:first-child {
    margin: 0;
  }
}
.visitor .flex_img {
  margin-top: 2rem;
}
.visitor .flex_img .img img {
  display: block;
  width: 60%;
  margin: 0 auto 1rem;
}
.visitor .content {
  margin: 3rem 0 3rem;
}

@media screen and (min-width: 48em), print {
  .visitor .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;
  }
  .visitor .flex_img .img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 32%;
  }
  .visitor .flex_img .img img {
    width: 100%;
    margin: 0;
  }
  .visitor .flex_img .content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
    margin-right: 6rem;
  }
  .visitor .flex_img .content > *:first-child {
    margin: 0;
  }
}
.bnr_cron {
  width: 100%;
  margin: 2rem auto 0;
  text-align: center;
}
.bnr_cron a {
  display: inline-block;
  line-height: 0;
}
.bnr_cron img {
  display: block;
  margin: 6rem auto 0;
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 48em), print {
  .bnr_cron img {
    max-width: 800px;
  }
}
/*# sourceMappingURL=style.css.map */