@charset "UTF-8";
a[href*=no-link] {
  pointer-events: none;
}

/* ----------------------------------------------------------------------------------
リセット　_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
---------------------------------------------------------------------------------- */
/* 色 -------------------------------------- */
/*メイン青*/
/*メインオレンジ*/
/*すこし薄い青*/
/*薄い青*/
/*薄いオレンジ*/
/*薄いピンク*/
/*マークに使っている青*/
.blue {
  color: #2b628b;
}

.orange {
  color: #d97949;
}

.red {
  color: #FF0000;
}

.bg-purple {
  background-color: #e0eaf3;
}

.bg-pink {
  background-color: #fff4ef;
}

.bg_yellow {
  background-color: #fffae4;
}

.bg_blue {
  background-color: #c3e3ff;
}

/* clearfix -------------------------------------- */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.clearall {
  clear: both;
}

.waku {
  background: #FBF4E7 url("../img/logo_bg.svg") center center no-repeat;
  background-size: contain;
  border-radius: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 48em), print {
  .waku {
    padding: 3rem;
  }
}
/* 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;
}

.emp {
  font-size: 130%;
}

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

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

.youtube {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

@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;
    width: 35%;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

.overview_only {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.overview_only {
  display: none;
}

/* マージン・パディング回り -------------------------------------- */
.mt80 {
  margin-top: 3rem;
}

.mt40 {
  margin-top: 3rem;
}

.mt50 {
  margin-top: 2rem;
}

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

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

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

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

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

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

@media screen and (min-width: 48em), print {
  .mt80 {
    margin-top: 8rem;
  }
  .mt40 {
    margin-top: 8rem;
  }
  .mt50 {
    margin-top: 5rem;
  }
  .mt20 {
    margin-top: 2rem;
  }
  .mt10 {
    margin-top: 1rem;
  }
  .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;
  white-space: nowrap;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  color: #2b628b;
  border-right: 1px solid #a7c4dc;
  border-top: 1px solid #a7c4dc;
  border-bottom: 1px solid #a7c4dc;
}
.tbl_time tr th[scope=col]:first-child {
  width: 25%;
}
.tbl_time tr th[scope=col]:last-child {
  border-right: none;
}
.tbl_time tr th.time {
  background: rgba(224, 234, 243, 0.85);
  border-right: 1px solid #a7c4dc;
  border-bottom: 1px solid #a7c4dc;
  font-size: 0.9rem;
}
.tbl_time tr th.time:last-child {
  border-right: none;
}
.tbl_time td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: rgba(224, 234, 243, 0.85);
  border-right: 1px solid #a7c4dc;
  border-bottom: 1px solid #a7c4dc;
  line-height: 1;
}
.tbl_time td:not(.maru), .tbl_time td:not(.sankaku) {
  font-size: 1.2rem;
}
.tbl_time td:last-child {
  border-right: none;
}
.tbl_time .maru {
  color: #e9956b;
}
.tbl_time .sankaku {
  color: #2b628b;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.6rem 0;
    font-size: 1.6rem;
  }
  .tbl_time tr th:first-child {
    width: 30%;
  }
  .tbl_time tr th.time {
    font-size: 1.4rem;
  }
  .tbl_time tr td {
    padding: 1rem 0;
  }
  .tbl_time tr td:not(.maru) {
    font-size: 1.6rem;
  }
}
/* Price Table -------------------------------------- */
.tbl_price {
  width: 100%;
  border-top: 1px solid #a7c4dc;
  border-right: 1px solid #a7c4dc;
  border-left: 1px solid #a7c4dc;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  table-layout: fixed;
}
.tbl_price caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_price tr th {
  font-weight: normal;
  background: #e0eaf3;
  border-right: 1px solid #a7c4dc;
  border-bottom: 1px solid #a7c4dc;
}
.tbl_price tr th:last-child {
  border-right: none;
}
.tbl_price td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  border-right: 1px solid #a7c4dc;
  border-bottom: 1px solid #a7c4dc;
  line-height: 1;
}
.tbl_price td:last-child {
  border-right: none;
}
.tbl_price.-random {
  table-layout: inherit;
}

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

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/low_keyvsl02.jpg) no-repeat center center/180%;
  font-size: 2.6rem;
  width: 100%;
  margin: 1rem auto 3rem;
  padding: 2rem 1rem;
  text-align: center;
  font-weight: bold;
  color: #3b9ecd;
}
.tit_01 span {
  display: inline-block;
  text-align: left;
}

.tit_02 {
  color: #2d628c;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  line-height: 1.2;
  text-align: left;
  border-left: 3px solid #a7c4dc;
}

.tit_03 {
  color: #d97949;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  line-height: 1.2;
  text-align: left;
  border-left: 2px solid #f0cbb7;
  background: #fcf2ec;
}

