@charset "UTF-8";
:root {
  --main-bg-color: brown;
}

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

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.size_l {
  font-size: 120%;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 6px;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 2.4rem 2rem 2rem;
    margin-bottom: 3rem;
    border-radius: 12px;
  }
}
*[class*=frame_].frame_01 {
  background: #fdeacb;
}
*[class*=frame_].frame_02 {
  background: #ffffff;
}

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

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

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

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

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.mb10 {
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center top/cover;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  color: #1e386c;
  padding: 3rem 1rem;
  margin: 0;
  min-height: 12rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.tit_02 {
  color: #1e386c;
  text-align: center;
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1.2;
}

body.index .tit_02 {
  font-size: 2.4rem;
  margin: 0 0 2rem;
}
body.index .tit_02 .small_txt {
  line-height: 1.8;
  font-size: 1.4rem;
  display: block;
  font-weight: normal;
}

body:not(.index) .tit_02 {
  padding: 0.8rem 0;
  border-top: 2px solid #1e386c;
  border-bottom: 2px solid #1e386c;
}

.tit_03 {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0.8rem 2.6rem 0.8rem 1.2rem;
  background: #f39800;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  border-radius: 6px;
  position: relative;
}
.tit_03::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2rem;
  position: absolute;
  bottom: 0;
  right: 0.4rem;
  background: url(../img/tit_03.svg) no-repeat bottom center/contain;
}

.tit_04 {
  color: #1e386c;
  font-weight: bold;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.tit_04::after {
  content: "";
  display: block;
  margin: 0.6rem 0 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #f39800 4rem, #dcdcdc 4rem);
}

.tit_05 {
  color: #513401;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center/auto auto;
    min-height: 23rem;
    font-size: 3.6rem;
    padding: 0 1rem;
    margin: 0;
  }
  .tit_02 {
    font-size: 2.6rem;
    margin: 0 0 2rem;
  }
  body.index .tit_02 {
    font-size: 4.2rem;
    margin: 0 0 6rem;
  }
  body.index .tit_02 .small_txt {
    font-size: 2rem;
    margin: 0.4rem auto 0;
  }
  body:not(.index) .tit_02 {
    font-size: 3rem;
    padding: 2.8rem 0;
  }
  .tit_03 {
    font-size: 2.4rem;
    padding: 1.4rem 7.3rem 1.4rem 2.4rem;
    margin: 0 0 2rem;
  }
  .tit_03::before {
    width: 5.2rem;
    height: 3.3rem;
    right: 1.6rem;
  }
  .tit_04 {
    font-size: 2.2rem;
    margin: 0 0 2rem;
  }
  .tit_04::after {
    margin: 1rem 0 0;
    height: 3px;
    background-image: linear-gradient(to right, #f39800 14rem, #dcdcdc 14rem);
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 > li {
  padding-left: 1.6rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 > li {
    padding-left: 2rem;
  }
}
.lst_ul01 > li:last-child {
  padding-bottom: 0;
}
.lst_ul01 > li::before {
  content: "●";
  font-size: 1rem;
  transform: scale(0.8);
  color: #f39800;
  position: absolute;
  top: 0.2rem;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 > li::before {
    top: 0.6rem;
  }
}
.lst_ul01 > li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lst_ul01.flex li {
    width: 49%;
  }
}
.lst_ul01 > .lst_ol01 {
  padding: 1rem 0 0 0;
}
.lst_ul01 > .lst_ol01 li::before {
  color: #1e386c;
}

.lst_ol01 {
  counter-reset: number;
  margin: 2rem 0 0;
}
.lst_ol01 li {
  counter-increment: number 1;
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
.lst_ol01 li:last-child {
  padding-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ol01 li {
    padding-left: 2rem;
  }
}
.lst_ol01 li::before {
  display: inline-block;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}

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

@media screen and (min-width: 48em), print {
  .lst_dl01 div {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .lst_dl01 div dt {
    width: 20rem;
  }
  .lst_dl01 div dd {
    flex: 1;
  }
}
.dl_faq dt {
  margin: 3rem 0 1rem;
  padding-top: 0.4rem;
  padding-left: 3.6rem;
  font-weight: bold;
  font-size: 110%;
  position: relative;
}
.dl_faq dt::before {
  content: "Q";
  width: 3rem;
  height: 3rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
  background: #1e386c;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.dl_faq dt:first-child {
  margin: 0 0 1rem;
}
.dl_faq dd {
  padding: 0;
  margin: 0;
  clear: both;
}
.dl_faq dd::before {
  content: "A";
  width: 2rem;
  height: 2rem;
  margin-right: 0.4rem;
  margin-bottom: 0.2rem;
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
  background: #1e386c;
  border-radius: 4px;
  float: left;
}

@media screen and (min-width: 48em), print {
  .dl_faq dt {
    margin: 4rem 0 2rem;
    padding-top: 0.6rem;
    padding-left: 5.2rem;
  }
  .dl_faq dt::before {
    width: 4rem;
    height: 4rem;
    border-radius: 7px;
  }
  .dl_faq dt:first-child {
    margin: 0 0 2rem;
  }
  .dl_faq dd::before {
    width: 3rem;
    height: 3rem;
    margin-right: 1.2rem;
    margin-left: 1rem;
    border-radius: 7px;
  }
}
/* フレックス回り -------------------------------------- */
.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%;
}

.flex4 img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
}

@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%;
  }
  .flex4 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .flex4 img {
    margin: 0;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  background: #f39800;
  color: #fff;
  text-align: center;
  padding: 0.6rem 4rem;
  border-radius: 30px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
  *[class*=btn_] a {
    min-width: 30.5rem;
    padding: 1.7rem 1rem;
  }
  *[class*=btn_] a:hover {
    opacity: 1;
    filter: contrast(1.3);
  }
}
*[class*=btn_].center {
  text-align: center;
}

.txt_link {
  color: #222;
  border-bottom: 1px solid #222;
  text-decoration: none !important;
}
.txt_link:hover {
  opacity: 1;
  border-bottom: none;
}

/* フローチャート -------------------------------------- */
.flow div {
  padding: 1.6rem;
  margin: 0 0 6rem;
  background: #fff;
  position: relative;
  border-radius: 7px;
}
.flow div:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow div {
    margin: 0 0 7rem;
    padding: 2.2rem 3rem 3rem;
    border-radius: 12px;
  }
}
.flow div:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #1e386c;
  border-right: 4rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 4rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow div:not(:last-child)::after {
    border-right: 7rem solid transparent;
    border-left: 7rem solid transparent;
    border-top: 3rem solid #1e386c;
    bottom: -6rem;
  }
}
.flow div dt {
  font-weight: bold;
  font-size: 120%;
  margin: 0 0 1rem;
  color: #1e386c;
}
.flow div dd {
  margin: 0;
  padding: 0;
}

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  caption-side: bottom;
}
.tbl_low caption {
  padding: 0.4rem 0 0;
  text-align: left;
}
@media screen and (min-width: 48em), print {
  .tbl_low caption {
    padding: 1.2rem 0 0;
  }
}
.tbl_low thead tr th {
  background: #1e386c;
  color: #fff;
  padding: 0.8rem;
}
@media screen and (min-width: 48em), print {
  .tbl_low thead tr th {
    padding: 2rem;
  }
}
.tbl_low thead tr th:not(:last-child) {
  border-right: 1px solid #fff;
}
.tbl_low thead tr th:last-child {
  border-right: 1px solid #1e386c;
}
.tbl_low tbody tr th {
  width: 30%;
  background: #e8ebef;
  text-align: center;
  font-weight: bold;
  border: 1px solid #1e386c;
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr th {
    padding: 2rem;
  }
}
.tbl_low tbody tr td {
  text-align: left;
  background: #fff;
  padding: 0.8rem;
  border: 1px solid #1e386c;
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr td {
    padding: 2rem 3rem;
  }
}
.tbl_low__th30 thead th:first-child {
  width: 25%;
}
.tbl_low__th30 tbody th:first-child {
  width: 25%;
}
.tbl_low__price tbody tr td {
  text-align: right;
}

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

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

