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

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

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

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

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

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

.cf::after {
  clear: both;
}

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

.fl_r {
  float: right;
}

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

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline !important;
}

.inline {
  display: inline !important;
}

.blue {
  color: #2cafd1;
}

.brown {
  color: #6E555B !important;
}

.black {
  color: #333 !important;
}

.border_topNone {
  border-top: none !important;
}

.border_bottomNone {
  border-bottom: none !important;
}

.border_topGray {
  border-top: 1px solid #A79C9D;
}

.border_bottomGray {
  border-bottom: 1px solid #A79C9D;
}

.circle_lightBlue {
  border-top: initial !important;
  border-bottom: initial !important;
}
.circle_lightBlue::after {
  content: "●";
  display: inline-block;
  color: #87D4E8;
  margin-left: 1.5rem;
}
@media screen and (min-width: 48em), print {
  .circle_lightBlue::after {
    margin-left: 2rem;
  }
}

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

/* img -------------------------------------- */
.img_c {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.img_l, .img_r {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

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

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

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

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

.mb40 {
  margin-bottom: 4rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.mb10 {
  margin-bottom: 1rem !important;
}

.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 !important;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .mb40 {
    margin-bottom: 8rem !important;
  }
  .mb30 {
    margin-bottom: 6rem !important;
  }
  .mb20 {
    margin-bottom: 4rem !important;
  }
  .mb10 {
    margin-bottom: 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;
  color: #6E555B;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption span {
  line-height: 1.8;
  font-size: 1.1rem;
}
.tbl_time tr th {
  font-weight: normal;
  border-top: 1px solid #6E555B;
  border-bottom: 1px solid #6E555B;
}
.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 #6E555B;
  border-top: none;
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  border-bottom: 1px solid #6E555B;
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.6rem;
  }
  .tbl_time caption {
    font-size: 1.6rem;
    padding: 0.8rem 0 0;
  }
  .tbl_time caption span {
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.2rem 0;
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 24%;
    padding: 1.2rem 1rem 1.2rem 0;
  }
  .tbl_time tr th.time {
    padding: 1.2rem 0;
    letter-spacing: 0.1rem;
    text-align: right;
    padding: 1.2rem 1rem 1.2rem 0;
  }
}
/* カレンダー -------------------------------------- */
.cal_area .caledit {
  width: 100%;
}
.cal_area .caledit tbody tr th {
  border: none;
}
.cal_area .caledit tbody tr td {
  border: none;
  color: #666666;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
.cal_area .caledit tbody tr td.open {
  background: #87D4E8;
}
.cal_area .caledit tbody tr td.outPatient {
  background: #AFB3BF;
}
.cal_area .caledit tbody tr td.changeTime {
  background: #6E555B;
  color: #fff;
}
.cal_area .caledit tbody tr td.notTheMonth {
  color: #DCDCDC;
  background: none;
}
.cal_area .caledit tbody tr.month th {
  color: #333333;
  font-size: 1.6rem;
  background: none;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  border-bottom: 2px solid #A79C9D;
}
.cal_area .caledit tbody tr.week th {
  background: none;
  font-weight: normal;
  color: #666;
}
.cal_area .status li {
  font-size: 1.4rem;
  color: #666;
  margin: 0 0;
  line-height: 1;
}
.cal_area .status li::before {
  content: "■";
  font-family: "fontello";
  font-size: 2.2rem;
  margin-right: 0.2rem;
  vertical-align: middle;
}
.cal_area .status li.open::before {
  color: #87D4E8;
}
.cal_area .status li.changeTime::before {
  color: #6E555B;
}
.cal_area .status li.outPatient::before {
  color: #AFB3BF;
}

@media screen and (min-width: 48em), print {
  .cal_area .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .cal_area .flex .caledit {
    width: 48%;
  }
  .cal_area .flex .caledit tbody tr td {
    font-size: 1.5rem;
    padding: 1rem;
  }
  .cal_area .flex .caledit tbody tr.month th {
    padding: 0 0 1.4rem;
    font-size: 2.5rem;
  }
  .cal_area .flex .caledit tbody tr.week th {
    font-size: 1.9rem;
    padding: 0.6rem;
  }
  .cal_area .status {
    width: 53rem;
    margin: 0 0 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cal_area .status li {
    width: 48%;
  }
  .cal_area .status li::before {
    font-size: 3rem;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat;
  background-position: calc(50% - 9rem) center;
  background-size: cover;
  font-size: 2.2rem;
  font-family: "Noto Serif JP", serif;
  color: #6E555B;
  padding: 2rem 2rem;
  margin: 0;
  width: 100%;
  height: 18rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.tit_02 {
  color: #333;
  font-size: 2rem;
  margin: 0 0 1rem;
  padding: 1rem 0;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1rem;
  position: relative;
  z-index: -1;
}
.tit_02 .ex_size {
  font-size: 120%;
}
.tit_02 .bg_txt {
  font-family: "Great Vibes", cursive;
  color: #F0F4F5;
  width: 100%;
  position: absolute;
  bottom: 21px;
  left: 0;
  z-index: -1;
  font-size: 6rem;
  line-height: 0.8;
}

body:not(.index) .tit_02 {
  color: #2CAFD1;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: 0.2rem;
  position: relative;
}

.tit_03, .circle_lightBlue {
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  line-height: 1.2;
  text-indent: -1.1rem;
  margin: 0 0 2rem;
  padding: 0.4rem 0.4rem 0.4rem 2.2rem;
  border-top: 1px solid #A79C9D;
  border-bottom: 1px solid #A79C9D;
}
.tit_03::before, .circle_lightBlue::before {
  content: "●";
  display: inline-block;
  margin-right: 0.4rem;
  color: #87D4E8;
}

.tit_04 {
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.tit_04::after {
  content: "";
  display: block;
  margin: 0.4rem 0 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #87D4E8 40%, #DCDCDC 40%);
}

.tit_05 {
  color: #333;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0 0.2rem 0.2rem 0.2rem;
  border-bottom: 2px dotted #87D4E8;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center top/auto auto;
    font-size: 3rem;
    height: 30rem;
    padding: 4.5rem 5.8rem;
    margin: 0;
  }
  .tit_01 span {
    width: 1200px;
    margin: 0 auto;
  }
  .tit_02 {
    font-size: 3.2rem;
    letter-spacing: 0.2rem;
    margin: 0 0 5rem;
  }
  .tit_02 .ex_size {
    font-size: 4rem;
    vertical-align: bottom;
    margin-left: 0.4rem;
  }
  .tit_02 .bg_txt {
    font-size: 17.8rem;
    left: 15%;
  }
  body:not(.index) .tit_02 {
    font-size: 3rem;
    letter-spacing: 0.3rem;
    padding: 2rem 0;
    margin: 4rem 0 4rem;
  }
  .tit_03, .circle_lightBlue {
    font-size: 2.6rem;
    margin: 0 0 4rem;
    padding: 2rem 1rem 2rem 3rem;
  }
  .tit_03::before, .circle_lightBlue::before {
    margin-right: 1rem;
  }
  .tit_04 {
    font-size: 2.2rem;
    margin: 0 0 2rem;
  }
  .tit_04::after {
    height: 3px;
  }
  .tit_05 {
    font-size: 1.8rem;
    margin: 0 0 0.2rem;
    padding: 0 0.6rem 0.4rem 0.6rem;
  }
}
/* タイトル回り(下層用)-------------------------------------- */
.lead_txt {
  font-size: 2rem;
  color: #333;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: 0.2rem;
  margin: 0 0 2rem !important;
  position: relative;
}
.lead_txt .ex_size {
  font-size: 120%;
}

@media screen and (min-width: 48em), print {
  .lead_txt {
    font-size: 3.8rem;
    letter-spacing: 0.4rem;
    padding: 0;
    margin: 0 !important;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  text-indent: -2rem;
  padding-left: 2.2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
.lst_ul01 li::before {
  content: "●";
  margin-right: 0.4rem;
  color: #87D4E8;
}
.lst_ul01 li.none::before {
  content: none;
}

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

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

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 dt {
    float: left;
    width: 15%;
    clear: left;
  }
  .lst_dl01 dd {
    margin: 0 0 0.6rem;
    padding-left: 5rem;
  }
}
/* フレックス回り -------------------------------------- */
.flex3 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li {
    width: 48%;
    margin: 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn] {
  font-family: "Noto Serif JP", serif;
}

.btn_01 {
  display: block;
  text-align: left;
}
.btn_01 a {
  display: block;
  background: #87D4E8;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  padding: 1rem;
  text-decoration: none !important;
}
@media screen and (min-width: 48em), print {
  .btn_01 a {
    display: inline-block;
    padding: 1rem 4rem;
    /*width: 15%;*/
  }
}
@media screen and (min-width: 48em), print {
  .btn_01.left {
    text-align: left;
  }
}
@media screen and (min-width: 48em), print {
  .btn_01.right {
    text-align: right;
  }
}

.btn_02 span {
  width: 100%;
  border: 1px solid #6E555B;
  color: #6E555B;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  display: block;
}
@media screen and (min-width: 48em), print {
  .btn_02 span {
    width: 15%;
  }
}
.btn_02 span::before {
  content: "\e800";
  font-family: "fontello";
  margin-right: 0.4rem;
}
@media screen and (min-width: 48em), print {
  .btn_02 span {
    pointer-events: none;
  }
}
.btn_02 span a {
  display: inline-block;
}

/* テーブル -------------------------------------- */
.tbl_01 {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_01 tr th {
  width: 30%;
  padding: 0.4rem 1rem;
  background: #87D4E8;
  color: #fff;
  text-align: left;
  font-weight: normal;
  border: 1px solid #DCDCDC;
}
.tbl_01 tr td {
  padding: 0.8rem;
  border: 1px solid #DCDCDC;
}

.tbl_02 {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  .tbl_02 {
    width: 60%;
  }
}
.tbl_02 tr th {
  width: 30%;
  padding: 0.4rem 1rem;
  color: #2CAFD1;
  text-align: center;
  font-weight: bold;
  border: 1px solid #DCDCDC;
}
.tbl_02 tr td {
  text-align: center;
  padding: 0.8rem;
  border: 1px solid #DCDCDC;
}

.tbl_price {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_price tr th {
  width: 40%;
  background: #87D4E8;
  text-align: left;
  font-weight: normal;
  color: #fff;
  border-top: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
  padding: 0.6rem;
}
@media screen and (min-width: 48em), print {
  .tbl_price tr th {
    padding: 1.8rem 1.6rem;
  }
}
.tbl_price tr td {
  width: 60%;
  padding: 0.6rem;
  border-top: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
  text-align: center;
}

.ancList {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: auto;
  margin-top: 2rem;
  /* justify-content: space-between; */
}
@media screen and (min-width: 48em), print {
  .ancList {
    margin-top: 4rem;
  }
  .ancList.pc-center {
    justify-content: center;
  }
}
.ancList .page-index {
  /* width: calc(21% - 20px); */
  /* font-size: 1.2rem; */
  border-radius: 50px;
  background: #87D4E8;
  color: #fff;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 48em), print {
  .ancList .page-index {
    font-size: 1.6rem;
  }
}
.ancList .page-index a {
  text-decoration: none !important;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 16px 10px 20px;
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .ancList .page-index a {
    padding: 12px 16px 12px 20px;
  }
}
@media screen and (min-width: 48em), print {
  .ancList .page-index a:hover {
    border-radius: 50px;
    background: #2CAFD1;
  }
}
.ancList .page-index a::after {
  padding-left: 1rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f063";
}

/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
html {
  font-size: 3.125vw;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

body {
  background: #fff;
  color: #333;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

img {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

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

.wrap {
  padding: 0 1rem 0;
}

.main {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 0 0;
  overflow-x: hidden;
}
.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;
    display: block;
  }
  body > .wrap {
    margin: 0rem auto 0;
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.8rem;
    padding: 0 0 0;
    width: 100%;
    overflow-x: hidden;
  }
}
/* アイコンフォント -------------------------------------- */
@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 {
  position: relative;
  max-width: 100%;
  height: 30rem;
}
.header .logo {
  width: 16rem;
  padding: 0.6rem 0.8rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.header .logo a {
  display: block;
  width: 100%;
  height: 4rem;
  background: url(../img/logo.svg) no-repeat center top/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .logo span {
  border-top: 1px solid #EFEFEF;
  color: #6E555B;
  margin: 0.3rem auto 0;
  padding: 0.3rem 0 0;
  display: block;
  width: 90%;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

@media screen and (min-width: 48em), print {
  .header {
    margin: 0 0 0;
    height: 90rem;
  }
  .header .logo {
    width: 35.4rem;
    height: 13.5rem;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .header .logo a {
    padding: 1rem;
    width: 29.3rem;
    height: 7rem;
    padding: 0 0 0.6rem;
  }
  .header .logo span {
    padding: 0.8rem 0 0;
    margin: 1.2rem 0 0;
    font-size: 1.4rem;
  }
}
/*menu*/
.menu_box {
  position: fixed;
  top: 2rem;
  right: 1rem;
  z-index: 99;
}
.menu_box li .menu {
  height: 5rem;
  width: 5rem;
  position: relative;
  display: block;
  color: #fff;
  background: #6E555B;
  cursor: pointer;
}
.menu_box li .menu:hover {
  opacity: 0.8;
}
.menu_box li .menu::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  text-align: center;
  margin: auto;
}
.menu_box li .menu.open {
  background: none;
}
.menu_box li .menu.open::after {
  color: #707070;
  content: "CLOSE";
}
.menu_box li.menu__tel, .menu_box li.menu__rsv {
  display: none;
}

.menu__line {
  background: #fff;
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform 0.3s;
  width: 80%;
}
.menu__line.active {
  background: #707070;
}

.menu__line--top {
  top: 1rem;
}

.menu__line--middle {
  top: 1.9rem;
}

.menu__line--bottom {
  top: 2.7rem;
}

.menu__line--top.active {
  top: 19px;
  transform: rotate(45deg);
  width: 60%;
}

.menu__line--middle.active {
  display: none;
}

.menu__line--bottom.active {
  top: 20px;
  transform: rotate(135deg);
  width: 60%;
}

/*gnav*/
.gnav {
  background: #fafafa;
  display: none;
  height: 100%;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 98;
}
.gnav .wrap {
  padding: 8rem 0 0;
}
.gnav .wrap .clinic_name {
  width: 19.5rem;
  margin: 0 auto;
}
.gnav .wrap .clinic_name span {
  border-top: 1px solid #EFEFEF;
  color: #6E555B;
  margin: 0.6rem auto 0;
  padding: 0.6rem 0 0;
  display: block;
  width: 90%;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.gnav .wrap ul {
  padding: 0 3rem;
  margin: 2.8rem 0 0;
}
.gnav .wrap ul li .tel {
  font-size: 2.8rem;
  border: 1px solid #6E555B;
  background: #fff;
  color: #6E555B;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  display: block;
  text-align: center;
}
.gnav .wrap ul li .tel::before {
  content: "\e800";
  font-family: "fontello";
  margin-right: 0.6rem;
  font-size: 2rem;
  vertical-align: middle;
  position: relative;
  bottom: 0.3rem;
}
.gnav .wrap ul li .btn_rsv {
  display: block;
  background: #87D4E8;
  text-align: center;
  color: #fff;
  margin: 0.8rem 0 0;
  padding: 1.8rem 2rem;
  border-radius: 5px;
  font-size: 1.8rem;
}
.gnav .wrap ul li .btn_rsv::before {
  content: "\e801";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.gnav .wrap .nav_list {
  padding: 0 1rem;
}
.gnav .wrap .nav_list .tit {
  color: #87D4E8;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  text-align: left;
  border-bottom: 1px solid #87D4E8;
  padding: 0 0 1rem;
}
.gnav .wrap .nav_list .flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.gnav .wrap .nav_list .flex ul {
  width: 50%;
  padding: 0;
  margin: 0;
}
.gnav .wrap .nav_list .flex ul li {
  margin: 0 0 2rem;
  padding-left: 1rem;
}
.gnav .wrap .nav_list .flex ul li a {
  font-size: 1.4rem;
  position: relative;
}
.gnav .wrap .nav_list .flex ul li a::before {
  content: "\e805";
  font-family: "fontello";
  color: #87D4E8;
  position: absolute;
  left: -1rem;
}
.gnav .wrap .nav_list .flex ul li a:hover {
  opacity: 1;
  color: #87D4E8;
}
.gnav .wrap .tbl_gaiyo {
  display: none;
}
.gnav .wrap .time_tbl_area {
  padding: 2.4rem 1rem 3rem;
  background: #F0F4F5;
}
.gnav .wrap .time_tbl_area caption span {
  display: block;
  padding: 0.2rem 0 0;
}

@media screen and (min-width: 48em), print {
  .menu_box {
    right: 3rem;
  }
  .menu_box li {
    font-size: 1.4rem;
  }
  .menu_box li .menu {
    height: 8rem;
    width: 8rem;
    margin: 0 0 0 auto;
  }
  .menu_box li .menu::after {
    bottom: 10px;
  }
  .menu_box li.menu__tel, .menu_box li.menu__rsv {
    display: block;
    color: #fff;
    height: 8rem;
    width: 8rem;
    margin: 0 0 0 auto;
  }
  .menu_box li.menu__tel a, .menu_box li.menu__rsv a {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 4rem 0 0;
    height: 8rem;
    width: 8rem;
  }
  .menu_box li.menu__tel a::after, .menu_box li.menu__rsv a::after {
    content: "\e800";
    font-family: "fontello";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 2.4rem;
  }
  .menu_box li.menu__tel.active, .menu_box li.menu__rsv.active {
    display: none;
  }
  .menu_box li.menu__tel {
    background: #2CAFD1;
    z-index: 1;
    transition: 0.6s all;
    overflow: hidden;
  }
  .menu_box li.menu__tel:hover {
    width: 25rem;
  }
  .menu_box li.menu__tel:hover span {
    visibility: visible;
  }
  .menu_box li.menu__tel a {
    position: relative;
    pointer-events: none;
  }
  .menu_box li.menu__tel a::after {
    content: "\e800";
  }
  .menu_box li.menu__tel a span {
    width: 23rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    color: #fff;
    font-size: 2.4rem;
    visibility: hidden;
    position: absolute;
    top: 45%;
    left: 40%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .menu_box li.menu__rsv {
    background: #87D4E8;
  }
  .menu_box li.menu__rsv a::after {
    content: "\e801";
  }
  .menu__line {
    width: 77%;
  }
  .menu__line--top {
    top: 16px;
  }
  .menu__line--middle {
    top: 28px;
  }
  .menu__line--bottom {
    top: 40px;
  }
  .menu__line--top.active {
    top: 29px;
  }
  .menu__line--bottom.active {
    top: 29px;
  }
  /*gnav*/
  .gnav {
    overflow-y: inherit;
    background: linear-gradient(to right, #F0F4F5 30%, #fff 30%);
  }
  .gnav .wrap {
    padding: 0;
  }
  .gnav .wrap .inner {
    position: relative;
    width: 50%;
    height: 100vh;
    padding: 8rem 3rem 0 0;
    margin: 0 auto 0 0;
    background: #F0F4F5;
  }
  .gnav .wrap .inner .clinic_name {
    width: 30rem;
  }
  .gnav .wrap .inner .clinic_name span {
    font-size: 1.4rem;
    margin: 0.4rem auto 0;
    padding: 0.4rem 0 0;
  }
  .gnav .wrap .inner ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
    margin: 3rem 0 6rem;
  }
  .gnav .wrap .inner ul li {
    width: 49%;
  }
  .gnav .wrap .inner ul li .tel {
    height: 6rem;
    pointer-events: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .gnav .wrap .inner ul li .tel::before {
    bottom: -3px;
  }
  .gnav .wrap .inner ul li .btn_rsv {
    font-size: 1.8rem;
    height: 6rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0;
  }
  .gnav .wrap .inner .nav_list {
    position: absolute;
    right: -100%;
    top: 17.5rem;
    width: 57rem;
    padding: 0;
  }
  .gnav .wrap .inner .nav_list .tit {
    font-size: 2.8rem;
  }
  .gnav .wrap .inner .nav_list .flex {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .gnav .wrap .inner .nav_list .flex ul {
    display: block;
    width: auto;
  }
  .gnav .wrap .inner .nav_list .flex ul li {
    width: auto;
    padding-left: 1.4rem;
  }
  .gnav .wrap .inner .nav_list .flex ul li a {
    font-size: 1.6rem;
  }
  .gnav .wrap .inner .nav_list .flex ul li a::before {
    left: -1.4rem;
  }
  .gnav .wrap .inner .nav_list .flex ul:first-child {
    width: 23rem;
  }
  .gnav .wrap .inner .tbl_gaiyo {
    display: block;
    font-size: 1.6rem;
  }
  .gnav .wrap .inner .tbl_gaiyo tr th {
    font-weight: bold;
    text-align: left;
    vertical-align: top;
    padding-bottom: 0.2rem;
    line-height: 1.8;
    width: 18%;
  }
  .gnav .wrap .inner .tbl_gaiyo tr td {
    padding-bottom: 0.2rem;
    line-height: 1.8;
  }
  .gnav .wrap .inner .time_tbl_area {
    padding: 0;
    margin: 3rem 0 0;
  }
  .gnav .wrap .inner .time_tbl_area caption span {
    padding: 0.8rem 0 0;
  }
  /* Gナビ　ハイライト */
}
/* クリニック概要 -------------------------------------- */
.cal_area.bg {
  margin: 3rem 0 0;
  padding: 3rem 0.8rem;
  background: #F0F4F5;
}
.cal_area.bg section {
  background: #fff;
  padding: 0.8rem;
}
.cal_area.bg section .tit_02 {
  color: #2CAFD1;
  text-align: center;
  z-index: 0;
}

.overview {
  padding: 4rem 0 4rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 1rem;
}
.overview .clinic_name img {
  max-width: 60%;
  height: auto;
}
.overview .txt_dept {
  margin: 0 1rem 0.8rem;
  padding: 0.2rem 0.4rem;
  border-top: 2px solid #6E555B;
  border-bottom: 2px solid #6E555B;
  font-family: "Noto Serif JP", serif;
}
.overview ul {
  padding: 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.overview ul li {
  width: 48%;
}
.overview ul li .tel {
  border: 1px solid #6E555B;
  color: #6E555B;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  display: block;
}
.overview ul li .tel::before {
  content: "\e800";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.overview ul li .btn_rsv {
  display: block;
  background: #87D4E8;
  text-align: center;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
}
.overview ul li .btn_rsv::before {
  content: "\e801";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
}
.overview > .wrap .overviewL .tbl_gaiyo th {
  width: 27%;
  text-align: left;
  padding: 0.4rem;
  font-weight: bold;
}
.overview > .wrap .overviewL .tbl_gaiyo td {
  padding: 0.4rem;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewL .sns_area p {
  font-family: "Noto Serif JP", serif;
  color: #6E555B;
  font-size: 1.6rem;
  margin: 3rem 0 0;
}
.overview > .wrap .overviewL .sns_area ul {
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.overview > .wrap .overviewL .sns_area ul li {
  width: 16%;
  padding: 0;
  margin: 0.8rem 0.8rem 2rem;
}
.overview > .wrap .overviewL .sns_area ul li a {
  display: block;
}
.overview > .wrap .overviewL .sns_area ul li a img {
  max-width: 100%;
  height: auto;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .gmap {
  text-align: right;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 30rem;
}
.overview > .wrap .overviewR .btn_map {
  display: block;
  margin: 1rem auto 0;
  text-align: center;
}
.overview > .wrap .overviewR .btn_map a {
  background: #87D4E8;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
}
.overview > .wrap .overviewR .btn_map a::before {
  content: "\e804";
  font-family: "fontello";
  margin-right: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .cal_area.bg {
    margin: 3rem 0 0;
    padding: 10rem 0;
  }
  .cal_area.bg section {
    width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 6rem;
  }
  .cal_area.bg section .tit_02 {
    margin: 0 0 2rem;
  }
  .overview {
    margin: 0 0 0;
    padding: 10rem 0;
    font-size: 1.8rem;
  }
  .overview .clinic_name {
    margin: 0 0 4rem;
  }
  .overview .clinic_name img {
    max-width: 35rem;
  }
  .overview .txt_dept {
    width: 73rem;
    font-size: 1.8rem;
    margin: 0 auto 1.2rem;
    padding: 1.2rem 0.6rem;
  }
  .overview ul {
    padding: 1rem;
    margin: 0 0 6rem;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: normal;
    align-items: normal;
  }
  .overview ul li {
    width: 30rem;
  }
  .overview ul li .tel {
    margin: 0 1rem 0 0;
    padding: 0.4rem 0;
    text-align: center;
    font-size: 2.8rem;
    pointer-events: none;
  }
  .overview ul li .tel::before {
    content: "\e800";
    font-family: "fontello";
    margin-right: 0.4rem;
  }
  .overview ul li .btn_rsv {
    margin: 0 0 0 1rem;
    height: 100%;
    font-size: 1.8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .overview ul li .btn_rsv::before {
    font-size: 2.2rem;
  }
  .overview > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 48%;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo {
    font-size: 1.6rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th {
    width: 21%;
    vertical-align: top;
    padding: 0 0 1rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td {
    padding: 0 0 1rem;
  }
  .overview > .wrap .overviewL .sns_area {
    margin: 6.2rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  .overview > .wrap .overviewL .sns_area p {
    font-size: 2rem;
    display: inline-block !important;
    margin: 0;
    width: 60%;
  }
  .overview > .wrap .overviewL .sns_area ul {
    margin: 0;
    width: 40%;
  }
  .overview > .wrap .overviewL .sns_area ul li {
    margin: 0 1.8rem 0 0;
  }
  .overview > .wrap .overviewL .sns_area ul li a {
    width: 3rem;
    height: 3rem;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    margin: 0;
  }
  .overview > .wrap .overviewR .gmap iframe {
    height: 45.5rem;
  }
  .overview > .wrap .overviewR .btn_map {
    margin: 1rem auto 0;
  }
  .overview > .wrap .overviewR .btn_map a {
    font-size: 1.6rem;
    width: 27rem;
    margin: 0 auto;
    display: block;
  }
  .overview > .wrap .overviewR .btn_map a::before {
    margin-right: 0.6rem;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 1;
  cursor: pointer;
}
#pageup a {
  width: 5rem;
  height: 5rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.4rem;
  background: rgba(135, 212, 232, 0.8);
  border: 1px solid #fff;
  border-radius: 6px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
#pageup a::before {
  text-align: center;
  font-size: 1.2rem;
  font-family: "fontello";
  content: "\e802";
  color: #fff;
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    right: 3rem;
  }
  #pageup a {
    width: 6rem;
    height: 6rem;
  }
  #pageup a::before {
    font-size: 2rem;
  }
}
.tel_rsv {
  width: 100%;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.8rem;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.tel_rsv .tel_item {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  width: 60%;
  line-height: 1;
  padding: 1.2rem 0;
  background: #2CAFD1;
}
.tel_rsv .tel_item::before {
  content: "\e800";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.tel_rsv .rsv {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 40%;
  text-align: center;
  background: #87D4E8;
}

@media screen and (min-width: 48em), print {
  .tel_rsv {
    display: none;
  }
  .tel_rsv .tel_item, .tel_rsv .rsv {
    display: none;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4.6rem;
  background: #A79C9D;
}
.footer .copy {
  display: block;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 5.6rem 0 0;
  }
  .footer ul {
    display: block;
    text-align: left;
    margin: 0 auto 2rem;
    padding: 0 0 2rem;
    border-bottom: 1px solid #DCDCDC;
    line-height: 2.4;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.4rem;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
    color: #fff;
  }
  .footer ul li a {
    opacity: 1;
    color: #fff;
    font-size: 1.4rem;
  }
  .footer ul li a span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer .copy {
    font-size: 1.4rem;
    padding: 0 0 2.8rem;
  }
}
/* ボタン並び -------------------------------------- */
.btn_group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn_01 {
  flex: 1;
  text-align: center;
}
.btn_01 a {
  display: block;
  padding: 1rem 2rem;
  background: #87D4E8;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* 口コミ関連バナー設置 -------------------------------------- */
.voice_bnr2 {
  text-align: center;
}
.voice_bnr2 a {
  display: block;
  margin: 0 0 2rem;
}
.voice_bnr2 a img {
  display: inline-block;
}
.voice_bnr2 a:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 48em), print {
  .voice_bnr2 a {
    margin: 0 0 2rem;
  }
  .voice_bnr2 a:last-child {
    margin-bottom: 0;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
#keyvsl {
  margin: 0;
  max-width: 100%;
  height: 30rem;
  padding: 0;
  background: url(../img/index_keyvsl01.jpg) no-repeat top center/cover;
}
#keyvsl .wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0 0;
}
#keyvsl .wrap p {
  color: #fff;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  text-shadow: 0px 0px 11px rgba(238, 238, 238, 0.8), 0px 0px 11px rgba(0, 0, 0, 0.8), 0px 0px 11px rgba(0, 0, 0, 0.8);
}
#keyvsl .wrap p span {
  line-height: 1.8;
  display: block;
}
#keyvsl .wrap p span:nth-child(2) {
  text-indent: 2rem;
}
#keyvsl .wrap p span:last-child {
  text-indent: 4rem;
}

@media screen and (min-width: 48em), print {
  #keyvsl {
    margin: 0;
    padding: 0;
    background: url(../img/index_keyvsl01.jpg) no-repeat center center/auto auto;
    height: 90rem;
  }
  #keyvsl .wrap {
    position: relative;
    width: 1200px;
  }
  #keyvsl .wrap p {
    font-size: 3.2rem;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    bottom: 18rem;
  }
  #keyvsl .wrap p span:nth-child(2) {
    text-indent: 11rem;
  }
  #keyvsl .wrap p span:last-child {
    text-indent: 21rem;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 4rem 0 4rem;
  background: #F0F4F5;
}
.info .tit_02 {
  text-align: left;
  z-index: 0;
  margin: 0 0 0rem;
  font-size: 1.4rem;
}
.info .tit_02 .bg_txt {
  color: #fff;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 4rem;
}
.info dl {
  margin: 0;
  line-height: 1.4;
  padding: 0;
  height: fit-content;
}
.info dl .bg {
  background: #fff;
  margin: 0 0 1rem;
  padding: 1rem 2rem;
}
.info dl .bg dt {
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  color: #2CAFD1;
  font-size: 1.2rem;
  cursor: pointer;
  display: table;
  padding-left: 2.2rem;
  position: relative;
}
.info dl .bg dt::before {
  position: absolute;
  left: -0.2rem;
  top: -0.5rem;
  content: "\e802";
  font-family: "fontello";
  font-size: 1rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.6rem;
  transform: rotateX(180deg);
}
.info dl .bg dt.active::before {
  transform: rotateX(0deg);
  top: 0.5rem;
}
.info dl .bg dt.close::before {
  top: -0.1rem;
  transform: rotateX(0deg);
}
.info dl .bg dd {
  padding: 1rem 0 1rem 2.2rem;
  margin: 0;
  display: none;
}
.info dl .bg dd p {
  margin: 0;
  font-size: 1rem;
}
.info ul.blog {
  margin: 0;
  line-height: 1.4;
  padding: 0;
  height: fit-content;
}
.info ul.blog li {
  background: #fff;
  margin: 0 0 1rem;
  padding: 1.2rem 2rem;
}
.info ul.blog li a {
  text-decoration: none;
  padding-left: 2.2rem;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  color: #2CAFD1;
  font-size: 1.2rem;
  cursor: pointer;
  display: table;
  position: relative;
}
.info ul.blog li a::before {
  position: absolute;
  left: -0.2rem;
  top: -0.5rem;
  content: "\e802";
  font-family: "fontello";
  font-size: 1rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.6rem;
  transform: rotateX(180deg);
}
.info ul.blog li a:hover {
  opacity: 0.8;
}
.info ul.blog li a:hover::before {
  transition: all 0.3s;
}
.info .btn_01 {
  font-size: 1rem;
}
.info .btn_01 a {
  width: 30%;
  margin: 0 0 0 auto;
  padding: 0.5rem 1rem;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 6.8rem 0 8rem;
  }
  .info .tit_02 {
    font-size: 2.4rem;
  }
  .info .tit_02 .bg_txt {
    font-size: 8rem;
  }
  .info dl .bg {
    padding: 1.5rem 5rem;
    margin: 0 0 0.5rem;
  }
  .info dl .bg dt {
    font-size: 1.8rem;
  }
  .info dl .bg dt::before {
    top: 0rem;
  }
  .info dl .bg dt.close::before {
    top: 0.4rem;
  }
  .info dl .bg dd {
    padding: 1rem 0 0 2.4rem;
  }
  .info dl .bg dd p {
    font-size: 1.4rem;
  }
  .info ul.blog li {
    padding: 1.5rem 5rem;
    margin: 0 0 0.5rem;
  }
  .info ul.blog li a {
    font-size: 1.8rem;
  }
  .info ul.blog li a::before {
    top: 0rem;
  }
  .info ul.blog li a.close::before {
    top: 0.4rem;
  }
  .info .btn_01 {
    font-size: 1.4rem;
  }
  .info .btn_01 a {
    width: fit-content;
    padding: 0.5rem 2rem;
  }
}
/* クリニックの理念 -------------------------------------- */
.philosophy {
  padding: 2rem 0 2rem;
  font-family: "Noto Serif JP", serif;
}
.philosophy .wrap {
  position: static;
  padding: 0 1rem 0;
}
.philosophy .wrap .tit_02 {
  text-align: center;
}
.philosophy .wrap > p {
  text-align: justify;
}
.philosophy .wrap ul li .img {
  margin: 3rem 0 0;
  height: 200px;
}
.philosophy .wrap ul li .img img {
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.philosophy .wrap ul li p {
  text-align: justify;
}

@media screen and (min-width: 48em), print {
  .philosophy {
    padding: 9rem 0 28rem;
  }
  .philosophy .wrap {
    padding: 0;
  }
  .philosophy .wrap .tit_02 {
    line-height: 2.2;
  }
  .philosophy .wrap .tit_02 .bg_txt {
    bottom: 107px;
    left: 22%;
  }
  .philosophy .wrap > p {
    text-align: center;
    font-size: 2rem;
    line-height: 1.8;
  }
  .philosophy .wrap ul {
    margin: 12rem 0 0;
  }
  .philosophy .wrap ul li {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  .philosophy .wrap ul li .img {
    margin: 0;
    height: auto;
  }
  .philosophy .wrap ul li .img img {
    object-fit: contain;
  }
  .philosophy .wrap ul li p {
    letter-spacing: 0.1rem;
    line-height: 1.8;
  }
  .philosophy .wrap ul li:nth-child(odd) {
    margin: 0 auto 16rem;
  }
  .philosophy .wrap ul li:nth-child(odd) .img {
    position: relative;
    z-index: 0;
  }
  .philosophy .wrap ul li:nth-child(odd) .img::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -3rem;
    bottom: -3rem;
    background: #F0F4F5;
    height: 100%;
    width: 100%;
    display: block;
  }
  .philosophy .wrap ul li:nth-child(odd) p {
    width: 70rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 0;
  }
  .philosophy .wrap ul li:nth-child(even) .img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: calc(50% - 952px);
    width: 92rem;
    height: auto;
  }
  .philosophy .wrap ul li:nth-child(even) .img img {
    width: 100%;
    height: auto;
  }
  .philosophy .wrap ul li:nth-child(even) p {
    width: 60rem;
  }
}
.rink_icon01 {
  text-decoration: none !important;
}
.rink_icon01::after {
  content: "";
  background: url("../img/icon_link.svg") no-repeat center/contain;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  margin-left: 0.6rem;
  margin-bottom: 0.35rem;
  vertical-align: middle;
}

/* 出会えて良かったと思える歯科医院を目指して -------------------------------------- */
.greeting {
  background: #F0F4F5;
  padding: 2rem 1rem 2rem;
  font-family: "Noto Serif JP", serif;
}
.greeting .wrap .tit_02 {
  z-index: 0;
}
.greeting .wrap .tit_02 span {
  display: block;
  background: #fff;
  padding: 0.2rem 0.6rem;
  font-size: 120%;
}
.greeting .wrap figure {
  position: relative;
  margin: 0 1rem;
}
.greeting .wrap figure figcaption {
  position: absolute;
  font-size: 1rem;
  color: #333;
  bottom: 0;
  right: 2rem;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
.greeting .wrap .doctor_name {
  text-align: right;
}
.greeting .wrap .doctor_name span {
  font-size: 120%;
}
.greeting .wrap > div > ul > li {
  background: #fff;
  padding: 1.2rem;
  margin: 0 0 1rem;
}
.greeting .wrap > div > ul > li .tit_03, .greeting .wrap > div > ul > li .circle_lightBlue {
  color: #333;
  font-size: 1.6rem;
}
.greeting .wrap > div > ul > li .tit_03::before, .greeting .wrap > div > ul > li .circle_lightBlue::before {
  content: "\e803";
  font-family: "fontello";
  margin-right: 0.8rem;
  color: #6E555B;
}
.greeting .wrap > div > ul > li .flex span:last-child {
  display: block;
  text-indent: 0;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 8.4rem 0 12rem;
  }
  .greeting .wrap {
    position: relative;
  }
  .greeting .wrap .tit_02 {
    width: 42.2rem;
    margin: 0 11.2rem 6rem auto;
    font-size: 3rem;
  }
  .greeting .wrap .tit_02 span {
    font-size: 4.4rem;
  }
  .greeting .wrap figure {
    position: absolute;
    left: calc(50% - 1050px);
  }
  .greeting .wrap figure img {
    margin: -37rem 0 0;
  }
  .greeting .wrap figure figcaption {
    font-size: 1.6rem;
    padding: 0 3rem 3rem 0;
  }
  .greeting .wrap > p {
    width: 53rem;
    margin: 0 0 0 auto;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    line-height: 1.7;
    text-align: justify;
  }
  .greeting .wrap > div {
    margin: 29rem auto 0;
  }
  .greeting .wrap > div > p {
    width: 73rem;
    margin: 0 0 3.8rem;
    line-height: 1.7;
  }
  .greeting .wrap > div > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .greeting .wrap > div > ul > li {
    width: 49%;
    min-height: 26.5rem;
    margin: 0;
    padding: 3rem 3rem;
    font-size: 1.6rem;
  }
  .greeting .wrap > div > ul > li .tit_03, .greeting .wrap > div > ul > li .circle_lightBlue {
    font-size: 1.8rem;
    margin: 0 0 2.4rem;
  }
  .greeting .wrap > div > ul > li .tit_03::before, .greeting .wrap > div > ul > li .circle_lightBlue::before {
    font-size: 2.2rem;
    margin-right: 1.2rem;
  }
  .greeting .wrap > div > ul > li .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .greeting .wrap > div > ul > li .flex span {
    display: block;
  }
  .greeting .wrap > div > ul > li .flex span:first-child {
    width: 40%;
    padding-left: 2rem;
  }
  .greeting .wrap > div > ul > li .flex span:last-child {
    width: 60%;
    text-indent: 0;
  }
  .greeting .wrap > div > ul > li .lst_ul02 ~ .lst_ul02 {
    margin-left: 6rem;
  }
  .greeting .wrap > div .btn_01 {
    font-size: 1.6rem;
    margin: 6rem auto 0;
  }
  .greeting .wrap > div .btn_01 a {
    width: 36rem;
    height: 7rem;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
/* クリニックのコンセプト -------------------------------------- */
.concept {
  padding: 4rem 0 4rem;
}
.concept ul li {
  position: relative;
  margin: 0 0 1.2rem;
}
.concept ul li img {
  border-radius: 12px;
}
.concept ul li p {
  display: inline-block !important;
  padding: 1rem 2.4rem;
  margin: -3rem 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  border-radius: 0 7px 0 0;
}
.concept ul li p::before {
  content: "";
  background: url("../img/icon_link.svg") no-repeat center/contain;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  margin-right: 0.6rem;
  margin-bottom: 0.35rem;
  vertical-align: middle;
}

@media screen and (min-width: 48em), print {
  .concept {
    padding: 12rem 0 0;
  }
  .concept .tit_02 .ex_size {
    line-height: 1.2;
  }
  .concept ul {
    margin: 3rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .concept ul li {
    width: 58rem;
    margin-bottom: 4rem;
  }
  .concept ul li:nth-child(odd) {
    margin-right: 2rem;
  }
  .concept ul li:nth-last-child(even) {
    margin-left: 2rem;
  }
  .concept ul li:last-child {
    margin: 0;
  }
  .concept ul li p {
    font-size: 2.4rem;
    padding: 3rem 8rem;
    border-radius: 0 12px 0 0;
  }
  .concept ul li p::before {
    width: 2.9rem;
    height: 2.5rem;
    margin-right: 2rem;
    margin-bottom: 0.5rem;
  }
}
/* クリニックの設計・設備 -------------------------------------- */
.equipment {
  padding: 2rem 0 2rem;
  font-family: "Noto Serif JP", serif;
}
.equipment img {
  border-radius: 12px;
}
.equipment dl dt {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 1rem;
  padding: 0.2rem 0.4rem;
  border-top: 1px solid #6E555B;
  border-bottom: 1px solid #6E555B;
}
.equipment dl dd {
  padding: 0;
  margin: 0 0 1rem;
}
.equipment .txt_deco {
  color: #2CAFD1;
  text-align: center;
  background: #F0F4F5;
  padding: 1rem 0;
  margin: 0.4rem 0 0;
}

@media screen and (min-width: 48em), print {
  .equipment {
    padding: 10rem 0 10rem;
  }
  .equipment img {
    margin: 2.2rem auto 0;
  }
  .equipment dl {
    margin: 5rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .equipment dl dt {
    border-top: none;
    border-bottom: none;
    border-left: 2px solid #6E555B;
    border-right: 2px solid #6E555B;
    font-size: 2.2rem;
    padding: 0 6rem;
    margin-right: 4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .equipment dl dd {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .equipment dl dd ul ~ ul {
    margin-left: 8.6rem;
  }
  .equipment .txt_deco {
    width: 1000px;
    margin: 6rem auto 5rem;
    padding: 1.8rem 0;
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
  .equipment .btn_01 {
    font-size: 1.6rem;
  }
  .equipment .btn_01 a {
    width: 36rem;
    height: 7rem;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
/* どんな悩みがあるのか、ご相談下さい -------------------------------------- */
.trouble a {
  padding: 0.5rem;
  display: grid;
  align-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
}
.trouble a:hover {
  background-color: #ddf8ff;
  border-radius: 50px;
  overflow: hidden;
  -webkit-transition: 0.2s; /* Chrome、Safari用 */
  -moz-transition: 0.2s; /* Firefox用 */
  -o-transition: 0.2s; /* Opera用 */
}
.trouble .trouble-tit {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 1.6rem;
  color: #2CAFD1;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.trouble .background-blue {
  background: #2CAFD1;
}
.trouble .tit_02 {
  font-family: "Noto Serif JP", serif;
  color: #333;
  border-top: 1px solid #A79C9D;
  border-bottom: 1px solid #A79C9D;
  font-size: 1.6rem;
  padding: 0.6rem 0;
  text-align: center;
}
.trouble ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #9cdbeb;
  padding: 0.5rem;
  border-radius: 50px;
}
.trouble ul ~ ul {
  /* margin: 2rem 0 0; */
}
.trouble ul li {
  /*  width: 50%; */
  margin: 0.5rem;
  width: calc((100% - 3.5rem) / 2);
  background: #fff;
  border-radius: 50px;
  align-items: center;
  justify-items: center;
  display: grid;
  position: relative;
  /* a{
      height: 100%;
      width: 100%;
      font-size: 1.2rem;
      text-decoration: none!important;
      padding: 1.2rem .8rem .8rem;
      @include flex;
      @include SetPrefix(justify-content, flex-start);
      @include SetPrefix(align-items, center);
      @include SetPrefix(flex-direction, column);
      div{
          height: 8rem;
          @include flex;
          @include SetPrefix(justify-content, center);
          @include SetPrefix(align-items, center);
      }
      p{
      @include flex;
      @include SetPrefix(justify-content, center);
      @include SetPrefix(align-items, center);
      }
  } */
  /* &:nth-child(odd){
      border-bottom: 1px solid #DCDCDC;
      border-right: 1px solid #DCDCDC;
  }
  &:nth-child(even){
      border-bottom: 1px solid #DCDCDC;
  }
  &:nth-child(1),&:nth-child(2){
      border-top: 1px solid #DCDCDC;
  } */
}
.trouble ul li div {
  text-align: center;
}
.trouble ul li p {
  font-size: 1.2rem;
  text-align: center;
}

.mincho {
  font-family: "Noto Serif JP", serif;
  color: #a79c9d;
  font-size: 90%;
  display: block;
  position: absolute;
  right: 3rem;
  bottom: 0rem;
}

.arrow {
  line-height: 1;
  position: relative;
}
.arrow.-right {
  width: 1.5em;
  height: 5px;
  border-right: 1px solid #a79c9d;
  border-bottom: 1px solid #a79c9d;
  transform: skew(45deg);
  display: inline-block;
  vertical-align: middle;
}

@media screen and (min-width: 48em), print {
  .trouble .trouble-tit {
    font-size: 2.6rem;
  }
  .trouble .tit_02 {
    font-size: 2.6rem;
    letter-spacing: 0.1rem;
    padding: 1.6rem 0;
    margin: 0 0 6rem;
  }
  .trouble ul ~ ul {
    /*  margin: 3.4rem 0 0; */
  }
  .trouble ul li {
    width: calc((100% - 3.5rem) / 3);
    /* width:  calc(100% / 3); */
    /* border-right: 1px solid #DCDCDC; */
    /* a{
     text-align: center;
     font-size: 2rem;
     padding: 6rem .0 4rem;
        div{
        }
        p{
        }
    } */
    /* &:nth-child(3){
        border-top: 1px solid #DCDCDC;
    }
    &:nth-child(3n){
        border-right: none;
    } */
  }
  .trouble ul li a {
    display: grid;
    align-content: center;
    width: 100%;
    height: 100%;
    padding: 3.5rem;
  }
  .trouble ul li p {
    font-size: initial;
  }
  .mincho {
    right: 2rem;
    bottom: 3rem;
    font-size: 100%;
  }
  .arrow.-right {
    width: 2em;
  }
}
/* 採用情報バナー -------------------------------------- */
.recruit_bnr {
  padding: 1.8rem 0 0.4rem;
  text-align: center;
}
.recruit_bnr img {
  margin: 0 auto;
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .recruit_bnr {
    padding: 6rem 0 1rem;
  }
}
.recruit_bnr02 {
  margin: 0 1rem;
  padding: 1.8rem 0 0.4rem;
  text-align: center;
}
.recruit_bnr02 li {
  margin-bottom: 1rem;
}
.recruit_bnr02 img {
  margin: 0 auto;
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .recruit_bnr02 {
    width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 6rem 0 1rem;
  }
  .recruit_bnr02 li {
    width: 48%;
  }
}
.voice_bnr {
  padding: 0 0 1rem;
  text-align: center;
}
.voice_bnr img {
  margin: 0 auto;
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .voice_bnr {
    padding: 0;
    margin: 12rem auto 0 !important;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .header {
  height: 18rem;
  margin: 0 0 4rem;
}
body:not(.index) .header .logo {
  background: none;
}
body:not(.index) .main {
  margin: 0 0 6rem;
}
body:not(.index) .overview {
  display: none;
}

@media screen and (min-width: 48em), print {
  body:not(.index) .header {
    height: 30rem;
    margin: 0 0 0rem;
  }
  body:not(.index) .main {
    font-size: 1.6rem;
    margin: 0 0 6rem;
  }
  body:not(.index) .main > div, body:not(.index) .main > p {
    margin: 4rem auto 2rem;
  }
  body:not(.index) .main p {
    line-height: 1.7;
  }
  body:not(.index) .overview {
    display: block;
  }
}
@media screen and (min-width: 48em), print {
  .cf .img_l, .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
nav {
  margin: 1rem 0;
}
nav .breadcrumb {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: left;
  justify-content: left;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  font-size: 1rem;
  margin: 0 0 0;
}
nav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  font-family: "fontello";
  content: "\e805";
  font-size: 1rem;
  margin: 0 0.4rem;
}
nav .breadcrumb li a {
  text-decoration: none;
  color: #2CAFD1;
}

@media screen and (min-width: 48em), print {
  nav {
    width: 1200px;
    margin: 2.55rem auto;
  }
  nav .breadcrumb {
    font-size: 1.6rem;
    margin: 0;
  }
  nav .breadcrumb li:not(:last-child)::after {
    margin: 0 0.8rem;
    font-size: 1.4rem;
  }
}
/* お知らせ */
.infomation .info {
  background: none;
}
.infomation .info dl .bg {
  padding-bottom: 1rem;
  border-bottom: 1px dotted #2CAFD1;
}

/* ドクター紹介 */
.doctor .main .tit_02 {
  color: #333;
}
.doctor .main .bg {
  background: url("../img/doctor_01.jpg") no-repeat right top/54rem auto;
  padding: 2rem 1rem;
  margin: 0;
}
.doctor .main .bg > .wrap {
  padding: 20rem 0 0;
}
.doctor .main .bg > .wrap .txt_column {
  padding: 2rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 7px;
}
.doctor .main .bg > .wrap .txt_column .clinic_name {
  font-size: 1.4rem;
  margin: 0;
}
.doctor .main .bg > .wrap .txt_column .dr_name {
  font-size: 2rem;
  margin: 0;
  line-height: 1.6;
}
.doctor .main .bg > .wrap .txt_column dl dt {
  font-size: 1.6rem;
}
.doctor .main .bg > .wrap .txt_column dl dd {
  margin: 0.6rem 0 0;
  font-size: 1.4rem;
  line-height: 1.4;
}
.doctor .main ul:not([class*=lst]) li .flex img {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto;
}
.doctor .main ul:not([class*=lst]) li ~ li {
  margin-top: 4rem;
}
.doctor .main .tit_02.brown {
  color: #6E555B;
}

@media screen and (min-width: 48em), print {
  .doctor .main .tit_02 {
    padding: 8rem 0 8rem;
    font-size: 3.4rem;
  }
  .doctor .main .bg {
    margin: 4rem auto 4rem;
    padding: 0;
    background: url("../img/doctor_01.jpg") no-repeat center top/auto auto;
  }
  .doctor .main .bg > .wrap {
    padding: 10rem 0;
    display: block;
  }
  .doctor .main .bg > .wrap .txt_column {
    background: rgba(255, 255, 255, 0.8);
    width: 50%;
    padding: 5rem 6.8rem;
    margin: 0 auto 0 6rem;
  }
  .doctor .main .bg > .wrap .txt_column .clinic_name {
    font-size: 1.6rem;
  }
  .doctor .main .bg > .wrap .txt_column .dr_name {
    font-size: 2.4rem;
  }
  .doctor .main .bg > .wrap .txt_column dl {
    margin: 3rem 0 0;
  }
  .doctor .main .bg > .wrap .txt_column dl dt {
    font-size: 2rem;
  }
  .doctor .main .bg > .wrap .txt_column dl dd {
    margin: 2rem 0 0;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .doctor .main .img_c {
    max-width: 100%;
    width: 70%;
    margin: 2rem auto 2rem;
  }
  .doctor .main ul:not([class*=lst]) li .flex {
    margin: 3rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .doctor .main ul:not([class*=lst]) li .flex img {
    max-width: 40%;
    height: auto;
    display: block;
    margin: 0 2rem 2rem 0;
  }
  .doctor .main ul:not([class*=lst]) li .flex > div {
    flex: 1;
  }
  .doctor .main ul:not([class*=lst]) li .flex > div p:first-child {
    margin: 0 0 1rem;
  }
  .doctor .main ul:not([class*=lst]) li .flex.img_right img {
    order: 2;
  }
  .doctor .main ul:not([class*=lst]) li .flex.img_right > div {
    order: 1;
  }
  .doctor .main ul:not([class*=lst]) li ~ li {
    margin-top: 4rem;
  }
}
/* 理念／ミッション */
.mission .tit_02.lead {
  background: url("../img/mission_01.jpg") no-repeat center/cover;
  text-align: left;
  padding: 1rem 0.8rem 8rem;
  color: #222;
  text-shadow: 0px 0px 3px white, 0px 0px 3px white, 0px 0px 3px white, 0px 0px 3px white, 0px 0px 3px white, 0px 0px 3px white;
}
.mission .tit_03 + section ~ section, .mission .circle_lightBlue + section ~ section {
  margin: 5rem 0 0;
}
.mission .flex img, .mission .flex_02 img {
  max-width: 60%;
  display: block;
  margin: 2rem auto;
}

@media screen and (min-width: 48em), print {
  .mission .tit_02.lead {
    padding: 17rem 2rem 45rem 4rem;
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.6), 0px 0px 3px rgba(255, 255, 255, 0.6), 0px 0px 3px rgba(255, 255, 255, 0.6), 0px 0px 3px rgba(255, 255, 255, 0.6);
  }
  .mission .lst_ol01 {
    font-size: 110%;
    padding: 0 0.6rem 0;
  }
  .mission .lst_ol01 li {
    margin-bottom: 1rem;
  }
  .mission .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .mission .flex img {
    order: 2;
    max-width: 35%;
    width: 35%;
    margin: 4rem 0 0;
    display: block;
  }
  .mission .flex > div {
    order: 1;
    width: 63%;
  }
  .mission .flex > div .btn_01 {
    text-align: left;
  }
  .mission .flex_02 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .mission .flex_02 .img {
    order: 2;
    margin: 3rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .mission .flex_02 .img img {
    max-width: 35%;
  }
  .mission .flex_02 .img img ~ img {
    margin-left: 2rem;
  }
  .mission .flex_02 div:not(.img) {
    order: 1;
  }
  .mission .flex_02 div:not(.img) .btn_01 {
    text-align: left;
  }
}
/* チーム紹介 */
.team .deco {
  font-weight: bold;
  background: #f2f2f2;
  padding: 1rem;
  border-radius: 7px;
}
@media screen and (min-width: 48em), print {
  .team .deco {
    padding: 2rem 2rem;
  }
}
.team .flex img {
  display: block;
  max-width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 48em), print {
  .team .deco {
    margin: 0 auto 1rem;
  }
  .team .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .team .flex > div:not(.txt), .team .flex > img {
    width: 21%;
    order: 2;
  }
  .team .flex > div:not(.txt) img, .team .flex > img img {
    max-width: 100%;
  }
  .team .flex > p, .team .flex > .txt {
    width: 77%;
    order: 1;
  }
}
/* クリニック紹介 */
.clinicslide {
  margin-bottom: 8rem;
}
.clinicslide img, .clinicslide p {
  display: none;
}

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

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

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

@media screen and (min-width: 48em), print {
  .device {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .device li {
    width: 48%;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
/* 初めての方へ */
.flow dd {
  margin: 0 0 6rem;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .flow dd {
    margin: 0 0 10rem;
  }
}
.flow dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #ccc;
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

/* 診療時間・アクセス */
.access .tbl_time tbody tr th.time {
  text-align: center;
}
.access .gmap {
  height: 30rem;
  margin: 2rem 0;
}
.access .parking_map img {
  border: 2px solid #2ab1d1;
}
.access .parking_map ul {
  background: #ebfbff;
  border: 2px solid #2ab1d1;
  margin: 1.2rem auto 0;
  padding: 1.2rem 0.6rem;
}
.access .parking_map ul .tit {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 0.8rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.access .parking_map ul .tit span {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: #2ab1d1;
  margin-right: 0.6rem;
}
.access .parking_map ul li {
  margin: 0 0 1.4rem;
}
.access .parking_map ul li span:not(.link) {
  background: #2ab1d1;
  color: #fff;
  font-weight: bold;
  padding: 0.2rem 0.4rem;
  margin-right: 0.4rem;
}
.access .parking_map ul li .link {
  display: block;
  padding-left: 2.4rem;
}
.access .parking_map ul li .link::before {
  content: "\e805";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.access .parking_map ul li .link a {
  text-decoration: none !important;
  display: inline;
  border-bottom: 1px solid #333;
}

@media screen and (min-width: 48em), print {
  .access main .gmap {
    height: 50rem;
  }
  .access main .parking_map {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .access main .parking_map img {
    display: block;
    border: 3px solid #2ab1d1;
  }
  .access main .parking_map ul {
    display: inline-block;
    border: 3px solid #2ab1d1;
    margin: 0 auto 0 4rem;
    padding: 1.2rem 1.2rem;
  }
  .access main .parking_map ul .tit {
    font-size: 2.2rem;
    margin: 0 0 1.2rem;
  }
  .access main .parking_map ul .tit span {
    width: 2.8rem;
    height: 2.8rem;
    margin-right: 0.6rem;
  }
  .access main .parking_map ul li {
    margin: 0 0 1.6rem;
  }
  .access main .parking_map ul li div {
    width: 13rem;
    display: inline-block;
  }
  .access main .parking_map ul li div span:not(.link) {
    margin-right: 0.6rem;
    padding: 0.4rem 0.8rem;
  }
  .access main .parking_map ul li .link {
    padding-left: 0;
    display: inline-block;
  }
}
/* 診療費用 */
.price .calc_area {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.price .calc_area li {
  width: 25%;
  position: relative;
  background: #f0f4f5;
  padding: 0.8rem;
  margin-right: 3rem;
  color: #6e555b;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.price .calc_area li:nth-child(3n) {
  margin-right: 0;
}
.price .calc_area li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: -2rem;
  background: #6e555b;
  height: 2px;
  width: 1rem;
}
.price .calc_area li .point {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  margin: 0;
  color: #2cafd1;
}
.price .calc_area li.answer {
  width: 50%;
  margin: 1.6rem 0 1rem;
  padding: 1.8rem 0;
  background: #87d4e8;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
}
.price .calc_area li.answer::before {
  top: 48%;
  background: #87d4e8;
}
.price .calc_area li.answer::after {
  content: "";
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: -2rem;
  background: #87d4e8;
  height: 2px;
  width: 1rem;
}
.price .notes {
  color: #2cafd1;
  font-family: "Noto Serif JP", serif;
}
.price .notes li {
  margin: 0 0 1rem;
  text-indent: -3.7rem;
  padding-left: 4rem;
}

@media screen and (min-width: 48em), print {
  .price .calc_area {
    margin: 2rem 0 1.6rem;
  }
  .price .calc_area li {
    width: 18%;
    margin-right: 6rem;
    font-size: 2.4rem;
  }
  .price .calc_area li:nth-child(3n) {
    margin-right: 6rem;
  }
  .price .calc_area li:not(:first-child)::before {
    left: -4.5rem;
    width: 3rem;
  }
  .price .calc_area li .point {
    font-size: 2rem;
    right: 0.6rem;
  }
  .price .calc_area li.answer {
    width: 20%;
    font-size: 2.4rem;
    margin: 0;
  }
  .price .calc_area li.answer::before {
    top: 43%;
  }
  .price .calc_area li.answer::after {
    left: -4.5rem;
    top: 56%;
    width: 3rem;
  }
  .price .notes li {
    text-indent: -4rem;
  }
}
/* 診療の流れ */
.treatment-flow .main .tit_05 {
  font-weight: bold;
  font-size: 120%;
}
.treatment-flow .main section {
  margin: 0 0 10rem;
  position: relative;
}
.treatment-flow .main section::before {
  content: "";
  display: block;
  width: 2rem;
  height: 6rem;
  background: #87D4E8;
  position: absolute;
  bottom: -6.6rem;
  left: 0;
  right: 0;
  margin: auto;
}
.treatment-flow .main section::after {
  content: "";
  position: absolute;
  bottom: -7.5rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: auto;
  border-top: 2rem solid #87D4E8;
  border-left: 2rem solid transparent;
  border-right: 2rem solid transparent;
}
.treatment-flow .main section:last-of-type:not(.mt20) {
  margin: 0 0 4rem;
}
.treatment-flow .main section:last-of-type:not(.mt20)::before, .treatment-flow .main section:last-of-type:not(.mt20)::after {
  content: none;
}
.treatment-flow .main section.not_arrow {
  margin: 0 0 4rem;
}
@media screen and (min-width: 48em), print {
  .treatment-flow .main section.not_arrow {
    margin: 0 0 10rem;
  }
}
.treatment-flow .main section.not_arrow::before, .treatment-flow .main section.not_arrow::after {
  display: none;
}
.treatment-flow .main .flex a {
  display: block;
  padding: 0.8rem 2rem;
  margin: 0 0 1rem;
  text-align: center;
  text-decoration: none !important;
  border-radius: 5px;
}
.treatment-flow .main .flex a.rsv {
  color: #fff;
  background: #87D4E8;
}
.treatment-flow .main .flex a.monshin {
  color: #6E555B;
  border: 1px solid #6E555B;
}
.treatment-flow .main .flex a.check {
  display: inline;
  text-decoration: underline !important;
  padding: 0;
}
.treatment-flow .main .flex a span {
  font-weight: bold;
  display: block;
  font-size: 1.8rem;
  margin: 0 auto;
  letter-spacing: 0.2rem;
}

@media screen and (min-width: 48em), print {
  .treatment-flow .main {
    overflow: visible;
  }
  .treatment-flow .main section::before, .treatment-flow .main section::after, .treatment-flow .main .main > div::before, .treatment-flow .main .main > div::after {
    content: none;
  }
  .treatment-flow .main section .tit_05, .treatment-flow .main .main > div .tit_05 {
    margin: 0;
  }
  .treatment-flow .main section img, .treatment-flow .main .main > div img {
    width: 35%;
    position: absolute;
    right: 0;
    top: 0;
  }
  .treatment-flow .main section .flex, .treatment-flow .main .main > div .flex {
    position: absolute;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .treatment-flow .main section .flex p, .treatment-flow .main .main > div .flex p {
    width: 55%;
  }
  .treatment-flow .main section .flex p::after, .treatment-flow .main .main > div .flex p::after {
    flex: 1;
    width: 2rem;
    background: #87D4E8;
  }
  .treatment-flow .main section .flex .arrow, .treatment-flow .main .main > div .flex .arrow {
    flex: 1;
    width: 2rem;
    background: #87D4E8;
    position: relative;
  }
  .treatment-flow .main section .flex .arrow::after, .treatment-flow .main .main > div .flex .arrow::after {
    content: "";
    position: absolute;
    bottom: -1.4rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin: auto;
    border-top: 2rem solid #87D4E8;
    border-left: 2rem solid transparent;
    border-right: 2rem solid transparent;
  }
  .treatment-flow .main section {
    min-height: 25rem;
  }
  .treatment-flow .main .min-height20 {
    min-height: 20rem;
  }
  .treatment-flow .main .min-height45 {
    min-height: initial;
    height: 45rem;
  }
  .treatment-flow .main > .flex {
    margin: 3rem auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .treatment-flow .main > .flex a {
    width: 49%;
    padding: 1.2rem 0;
    font-size: 1.8rem;
  }
  .treatment-flow .main > .flex a span {
    font-size: 2.2rem;
  }
  .treatment-flow .main > div {
    position: relative;
    margin: 8rem 0 0 !important;
  }
  .treatment-flow .main > div section {
    margin-top: 8rem;
    min-height: 12rem;
  }
  .treatment-flow .main > div section:last-child {
    margin-top: 7rem;
    min-height: 19rem;
  }
  .arrow-calc {
    margin-left: 330px;
    margin-right: auto;
  }
}
/* 診療の流れ */
.nerve-treatment .lst_nerve .bold {
  margin-right: 1rem;
}
.nerve-treatment .tit_lead {
  font-weight: bold;
  color: #2cafd1;
  font-size: 110%;
}
.nerve-treatment .img_item img {
  display: block;
}
.nerve-treatment .img_item img ~ img {
  margin: 0.8rem auto 0;
}

@media screen and (min-width: 48em), print {
  .nerve-treatment > .wrap {
    margin: 6rem auto 0;
  }
  .nerve-treatment .lst_nerve {
    font-size: 1.8rem;
  }
  .nerve-treatment .lst_nerve li:not(:last-child) {
    margin: 0 0 1rem;
  }
  .nerve-treatment .cf {
    position: relative;
  }
  .nerve-treatment .tit_lead {
    margin: 6rem 0 0;
    letter-spacing: 0.1rem;
    font-size: 120%;
  }
  .nerve-treatment .tit_lead + div {
    width: 60%;
  }
  .nerve-treatment .img_item {
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
  }
  .nerve-treatment .img_item img {
    display: block;
  }
  .nerve-treatment .img_item img ~ img {
    margin: 1.4rem 0 0;
  }
  .nerve-treatment .img_item + .mt20 {
    margin-top: 26rem;
  }
}
/* 採用情報 */
.recruit .header {
  margin: 0 !important;
}
.recruit .lead_img {
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.recruit .center_box ~ .center_box {
  margin: 3.4rem 0 0;
}
.recruit .center_box p {
  font-weight: bold;
  padding: 0.8rem 0 0.6rem;
  background: #d6f7ff;
  color: #2cafd1;
  margin: 1rem auto 0;
}
.recruit .lst_recruit {
  padding: 1rem;
  background: #F0F4F5;
}
.recruit .lst_recruit li {
  text-indent: -2.3rem;
  padding: 0 0 0 2rem;
}
.recruit .lst_recruit li:first-letter {
  font-weight: bold;
}

@media screen and (min-width: 48em), print {
  .recruit > .wrap {
    margin: 5rem auto 0;
  }
  .recruit > .wrap .tit_02 {
    padding: 0;
    margin: 1rem auto 2rem;
  }
  .recruit .lead_img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .recruit .lead_txt {
    margin: 0 0 4rem !important;
    font-size: 3.2rem;
  }
  .recruit .lead_txt.size_s {
    font-size: 2.6rem;
  }
  .recruit .center_box {
    text-align: center;
  }
  .recruit .center_box p {
    width: 76rem;
    padding: 1.6rem 2rem;
    font-size: 2.2rem;
  }
  .recruit .lst_recruit {
    display: inline-block;
    text-align: left;
    padding: 3rem;
    width: 76rem;
  }
  .recruit .lst_recruit li {
    font-size: 2rem;
    text-indent: -2.3rem;
    padding: 0 0 1rem 2rem;
  }
  .recruit .lst_recruit li:last-child {
    padding: 0 0 0 2rem;
  }
}/*# sourceMappingURL=style.css.map */