.tit_04 {
  color: #535353;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 1rem 0 0;
  padding: 0.4rem 1rem;
  line-height: 1.2;
  text-align: left;
  border-left: 2px solid #c2c2c2;
  background: #e0eaf3;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3.6rem;
    width: 100%;
    padding: 7rem 0 8rem;
    margin: 3.6rem auto 8rem;
  }
  .tit_01 span {
    display: block;
    width: 1180px;
    margin: auto;
  }
  .tit_02 {
    font-size: 2.6rem;
    margin: 0 0 3rem;
    padding: 0 0 0 0.8rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: auto;
    text-align: inherit;
  }
  .tit_02::after {
    display: inline-block;
    content: "";
    width: 25rem;
    height: auto;
    background: url("../img/h2_bg.png") no-repeat left top/25rem 100%;
  }
  .tit_03 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .tit_04 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  text-indent: -1.8rem;
  padding-left: 2.2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
.lst_ul01 li::before {
  content: "●";
  font-size: 1.2rem;
  color: #d97949;
  margin-right: 0.4rem;
  position: relative;
  top: -0.2rem;
}
.lst_ul01 li.none::before {
  content: "";
}

.lst_ul02 {
  margin: 2rem 0 3rem;
}
.lst_ul02 li.lst_midashi {
  color: #2b628b;
  margin: 0.8rem 0 0;
  font-weight: bold;
}

.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 {
  float: left;
  width: 10rem;
  font-weight: bold;
  color: #2b628b;
  clear: left;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
  padding-left: 10rem;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
  }
  .lst_dl01 dt {
    width: 15rem;
  }
  .lst_dl01 dd {
    padding-left: 15rem;
  }
}
.lst_box {
  border: 1px solid #2d628c;
  padding: 1rem 1rem 0;
}

@media screen and (min-width: 48em), print {
  .lst_box {
    padding: 1.5rem 2rem 1.5rem;
  }
}
.lst_chart li {
  border: 1px solid #2d628c;
  counter-increment: number 1;
  padding: 1rem 1rem 0.8rem 3rem;
  margin: 0 0 5rem;
  text-indent: -1.1rem;
  line-height: 2rem;
  position: relative;
}
.lst_chart li:last-child {
  margin: 0rem;
}
.lst_chart li::before {
  display: inline-block;
  content: counter(number) ".";
  margin-right: 0.8rem;
  font-family: "Lato", sans-serif;
  color: #2d628c;
  font-weight: bold;
}
.lst_chart li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4.5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #e8e4e4;
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .lst_chart li {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.dl_arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  gap: 0.6rem 0;
}
.dl_arrow dt {
  border: 1px solid #2d628c;
  margin-right: 3rem;
  width: calc(62% - 3rem);
  min-height: 5rem;
  padding: 0.5rem;
  display: grid;
  place-items: center;
  position: relative;
}
.dl_arrow dt::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -2.5rem;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.2rem solid #2d628c;
  border-right: 0;
  margin: auto;
}
.dl_arrow dt.-blue {
  background: #e0eaf3;
}
.dl_arrow dd {
  width: 38%;
  margin: 0;
}
.dl_arrow dd.-blue {
  color: #2d628c;
}
@media screen and (min-width: 48em), print {
  .dl_arrow {
    width: 60%;
    margin-inline: auto;
  }
  .dl_arrow dt {
    min-height: 8rem;
    padding: 1rem;
  }
  .dl_arrow dt::after {
    right: -4rem;
    border-top: 1.6rem solid transparent;
    border-bottom: 1.6rem solid transparent;
    border-left: 2rem solid #2d628c;
  }
}

/* テーブル -------------------------------------- */
.tbl_01 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #46a6e2;
}
.tbl_01 tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tbl_01 tbody tr th {
  width: 100%;
  border-top: 1px solid #46a6e2;
  background: #e0eaf3;
  padding: 0.4rem 1rem;
  font-weight: normal;
  color: #1b1b1b;
}
.tbl_01 tbody tr td {
  width: 100%;
  border-top: 1px solid #46a6e2;
  padding: 0.4rem 1rem;
  color: #1b1b1b;
}
.tbl_01 tbody tr:first-of-type th {
  border-top: none;
}