.btn_top.out a.nolink {
  background: #ddd;
  pointer-events: none !important;
}

html {
  font-size: 3.125vw;
  font-family: "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (min-width: 48em), print {
  html {
    scroll-padding-top: 110px;
  }
}

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

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

.wrap {
  padding: 0 1rem 0;
}

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1120px;
  }
  body > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 10rem auto 0;
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.8rem;
    padding: 0 0 0;
    width: 100%;
  }
}
/* アイコンフォント -------------------------------------- */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
/* ヘッダー -------------------------------------- */
.header .wrap {
  padding: 2.2rem 1rem 3.2rem;
}
.header .wrap .logo {
  height: 3.4rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headR {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 0 auto 0;
    padding: 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .header .wrap .logo {
    width: 47.3rem;
    height: 5rem;
  }
  .header .wrap .headR {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: max-content;
    gap: 0.2rem 0;
    padding: 0.4rem 0 0;
    font-size: 1.4rem;
  }
  .header .wrap .headR .hour_txt {
    margin: 0;
  }
  .header .wrap .headR .btn_contact {
    margin: 0;
  }
  .header .wrap .headR .btn_contact a {
    padding: 0.8rem 0;
    min-width: 22.5rem;
  }
  .header .wrap .headR .btn_contact a::before {
    content: "\e80d";
    font-size: 1.6rem;
    font-weight: normal;
    font-family: "fontello";
    margin-right: 0.4rem;
  }
  .header .wrap .headR .tel {
    color: #f39800;
    letter-spacing: 0.2rem;
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.4rem;
    font-weight: bold;
  }
  .header .wrap .headR .tel::before {
    content: "TEL.";
    font-size: 2.4rem;
    margin-right: 0.4rem;
  }
  .header .wrap .headR .fax {
    color: #f39800;
    letter-spacing: 0.2rem;
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.4rem;
    font-weight: bold;
  }
  .header .wrap .headR .fax::before {
    content: "FAX.";
    font-size: 2.4rem;
    margin-right: 0.4rem;
  }
}
/* PC固定メニュー -------------------------------------- */
.fixed_menu {
  position: fixed;
  z-index: 200;
  display: none;
  opacity: 0;
}

@media screen and (min-width: 48em), print {
  .fixed_menu {
    min-width: 5rem;
    height: 19.3rem;
    top: 10.3rem;
    right: -4rem;
    display: block;
    transition: opacity 0.4s, right 0.4s;
  }
  .fixed_menu.visible {
    opacity: 1;
    right: 1rem;
  }
  .fixed_menu a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    background: #f39800;
    font-family: "Zen Maru Gothic", serif;
    font-size: 1.8rem;
    font-weight: bold;
    gap: 1rem 0;
    min-width: 5rem;
    height: 19.3rem;
    letter-spacing: 0.2rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    border-radius: 30px;
    transition: filter 0.2s;
    color: #fff;
  }
  .fixed_menu a::before {
    content: "\e80d";
    font-size: 1.6rem;
    font-weight: normal;
    font-family: "fontello";
    margin-bottom: 0.4rem;
  }
  .fixed_menu a:hover {
    opacity: 1;
    filter: contrast(1.15);
  }
}
/* SP ドロップダウンメニュー -------------------------------------- */
#menu {
  z-index: 9999;
  width: 100%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#menu .fixed_menu_btn {
  width: 6rem;
  height: 5.6rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0.4rem 0.4rem;
  position: fixed;
  top: 1.4rem;
  right: 1rem;
  z-index: 204;
}
#menu .fixed_menu_btn .hamburger {
  height: 100%;
}
#menu .fixed_menu_btn .hamburger a {
  display: -webkit-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: 0.8rem 0rem;
  height: 100%;
  text-decoration: none;
  background: #fff4e2;
  color: #f39800;
  font-size: 1.2rem;
  border-radius: 5px;
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "\e802";
  font-family: "fontello";
  font-size: 2.6rem;
  line-height: 0.8;
}
#menu .fixed_menu_btn .hamburger a::after {
  content: "MENU";
  font-size: 1rem;
}
#menu .fixed_menu_btn.active .hamburger a::before {
  content: "\e806";
}
#menu .fixed_menu_btn.active .hamburger a::after {
  content: "CLOSE";
}
#menu #nav {
  display: none;
}
#menu #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 10rem 1.2rem 10rem;
  background-color: #f5f6f7;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  left: auto !important;
  z-index: 203;
  -webkit-transform: translate(27rem);
  transform: translate(27rem);
}
#menu #nav.sp_nav.open {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#menu #nav.sp_nav ul {
  display: block;
  font-size: 1.2rem;
}
#menu #nav.sp_nav ul li {
  text-align: left;
  margin: 0 0 0.4rem;
}
#menu #nav.sp_nav ul li.blog {
  border: 1px solid #1e386c;
}
#menu #nav.sp_nav ul li a {
  display: block;
  padding: 1.2rem 0.8rem 1.2rem;
  font-weight: bold;
  border-radius: 4px;
  border: 1px solid #eee;
  color: #333;
  background: #fff;
  text-decoration: none !important;
}
#menu #nav.sp_nav ul li a.blog {
  border: 1px solid #b2c6ee;
}
#menu #nav.sp_nav ul li a.sub {
  margin: 0 0 0.4rem;
  position: relative;
}
#menu #nav.sp_nav ul li a.sub::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 1rem;
  content: "4";
  color: #1e386c;
  font-family: "fontello";
  transition: all 0.2s;
}
#menu #nav.sp_nav ul li a.sub.close {
  background: #e3e8f2;
}
#menu #nav.sp_nav ul li a.sub.close::after {
  top: 39%;
  transform: rotate(180deg);
}
#menu #nav.sp_nav ul li a.sub + .subnav {
  display: none;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li {
  width: 100%;
  border-bottom: none;
  text-align: left;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a {
  color: #fff;
  font-size: 1.2rem;
  background: #687da0;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a::after {
  color: #fff;
}
#menu #nav.sp_nav ul li a:not(.sub) {
  position: relative;
}
#menu #nav.sp_nav ul li a:not(.sub)::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 1rem;
  content: "2";
  color: #1e386c;
  font-family: "fontello";
}
#menu .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#menu .overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

#nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_menu_btn {
    display: none;
  }
  #menu {
    display: block;
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: #fff;
    position: relative;
    z-index: 200;
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  }
  #menu #nav .gnav {
    width: 1100px;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  #menu #nav .gnav > li {
    width: auto;
  }
  #menu #nav .gnav > li.treatment {
    position: relative;
  }
  #menu #nav .gnav > li.recruit {
    position: relative;
  }
  #menu #nav .gnav > li > a {
    padding: 2rem 0 2.3rem;
    display: block;
    text-align: center;
    font-family: "Zen Maru Gothic", serif;
    font-size: 1.8rem;
    position: relative;
  }
  #menu #nav .gnav > li > a::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #f39800;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    margin: auto;
    opacity: 0;
    transition: opacity 0.2s;
  }
  #menu #nav .gnav > li > a:hover {
    opacity: 1;
    color: #f39800;
  }
  #menu #nav .gnav > li > a:hover::before {
    opacity: 1;
  }
  #menu #nav .gnav > li > a.blog {
    border: 1px solid #1e386c;
    border-radius: 9px;
    padding: 1.2rem 1rem;
  }
  #menu #nav .gnav > li > a.blog::before {
    content: none;
  }
  #menu #nav .gnav > li > a.blog:hover {
    background: #1e386c;
    color: #fff;
  }
  #menu #nav .gnav > li > a.sub::after {
    content: "\f004";
    color: #f39800;
    font-weight: bold;
    font-family: "fontello";
    font-size: 1.4rem;
    position: absolute;
    top: 2.4rem;
    right: -1.2em;
    transition: all 0.2s;
  }
  #menu #nav .gnav > li > a.sub.close::after {
    transform: rotate(180deg);
  }
  #menu #nav .gnav > li .subnav {
    min-width: 21.5rem;
    display: none;
    padding: 1.3rem 1.6rem;
    border-radius: 6px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  }
  #menu #nav .gnav > li .subnav li {
    width: 100%;
    margin: 0 0 0.8rem;
  }
  #menu #nav .gnav > li .subnav li:last-child {
    margin: 0;
  }
  #menu #nav .gnav > li .subnav li a {
    display: block;
    border-radius: 6px;
    font-size: 2rem;
    font-family: "Zen Maru Gothic", serif;
    color: #1e386c;
    padding: 1rem 1.3rem;
    text-align: left;
  }
  #menu #nav .gnav > li .subnav li a:hover {
    background: #fdeacb;
    color: #f39800;
  }
  #menu #nav .btn_pdf {
    display: none;
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2.6rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #1e386c;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.overview > .wrap .overviewL .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview > .wrap .overviewL .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
  display: block;
}
.overview > .wrap .overviewL .tbl_gaiyo th {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 700;
}
.overview > .wrap .overviewL .tbl_gaiyo td {
  display: block;
  margin: 0 0 1rem;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 30rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 0 0;
    padding: 8.5rem 0 8rem;
    font-size: 1.8rem;
  }
  .overview > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL,
  .overview > .wrap .overviewR {
    width: 55rem;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .clinic_name {
    margin: 0 0 5.6rem;
    text-align: left;
  }
  .overview > .wrap .overviewL .clinic_name img {
    max-width: 44rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th {
    vertical-align: top;
    width: auto;
    display: table-cell;
    padding: 0 0 1.4rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td {
    vertical-align: top;
    display: table-cell;
    padding: 0 0 1.4rem 2rem;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    margin: 0;
  }
  .overview > .wrap .overviewR .gmap {
    height: 100%;
  }
  .overview > .wrap .overviewR .gmap iframe {
    height: 100%;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 1;
  cursor: pointer;
}
#pageup a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.4rem;
  background: #fff;
  border: 2px solid #1e386c;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}
#pageup a::before {
  text-align: center;
  font-size: 1.4rem;
  font-family: "fontello";
  content: "\e80a";
  color: #1e386c;
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    right: 3rem;
    bottom: 3rem;
  }
  #pageup a {
    width: 6rem;
    height: 6rem;
    border-radius: 20px;
    border: 1px solid #1e386c;
  }
  #pageup a::before {
    font-size: 1.8rem;
    font-weight: bold;
  }
}
.fixed_footer {
  width: 100%;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.fixed_footer .tel {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  text-align: center;
  padding: 0 0 0.8rem;
  width: 60%;
  color: #f39800;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  font-family: "Zen Maru Gothic", serif;
}
.fixed_footer .tel::before {
  content: "TEL.";
  font-family: "fontello";
  margin-right: 0.2rem;
  font-size: 1.6rem;
}
.fixed_footer .contact {
  width: 40%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.fixed_footer .contact a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  padding: 1.2rem 0.4rem 1.2rem;
  line-height: 1;
  background: #1e386c;
  font-family: "Zen Maru Gothic", serif;
}
.fixed_footer .contact a::before {
  content: "\e80d";
  margin-right: 0.2rem;
  font-size: 1.4rem;
  font-weight: normal;
  font-family: "fontello";
  position: relative;
  top: 0.1rem;
}

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

@media screen and (min-width: 48em), print {
  .footer {
    padding: 0;
  }
  .footer ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    width: 1100px;
    margin: 0 auto 0;
    padding: 4.3rem 0 4rem;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.8rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment .subnav {
    display: none;
  }
  .footer ul li.recruit .subnav {
    display: none;
  }
  .footer .copy {
    border-top: 1px solid #fff;
    padding: 3.75rem 0 4.1rem;
    font-size: 1.8rem;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
.overflow {
  overflow-x: hidden;
}

/* キービジュアル -------------------------------------- */
#keyvsl {
  margin: 0;
  max-width: 100%;
  height: 20rem;
  background: url(../img/index_keyvsl01.jpg) no-repeat center center/cover;
}
#keyvsl .wrap {
  height: 100%;
  position: relative;
}
#keyvsl .wrap .kv_txt {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.6;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 0 0 10px #000; /* 各方向に白いシャドウを適用 */
}
#keyvsl .wrap .kv_txt span {
  font-weight: bold;
}