.tbl_dl01 {
  margin: 0 0 2rem;
}
.tbl_dl01 dt {
  padding: 1rem;
  background: #f9ead8;
}
.tbl_dl01 dd {
  margin: 0;
  padding: 1rem;
  background: #FAFAFA;
}
.tbl_dl01 dd:not(:last-child) {
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 48em), print {
  .tbl_01 tbody tr {
    width: 100%;
    display: table;
  }
  .tbl_01 tbody tr th {
    width: 25%;
    border-right: 1px solid #46a6e2;
  }
  .tbl_01 tbody tr td {
    width: 75%;
  }
  .tbl_01 tbody tr:first-of-type td {
    border-top: none;
  }
  .tbl_dl01 {
    width: 100%;
    border-right: none;
    border-left: none;
  }
  .tbl_dl01 dt {
    padding: 2rem 2.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: 1px solid #fff;
  }
  .tbl_dl01 dt:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
  .tbl_dl01 dd {
    padding: 2rem 2.5rem;
  }
}
/* フレックス回り -------------------------------------- */
.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li {
    width: 48%;
    margin: 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
/* テキスト回り -------------------------------------- */
.bold_txt {
  font-weight: bold;
  font-size: 1.6rem;
  color: #2b628b;
}

@media screen and (min-width: 48em), print {
  .bold_txt {
    font-size: 2rem;
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
html {
  font-size: 3.125vw;
  font-family: "游ゴシック", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

body {
  background: #fff;
  color: #1b1b1b;
}

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

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1200px;
  }
  body > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1180px;
    margin: auto;
  }
  .main {
    font-size: 1.8rem;
    padding: 0rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 74%;
  }
  .sidebar {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 23%;
  }
}
/* アイコンフォント -------------------------------------- */
@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: 1rem;
}
.header .wrap .logo {
  height: 5rem;
  width: 78%;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headC {
  text-align: center;
  margin: 1.2rem 0 1rem 0;
  line-height: 1.2;
}
.header .wrap .headC > div {
  display: block;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.header .wrap .headC .parking {
  color: #d97949;
  font-weight: bold;
}
.header .wrap .headC div {
  margin: 0 0 0.2rem 0;
}
.header .wrap .headC .tel {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #2b628b;
}
.header .wrap .headC .tel::before {
  content: "\e801";
  font-family: "fontello";
  color: #2b628b;
  font-size: 1rem;
  margin: 0 0.2rem 0 0;
  position: relative;
  top: -0.2rem;
}
.header .wrap .headC .tel a {
  display: inline-block;
}
.header .wrap .headC .parking {
  font-size: 1.6rem;
  font-weight: bold;
}
.header .wrap .headC .parking::before {
  content: "\e804";
  font-family: "fontello";
  color: #2b628b;
  font-size: 1.2rem;
  margin: 0 0.2rem 0 0;
  position: relative;
  top: -0.1rem;
}
.header .wrap .headC .parking .txt_none {
  display: inline-block;
}
.header .wrap .headC .access {
  font-size: 1.4rem;
}
.header .wrap .headC .access::before {
  content: "\e800";
  font-family: "fontello";
  color: #2b628b;
  font-size: 1.2rem;
  margin: 0 0.2rem 0 0;
  position: relative;
  top: -0.1rem;
}
.header .wrap .headR .shoshin a {
  display: block;
  padding: 0.6rem 0 0.6rem 0;
  text-align: center;
  background: #2b628b;
  color: #fff;
  font-size: 1.6rem;
  margin: 0 2rem 0.8rem 2rem;
  position: relative;
}
.header .wrap .headR .shoshin a::before {
  font-family: "fontello";
  content: "\e805";
  font-size: 1rem;
  color: #f2c0a3;
  vertical-align: middle;
  margin: 0 0.8rem 0 0;
  position: relative;
  top: -0.2rem;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 1rem auto 0;
    width: 1180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .wrap .logo {
    width: 38%;
    height: 9rem;
    margin: 0 auto 0 0;
  }
  .header .wrap .headC {
    width: auto;
    text-align: center;
    margin: 1.2rem 1.4rem 1rem 0;
    line-height: 1.2;
  }
  .header .wrap .headC > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0;
  }
  .header .wrap .headC .tel {
    font-size: 2.8rem;
    position: relative;
  }
  .header .wrap .headC .tel::before {
    margin: 0 0.8rem 0 0;
    font-size: 1.8rem;
    position: relative;
    top: -0.4rem;
  }
  .header .wrap .headC .parking {
    margin: 0 0 0 1.8rem;
    font-size: 1.8rem;
    position: relative;
    top: 0.6rem;
  }
  .header .wrap .headC .parking::before {
    margin: 0 0.8rem 0 0;
    font-size: 1.6rem;
    position: relative;
    top: -0.1rem;
  }
  .header .wrap .headC .access {
    margin: 0rem;
    font-size: 1.8rem;
    position: relative;
    top: 0.6rem;
  }
  .header .wrap .headC .access::before {
    margin: 0 0.8rem 0 0;
    font-size: 1.6rem;
    position: relative;
    top: 0.2rem;
  }
  .header .wrap .headR {
    width: 18%;
    margin: 1.2rem 0 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .wrap .headR .shoshin {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .header .wrap .headR .shoshin a {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 12% 0 0 0;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .header .wrap .headR .tel {
    width: auto;
    display: block;
    background: none;
    color: #1b1b1b;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: url(../img/tel_black.svg) no-repeat left center;
    background-size: auto 70%;
  }
}
/* SP ドロップダウンメニュー（Slick Nav） -------------------------------------- */
.slicknav_menu {
  position: absolute;
  top: 1rem;
  right: 0;
  font-size: 4.4rem;
  display: inline-block;
  background: none;
  padding: 0;
  z-index: 10;
}
.slicknav_menu .slicknav_btn {
  width: 5rem;
  height: 5rem;
  color: #fff;
  background: #2b628b;
  text-shadow: none;
  border-radius: 0;
  text-align: center;
  line-height: 1;
  margin: 0 1rem;
  padding: 0;
}
.slicknav_menu .slicknav_btn.slicknav_collapsed::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  line-height: 0.8;
}
.slicknav_menu .slicknav_btn.slicknav_collapsed::after {
  display: block;
  content: "MENU";
  font-size: 1rem;
}
.slicknav_menu .slicknav_btn.slicknav_open::before {
  display: block;
  font-family: "fontello";
  content: "\e803";
  line-height: 0.8;
}
.slicknav_menu .slicknav_btn.slicknav_open::after {
  display: block;
  content: "CLOSE";
  font-size: 1rem;
}
.slicknav_menu .slicknav_nav {
  width: 100vw;
  padding: 0rem;
  position: absolute;
  top: 6rem;
  right: 0;
  margin: auto;
  /*          .sub {
              &::after{
                position: absolute;
                right: 1.0rem;
                font-family: 'fontello';
                content: '\e805';
                font-size: 2.0rem;
              }
            }
            &:hover {
              background: none;
            }
          }
          &.slicknav_parent {
            a.slicknav_item {
              padding: 0;
            }
            ul {
              li:last-child {
                border: none;
              }
            }
          }
          &.slicknav_open {
            > a.slicknav_item .sub {
              &::after{
                font-family: 'fontello';
                content: '\e804';
              }
            }
          }*/
}
.slicknav_menu .slicknav_nav .gnav {
  border-top: 1px solid clr_brw;
  margin: 0;
  background: #f2c0a3;
}
.slicknav_menu .slicknav_nav .gnav a {
  color: #2b628b;
}
.slicknav_menu .slicknav_nav .gnav a::after {
  color: #d97949;
}
.slicknav_menu .slicknav_nav .sub_nav {
  border-top: 1px solid clr_brw;
  margin: 0;
  background: #e0eaf3;
}
.slicknav_menu .slicknav_nav .sub_nav a {
  color: #2b628b;
}
.slicknav_menu .slicknav_nav .sub_nav a::after {
  color: #6fb5e5;
}
.slicknav_menu .slicknav_nav li {
  border-bottom: 1px solid #fff;
}
.slicknav_menu .slicknav_nav li a {
  display: block;
  padding: 1rem;
  font-size: 1.6rem;
  position: relative;
}
.slicknav_menu .slicknav_nav li a:not(.sub)::after {
  position: absolute;
  right: 1rem;
  top: 1.4rem;
  font-family: "fontello";
  content: "\e805";
  font-size: 1rem;
}
.slicknav_menu .slicknav_icon, .slicknav_menu .slicknav_icon-bar, .slicknav_menu .slicknav_arrow, .slicknav_menu .slicknav_row:after {
  display: none !important;
}

#nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .slicknav_menu {
    display: none;
  }
  #nav {
    display: block;
  }
  #nav .gnav {
    width: 1180px;
    margin: 5rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #nav .gnav li {
    width: 20%;
    border-left: 3px solid #bbccd9;
  }
  #nav .gnav li:last-child {
    border-right: 3px solid #bbccd9;
  }
  #nav .gnav li a {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    padding: 0.2rem 0;
  }
  #nav .gnav li a:hover {
    color: #c97036;
    opacity: 1;
  }
  #nav .gnav li subnav {
    width: 100%;
    display: none;
    position: absolute;
  }
  #nav .gnav li subnav li {
    width: 100%;
    border-top: 1px solid clr_brw;
  }
  #nav .gnav li subnav li a {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.6rem 0;
    text-align: center;
    color: clr_navy;
  }
  #nav .gnav li subnav li a:hover {
    background: clr_brw;
    color: #fff;
  }
  #nav .sub_nav {
    display: none;
  }
  /* Gナビ　ハイライト */
  .index #nav .home,
  .doctor #nav .doctor,
  .clinic #nav .clinic,
  .first #nav .first,
  .access #nav .access {
    color: #c97036;
  }
}
/* サイドバー -------------------------------------- */
.sidebar {
  margin-bottom: 4rem;
}
.sidebar a::before {
  font-family: "fontello";
  content: "\e805";
  font-size: 1rem;
  color: #f2c0a3;
  vertical-align: middle;
  margin: 0 0.8rem 0 0;
  position: relative;
  top: -0.2rem;
}
.sidebar ul.subnav {
  display: none;
}
.sidebar ul.infonav {
  display: block;
  margin: 0 auto;
}
.sidebar ul.infonav li a {
  display: block;
  padding: 3rem 0.6rem 2.5rem 3rem;
  color: #48341d;
  font-size: 1.8rem;
  margin: 0 2rem 2rem 2rem;
  position: relative;
}
.sidebar ul.infonav li a.shoshin {
  background: url("../img/logo_mark.svg") no-repeat 98% bottom/30% #2b628b;
  color: #fff;
}
.sidebar ul.infonav li a.okuruma {
  background: #d97949;
  color: #fff;
}
.sidebar ul.infonav li a.densha {
  background: #e9e9e9;
  color: #535353;
  padding: 1.6rem 0 1.6rem 4.2rem;
  text-indent: -1.2rem;
}
.sidebar ul.infonav li a.densha::before {
  color: #d97949;
  top: 0.6rem;
}
.sidebar ul.infonav li a::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2%;
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  background: #fff;
  left: -1px;
  top: -1px;
  z-index: 1;
}
.sidebar ul.infonav li a.rsv {
  padding: 0;
}
.sidebar ul.infonav li a.rsv::before {
  content: none;
}
.sidebar ul.infonav li a.rsv::after {
  content: none;
}
.sidebar .interview_bnr::before {
  content: none;
}
.sidebar .interview_bnr img {
  max-width: 85%;
  display: block;
  margin: 0 auto auto;
}

@media screen and (min-width: 48em), print {
  .sidebar a::before {
    font-family: "fontello";
    content: "\e805";
    font-size: 0.6rem;
    color: #f2c0a3;
    vertical-align: middle;
    margin: 0 0.8rem 0 0;
    position: relative;
    top: -0.2rem;
  }
  .sidebar ul.subnav, .sidebar ul.infonav {
    display: block;
  }
  .sidebar ul.infonav {
    margin: 0 0 4rem 0;
  }
  .sidebar ul.infonav li {
    margin: 0 0 1.2rem 0;
  }
  .sidebar ul.infonav li a {
    margin: 0;
  }
  .sidebar ul.infonav li a.rsv {
    padding: 0;
  }
  .sidebar ul.infonav li a.rsv::before {
    content: none;
  }
  .sidebar ul.infonav li a.rsv::after {
    content: none;
  }
  .sidebar .tit {
    background: #6b4f3c;
    color: #f1ffdb;
    font-size: 2.4rem;
    text-align: center;
    padding: 1.8rem;
    border-radius: 0.8rem;
  }
  .sidebar .subnav {
    margin: 0;
    padding: 1rem 0;
  }
  .sidebar .subnav li {
    background: #e0eaf3;
    margin: 0 0 0.6rem 0;
  }
  .sidebar .subnav li a {
    display: block;
    padding: 1.8rem 0.8rem 1.8rem 2.8rem;
    color: #2b628b;
    font-weight: bold;
    position: relative;
    font-size: 1.8rem;
  }
  .sidebar .subnav li a:hover {
    background: #ffedcd;
    color: #ec7218;
  }
  .sidebar .subnav li a:hover::before {
    color: #ec7218;
  }
  .sidebar .subnav li a::before {
    font-family: "fontello";
    content: "\e805";
    font-size: 0.6rem;
    color: #46a6e2;
    vertical-align: middle;
    margin: 0 0.8rem 0 0;
    position: relative;
    top: -0.2rem;
  }
  .sidebar .interview_bnr::before {
    content: none;
  }
  .sidebar .interview_bnr img {
    max-width: 100%;
    display: block;
    margin: 0 auto auto;
  }
  .sidebar .interview_bnr img:hover {
    opacity: 0.8;
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.4;
  background: url("../img/overview_bg.jpg") no-repeat center top/auto 100% #e0eaf3;
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #a7c4dc;
}
.overview > .wrap .overviewL .tbl_gaiyo th {
  width: 27%;
  font-size: 110%;
  text-align: left;
  padding: 0.4rem 0.6rem;
  color: #2b628b;
  font-weight: normal;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #a7c4dc;
}
.overview > .wrap .overviewL .tbl_gaiyo td {
  padding: 0.4rem 0.8rem;
  border-bottom: 1px solid #a7c4dc;
  background-color: rgba(235, 244, 251, 0.7);
}
.overview > .wrap .overviewL .tbl_gaiyo td .tel {
  color: #2b628b;
  font-weight: bold;
  font-size: 120%;
  white-space: nowrap;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
  text-align: center;
}
.overview > .wrap .overviewR .gmap {
  text-align: right;
  margin: 0 0 1.6rem 0;
}
.overview > .wrap .overviewR .btn_map {
  color: #fff;
  background-color: #d97949;
  border-radius: 1.8rem;
  padding: 0.6rem 2.8rem;
}
.overview > .wrap .overviewR .btn_map::after {
  font-family: "fontello";
  content: "\e807";
  color: #f2c0a3;
  margin: 0 0 0 0.2rem;
}
.overview .txt_none {
  display: none;
}

.btn_orange {
  color: #fff;
  background-color: #d97949;
  border-radius: 0.5rem;
  padding: 0.6rem 2.8rem;
  margin-top: 1em;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 8rem 0 0;
    padding: 10rem 0;
    font-size: 1.8rem;
    background: url("../img/overview_bg.jpg") no-repeat center top/auto #e0eaf3;
  }
  .overview .clinic_name {
    margin: 0 0 6rem;
  }
  .overview .clinic_name img {
    max-width: 35rem;
  }
  .overview > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 48%;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th {
    width: 23.5%;
    padding: 2.2rem 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td {
    padding: 0.4rem 3.2rem 0.4rem 3.2rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td .tel {
    font-size: 2.8rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td .overview_only {
    display: block;
  }
  .overview > .wrap .overviewL .tbl_time {
    font-size: 2rem;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR .gmap {
    margin: 0 0 3rem 0;
  }
  .overview > .wrap .overviewR .gmap iframe {
    height: 52rem;
  }
  .overview > .wrap .overviewR .btn_map {
    font-weight: bold;
    padding: 0.6rem 4rem;
    display: inline-block;
  }
  .overview > .wrap .overviewR .btn_map::after {
    margin: 0 0 0 1rem;
  }
  .btn_orange {
    font-weight: bold;
    padding: 0.6rem 4rem;
    display: inline-block;
  }
}
/* フッター -------------------------------------- */
.tel_up {
  width: 100%;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0 0 3rem;
  z-index: 1;
  font-size: 1.4rem;
  white-space: nowrap;
  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;
}
.tel_up .tel {
  display: block;
  text-align: center;
  width: 80%;
  color: #2b628b;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
}
.tel_up .tel::before {
  margin: 0 0.8rem 0 0;
  font-family: "fontello";
  content: "\e801";
  color: #2b628b;
  font-size: 2.2rem;
}
.tel_up .pageup {
  cursor: pointer;
}
.tel_up .pageup a {
  display: block;
  width: 5rem;
  font-size: 3rem;
  text-align: center;
  padding: 0 0 0.8rem 0;
  line-height: 1;
  background: #2b628b;
}
.tel_up .pageup a::before {
  text-align: center;
  font-size: 1.5rem;
  font-family: "fontello";
  content: "\e808";
  color: #fff;
}
.tel_up .pageup a span {
  display: none;
}

.fixed_bnr {
  width: 100%;
  position: fixed;
  bottom: 3.8rem;
  border: 1px solid #2b628b;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  background: #e0eaf3;
  color: #2b628b;
  padding: 0.8em 1.2em;
  line-height: 1.5;
  z-index: 99;
}
@media screen and (min-width: 48em), print {
  .fixed_bnr {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    bottom: 3.8rem;
    right: 12rem;
    border: 2px solid #2b628b;
    font-size: 1.6rem;
  }
}
.fixed_bnr span {
  color: #dd8216;
}
.fixed_bnr.bnr_type1 {
  width: auto;
  margin-inline: 0.3em;
  bottom: 14rem;
  background: #fff;
  border: 1px solid #dee2e6;
  border-left: 4px solid #2b628b;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 48em), print {
  .fixed_bnr.bnr_type1 {
    bottom: 14rem;
    margin-inline: initial;
  }
}
.fixed_bnr.bnr_type2 {
  width: auto;
  margin-inline: 0.3em;
  bottom: 24rem;
  margin-block: 0.3em;
  background: #fff;
  border: none;
  border-radius: 1.2rem;
  -webkit-box-shadow: 0 4px 12px rgba(90, 141, 184, 0.3);
          box-shadow: 0 4px 12px rgba(90, 141, 184, 0.3);
}
@media screen and (min-width: 48em), print {
  .fixed_bnr.bnr_type2 {
    bottom: 24rem;
    margin-inline: initial;
  }
}

@media screen and (min-width: 48em), print {
  .tel_up {
    display: block;
    width: 8rem;
    bottom: 4rem;
    right: 2rem;
    left: auto;
    cursor: pointer;
    background: none;
    padding: 0;
  }
  .tel_up .tel {
    display: none;
  }
  .tel_up .pageup a {
    width: 6.4rem;
    height: 6.4rem;
    padding: 1.5rem;
  }
  .tel_up .pageup a::before {
    font-size: 3.6rem;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4.6rem;
}
.footer .logo img {
  width: 15rem;
}
.footer .copy {
  display: block;
  background: #fff;
  color: #000;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer .wrap {
    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;
    padding: 0;
    margin: 7rem auto 0 auto;
  }
  .footer .wrap .logo {
    margin: 3rem 0 0 0;
  }
  .footer .wrap .logo img {
    width: 40rem;
  }
  .footer .wrap .footer_nav {
    width: 57%;
  }
  .footer .wrap .copy {
    width: 100%;
    margin: 7rem 0 0 0;
    font-size: 1.4rem;
  }
  .footer ul {
    display: block;
    text-align: left;
    margin: 0 auto 0;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.8rem;
    margin: 2rem 0.6rem 0 2rem;
  }
  .footer ul li::before {
    content: "■";
    color: #e9956b;
    font-size: 0.8rem;
    margin: 0 0.4rem 0 0;
    position: relative;
    top: -0.2rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline !important;
  }
  .footer ul li.treatment {
    display: none;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
#keyvsl {
  max-width: 100%;
  background: url("../img/index_keyvsl01.jpg") no-repeat top/140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#keyvsl div {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#keyvsl div .tbl_time {
  padding: 0 1rem 0 1rem;
}
#keyvsl div .tbl_time caption {
  padding: 0 1rem;
}
#keyvsl .open_info {
  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;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 9rem 0 0 0;
  margin: 0.8rem auto;
  line-height: 1.4;
  font-weight: bold;
}
#keyvsl .open_info .open {
  color: #2b628b;
  font-size: 1.8rem;
  text-align: center;
}
#keyvsl .open_info .nairan {
  color: #d97949;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  #keyvsl {
    background: url("../img/index_keyvsl01.jpg") no-repeat top;
    height: auto;
    width: 100%;
    margin: 3.8rem auto 0;
    padding: 18rem 0 0 0;
  }
  #keyvsl > div {
    width: 1180px;
    margin: 0 auto;
    padding: 5rem 0 0 0;
  }
  #keyvsl div .tbl_time {
    width: 43rem;
    margin: 0 0 0 auto;
    padding: 0 1rem 0 1rem;
  }
  #keyvsl div .tbl_time caption {
    padding: 1rem 0 0 2rem;
  }
  #keyvsl div .tbl_time tr th[scope=col] {
    padding: 1.3rem 0;
  }
  #keyvsl .open_info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 4em 0 2rem 0;
  }
  #keyvsl .open_info .open {
    font-size: 3rem;
  }
  #keyvsl .open_info .nairan {
    font-size: 2.6rem;
    margin: 0.3rem 0 0 3rem;
  }
}
/* お知らせ -------------------------------------- */
.info {
  margin: 4rem 0 0;
}
.info dl {
  margin: 0;
  line-height: 1.4;
  padding: 0 0.6rem 0 0.6rem;
  /*height: 20.0rem;
  over1low-y: auto;*/
  border-left: 1px solid #d2d2d2;
  border-right: 1px solid #d2d2d2;
}
.info dl dt {
  margin-bottom: 0.4rem;
  background: #e0eaf3;
  font-weight: bold;
  color: #dd8216;
  font-size: 110%;
  position: relative;
  padding: 1rem;
  cursor: pointer;
}
.info dl dt::before {
  content: "▼";
  font-size: 0.9em;
  padding: 0rem 0.2em 0 0;
  position: absolute;
  top: 1rem;
  color: #2d628c;
  right: 1rem;
}
.info dl dt.active::before {
  content: "▲";
}
.info dl dd {
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    margin: 0 auto 8rem;
  }
  .info dl {
    padding: 1.4rem;
    /*height: 30.0rem;*/
  }
}
/* 特長 -------------------------------------- */
/* カレンダー -------------------------------------- */
.cal .box_white {
  padding: 1rem;
}
.cal .box_white .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cal .box_white .status li {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cal .box_white .status li::before {
  display: inline-block;
  content: "■";
  font-size: 120%;
}
.cal .box_white .status li:not(:last-child) {
  margin-right: 1rem;
}
.cal .box_white .status li.open::before {
  color: #3c9;
}
.cal .box_white .status li.am::before {
  color: #75b65d;
}
.cal .box_white .status li.kyushin::before {
  color: #bbb;
}

@media screen and (min-width: 48em), print {
  .cal .box_white {
    padding: 2rem;
    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;
  }
  .cal .box_white .caledit {
    width: 48%;
    font-size: 1.8rem;
    padding: 0 0 2rem;
  }
  .cal .box_white .caledit .week th {
    padding: 1.6rem 0 0.6rem;
  }
  .cal .box_white .status {
    width: 100%;
  }
}
/* 追加項目 -------------------------------------- */
.doctor_name {
  font-size: 2rem;
}

.txt_orange {
  font-weight: bold;
  color: #d97949;
}

/* 症状 -------------------------------------- */
.index .symptoms {
  width: 100%;
  background: #fff4ef;
  padding: 1rem 0 0;
}
.index .symptoms .tit_symp {
  padding: 4rem 0 4rem 3rem;
  margin: 0 1rem;
  color: #c97036;
  font-weight: bold;
  background: url("../img/index_symptom_top.jpg") center/100% no-repeat #fff4ef;
  border: solid 2px #fff;
  position: relative;
}
.index .symptoms .tit_symp::before, .index .symptoms .tit_symp::after {
  content: "\e806";
  font-family: "fontello";
  color: #dcb5a1;
  font-weight: normal;
  position: absolute;
}
.index .symptoms .tit_symp::before {
  top: 1rem;
  left: 7rem;
}
.index .symptoms .tit_symp::after {
  bottom: 1rem;
  left: 7rem;
}
.index .symptoms ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 1rem;
}
.index .symptoms ul li {
  width: 48%;
  margin: 0 0 1.2rem 0;
  position: relative;
  background: #fff;
}
.index .symptoms ul li a {
  background-size: 100% auto;
  display: block;
  padding: 11rem 0.5rem 0.4rem 2.4rem;
  text-decoration: none;
  text-indent: -3.4rem;
  line-height: 1.2;
  color: #2b628b;
}
.index .symptoms ul li a.gorogoro {
  background: url(../img/index_gorogoro.jpg) no-repeat top/100% #fff;
}
.index .symptoms ul li a.kawaku {
  background: url(../img/index_kawaku.jpg) no-repeat top/100% #fff;
}
.index .symptoms ul li a.namida {
  background: url(../img/index_namida.jpg) no-repeat top/100% #fff;
}
.index .symptoms ul li a.meyani {
  background: url(../img/index_meyani.jpg) no-repeat top/100% #fff;
}
.index .symptoms ul li a.hikari {
  background: url(../img/index_hikari.jpg) no-repeat top/100% #fff;
}
.index .symptoms ul li a.nijyu {
  background: url(../img/index_nijyu.jpg) no-repeat top/100% #fff;
}
.index .symptoms ul li a.chushin {
  background: url(../img/index_chushin.jpg) no-repeat top/100% #fff;
}
.index .symptoms ul li a.tounyobyo {
  background: url(../img/index_tounyobyo.jpg) no-repeat top/100% #fff;
}
.index .symptoms ul li a.focus {
  background: url(../img/index_focus.jpg) no-repeat top/100% #fff;
}
.index .symptoms ul li a.enshi {
  background: url(../img/index_enshi.jpg) no-repeat top/100% #fff;
}
.index .symptoms ul li a::before {
  font-family: "fontello";
  content: "\e805";
  font-size: 1rem;
  color: #d97949;
  vertical-align: middle;
  margin: 0 0.6rem 0.3rem 2.2rem;
  position: relative;
  top: -0.1rem;
}
.index .symptoms ul li.none {
  background: none;
}