@media screen and (min-width: 48em), print {
  #keyvsl {
    margin: 0 auto 0;
    height: 70rem;
    background: url(../img/index_keyvsl01.jpg) no-repeat center center/auto auto;
  }
  #keyvsl .wrap .kv_txt {
    bottom: 6rem;
    left: 0;
    font-size: 3.6rem;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 0 0 10px #000, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -2px -2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 4rem 1rem 4rem;
}
.info .wrap {
  padding: 2rem 0;
  border-top: 2px solid #f39800;
  border-bottom: 2px solid #f39800;
  position: relative;
}
.info .wrap::before {
  content: "";
  display: block;
  width: 18rem;
  height: 6rem;
  background: url(../img/index_info_bg01.png) no-repeat center/contain;
  position: absolute;
  right: -5.8rem;
  bottom: -3.8rem;
}
.info .wrap .tit_02__info {
  margin: 0 0 1rem;
  text-align: left;
}
.info dl {
  margin: 0;
  line-height: 1.4;
  padding: 0;
  height: 100%;
}
.info dl .line {
  padding: 1rem 0 0;
  margin: 1rem 0 1rem;
  border-top: 1px dashed #f39800;
}
.info dl .line:nth-of-type(n + 4) dd {
  display: none;
}
.info dl .line:first-child {
  border-top: none;
}
.info dl .line dt {
  width: 100%;
  margin: 0 0 0.4rem;
  padding-left: 2.2rem;
  font-weight: bold;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", serif;
  color: #1e386c;
  cursor: pointer;
  display: table;
  position: relative;
}
.info dl .line dt::before {
  content: "\e800";
  font-size: 1.4rem;
  font-family: "fontello";
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.info dl .line dt:hover {
  opacity: 0.8;
}
.info dl .line dt.close::before {
  content: "\e803";
}
.info dl .line dt span {
  /*&.date {
    font-weight: normal;
    color: #ff0000;
    font-size: 1.2rem;
  }*/
}
.info dl .line dt span.title {
  display: inline-block;
  vertical-align: baseline;
}
.info dl .line dt span.category {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5em;
  font-size: 1.2rem;
  padding: 0.2em 1em;
  border-radius: 3rem;
  background: #f39800;
  color: #fff;
}
.info dl .line dt span.cat001, .info dl .line dt span.cat005, .info dl .line dt span.cat004, .info dl .line dt span.cat003, .info dl .line dt span.cat002 {
  color: #fff;
  font-weight: normal;
  background: #f39800;
  border-radius: 3rem;
  font-size: 1.2rem;
  padding: 0.2rem 0.8rem;
  margin: 0 0.4rem;
}
.info dl .line dt span.cat002 {
  background: #f39800;
}
.info dl .line dt span.cat003 {
  background: #f39800;
}
.info dl .line dt span.cat004 {
  background: #1e386c;
}
.info dl .line dt span.cat005 {
  background: #1a582d;
}
.info dl .line dd {
  padding: 0;
  margin: 0;
}
.info dl .line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 8rem 0 8rem;
  }
  .info .wrap {
    padding: 6rem 0 8.4rem;
    border-top: 5px solid #f39800;
    border-bottom: 5px solid #f39800;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0 4.2rem;
  }
  .info .wrap::before {
    width: 26.6rem;
    height: 14.2rem;
    right: -7rem;
    bottom: -6.8rem;
  }
  .info .wrap .tit_02 {
    width: 16rem;
    padding-left: 4rem;
    flex: 0 0 auto;
  }
  .info .wrap .tit_02__info {
    font-size: 2.6rem;
    margin: 0;
  }
  .info .wrap .tit_02__info .small_txt {
    font-size: 2rem;
    margin: 0.2rem auto 0;
  }
  .info dl {
    line-height: 1.6;
    flex: 1;
  }
  .info dl .line {
    padding: 3.2rem 0 0;
    margin: 3.2rem 0 3.2rem;
  }
  .info dl .line:first-child {
    margin: 0.4rem 0 3.2rem;
    padding: 0;
  }
  .info dl .line dt {
    margin: 0 0 1rem;
    padding-left: 2.7rem;
    font-size: 2rem;
  }
  .info dl .line dt::before {
    font-size: 2rem;
    top: 0;
  }
  .info dl .line dt span {
    /*              &.date {
                    font-weight: normal;
                    color: #ff0000;
                    font-size: 1.2rem;
                  }*/
  }
  .info dl .line dt span.cat001, .info dl .line dt span.cat002, .info dl .line dt span.cat003, .info dl .line dt span.cat004, .info dl .line dt span.cat005 {
    font-size: 1.5rem;
    margin: 0 1rem;
    padding: 0.2rem 1.5rem 0.5rem 1.5rem;
  }
  .info dl .line dt span.cat002 {
    background: #f39800;
  }
  .info dl .line dt span.cat003 {
    background: #f39800;
  }
  .info dl .line dt span.cat004 {
    background: #1e386c;
  }
  .info dl .line dt span.cat005 {
    background: #1a582d;
  }
  .info dl .line dt span {
    /*              &.title {
                    display: block;
                    margin: 1.0rem 0 0 0;
                  }*/
  }
  .info dl .line dd {
    padding: 0 0 0 2.7rem;
    margin: 0;
  }
  .info dl .line dd p {
    margin: 0;
  }
}
/* まちの訪問クリニックの想い -------------------------------------- */
.about_us {
  padding: 2rem 0 2rem;
  background: url(../img/index_aboutUs_bg01.jpg) no-repeat center/cover;
}
.about_us .ex_txt span {
  padding: 0.4rem 0.2rem;
  line-height: 2.2;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  background: #1e386c;
  white-space: nowrap;
}
.about_us .content {
  padding: 0 1rem;
}
.about_us .content img {
  display: block;
  max-width: 60%;
  margin: 0 auto 2rem;
}
.about_us .btn_top a {
  min-width: 20rem;
}

@media screen and (min-width: 48em), print {
  .about_us {
    padding: 11rem 0 12rem;
  }
  .about_us .ex_txt {
    align-self: start;
    margin: 0 0 4rem;
  }
  .about_us .ex_txt span {
    font-size: 2.4rem;
    padding: 0.2rem 0.6rem;
    line-height: 2;
  }
  .about_us .ex_txt.no_txt {
    align-self: auto;
    margin: 0;
  }
  .about_us .content {
    padding: 0;
    display: grid;
    grid-template-columns: 68rem 36rem;
    gap: 0 6rem;
  }
  .about_us .content img {
    grid-column: 2;
    grid-row: 1/span 2;
    max-width: 100%;
    height: auto;
    margin: 0;
  }
  .about_us .content p {
    grid-column: 1;
    grid-row: auto;
    margin: 0 0 3.4rem;
  }
  .about_us .flex_btn {
    margin: 3rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 4rem;
  }
  .about_us .flex_btn .btn_top {
    text-align: center;
  }
  .about_us .flex_btn .btn_top a {
    min-width: 26rem;
  }
}
/* 当クリニックの訪問診療について -------------------------------------- */
.about_housecalls {
  padding: 2rem 0 6rem;
  background-color: #fefbec; /* 背景色を設定 */
  background-image: radial-gradient(circle at center, white 62%, transparent 64%);
  background-size: 20px 20px; /* 繰り返すサイズを設定 */
  background-position: 0 0, 25px 25px;
}
.about_housecalls .ex_txt {
  margin: 0 0 2rem;
}
.about_housecalls .ex_txt span {
  display: block;
  padding: 0.4rem 1rem;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  background: #1e386c;
}
.about_housecalls .wrap {
  position: relative;
}
.about_housecalls .wrap::before, .about_housecalls .wrap::after {
  content: "";
  display: block;
  width: 18rem;
  height: 6rem;
  position: absolute;
}
.about_housecalls .wrap::before {
  background: url(../img/index_aboutHousecalls_bg01.png) no-repeat center/contain;
  right: -1.8rem;
  bottom: -8rem;
}
.about_housecalls .wrap::after {
  background: url(../img/index_aboutHousecalls_bg02.png) no-repeat center/contain;
  left: -2rem;
  bottom: -8rem;
}
.about_housecalls .wrap ul {
  counter-reset: count_aboutHousecalls;
}
.about_housecalls .wrap ul li {
  counter-increment: count_aboutHousecalls 1;
  width: 100%;
  margin: 0 0 2rem;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}
.about_housecalls .wrap ul li figure {
  margin: 0;
  padding: 0;
}
.about_housecalls .wrap ul li figure img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  border-radius: 0 0 20px 20px;
}
.about_housecalls .wrap ul li figure figcaption {
  position: relative;
  padding: 1.4rem 1rem 1rem;
}
.about_housecalls .wrap ul li figure figcaption::before {
  content: counter(count_aboutHousecalls, decimal-leading-zero);
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  font-size: 3.4rem;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-shadow: 0 0 1px #f39800, 0 0 1px #f39800, 0 0 1px #f39800, 0 0 1px #f39800, 0 0 1px #f39800, 0 0 2px #f39800, 0 0 2px #f39800, 0 0 2px #f39800, 0 0 2px #f39800, 0 0 2px #f39800;
}
.about_housecalls .wrap ul li figure figcaption p {
  margin: 0;
}
.about_housecalls .wrap ul li figure figcaption p.tit {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  font-size: 2rem;
}

@media screen and (min-width: 48em), print {
  .about_housecalls {
    padding: 15rem 0 8.5rem;
    background-image: radial-gradient(circle at center, white 62%, transparent 64%);
    background-size: 20px 20px; /* 繰り返すサイズを設定 */
    background-position: 0 0, 25px 25px;
  }
  .about_housecalls .wrap::before {
    width: 44.2rem;
    height: 21.2rem;
    right: auto;
    bottom: auto;
    left: -51.2rem;
    top: 0rem;
  }
  .about_housecalls .wrap::after {
    width: 63.1rem;
    height: 20.2rem;
    left: auto;
    right: -68.1rem;
    bottom: 0;
  }
  .about_housecalls .wrap .tit_02 {
    margin: 0 0 6rem !important;
  }
  .about_housecalls .wrap .ex_txt {
    text-align: center;
    margin: 0 auto 8.4rem;
  }
  .about_housecalls .wrap .ex_txt span {
    display: inline;
    padding: 0.4rem 0.6rem 0.6rem;
    margin: 0 0 2rem;
    font-size: 2.4rem;
  }
  .about_housecalls .wrap ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4rem 4rem;
  }
  .about_housecalls .wrap ul li {
    margin: 0;
    border-radius: 10px;
    grid-column: span 2;
  }
  .about_housecalls .wrap ul li:nth-child(1), .about_housecalls .wrap ul li:nth-child(2), .about_housecalls .wrap ul li:nth-child(3), .about_housecalls .wrap ul li:nth-child(4) {
    grid-column: span 3;
  }
  .about_housecalls .wrap ul li:nth-child(1) figure, .about_housecalls .wrap ul li:nth-child(2) figure, .about_housecalls .wrap ul li:nth-child(3) figure, .about_housecalls .wrap ul li:nth-child(4) figure {
    padding: 0 3.5rem 6.7rem;
  }
  .about_housecalls .wrap ul li figure {
    border-radius: 30px;
    padding: 0 4.4rem 6.5rem;
  }
  .about_housecalls .wrap ul li figure img {
    max-width: 100%;
  }
  .about_housecalls .wrap ul li figure figcaption {
    padding: 0;
  }
  .about_housecalls .wrap ul li figure figcaption::before {
    font-size: 6rem;
    top: -8rem;
    text-shadow: 0 0 1px #f39800, 0 0 1px #f39800, 0 0 1px #f39800, 0 0 1px #f39800, 0 0 1px #f39800, 0 0 2px #f39800, 0 0 2px #f39800, 0 0 2px #f39800, 0 0 2px #f39800, 0 0 2px #f39800, 0 0 3px #f39800, 0 0 3px #f39800, 0 0 3px #f39800, 0 0 3px #f39800, 0 0 3px #f39800;
  }
  .about_housecalls .wrap ul li figure figcaption p {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .about_housecalls .wrap ul li figure figcaption p.tit {
    font-size: 2.4rem;
    margin: 4.6rem 0 2rem;
    white-space: nowrap;
  }
  .about_housecalls .wrap .btn_top {
    margin: 4.1rem 0 0;
    text-align: center;
  }
}
/* 背景オレンジ -------------------------------------- */
.bg_orange {
  padding: 2rem 1rem 7rem;
  background: #fefbec;
  position: relative;
}
.bg_orange::before, .bg_orange::after {
  content: "";
  display: block;
  position: absolute;
}
.bg_orange::before {
  width: 18rem;
  height: 8rem;
  background: url(../img/index_bgOrange_bg01.png) no-repeat center/contain;
  left: -3rem;
  bottom: 1.4rem;
}
.bg_orange::after {
  width: 18rem;
  height: 7rem;
  background: url(../img/index_bgOrange_bg02.png) no-repeat center/contain;
  right: -1.8rem;
  bottom: 1.8rem;
}
.bg_orange .wrap {
  padding: 2rem 1rem 2rem;
  border-radius: 7px;
}
.bg_orange .wrap .tit_02__top02 {
  position: relative;
  z-index: 1;
  margin: 0 0 2rem;
  text-align: center;
}
.bg_orange .wrap .tit_02__top02::before {
  content: "";
  display: block;
  width: 100%;
  height: 1.4rem;
  background-image: linear-gradient(to bottom, #1e386c 0, #1e386c 0.2rem, transparent 0.2rem, transparent 0.6rem, #1e386c 0.6rem, #1e386c 0.8rem, transparent 0.8rem, transparent 1.2rem, #1e386c 1.2rem, #1e386c 1.4rem, transparent 1.4rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
  margin: auto;
}
.bg_orange .wrap .tit_02__top02 .bg {
  padding: 0.4rem 1rem;
  margin: 0 2rem;
  color: #1e386c;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.bg_orange .wrap .tit_02__top02 .small_txt {
  color: #1e386c;
}
.bg_orange .emargency .tit_02__top02 .bg {
  background: #fdeacb;
}
.bg_orange .area .tit_02__top02 .bg {
  background: #e8ebef;
}
.bg_orange .adjacent .tit_02__top02 .bg {
  background: #fdeacb;
}
.bg_orange .youtube_link .tit_02__top02 .bg {
  background: #e8ebef;
}
.bg_orange .btn_top.out a {
  position: relative;
}
.bg_orange .btn_top.out a::after {
  content: "\f08e";
  font-family: "fontello";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 1rem;
  font-weight: normal;
}

@media screen and (min-width: 48em), print {
  .bg_orange {
    padding: 10rem 0 14rem;
  }
  .bg_orange::before, .bg_orange::after {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .bg_orange::before {
    width: 49rem;
    height: 24rem;
    left: calc(50% - 89rem);
    top: 40rem;
    bottom: auto;
  }
  .bg_orange::after {
    width: 80rem;
    height: 30rem;
    left: calc(50% + 102rem);
    right: auto;
    bottom: 8.1rem;
  }
  .bg_orange .wrap {
    padding: 4.8rem 10rem;
    border-radius: 60px;
  }
  .bg_orange .wrap .tit_02__top02 {
    margin: 0 0 2rem !important;
    font-size: 3rem;
  }
  .bg_orange .wrap .tit_02__top02 .bg {
    padding: 0 2.4rem;
  }
  .bg_orange .wrap .tit_02__top02 .small_txt {
    margin: 0 auto 0 !important;
  }
  .bg_orange .btn_top a {
    padding: 1.7rem 7rem;
  }
  .bg_orange .btn_top.out a::after {
    top: 53%;
    right: 2rem;
  }
}
/* 緊急時対応 -------------------------------------- */
.emargency {
  margin: 0 0 2rem;
}
.emargency .wrap {
  background: #fdeacb;
}
.emargency .wrap p {
  text-align: center;
}
.emargency .wrap p.btn_top {
  margin: 1rem 0 0;
}

@media screen and (min-width: 48em), print {
  .emargency {
    margin: 0 0 3rem;
  }
  .emargency .wrap p {
    font-size: 2rem;
    margin: 3rem 0 0;
  }
  .emargency .wrap p.btn_top {
    font-size: 1.8rem;
    text-align: center;
    margin: 2.3rem 0 0;
  }
}
/* 訪問エリア -------------------------------------- */
.area {
  margin: 0 0 2rem;
}
.area .wrap {
  background: #e8ebef;
  position: relative;
}
.area .wrap .flex img {
  display: block;
  margin: 0 auto 0.8rem;
}

@media screen and (min-width: 48em), print {
  .area {
    margin: 0 0 3rem;
  }
  .area .wrap .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0 4rem;
  }
  .area .wrap .flex img {
    width: 45rem;
    margin: 0;
  }
  .area .wrap .flex p {
    font-size: 2rem;
    margin: 0;
  }
}
/* 併設福祉施設 -------------------------------------- */
.adjacent {
  margin: 0 0 2rem;
}
.adjacent .wrap {
  background: #fdeacb;
}
.adjacent .wrap p {
  text-align: center;
}
.adjacent .wrap p.btn_top {
  margin: 1rem 0 0;
}

@media screen and (min-width: 48em), print {
  .adjacent {
    margin: 0 0 3rem;
  }
  .adjacent .wrap p {
    font-size: 2rem;
    margin: 3rem 0 0;
  }
  .adjacent .wrap p.btn_top {
    font-size: 1.8rem;
    text-align: center;
    margin: 2.3rem 0 0;
  }
}
/* まちの訪問クリニック公式YouTube -------------------------------------- */
.youtube_link {
  margin: 0 0 2rem;
}
.youtube_link .wrap {
  background: #e8ebef;
}
.youtube_link .wrap p {
  text-align: center;
}
.youtube_link .wrap p.btn_top {
  margin: 1rem 0 0;
}

@media screen and (min-width: 48em), print {
  .youtube_link {
    margin: 0 0 3rem;
  }
  .youtube_link .wrap p {
    font-size: 2rem;
    margin: 3rem 0 0;
  }
  .youtube_link .wrap p.btn_top {
    font-size: 1.8rem;
    text-align: center;
    margin: 2.3rem 0 0;
  }
}
/* スタッフ募集 -------------------------------------- */
.recruit_area {
  padding: 0;
  position: relative;
}
.recruit_area::before, .recruit_area::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.recruit_area::before {
  left: 0;
  background-position: left -32rem center;
  background-image: url(../img/index_recruit_bg01.jpg);
}
.recruit_area::after {
  right: 0;
  background-position: right -30rem center;
  background-image: url(../img/index_recruit_bg02.jpg);
}
.recruit_area .wrap {
  margin: 0 auto;
  padding: 2rem 1rem 2rem;
  width: 60%;
  color: #fff;
  background: #1e386c;
}
.recruit_area .wrap .tit_02 {
  color: #fff;
}
.recruit_area .wrap p.tit {
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  text-align: center;
}
.recruit_area .wrap p.tit span {
  display: inline;
  border-bottom: 1px solid #fff;
}
.recruit_area .wrap p.btn_top {
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .recruit_area::before, .recruit_area::after {
    width: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    min-width: 70rem;
  }
  .recruit_area::before {
    background-position: center center;
    left: calc(50% - 50rem);
  }
  .recruit_area::after {
    background-position: center center;
    left: calc(50% + 50rem);
  }
  .recruit_area .wrap {
    padding: 10rem 6rem 10rem;
    width: 60rem;
  }
  .recruit_area .wrap .tit_02 {
    margin: 0 auto 4rem;
  }
  .recruit_area .wrap p.tit {
    font-size: 2.4rem;
    line-height: 2.4;
  }
  .recruit_area .wrap p.btn_top {
    text-align: center;
    margin: 3.4rem auto 0;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) {
  background: #fefbec;
}
body:not(.index) .header {
  background: #fff;
}
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    display: block;
    position: relative;
  }
  body:not(.index) .breadcrumb_list ol {
    position: absolute;
    left: 0;
    right: 0;
    top: 2rem;
    width: 1100px;
    font-size: 1.8rem;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  body:not(.index) .breadcrumb_list ol li {
    display: inline-block;
  }
  body:not(.index) .breadcrumb_list ol li:not(:last-child)::after {
    content: "\f006";
    font-family: "fontello";
    display: inline-block;
    margin: 0 1rem;
    font-size: 1.2rem;
    position: relative;
    top: -0.2rem;
  }
  body:not(.index) .breadcrumb_list ol li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
body:not(.index) .main {
  margin: 0 1rem;
  padding: 4rem 0 4rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 6rem;
  }
}

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

@media screen and (min-width: 48em), print {
  .doctor .main .img_r {
    max-width: 28%;
  }
  .doctor .main .right_txt .btn_top a {
    padding: 1.2rem 1rem;
    min-width: 16.5rem;
    display: inline-block;
  }
  .doctor .main .flex2 > .mt20 {
    width: 48%;
    margin: 0;
  }
  .doctor .main .dr_wrap .img {
    order: 2;
    margin-left: 3rem;
  }
  .doctor .main .dr_wrap .txt {
    order: 1;
  }
}
/* クリニック紹介 */
#slider {
  margin: 0 auto 0.2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #slider {
    width: 75rem;
  }
}
#slider figure {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
#slider figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem 0.2rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(34, 34, 34, 0.8);
}
@media screen and (min-width: 48em), print {
  #slider figure figcaption {
    padding: 0.8rem 1rem;
    font-size: 1.8rem;
  }
}

#thumbnail_slider {
  margin: 0 auto 2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #thumbnail_slider {
    width: 75rem;
  }
}
#thumbnail_slider .slick-list .thumbnail-item img {
  cursor: grab;
}
#thumbnail_slider .slick-list .thumbnail-item img:active {
  cursor: grabbing;
}
#thumbnail_slider .slick-list .slick-current {
  position: relative;
}
#thumbnail_slider .slick-list .slick-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid #222;
}
#thumbnail_slider .slick-list .slick-current img {
  width: 100%;
  display: block;
}
#thumbnail_slider .slick-prev::before,
#thumbnail_slider .slick-next::before {
  color: #222;
}

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

#thumbnail_slider02 {
  margin: 0 auto 2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #thumbnail_slider02 {
    width: 75rem;
  }
}
#thumbnail_slider02 .slick-list .thumbnail-item img {
  cursor: grab;
}
#thumbnail_slider02 .slick-list .thumbnail-item img:active {
  cursor: grabbing;
}
#thumbnail_slider02 .slick-list .slick-current {
  position: relative;
}
#thumbnail_slider02 .slick-list .slick-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid #222;
}
#thumbnail_slider02 .slick-list .slick-current img {
  width: 100%;
  display: block;
}
#thumbnail_slider02 .slick-prev::before,
#thumbnail_slider02 .slick-next::before {
  color: #222;
}

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

.thumbnail-item img {
  width: 98%;
  display: block;
  margin: 0 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;
}

@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%;
  }
}
/* 初めての方へ */
/* 診療時間・アクセス */
.access .gmap {
  height: 30rem;
  margin: 2rem 0;
}

@media screen and (min-width: 48em), print {
  .access .gmap {
    height: 50rem;
  }
}

/*# sourceMappingURL=style.css.map */