@media screen and (min-width: 48em), print {
  .index .symptoms {
    background: none;
  }
  .index .symptoms .tit_symp {
    width: 52rem;
    padding: 7rem 23rem 8rem 3rem;
    margin: 2.8rem 3.5rem;
    text-align: center;
    color: #c97036;
    font-size: 2.6rem;
    line-height: 1.3;
    font-weight: bold;
    background: url("../img/index_symptom_top.jpg") center/100% no-repeat #fff4ef;
    border: solid 2px #fff;
  }
  .index .symptoms .tit_symp::before, .index .symptoms .tit_symp::after {
    content: "\e806";
    font-family: "fontello";
    color: #dcb5a1;
    font-weight: normal;
    position: absolute;
  }
  .index .symptoms .tit_symp::before {
    top: 3rem;
    left: 14rem;
  }
  .index .symptoms .tit_symp::after {
    bottom: 3.6rem;
    left: 14rem;
  }
  .index .symptoms ul {
    background: #fff4ef;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 2rem 1rem;
    margin: -29rem 0 0 0;
  }
  .index .symptoms ul::before {
    content: "";
    width: 50rem;
  }
  .index .symptoms ul li {
    width: 23.2rem;
    height: 22rem;
    margin: 2.2rem 0 1.2rem 0;
    position: relative;
    background: #fff;
  }
  .index .symptoms ul li a {
    padding: 19.2rem 0 0 2.4rem;
    font-weight: bold;
  }
  .index .symptoms ul li.none {
    width: 23.2rem;
    height: 22rem;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index, .clinic, .cataract, .case) .main {
  margin: 0;
  line-height: 1.8;
}
body:not(.index, .clinic, .cataract, .case) a {
  text-decoration: none !important;
  color: #2b628b;
}

@media screen and (min-width: 48em), print {
  .cf .img_l, .cf .img_r {
    max-width: 50%;
    height: auto;
  }
}
/* ドクター紹介 */
section.bg_logo {
  background: url(../img/bg_logo.svg) no-repeat right bottom/auto;
}

/* クリニック紹介 */
#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;
}
.device li p {
  text-align: left;
}

@media screen and (min-width: 48em), print {
  .device {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .device .tit_wide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 64px;
  }
  .device .tit_wide_2 {
    height: 92px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .device li {
    width: 48%;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
/* 初めての方へ */
.flow dd {
  margin: 1rem 0 6rem;
  position: relative;
}
.flow dd:last-child {
  margin: 1rem 0 0;
}
.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 #e8e4e4;
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow dd {
    margin: 0 0 13rem;
  }
  .flow dd:not(:last-child)::after {
    display: block;
    width: 0;
    height: 0;
    content: "";
    position: absolute;
    bottom: -12rem;
    left: 0;
    right: 0;
    border-top: 2rem solid #e8e4e4;
    border-right: 3rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 3rem solid transparent;
    margin: auto;
  }
  .flow dd .img_r {
    width: 25%;
  }
}

/* こんな症状はございませんか？ */
.treatment .treatment_menu section ul li {
  font-size: 1.6rem;
  margin: 0.8rem 0 0;
  line-height: 1.2;
}

@media screen and (min-width: 48em), print {
  .treatment .treatment_menu {
    width: 100%;
    margin: 8rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .treatment .treatment_menu .tit_02 {
    width: 100%;
  }
  .treatment .treatment_menu .tit_03 {
    font-size: 2rem;
    height: 2.4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .treatment .treatment_menu section {
    margin-top: 0;
    margin-bottom: 3rem;
    width: 31%;
  }
  .treatment .treatment_menu section h3 {
    width: 100%;
  }
  .treatment .treatment_menu section img {
    width: 100%;
    display: inline-block;
    vertical-align: bottom;
  }
  .treatment .treatment_menu section ul {
    width: 100%;
    margin: 1rem 0;
  }
  .treatment .treatment_menu section ul li {
    width: 100%;
    margin: 0.8rem 0 0;
  }
  .treatment .treatment_menu::after {
    content: "";
    display: block;
    width: 31%;
    margin: 0;
  }
}
/* 診療時間・アクセス */
.access iframe {
  width: 100%;
}
.access .txt_none {
  display: none;
}
.access .gmap {
  margin: 2rem 0;
}
.access .img_car_access li {
  max-width: 80%;
  text-align: center;
  height: auto;
  margin: 1rem auto 2rem;
}

@media screen and (min-width: 48em), print {
  .access iframe {
    width: 61%;
    height: 30rem;
    display: block;
    margin: 3rem auto;
  }
  .access .img_car_access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .access .img_car_access li {
    width: 32%;
  }
  .access .img_car_access li img {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */