@charset "UTF-8";
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/* -----------------------------------------------------------
 関数
----------------------------------------------------------- */
/*サイトの横幅*/
/*media screen*/
/*文字SP*/
/*文字PC*/
/*基本フォント*/
/*游明朝*/
/*◇◆◇◆◇◆揃え◇◆◇◆◇◆*/
p, ul, dl {
  text-align: justify;
}

/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*◇◆◇◆◇◆ハンバーガー色◇◆◇◆◇◆*/
/*ハンバーガー棒と文字*/
/*ハンバーガーdrawr背景*/
/*ハンバーガーdrawrテキスト*/
/*ハンバーガーdrawrサブ背景*/
/*ハンバーガーdrawrサブテキスト*/
/*ハンバーガーdrawrボーダー*/
/*◇◆◇◆◇◆お知らせ色◇◆◇◆◇◆*/
/*お知らせタイトル*/
/*お知らせ文字*/
/*お知らせボーダー*/
/*◇◆◇◆◇◆リンク系◇◆◇◆◇◆*/
/*リンクカラー*/
/*リンクカラーホバー*/
/*◇◆◇◆◇◆診療時間テーブル◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*thボーダー*/
/*◇◆◇◆◇◆テーブル系◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td背景*/
/*td文字*/
/*td文字*/
/*tdボーダー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆影◇◆◇◆◇◆*/
/*◇◆◇◆◇◆透過◇◆◇◆◇◆*/
/*◇◆◇◆◇◆フロー◇◆◇◆◇◆*/
/*◇◆◇◆◇◆カレンダー◇◆◇◆◇◆*/
/*◇◆◇◆◇◆汎用カラー◇◆◇◆◇◆*/
/*緑*/
/*緑*/
/*オレンジ*/
/*オレンジ*/
/*灰色*/
/*ベージュ*/
/*薄い緑*/
/*灰色*/
/*灰色*/
/*薄い緑*/
/*薄い緑*/
/*薄い青*/
/*ピンク*/
/*灰色*/
/*緑*/
/*灰色*/
/*灰色*/
/*影透過*/
/*緑*/
/*茶色*/
/*影*/
/*茶色*/
/*鶯色*/
/*水色*/
/*紫色*/
/*肌色*/
/*水色*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@font-face {
  font-family: "robotoslab_regular";
  src: url(../font/RobotoSlab-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenmarugothic_regular";
  src: url(../font/ZenMaruGothic-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenmarugothic_medium";
  src: url(../font/ZenMaruGothic-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenmarugothic_bold";
  src: url(../font/ZenMaruGothic-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
/*共通モジュール*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* ----------------------------------------------------------------------------------
モジュール　_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;
}

/* 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: 768px), 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: 768px), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
/*ハンバーガー*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.main_nav_sp {
  width: 100%;
}
.main_nav_sp .drawr {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 0 2rem 0;
  margin: 0 0 0 0;
  z-index: 999999999999;
  background-color: #FFFFFF;
  overflow-x: hidden;
  overflow: auto;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.main_nav_sp .drawr::-webkit-scrollbar {
  display: none;
}
.main_nav_sp .drawr ul.hbg {
  list-style-type: none;
  width: 90%;
  margin: 20vw auto 20vw auto;
}
.main_nav_sp .drawr ul.hbg li {
  width: 100%;
  text-align: center;
}
.main_nav_sp .drawr ul.hbg li.treatment:hover {
  cursor: pointer;
  cursor: hand;
}
.main_nav_sp .drawr ul.hbg li a {
  color: #333333;
  font-family: "notosansjp_medium";
  font-size: 1.8rem;
  text-decoration: none;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  line-height: 140%;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub5 {
  display: none;
  width: 100%;
  list-style-type: none;
  background-color: #F39800;
  margin: 0;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1.open_nav, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2.open_nav, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3.open_nav, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub5.open_nav {
  display: block;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li a, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li a, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li a, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub5 li a {
  color: #FFFFFF;
  border-bottom: none;
  text-align: center;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li a::after, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li a::after, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li a::after, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub5 li a::after {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li a br, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li a br, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li a br, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub5 li a br {
  display: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li a span, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li a span, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li a span, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub5 li a span {
  display: none;
}
.main_nav_sp .drawr ul.hbg li.clinic_hbg a::after, .main_nav_sp .drawr ul.hbg li.treatment_hbg a::after, .main_nav_sp .drawr ul.hbg li.disease_hbg a::after, .main_nav_sp .drawr ul.hbg li.visitor_hbg a::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 1.2rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.open_clinic a::after, .main_nav_sp .drawr ul.hbg li.open_treatment a::after, .main_nav_sp .drawr ul.hbg li.open_disease a::after, .main_nav_sp .drawr ul.hbg li.open_visitor a::after {
  font-size: 1.2rem;
  margin: 0 0 0 0.5rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.main_nav_sp .drawr.closeNav {
  display: none !important;
}

@media screen and (min-width: 768px), print {
  .main_nav_sp {
    display: none;
  }
}
.toggle {
  display: none !important;
  height: 0;
}

.toggle-label {
  cursor: pointer;
  display: block;
  width: 14%;
  height: 10vw;
  padding: 0 0 0.5vw 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.toggle-label:active {
  -webkit-tap-highlight-color: transparent;
}

.toggle-label {
  cursor: pointer;
  width: 100%;
}

.toggle-label .toggle-icon,
.toggle-label .toggle-icon:before,
.toggle-label .toggle-icon:after {
  position: relative;
  display: block;
  top: 50%;
  left: 50%;
  height: 3px;
  width: 28px;
  background: #FFFFFF;
  content: "";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.toggle-label .toggle-text {
  position: relative;
  display: block;
  top: calc(100% - 10px);
  height: 14px;
  color: #FFFFFF;
  text-align: center;
}

.toggle-label .toggle-text:before {
  position: absolute;
  width: 100%;
  left: 0;
  content: "MENU";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  visibility: visible;
  opacity: 1;
  font-family: "ebgaramond_regular";
  font-size: 1rem;
}

.toggle-label .toggle-text:after {
  position: absolute;
  width: 100%;
  left: 0;
  content: "CLOSE";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  visibility: hidden;
  opacity: 0;
  font-family: "ebgaramond_regular";
  font-size: 1rem;
  color: #ffffff;
}

.toggle-label .toggle-icon {
  -webkit-transform: translate3d(-50%, -5px, 0);
          transform: translate3d(-50%, -5px, 0);
}

.toggle-label .toggle-icon:before {
  -webkit-transform: translate3d(-50%, -11.5px, 0);
          transform: translate3d(-50%, -11.5px, 0);
}

.toggle-label .toggle-icon:after {
  -webkit-transform: translate3d(-50%, 5px, 0);
          transform: translate3d(-50%, 5px, 0);
}

.toggle:checked ~ .toggle-label .toggle-icon {
  background-color: transparent;
}

.toggle:checked ~ .toggle-label .toggle-icon:before,
.toggle:checked ~ .toggle-label .toggle-icon:after {
  top: 0;
}

.toggle:checked ~ .toggle-label .toggle-icon:before {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 1.5px;
  background: #ffffff;
}

.toggle:checked ~ .toggle-label .toggle-icon:after {
  -webkit-transform: translateX(-50%) translateY(-10px) rotate(-45deg);
          transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  top: 8.5px;
  background: #ffffff;
}

.toggle:checked ~ .toggle-label .toggle-text:before {
  visibility: hidden;
  opacity: 0;
}

.toggle:checked ~ .toggle-label .toggle-text:after {
  visibility: visible;
  opacity: 1;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 15%;
  max-width: 15%;
  position: fixed;
  cursor: pointer;
  right: 2%;
  top: 2vw;
  z-index: 99999999999;
  padding: 0 0 0.6rem 0;
  background-color: #3C9664;
  border-radius: 0.3rem;
  height: 14vw;
}

/*見出し*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
h1 {
  margin: 0;
}

h2.top_title {
  text-align: center;
  margin: 0;
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 2.3rem;
  line-height: 140%;
  color: #3C9664;
  margin: 0;
}
h2.top_title span {
  font-family: "robotoslab_regular";
  font-weight: normal;
  font-size: 1.2rem;
  color: #4BC033;
  display: block;
  line-height: 100%;
}
h2.low {
  text-align: center;
  margin: 3rem 0 2rem 0;
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 2.3rem;
  color: #3C9664;
  line-height: 120%;
  border-bottom: #3C9664 2px solid;
  padding: 0 0 0.6rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h2.low::before {
  content: "";
  width: 6rem;
  height: 4rem;
  display: block;
  background: url("../img/icon_h2.svg") no-repeat;
  background-size: contain;
  margin: 0 auto 0.5rem auto;
}
h2.first {
  margin: 0 0 2rem 0;
}

h3.low {
  color: #4BC033;
  background-color: #FEF5E5;
  font-family: "zenmarugothic_bold";
  font-size: 2.1rem;
  font-weight: normal;
  text-align: left;
  padding: 1rem 1rem 1rem 3.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.8rem;
  margin: 2rem 0 1.5rem 0;
  line-height: 120%;
  position: relative;
}
h3.low::before {
  position: absolute;
  top: 1.3rem;
  left: 0.8rem;
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("../img/icon_h3.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
h3.flow {
  font-family: "notosansjp_medium";
  font-size: 2.1rem;
  font-weight: normal;
  color: #3C9664;
  margin: 0 0 1rem 0;
}
h3.flow span {
  font-size: 2.2rem;
  background-color: #3C9664;
  color: #ffffff;
  padding: 0.6rem 0.6rem 0.7rem 0.7rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  line-height: 100%;
  margin: 0 1rem 0 0;
}
h3.low_h4 {
  color: #666666;
  font-family: "zenmarugothic_bold";
  font-size: 2rem;
  font-weight: bold;
  padding: 0 0 1rem 0.1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2rem 0 1.5rem 0;
  line-height: 120%;
  position: relative;
}
h3.low_h4::before {
  content: "";
  width: 100%;
  height: 3px;
  border-bottom: #EAE7E4 3px solid;
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: 1;
}
h3.low_h4::after {
  content: "";
  width: 30%;
  height: 3px;
  border-bottom: #F39800 3px solid;
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: 2;
}
h3.first {
  margin: 0 0 1.5rem 0;
}

h4.low {
  color: #666666;
  font-family: "zenmarugothic_bold";
  font-size: 2rem;
  font-weight: bold;
  padding: 0 0 1rem 0.1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2rem 0 1.5rem 0;
  line-height: 120%;
  position: relative;
}
h4.low::before {
  content: "";
  width: 100%;
  height: 3px;
  border-bottom: #EAE7E4 3px solid;
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: 1;
}
h4.low::after {
  content: "";
  width: 30%;
  height: 3px;
  border-bottom: #F39800 3px solid;
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: 2;
}
h4.first {
  margin: 0 0 1rem 0;
}

h5.low {
  color: #706551;
  font-family: "notosansjp_medium";
  font-size: 2rem;
  font-weight: normal;
  margin: 1.8rem 0 1.5rem 0;
  padding: 0 0 0 2rem;
  background: url(../img/h5_bg.svg) no-repeat;
  background-size: 1.5rem;
  background-position: left center;
}
h5.first {
  margin: 0 0 1rem 0;
}

p {
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
  letter-spacing: 0.05em;
}
p.ajs {
  margin: 0 0 1rem 0;
}

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title {
    text-align: center;
    margin: 0;
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 3.4rem;
    line-height: 180%;
    letter-spacing: 0.1em;
    color: #3C9664;
    margin: 0;
  }
  h2.top_title span {
    font-family: "robotoslab_regular";
    font-weight: normal;
    font-size: 1.6rem;
    color: #4BC033;
    display: block;
    line-height: 100%;
    letter-spacing: 0;
  }
  h2.top_title br {
    display: none;
  }
  h2.low {
    text-align: center;
    margin: 60px 0 20px 0;
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 3.4rem;
    color: #3C9664;
    line-height: 120%;
    border-bottom: #3C9664 2px solid;
    padding: 0 0 11px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  h2.low::before {
    content: "";
    width: 62px;
    height: 52px;
    display: block;
    background: url("../img/icon_h2.svg") no-repeat;
    background-size: contain;
    margin: 0 auto 15px auto;
  }
  h2.first {
    margin: 0 0 20px 0;
  }
  h3.low {
    color: #4BC033;
    background-color: #FEF5E5;
    font-family: "zenmarugothic_bold";
    font-size: 3rem;
    font-weight: normal;
    text-align: left;
    padding: 15px 15px 15px 55px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 6px;
    margin: 50px 0 20px 0;
    line-height: 120%;
    position: relative;
  }
  h3.low::before {
    position: absolute;
    top: 22px;
    left: 20px;
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("../img/icon_h3.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  h3.flow {
    font-family: "notosansjp_medium";
    font-size: 2.4rem;
    font-weight: normal;
    color: #3C9664;
    margin: 0 0 2px 0;
  }
  h3.flow span {
    font-size: 2.6rem;
    background-color: #3C9664;
    color: #ffffff;
    padding: 12px 10px 13px 9px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: inline-block;
    line-height: 100%;
    margin: 0 16px 0 0;
  }
  h3.low_h4 {
    color: #666666;
    font-family: "zenmarugothic_bold";
    font-size: 2.8rem;
    font-weight: bold;
    padding: 0 0 10px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 30px 0 20px 0;
    line-height: 120%;
    position: relative;
  }
  h3.low_h4::before {
    content: "";
    width: 100%;
    height: 3px;
    border-bottom: #EAE7E4 3px solid;
    position: absolute;
    bottom: 3px;
    left: 0;
    z-index: 1;
  }
  h3.low_h4::after {
    content: "";
    width: 140px;
    height: 3px;
    border-bottom: #F39800 3px solid;
    position: absolute;
    bottom: 3px;
    left: 0;
    z-index: 2;
  }
  h3.first {
    margin: 0 0 20px 0;
  }
  h4.low {
    color: #666666;
    font-family: "zenmarugothic_bold";
    font-size: 2.8rem;
    font-weight: bold;
    padding: 0 0 10px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 30px 0 20px 0;
    line-height: 120%;
    position: relative;
  }
  h4.low::before {
    content: "";
    width: 100%;
    height: 3px;
    border-bottom: #EAE7E4 3px solid;
    position: absolute;
    bottom: 3px;
    left: 0;
    z-index: 1;
  }
  h4.low::after {
    content: "";
    width: 140px;
    height: 3px;
    border-bottom: #F39800 3px solid;
    position: absolute;
    bottom: 3px;
    left: 0;
    z-index: 2;
  }
  h4.first {
    margin: 0 0 20px 0;
  }
  h5.low {
    color: #706551;
    font-family: "notosansjp_medium";
    font-size: 2rem;
    font-weight: normal;
    margin: 20px 0 20px 0;
    padding: 0 0 0 24px;
    background: url(../img/h5_bg.svg) no-repeat;
    background-size: 13px;
    background-position: left center;
  }
  h5.first {
    margin: 0 0 20px 0;
  }
  p {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
    line-height: 160%;
    letter-spacing: 0.05em;
  }
  p.ajs {
    margin: 0 0 10px 0;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
table.timetable {
  padding: 0;
  margin: 0;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  border-collapse: separate;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.7rem;
  line-height: 140%;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
}
table.timetable tr th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*font-size: 1.1rem;*/
  font-size: 1.6rem;
  font-weight: normal;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #ffffff;
  background-color: #4BC033;
  width: 10%;
}
table.timetable tr th.time {
  letter-spacing: 0.1em;
}
table.timetable tr th:first-child {
  border-left: #4BC033 1px solid;
  border-right: #ffffff 1px solid;
  border-top-left-radius: 0.7rem;
}
table.timetable tr th:last-child {
  border-right: #4BC033 1px solid;
  border-top-right-radius: 0.7rem;
}
table.timetable tr td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  /*font-size: 1.1rem;*/
  font-size: 1.6rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #333333;
  background-color: #ffffff;
  border-bottom: #4BC033 1px solid;
}
table.timetable tr td i {
  /*font-size: 1.1rem;*/
  font-size: 1.6rem;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
}
table.timetable tr td:first-child {
  border-left: #4BC033 1px solid;
  border-right: #4BC033 1px solid;
}
table.timetable tr td:last-child {
  border-right: #4BC033 1px solid;
}
table.timetable tr:last-child td:first-child {
  border-bottom-left-radius: 0.7rem;
}
table.timetable tr:last-child td:last-child {
  border-bottom-right-radius: 0.7rem;
}
table.timetable caption {
  caption-side: bottom;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  /*font-size: 1.1rem;*/
  font-size: 1.4rem;
  margin: 1.1rem 0 0 0;
  width: 100%;
  color: #333333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
table.timetable caption span {
  background-color: #4BC033;
  color: #ffffff;
  padding: 0.4rem 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0.5rem 0.5rem 0;
  display: inline-block;
  border-radius: 0.5rem;
}

@media screen and (min-width: 768px), print {
  table.timetable {
    padding: 0;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border-collapse: separate;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 12px;
    line-height: 140%;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
  }
  table.timetable tr th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1.8rem;
    font-weight: normal;
    padding: 0;
    vertical-align: middle;
    color: #ffffff;
    background-color: #4BC033;
    width: 10%;
    height: 60px;
    box-sizing: border-box;
  }
  table.timetable tr th.time {
    width: 30%;
    letter-spacing: 0.1em;
  }
  table.timetable tr th:first-child {
    border-left: #4BC033 1px solid;
    border-right: #ffffff 1px solid;
    border-top-left-radius: 12px;
  }
  table.timetable tr th:last-child {
    border-right: #4BC033 1px solid;
    border-top-right-radius: 12px;
  }
  table.timetable tr td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: normal;
    font-size: 1.8rem;
    padding: 0;
    vertical-align: middle;
    color: #333333;
    height: 60px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-bottom: #4BC033 1px solid;
  }
  table.timetable tr td i {
    font-size: 1.8rem;
  }
  table.timetable tr td.time {
    text-align: center;
    font-size: 1.8rem;
  }
  table.timetable tr td:first-child {
    border-left: #4BC033 1px solid;
    border-right: #4BC033 1px solid;
  }
  table.timetable tr td:last-child {
    border-right: #4BC033 1px solid;
  }
  table.timetable caption {
    caption-side: bottom;
    font-family: "zenmarugothic_medium";
    font-size: 1.8rem;
    margin: 8px 0 0 0;
    width: 100%;
    color: #333333;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 180%;
    text-align: left;
  }
  table.timetable caption span {
    background-color: #4BC033;
    color: #ffffff;
    padding: 2px 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 10px 0 0;
    display: inline-block;
    border-radius: 0.5rem;
  }
}
/*テーブル*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
  line-height: 130%;
}
table.low_table caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table tr th {
  width: 40%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  color: #ffffff;
  border-bottom: #ffffff 1px solid;
  background-color: #4BC033;
}
table.low_table tr td {
  width: 60%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #333333;
  border-bottom: #4BC033 1px solid;
  background-color: #ffffff;
}
table.low_table tr td.sub {
  background-color: #ffffff;
}
table.low_table tr:first-child th {
  border-top: #ffffff 1px solid;
}
table.low_table tr:first-child td {
  border-top: #4BC033 1px solid;
}
table.low_table.price_table tr th {
  width: 70%;
  text-align: center;
}
table.low_table.price_table tr td {
  border-right: #4BC033 1px solid;
  width: 30%;
  text-align: right;
}
table.low_table.ajs tr th {
  width: 50%;
  text-align: center;
}
table.low_table.ajs tr td {
  width: 50%;
  text-align: left;
}

@media screen and (min-width: 768px), print {
  table.low_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    line-height: 140%;
  }
  table.low_table caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table tr th {
    width: 40%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    color: #ffffff;
    border-bottom: #ffffff 1px solid;
    background-color: #4BC033;
  }
  table.low_table tr td {
    width: 60%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
    border-bottom: #4BC033 1px solid;
    background-color: #ffffff;
  }
  table.low_table tr td.sub {
    background-color: #ffffff;
  }
  table.low_table tr:first-child th {
    border-top: #ffffff 1px solid;
  }
  table.low_table tr:first-child td {
    border-top: #4BC033 1px solid;
  }
  table.low_table.price_table {
    width: 50%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    line-height: 140%;
  }
  table.low_table.price_table tr th {
    width: 70%;
    text-align: center;
  }
  table.low_table.price_table tr td {
    border-right: #4BC033 1px solid;
    width: 30%;
    text-align: right;
  }
  table.low_table.ajs tr th {
    width: 50%;
    text-align: center;
  }
  table.low_table.ajs tr td {
    width: 50%;
    text-align: center;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide {
  width: 1200px;
  border-collapse: collapse;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
}
table.low_table_slide caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_slide tr th {
  width: 40%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  color: #ffffff;
  border-bottom: #ffffff 1px solid;
  background-color: #4BC033;
}
table.low_table_slide tr td {
  width: 60%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #333333;
  border-bottom: #4BC033 1px solid;
  background-color: #ffffff;
}
table.low_table_slide tr:first-child th {
  border-top: #ffffff 1px solid;
}
table.low_table_slide tr:first-child td {
  border-top: #4BC033 1px solid;
}
table.low_table_slide.course_table tr th {
  color: #333333;
  text-align: center;
  width: 16.6%;
}
table.low_table_slide.course_table tr th:nth-child(1) {
  background-color: #ffffff;
}
table.low_table_slide.course_table tr th:nth-child(2) {
  background-color: #ebf1de;
}
table.low_table_slide.course_table tr th:nth-child(3) {
  background-color: #dce6f1;
}
table.low_table_slide.course_table tr th:nth-child(4) {
  background-color: #e4dfec;
}
table.low_table_slide.course_table tr th:nth-child(5) {
  background-color: #fde9d9;
}
table.low_table_slide.course_table tr th:nth-child(6) {
  background-color: #daeef3;
}
table.low_table_slide.course_table tr td {
  text-align: center;
  width: 16.6%;
}
table.low_table_slide.course_table tr td:nth-child(1) {
  background-color: #ffffff;
}
table.low_table_slide.course_table tr td:nth-child(2) {
  background-color: #ebf1de;
}
table.low_table_slide.course_table tr td:nth-child(3) {
  background-color: #dce6f1;
}
table.low_table_slide.course_table tr td:nth-child(4) {
  background-color: #e4dfec;
}
table.low_table_slide.course_table tr td:nth-child(5) {
  background-color: #fde9d9;
}
table.low_table_slide.course_table tr td:nth-child(6) {
  background-color: #daeef3;
}
table.low_table_slide.price_table2 tr th {
  width: 33.33%;
}
table.low_table_slide.price_table2 tr td {
  width: 33.33%;
  border-right: #4BC033 1px solid;
}
table.low_table_slide.price_table2 tr td:last-child {
  text-align: right;
}
table.low_table_slide.cgrp_table tr th {
  width: 33.33%;
}
table.low_table_slide.cgrp_table tr td {
  width: 33.33%;
}

/*横スライドテーブル用*/
.js-scrollable {
  margin: 0 0 2rem 0;
}

@media screen and (min-width: 768px), print {
  table.low_table_slide {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  table.low_table_slide caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_slide tr th {
    width: 40%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    color: #ffffff;
    border-bottom: #ffffff 1px solid;
    background-color: #4BC033;
  }
  table.low_table_slide tr td {
    width: 60%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
    border-bottom: #4BC033 1px solid;
    background-color: #ffffff;
  }
  table.low_table_slide tr:first-child th {
    border-top: #ffffff 1px solid;
  }
  table.low_table_slide tr:first-child td {
    border-top: #4BC033 1px solid;
  }
  table.low_table_slide.course_table tr th {
    color: #333333;
    text-align: center;
    width: 16.6%;
  }
  table.low_table_slide.course_table tr th:nth-child(1) {
    background-color: #ffffff;
  }
  table.low_table_slide.course_table tr th:nth-child(2) {
    background-color: #ebf1de;
  }
  table.low_table_slide.course_table tr th:nth-child(3) {
    background-color: #dce6f1;
  }
  table.low_table_slide.course_table tr th:nth-child(4) {
    background-color: #e4dfec;
  }
  table.low_table_slide.course_table tr th:nth-child(5) {
    background-color: #fde9d9;
  }
  table.low_table_slide.course_table tr th:nth-child(6) {
    background-color: #daeef3;
  }
  table.low_table_slide.course_table tr td {
    text-align: center;
    width: 16.6%;
  }
  table.low_table_slide.course_table tr td:nth-child(1) {
    background-color: #ffffff;
  }
  table.low_table_slide.course_table tr td:nth-child(2) {
    background-color: #ebf1de;
  }
  table.low_table_slide.course_table tr td:nth-child(3) {
    background-color: #dce6f1;
  }
  table.low_table_slide.course_table tr td:nth-child(4) {
    background-color: #e4dfec;
  }
  table.low_table_slide.course_table tr td:nth-child(5) {
    background-color: #fde9d9;
  }
  table.low_table_slide.course_table tr td:nth-child(6) {
    background-color: #daeef3;
  }
  table.low_table_slide.price_table2 {
    width: 70%;
    margin: 0 auto 20px auto;
  }
  table.low_table_slide.price_table2 tr th {
    width: 33.33%;
  }
  table.low_table_slide.price_table2 tr td {
    width: 33.33%;
    border-right: #4BC033 1px solid;
  }
  table.low_table_slide.price_table2 tr td:last-child {
    text-align: right;
  }
  table.low_table_slide.cgrp_table tr th {
    width: 33.33%;
  }
  table.low_table_slide.cgrp_table tr td {
    width: 33.33%;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
table.low_table_spblock caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_spblock tr th {
  width: 100%;
  padding: 1rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #ffffff;
  background-color: #4BC033;
  border-bottom: #ffffff 1px solid;
}
table.low_table_spblock tr td {
  width: 100%;
  padding: 1rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #333333;
  background-color: #ffffff;
  border-bottom: #4BC033 1px solid;
}
table.low_table_spblock tr td span {
  color: #4BC033;
  font-weight: bold;
}
table.low_table_spblock tr td span a {
  color: #4BC033;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock tr td.table_tel {
  padding: 1.2rem 0.5rem;
}
table.low_table_spblock tr td.table_tel span {
  color: #4BC033;
  font-weight: normal;
  font-family: "jost_regular";
  font-size: 2.4rem;
}
table.low_table_spblock tr td.table_tel span a {
  color: #4BC033;
  font-weight: normal;
  font-family: "jost_regular";
  text-decoration: none;
}
table.low_table_spblock tr:first-child th {
  border-top: #ffffff 1px solid;
}
table.low_table_spblock.price_table tr td {
  text-align: right;
}
table.low_table_spblock.price_table2 tr td {
  text-align: right;
  border: #4BC033 1px solid;
}
table.low_table_spblock.price_table3 tr td {
  text-align: right;
  border: #4BC033 1px solid;
}
table.low_table_spblock.price_table3 tr td.left {
  text-align: left;
}
table.low_table_spblock.price_table3 tr td.price {
  border-top: none;
}

@media screen and (min-width: 768px), print {
  table.low_table_spblock {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  table.low_table_spblock caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_spblock tr th {
    width: 30%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #ffffff;
    background-color: #4BC033;
    border-bottom: #ffffff 1px solid;
  }
  table.low_table_spblock tr td {
    width: 70%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #333333;
    background-color: #ffffff;
    border-bottom: #4BC033 1px solid;
  }
  table.low_table_spblock tr td span {
    color: #4BC033;
    font-weight: bold;
  }
  table.low_table_spblock tr td span a {
    color: #4BC033;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock tr td.table_tel {
    padding: 20px;
  }
  table.low_table_spblock tr td.table_tel span {
    color: #4BC033;
    font-weight: normal;
    font-family: "jost_regular";
    font-size: 4rem;
  }
  table.low_table_spblock tr td.table_tel span a {
    color: #4BC033;
    font-weight: normal;
    font-family: "jost_regular";
    text-decoration: none;
  }
  table.low_table_spblock tr:first-child th {
    border-top: #ffffff 1px solid;
  }
  table.low_table_spblock tr:first-child td {
    border-top: #4BC033 1px solid;
  }
  table.low_table_spblock.price_table tr td {
    text-align: right;
  }
  table.low_table_spblock.price_table2 {
    width: 70%;
    margin: 0 auto 20px auto;
  }
  table.low_table_spblock.price_table2 tr th {
    width: 40%;
  }
  table.low_table_spblock.price_table2 tr td {
    width: 60%;
    text-align: right;
    border: #4BC033 1px solid;
  }
  table.low_table_spblock.price_table3 {
    width: 70%;
    margin: 0 auto 20px auto;
  }
  table.low_table_spblock.price_table3 tr th {
    width: 33.33%;
  }
  table.low_table_spblock.price_table3 tr td {
    width: 33.33%;
    text-align: right;
    border: #4BC033 1px solid;
  }
  table.low_table_spblock.price_table3 tr td.left {
    text-align: left;
  }
  table.low_table_spblock.price_table3 tr td.price {
    border-top: #4BC033 1px solid;
  }
}
/*画像*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.img_right {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_right img {
  width: 70%;
  height: auto;
}

.img_center {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_center img {
  width: 70%;
  height: auto;
}

.img_center2 {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_center2 img {
  width: 100%;
  height: auto;
}

.img_center_three {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_center_three img {
  width: 70%;
  height: auto;
  margin: 0 0 1rem 0;
}

@media screen and (min-width: 768px), print {
  .img_right {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right img {
    width: 425px;
    height: auto;
  }
  .img_center {
    float: none;
    margin: 0 0 20px 0;
    text-align: center;
  }
  .img_center img {
    width: auto;
    height: auto;
  }
  .img_center2 {
    float: none;
    margin: 0 0 20px 0;
    text-align: center;
  }
  .img_center2 img {
    width: auto;
    height: auto;
  }
  .img_center_three {
    margin: 0 0 20px 0;
    text-align: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .img_center_three img {
    width: 300px;
    height: auto;
    margin: 0 0 0 0;
  }
}
/*リスト*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*標準 disc*/
ul.list_normal {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
ul.list_normal li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}

/*標準2列 disc*/
ul.list_normal_two {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
ul.list_normal_two li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}

/*標準3列 disc*/
ul.list_normal_three {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
ul.list_normal_three li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}

/*標準 maru*/
ul.list_maru {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
ul.list_maru li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.5rem;
  background-size: 1rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}
ul.list_maru.ajs {
  margin: 0 0 1rem 0;
}

/*標準2列 maru*/
ul.list_maru_two {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_two li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.5rem;
  background-size: 1rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}

/*標準3列 maru*/
ul.list_maru_three {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_three li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.5rem;
  background-size: 1rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}

/*横 maru*/
ul.list_maru_side {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_side li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.5rem;
  background-size: 1rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}

@media screen and (min-width: 768px), print {
  ul.list_normal {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  ul.list_normal li {
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準2列 disc*/
  ul.list_normal_two {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_normal_two li {
    width: 45%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準3列 disc*/
  ul.list_normal_three {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_normal_three li {
    width: 30%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準 maru*/
  ul.list_maru {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  ul.list_maru li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 7px;
    background-size: 10px;
    margin: 0 0 10px 0;
    padding: 0 0 0 22px;
  }
  ul.list_maru.ajs {
    margin: 0 0 10px 0;
  }
  /*標準2列 maru*/
  ul.list_maru_two {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_two li {
    width: 45%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 7px;
    background-size: 10px;
    margin: 0 0 10px 0;
    padding: 0 0 0 22px;
  }
  /*標準3列 maru*/
  ul.list_maru_three {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_three li {
    width: 30%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 7px;
    background-size: 10px;
    margin: 0 0 10px 0;
    padding: 0 0 0 22px;
  }
  /*横 maru*/
  ul.list_maru_side {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_side li {
    width: auto;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 7px;
    background-size: 10px;
    margin: 0 20px 10px 0;
    padding: 0 0 0 22px;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/*略歴*/
dl.bio_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.bio_list dt {
  width: 30%;
  margin: 0 0 1rem 0;
}
dl.bio_list dd {
  width: 70%;
  margin: 0 0 1rem 0;
}

/*数字*/
dl.num_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.num_list dt {
  width: 6%;
  margin: 0 0 1rem 0;
}
dl.num_list dd {
  width: 94%;
  margin: 0 0 1rem 0;
}

/*記号*/
dl.symbol_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.symbol_list dt {
  width: 6%;
  margin: 0 0 1rem 0;
}
dl.symbol_list dd {
  width: 94%;
  margin: 0 0 1rem 0;
}

/*タイトルボックス*/
dl.title_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
}
dl.title_box dt {
  width: 100%;
  margin: 0;
  background-color: #4BC033;
  color: #ffffff;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #ffffff 1px solid;
  border-right: #ffffff 1px solid;
  border-bottom: #ffffff 1px solid;
}
dl.title_box dt:first-child {
  border-top: #ffffff 1px solid;
}
dl.title_box dd {
  width: 100%;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #ffffff 1px solid;
  border-right: #ffffff 1px solid;
  border-bottom: #ffffff 1px solid;
}

@media screen and (min-width: 768px), print {
  /*略歴*/
  dl.bio_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1100px;
  }
  dl.bio_list dt {
    width: 100px;
    margin: 0 0 1rem 0;
  }
  dl.bio_list dd {
    width: 1100px;
    margin: 0 0 1rem 0;
  }
  /*数字*/
  dl.num_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1000px;
  }
  dl.num_list dt {
    width: 20px;
    margin: 0 0 10px 0;
  }
  dl.num_list dd {
    width: 980px;
    margin: 0 0 10px 0;
  }
  /*数字*/
  dl.symbol_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1000px;
  }
  dl.symbol_list dt {
    width: 30px;
    margin: 0 0 10px 0;
  }
  dl.symbol_list dd {
    width: 970px;
    margin: 0 0 10px 0;
  }
  /*タイトルボックス*/
  dl.title_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  dl.title_box dt {
    width: 100%;
    margin: 0;
    background-color: #4BC033;
    color: #ffffff;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #ffffff 1px solid;
    border-right: #ffffff 1px solid;
    border-bottom: #ffffff 1px solid;
  }
  dl.title_box dt:first-child {
    border-top: #ffffff 1px solid;
  }
  dl.title_box dd {
    width: 100%;
    margin: 0;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #ffffff 1px solid;
    border-right: #ffffff 1px solid;
    border-bottom: #ffffff 1px solid;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用
----------------------------------------------------------- */
/*矢印*/
.arrow {
  width: 0;
  height: 0;
  border: none;
  border-left: 6rem solid transparent;
  border-right: 6rem solid transparent;
  border-top: 2.5rem solid #4BC033;
  text-align: center;
  display: block;
  margin: 2rem auto;
}

/*強調*/
.emphasis {
  background-color: #FEF5E5;
  padding: 1.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
  margin: 0 0 2rem 0;
}
.emphasis p.mb_none {
  margin: 0;
}
.emphasis ul.mb_none {
  margin: 0;
}

/*二列*/
/*下層電話*/
.low_tel {
  margin: 0 0 1rem 0;
}
.low_tel span {
  font-size: 2.4rem;
  font-weight: bold;
}
.low_tel span i {
  font-size: 2.4rem;
}
.low_tel span a {
  text-decoration: none;
  color: #333333;
}

.text_tel span a {
  color: #4BC033;
}

.text_bold {
  font-weight: bold;
}

.text_underline {
  text-decoration: underline;
}

.text_red {
  color: #ff0000;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

@media screen and (min-width: 768px), print {
  /*矢印*/
  .arrow {
    width: 0;
    height: 0;
    border: none;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-top: 26px solid #4BC033;
    text-align: center;
    display: block;
    margin: 20px auto;
  }
  /*二列*/
  .two_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 1100px;
  }
  .two_box section {
    width: 48%;
  }
  /*強調*/
  .emphasis {
    background-color: #FEF5E5;
    padding: 30px 35px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 20px;
    margin: 0 0 20px 0;
  }
  .emphasis p.mb_none {
    margin: 0;
  }
  .emphasis ul.mb_none {
    margin: 0;
  }
  /*下層電話*/
  .low_tel {
    margin: 0 0 20px 0;
  }
  .low_tel span {
    font-size: 4rem;
    font-weight: bold;
  }
  .low_tel span i {
    font-size: 4rem;
  }
  .low_tel span a {
    text-decoration: none;
    color: #333333;
  }
  .text_tel span a {
    color: #4BC033;
  }
  .text_bold {
    font-weight: bold;
  }
  .text_underline {
    text-decoration: underline;
  }
  .text_red {
    color: #ff0000;
  }
  .text_center {
    text-align: center;
  }
  .text_right {
    text-align: right;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
.pankuzu_box {
  width: 100%;
  background-color: #E9F0D8;
  padding: 2rem 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pankuzu_box ul.pankuzu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  width: 96%;
  margin: 0 auto 0 auto;
}
.pankuzu_box ul.pankuzu_list li::after {
  content: "＞";
  margin: 0 0.5rem;
}
.pankuzu_box ul.pankuzu_list li a {
  font-family: "notosansjp_medium";
  font-size: 1.6rem;
  color: #333333;
  text-decoration: none;
}
.pankuzu_box ul.pankuzu_list li:last-child:after {
  content: "";
  margin: 0;
}

@media screen and (min-width: 768px), print {
  .pankuzu_box {
    width: 100%;
    background-color: #E9F0D8;
    padding: 28px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .pankuzu_box ul.pankuzu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    width: 1100px;
    margin: 0 auto 0 auto;
  }
  .pankuzu_box ul.pankuzu_list li::after {
    content: "＞";
    margin: 0 10px;
  }
  .pankuzu_box ul.pankuzu_list li a {
    font-family: "notosansjp_medium";
    font-size: 1.8rem;
    color: #333333;
    text-decoration: none;
  }
  .pankuzu_box ul.pankuzu_list li:last-child:after {
    content: "";
    margin: 0;
  }
}
/* -----------------------------------------------------------
　ライトボックス
----------------------------------------------------------- */
.lightbox {
  z-index: 9999999 !important;
}

.lightbox_frame {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lightbox_frame .img_box {
  width: 48%;
  margin: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lightbox_frame .img_box a {
  text-decoration: none;
  width: 100%;
}
.lightbox_frame .img_box a img {
  width: 100%;
}
.lightbox_frame .img_box a span {
  display: block;
  text-align: center;
  color: #333333;
  font-size: 1.4rem;
  margin: 1.5rem 0 0 0;
  font-weight: bold;
}

.lightbox_frame2 {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lightbox_frame2 .img_box {
  width: 48%;
  margin: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lightbox_frame2 .img_box a {
  text-decoration: none;
  width: 100%;
}
.lightbox_frame2 .img_box a img {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .lightbox {
    z-index: 9999999 !important;
  }
  .lightbox_frame {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lightbox_frame .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lightbox_frame .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame .img_box a img {
    width: 380px;
  }
  .lightbox_frame .img_box a span {
    display: block;
    text-align: center;
    color: #333333;
    font-size: 2rem;
    margin: 30px 0 0 0;
    font-weight: bold;
  }
  .lightbox_frame2 {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lightbox_frame2 .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lightbox_frame2 .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame2 .img_box a img {
    width: 380px;
  }
}
/* -----------------------------------------------------------
　バナー
----------------------------------------------------------- */
.banner_01 {
  width: 96%;
  margin: 0 auto 2rem auto;
  border: #3C9664 2px solid;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  background-color: #4BC033;
  padding: 1rem;
  text-decoration: none;
  color: #333333;
}
.banner_01 img {
  width: 70%;
  display: block;
  margin: 0 auto 1rem auto;
}
.banner_01 .banner_title {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #333333;
  margin: 0 0 1rem 0;
}
.banner_01 .banner_text {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  font-weight: normal;
  color: #333333;
  margin: 0 0 1rem 0;
  line-height: 140%;
}
.banner_01 ul {
  color: #333333;
}

@media screen and (min-width: 768px), print {
  .banner_01 {
    width: 800px;
    height: 300px;
    margin: 0 auto 40px auto;
    border: #3C9664 2px solid;
    border-radius: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    background-color: #4BC033;
    padding: 20px;
    text-decoration: none;
    color: #333333;
    position: relative;
  }
  .banner_01 img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
    display: block;
    margin: 0;
  }
  .banner_01 .banner_title {
    position: absolute;
    top: 20px;
    left: 240px;
    display: block;
    text-align: left;
    font-size: 3rem;
    font-weight: bold;
    color: #333333;
    margin: 0 0 0 0;
  }
  .banner_01 .banner_text {
    position: absolute;
    top: 80px;
    left: 240px;
    display: block;
    text-align: left;
    font-size: 1.6rem;
    font-weight: normal;
    color: #333333;
    margin: 0 0 1rem 0;
    line-height: 160%;
    width: 500px;
  }
  .banner_01 ul {
    position: absolute;
    top: 80px;
    left: 240px;
  }
}
/* -----------------------------------------------------------
　リンク、ボタン
----------------------------------------------------------- */
.low_link_text {
  color: #4BC033;
}

.low_button {
  width: auto;
  height: auto;
  background-color: #ffffff;
  color: #333333;
  text-decoration: none;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.6rem;
  padding: 1rem 6rem 1rem 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
  border: #4BC033 1px solid;
  display: inline-block;
}
.low_button i {
  color: #3C9664;
  font-size: 2.2rem;
  margin: 0 1rem 0 0;
}
.low_button i.icon-icon07 {
  font-size: 2.4rem;
}
.low_button {
  position: relative;
}
.low_button::after {
  content: "";
  width: 4rem;
  height: 100%;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: 30%;
  background-position: center center;
  background-color: #4BC033;
  position: absolute;
  top: 0;
  right: 0;
}

ul.link_list {
  list-style-type: none;
}
ul.link_list li {
  margin: 0 0 1rem 0;
}
ul.link_list li a {
  display: inline-block;
  background-color: #4BC033;
  color: #ffffff;
  text-decoration: none;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.6rem;
  padding: 0.8rem 3rem 0.8rem 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2rem;
  position: relative;
}
ul.link_list li a::before {
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 1rem;
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/icon_arrow2.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (min-width: 768px), print {
  .low_link_text {
    color: #4BC033;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_link_text:hover {
    color: #F09600;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button {
    width: auto;
    height: 60px;
    min-height: 60px;
    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    padding: 15px 115px 15px 69px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 6px;
    border: #4BC033 1px solid;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    letter-spacing: 0.08em;
  }
  .low_button i {
    color: #3C9664;
    font-size: 2.7rem;
    margin: 0 3px 0 0;
  }
  .low_button i.icon-icon07 {
    font-size: 3.5rem;
    margin: 0 0 0 -6px;
  }
  .low_button {
    position: relative;
  }
  .low_button::after {
    content: "";
    width: 60px;
    height: 60px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background: url("../img/icon_arrow.svg") no-repeat;
    background-size: 30%;
    background-position: center center;
    background-color: #4BC033;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: #F09600 1px solid;
  }
  .low_button:hover::after {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #F09600;
  }
  ul.link_list {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.link_list li {
    width: auto;
    margin: 0 15px 16px 0;
  }
  ul.link_list li a {
    display: inline-block;
    background-color: #4BC033;
    color: #ffffff;
    text-decoration: none;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.6rem;
    padding: 17px 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 3rem;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  ul.link_list li a::before {
    position: absolute;
    top: calc(50% - 8px);
    right: 18px;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("../img/icon_arrow2.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  ul.link_list li a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #F09600;
  }
}
/*-----------------------------------------------------------
 よくある質問
----------------------------------------------------------- */
dl.qabox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 0;
  line-height: 160%;
  width: 100%;
}
dl.qabox dt {
  width: 6%;
  margin: 0 0 1rem 0;
  font-weight: bold;
  font-family: "zenoldmincho_blank";
  font-size: 1.5rem;
}
dl.qabox dt.question {
  color: #3C9664;
  font-family: "zenoldmincho_blank";
  font-size: 1.5rem;
}
dl.qabox dd {
  width: 94%;
  margin: 0 0 1rem 0;
}
dl.qabox dd.question {
  color: #3C9664;
  font-weight: bold;
}
dl.qabox dd.answer {
  margin: 0 0 3rem 0;
}

@media screen and (min-width: 768px), print {
  dl.qabox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 0;
    line-height: 160%;
    width: 1000px;
  }
  dl.qabox dt {
    width: 20px;
    margin: 0 0 10px 0;
    font-weight: bold;
    font-family: "zenoldmincho_blank";
    font-size: 1.7rem;
  }
  dl.qabox dt.question {
    color: #3C9664;
    font-family: "zenoldmincho_blank";
    font-size: 1.7rem;
  }
  dl.qabox dt.answer {
    margin: 0 0 50px 0;
  }
  dl.qabox dd {
    width: 980px;
    margin: 0 0 10px 0;
  }
  dl.qabox dd.question {
    color: #3C9664;
    font-weight: bold;
  }
  dl.qabox dd.answer {
    margin: 0 0 50px 0;
  }
}
/*下層*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　院長紹介
----------------------------------------------------------- */
.img_doctor {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_doctor img {
  width: 70%;
  height: auto;
}

.doctor_name {
  text-align: right;
}

@media screen and (min-width: 768px), print {
  .img_doctor {
    float: right;
    margin: 0 0 20px 20px;
    text-align: right;
  }
  .img_doctor img {
    width: 400px;
    height: auto;
  }
  .doctor_name {
    text-align: right;
  }
}
/* -----------------------------------------------------------
　医院紹介
----------------------------------------------------------- */
.machine_box {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.machine_box figure {
  width: 100%;
  margin: 0 0 4rem 0;
}
.machine_box figure figcaption {
  text-align: center;
  font-weight: normal;
  margin: 0 0 0.5rem 0;
  font-size: 1.6rem;
}
.machine_box figure img {
  width: 100%;
  margin: 0 0 1rem 0;
}

.machine_box2 {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.machine_box2 section {
  width: 100%;
  margin: 0 0 4rem 0;
}
.machine_box2 section h3 {
  margin: 0 0 1rem 0;
}
.machine_box2 section img {
  width: 100%;
  margin: 0 0 1rem 0;
}

.clinic_philosophy {
  background-color: #F39800;
  padding: 1.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.clinic_philosophy p.mb_none {
  margin: 0;
}
.clinic_philosophy ul {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 2rem;
  margin: 0 0 0 0;
}
.clinic_philosophy ul li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0 top 1rem;
  background-size: 1rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.5rem;
}
.clinic_philosophy ul li:last-child {
  margin: 0 0 1rem 0;
}

/*スライダー*/
.slider-pro {
  margin: 0 auto 2rem auto !important;
}
.slider-pro p.sp-layer {
  font-size: 2.4rem !important;
}

@media screen and (min-width: 768px), print {
  .machine_box {
    width: 100%;
    margin: 80px 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .machine_box figure {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .machine_box figure figcaption {
    text-align: center;
    font-weight: normal;
    margin: 0 0 10px 0;
    font-size: 2.2rem;
  }
  .machine_box figure img {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .machine_box2 {
    width: 100%;
    margin: 80px 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .machine_box2 section {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .machine_box2 section h3 {
    margin: 0 0 20px 0;
  }
  .machine_box2 section img {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .clinic_philosophy {
    background-color: #F39800;
    padding: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto 30px auto;
    width: 750px;
  }
  .clinic_philosophy p.mb_none {
    margin: 0;
  }
  .clinic_philosophy ul.list_maru {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 2.6rem;
    margin: 0 auto 0 auto;
  }
  .clinic_philosophy ul.list_maru li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 10px;
    background-size: 16px;
    margin: 0 0 10px 0;
    padding: 0 0 0 28px;
  }
  .clinic_philosophy ul.list_maru li:last-child {
    margin: 0;
  }
  /*スライダー*/
  .slider-pro {
    margin: 0 auto 30px auto !important;
  }
  .slider-pro p.sp-layer {
    font-size: 2rem !important;
  }
}
/* -----------------------------------------------------------
　初めての方へ
----------------------------------------------------------- */
.flow_box {
  background-color: #ffffff;
  border: #E2EFC6 3px solid;
  padding: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
  margin: 0 0 1.5rem 0;
}
.flow_box p {
  text-align: justify;
  line-height: 160%;
}
.flow_box p span {
  font-weight: bold;
  font-size: 1.6rem;
}
.flow_box p span.text_bold {
  font-size: 1.6rem;
}
.flow_box p.mb_none {
  margin: 0 0 0 0;
}

@media screen and (min-width: 768px), print {
  .flow_box {
    background-color: #ffffff;
    border: #E2EFC6 3px solid;
    padding: 20px 24px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 20px;
    margin: 0 0 30px 0;
  }
  .flow_box p {
    text-align: justify;
    line-height: 220%;
  }
  .flow_box p span {
    font-weight: bold;
    font-size: 2rem;
  }
  .flow_box p span.text_bold {
    font-size: 1.8rem;
  }
  .flow_box p.mb_none {
    margin: 0 0 0 0;
  }
  .flow_box .low_button {
    line-height: 100%;
    padding: 18px 115px 15px 69px;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
iframe.accessmap {
  width: 96%;
  height: 100vw;
  display: block;
  margin: 0;
}

@media screen and (min-width: 768px), print {
  iframe.accessmap {
    width: 100%;
    height: 420px;
    display: block;
    margin: 0;
  }
}
/* -----------------------------------------------------------
　QA
----------------------------------------------------------- */
/*
dl.qabox{
  dt{
    background-color: $color3;
    box-sizing: border-box;
    padding: 1.6rem;    
    margin: 0 0 2rem 0;
    p{
      width: 100%;
      margin: 0;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -webkit-flex-direction:row;
      flex-direction:row;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;    
      font-family: 'notosansjp_medium';
      font-size: 1.4rem;
      text-align: justify;
      font-weight: bold;    
      color: $color1;      
      line-height: 140%;
      padding: 0.4rem 0 0 0;
      box-sizing: border-box;
      margin: 0;      
      .no{
        font-size: 1.4rem;
        font-weight: bold;  
        background-color: $color1;
        color: $color_white;
        line-height: 100%;
        margin: 0;      
        width: 3rem;
        height: 3rem;
        padding: 0 0 0.2rem 0;
        box-sizing: border-box;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;      
      }
      .text{
        width: 83%;
        padding: 0.5rem 0 0 0;
        box-sizing: border-box;        
      }      
    }
  }
  dd{
    display: none;
    background-color: $color_white;
    box-sizing: border-box;
    padding:0 1.6rem;    
    margin: 0 0 4rem 0;    
    p{
      width: 100%;
      margin: 0;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -webkit-flex-direction:row;
      flex-direction:row;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;    
      font-family: 'notosansjp_medium';
      font-size: 1.4rem;
      text-align: justify;
      font-weight: bold;    
      color: $color1;      
      line-height: 140%;
      padding: 0.4rem 0 0 0;
      box-sizing: border-box;
      margin: 0;      
      .no{
        font-size: 1.4rem;
        font-weight: bold;  
        background-color: $color3;
        color: $color1;
        line-height: 100%;
        margin: 0;      
        width: 3rem;
        height: 3rem;
        padding: 0 0 0.2rem 0;
        box-sizing: border-box;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;      
      }
      .text{
        width: 83%;
        padding: 0.5rem 0 0 0;
        box-sizing: border-box;        
      }      
    }
  }
}

@media screen and (min-width: $breakpoint)  , print{  
dl.qabox{
  dt{
    background-color: $color3;
    box-sizing: border-box;
    padding: 20px;    
    margin: 0 0 40px 0;
    p{
      width: 100%;
      margin: 0;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -webkit-flex-direction:row;
      flex-direction:row;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;    
      font-family: 'notosansjp_medium';
      font-size: 1.6rem;
      text-align: justify;
      font-weight: bold;    
      color: $color1;      
      line-height: 140%;
      padding: 8px 0 0 0;
      box-sizing: border-box;
      margin: 0;      
      .no{
        font-size: 1.4rem;
        font-weight: bold;  
        background-color: $color1;
        color: $color_white;
        line-height: 100%;
        margin: 0;      
        width: 40px;
        height: 40px;
        padding: 0 0 4px 0;
        box-sizing: border-box;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;      
      }
      .text{
        width: 1105px;
        padding: 8px 0 0 0;
        box-sizing: border-box;
      }      
    }
    transition: 0.5s;
    &:hover{
      cursor: pointer;
      cursor: hand;      
      background-color: $color1;
      color: $color_white;
      transition: 0.5s;
      p{
        color: $color_white;   
      }
    }
  }
  dd{
    background-color: $color_white;
    box-sizing: border-box;
    padding:0 20px 20px 20px;    
    margin: 0 0 60px 0;
    p{
      width: 100%;
      margin: 0;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -webkit-flex-direction:row;
      flex-direction:row;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;    
      font-family: 'notosansjp_medium';
      font-size: 1.6rem;
      text-align: justify;
      font-weight: bold;    
      color: $color1;      
      line-height: 140%;
      padding: 8px 0 0 0;
      box-sizing: border-box;
      margin: 0;      
      .no{
        font-size: 1.4rem;
        font-weight: bold;  
        background-color: $color3;
        color: $color1;
        line-height: 100%;
        margin: 0;      
        width: 40px;
        height: 40px;
        padding: 0 0 4px 0;
        box-sizing: border-box;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;      
      }
      .text{
        width: 1105px;
        padding: 8px 0 0 0;
        box-sizing: border-box;
      }      
    }
  }
}

}
*/
/*メールフォームプロ用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　お問い合わせ・メールフォーム
----------------------------------------------------------- */
#mailformpro table {
  font-size: 1.6rem;
  line-height: 140%;
  width: 100%;
}
#mailformpro table tr th {
  display: block;
  text-align: left;
  font-weight: normal;
  background-color: #F39800;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  border-top: #3C9664 1px solid;
  border-left: #3C9664 1px solid;
  border-right: #3C9664 1px solid;
}
#mailformpro table tr th span {
  color: #ff0000;
  display: inline-block;
  padding: 0 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 0.6rem;
}
#mailformpro table tr td {
  display: block;
  text-align: left;
  border-top: #3C9664 1px solid;
  border-left: #3C9664 1px solid;
  border-right: #3C9664 1px solid;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#mailformpro table tr td ol {
  list-style-type: none;
}
#mailformpro table tr td input[type=text], #mailformpro table tr td input[type=tel], #mailformpro table tr td input[type=email] {
  font-size: 1.2rem;
  width: 90%;
  margin: 0 0 0.6rem 0;
}
#mailformpro table tr td select {
  font-size: 1.2rem;
  width: 90%;
}
#mailformpro table tr td select.time {
  width: 12%;
}
#mailformpro table tr td textarea {
  font-size: 1.2rem;
  width: 90%;
  min-height: 40vw;
}
#mailformpro table tr:last-child td {
  border-bottom: #3C9664 1px solid;
}

@media screen and (min-width: 768px), print {
  #mailformpro table {
    font-size: 1.8rem;
    line-height: 140%;
    width: 1200px;
  }
  #mailformpro table tr th {
    width: 400px;
    display: table-cell;
    text-align: left;
    font-weight: normal;
    background-color: #F39800;
    padding: 1.5rem 1rem 1.5rem 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #3C9664 1px solid;
    border-left: #3C9664 1px solid;
    border-right: #3C9664 1px solid;
    vertical-align: middle;
  }
  #mailformpro table tr th span {
    color: #ff0000;
    display: inline-block;
    padding: 0 0.2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 1rem;
  }
  #mailformpro table tr td {
    width: 800px;
    display: table-cell;
    text-align: left;
    border-top: #3C9664 1px solid;
    border-left: #3C9664 1px solid;
    border-right: #3C9664 1px solid;
    padding: 1.5rem 3rem 1.5rem 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    vertical-align: middle;
    line-height: 140%;
  }
  #mailformpro table tr td ol {
    list-style-type: none;
  }
  #mailformpro table tr td ol li {
    margin: 0 0 5px 0;
  }
  #mailformpro table tr td input[type=text], #mailformpro table tr td input[type=tel], #mailformpro table tr td input[type=email] {
    font-size: 1.6rem;
    width: 300px;
    margin: 0 1rem 0 0;
  }
  #mailformpro table tr td select {
    font-size: 1.6rem;
    width: 300px;
  }
  #mailformpro table tr td select.time {
    width: 60px;
  }
  #mailformpro table tr td textarea {
    font-size: 1.6rem;
    width: 600px;
    min-height: 300px;
  }
}
/*アニメーション*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　ファーストビュー
----------------------------------------------------------- */
.first_view_anime {
  -webkit-animation: fvfadein 0.5s ease 1s 1 normal backwards;
          animation: fvfadein 0.5s ease 1s 1 normal backwards;
}

.first_view_anime2 {
  -webkit-animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
          animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
}

@-webkit-keyframes fvfadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fvfadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 768px), print {
  .first_view_anime {
    -webkit-animation: fvfadein 0.5s ease 1s 1 normal backwards;
            animation: fvfadein 0.5s ease 1s 1 normal backwards;
  }
  .first_view_anime2 {
    -webkit-animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
            animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
  }
  @-webkit-keyframes fvfadein {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fvfadein {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
/* -----------------------------------------------------------
　アイコン
----------------------------------------------------------- */
.purupuru.blockIn::before {
  -webkit-animation: purupuru 0.8s linear 0s 1;
          animation: purupuru 0.8s linear 0s 1;
}

@-webkit-keyframes purupuru {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    -webkit-transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
            transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
  }
  50% {
    -webkit-transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
            transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
  }
  65% {
    -webkit-transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
            transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
  }
  80% {
    -webkit-transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
            transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}

@keyframes purupuru {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    -webkit-transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
            transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
  }
  50% {
    -webkit-transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
            transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
  }
  65% {
    -webkit-transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
            transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
  }
  80% {
    -webkit-transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
            transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@media screen and (min-width: 768px), print {
  .purupuru.blockIn::before {
    -webkit-animation: purupuru 0.8s linear 0s 1;
            animation: purupuru 0.8s linear 0s 1;
  }
  @-webkit-keyframes purupuru {
    0% {
      -webkit-transform: scale(1, 1) translate(0%, 0%);
              transform: scale(1, 1) translate(0%, 0%);
    }
    20% {
      -webkit-transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
              transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
    }
    50% {
      -webkit-transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
              transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
    }
    65% {
      -webkit-transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
              transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
    }
    80% {
      -webkit-transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
              transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
    }
    100% {
      -webkit-transform: scale(1, 1) translate(0%, 0%);
              transform: scale(1, 1) translate(0%, 0%);
    }
  }
  @keyframes purupuru {
    0% {
      -webkit-transform: scale(1, 1) translate(0%, 0%);
              transform: scale(1, 1) translate(0%, 0%);
    }
    20% {
      -webkit-transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
              transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
    }
    50% {
      -webkit-transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
              transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
    }
    65% {
      -webkit-transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
              transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
    }
    80% {
      -webkit-transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
              transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
    }
    100% {
      -webkit-transform: scale(1, 1) translate(0%, 0%);
              transform: scale(1, 1) translate(0%, 0%);
    }
  }
}
/* -----------------------------------------------------------
　基本アニメーション
----------------------------------------------------------- */
/*左から*/
.scroll_left {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.scroll_left.blockIn {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*右から*/
.scroll_right {
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.scroll_right.blockIn {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*下から*/
.scroll_up {
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
}

.scroll_up.blockIn {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media screen and (min-width: 768px), print {
  /*左から*/
  .scroll_left {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .scroll_left.blockIn {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /*右から*/
  .scroll_right {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .scroll_right.blockIn {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /*下から*/
  .scroll_up {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    opacity: 0;
  }
  .scroll_up.blockIn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  /*下からPCのみ*/
  .scroll_up_pc {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .scroll_up_pc.blockIn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.scroll_treatment_up li {
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  opacity: 0;
}
.scroll_treatment_up li:nth-child(1) {
  -webkit-transition: all 0.5s ease-in 0.1s;
  transition: all 0.5s ease-in 0.1s;
}
.scroll_treatment_up li:nth-child(2) {
  -webkit-transition: all 0.5s ease-in 0.2s;
  transition: all 0.5s ease-in 0.2s;
}
.scroll_treatment_up li:nth-child(3) {
  -webkit-transition: all 0.5s ease-in 0.3s;
  transition: all 0.5s ease-in 0.3s;
}
.scroll_treatment_up li:nth-child(4) {
  -webkit-transition: all 0.5s ease-in 0.4s;
  transition: all 0.5s ease-in 0.4s;
}
.scroll_treatment_up li:nth-child(5) {
  -webkit-transition: all 0.5s ease-in 0.5s;
  transition: all 0.5s ease-in 0.5s;
}
.scroll_treatment_up li:nth-child(6) {
  -webkit-transition: all 0.5s ease-in 0.6s;
  transition: all 0.5s ease-in 0.6s;
}
.scroll_treatment_up li:nth-child(7) {
  -webkit-transition: all 0.5s ease-in 0.7s;
  transition: all 0.5s ease-in 0.7s;
}
.scroll_treatment_up li:nth-child(8) {
  -webkit-transition: all 0.5s ease-in 0.8s;
  transition: all 0.5s ease-in 0.8s;
}
.scroll_treatment_up li:nth-child(9) {
  -webkit-transition: all 0.5s ease-in 0.9s;
  transition: all 0.5s ease-in 0.9s;
}
.scroll_treatment_up li:nth-child(10) {
  -webkit-transition: all 0.5s ease-in 1s;
  transition: all 0.5s ease-in 1s;
}

.scroll_treatment_up.blockIn li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* -----------------------------------------------------------
 フォントサイズ基本
----------------------------------------------------------- */
html {
  font-size: 3.125vw;
  overflow-y: auto;
  font-family: "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  padding: 0 0 13vw 0;
  /*ページ内リンク用*/
  scroll-behavior: smooth;
}

@media screen and (min-width: 768px), print {
  html {
    font-size: 62.5%;
    overflow-y: scroll;
    font-family: "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    color: #333333;
    background-color: #ffffff;
    padding: 0;
    /*ページ内リンク用*/
    scroll-behavior: smooth;
    /*スクロール後の余白設定*/
    scroll-padding-top: 60px;
  }
}
/* -----------------------------------------------------------
 構成
----------------------------------------------------------- */
body {
  position: relative;
  width: 100%;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

section {
  height: auto;
  overflow: hidden;
  margin: 0;
}

.sentence {
  height: auto;
  overflow: hidden;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.pc_none_span {
  display: inline;
}

.sp_none_span {
  display: none;
}

@media screen and (min-width: 768px), print {
  body {
    position: relative;
    z-index: 0;
    overflow: hidden;
    min-width: 1280px;
    -webkit-text-size-adjust: 100%;
  }
  section {
    height: auto;
    overflow: hidden;
    margin: 0;
  }
  .pc_none {
    display: none;
  }
  .sp_none {
    display: block;
  }
  .pc_none_span {
    display: none;
  }
  .sp_none_span {
    display: inline;
  }
}
/* -----------------------------------------------------------
　枠
----------------------------------------------------------- */
.wrapper {
  height: auto;
  width: 100%;
  margin: 0 0 0 0;
  padding: 0;
}

.wrapper_low {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 1rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #E9F0D8;
}

.main {
  height: auto;
  width: 100%;
  margin: 0 0 0 0;
  padding: 0;
}

.main_low {
  height: auto;
  width: 96%;
  margin: 0 auto 0 auto;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .wrapper {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .wrapper_low {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 60px 0 80px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #E9F0D8;
  }
  .main {
    height: auto;
    width: 100%;
    margin: 0 auto 0 auto;
    padding: 0;
  }
  .main_low {
    height: auto;
    width: 1100px;
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 39px 50px 68px 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
　ヘッダー
----------------------------------------------------------- */
header.header {
  padding: 2vw 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 9999999999;
  width: 100%;
  height: 18vw;
  /*ロゴとハンバーガー*/
}
header.header .header_top {
  width: 100%;
  height: 18vw;
  margin: 0;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*ハンバーガー*/
}
header.header .header_top .container {
  width: 15%;
}
header.header .header_top {
  /*ロゴ*/
}
header.header .header_top .head_logo {
  width: 75%;
  margin: 0 0 0 2%;
}
header.header .header_top .head_logo a {
  display: block;
  width: 100%;
  text-decoration: none;
}
header.header .header_top .head_logo a img {
  width: 100%;
  height: auto;
}
header.header .header_info {
  display: none;
}

.side_web_link {
  display: none;
}

.side_line_link {
  display: none;
}

@media screen and (min-width: 768px), print {
  header.header {
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 9999;
    width: 1100px;
    height: 159px;
    margin: 0 auto;
    /*ロゴとハンバーガー*/
  }
  header.header .header_top {
    width: 460px;
    height: auto;
    margin: 0;
    position: absolute;
    left: 0;
    top: 12px;
    z-index: 0;
    display: block;
    /*ハンバーガー*/
  }
  header.header .header_top .container {
    width: 15%;
  }
  header.header .header_top {
    /*ロゴ*/
  }
  header.header .header_top .head_logo {
    width: 460px;
    margin: 0 0 0 0;
  }
  header.header .header_top .head_logo a {
    display: block;
    width: 100%;
    text-decoration: none;
  }
  header.header .header_top .head_logo a img {
    width: 460px;
    height: 87px;
  }
  header.header .header_info {
    display: block;
    position: absolute;
    top: 29px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header.header .header_info .header_tel {
    font-family: "robotoslab_regular";
    font-weight: normal;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    color: #3C9664;
    margin: 0 3px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header.header .header_info .header_tel::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url("../img/icon_tel.svg") no-repeat;
    background-size: contain;
    margin: 0 7px 0 0;
  }
  header.header .header_info .header_access p {
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.6rem;
    color: #333333;
    line-height: 100%;
    margin: 2px 0;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header.header .header_info .header_access p::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 4px 0 0;
  }
  header.header .header_info .header_access p.header_access1 {
    background: url("../img/icon_train.svg") no-repeat;
    background-size: contain;
  }
  header.header .header_info .header_access p.header_access2 {
    background: url("../img/icon_bus.svg") no-repeat;
    background-size: contain;
  }
  .side_web_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 80px;
    height: 120px;
    text-decoration: none;
    color: #ffffff;
    background-color: #F09600;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2rem;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.05em;
    border-radius: 12px;
    position: fixed;
    top: 136px;
    right: 10px;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_web_link i {
    font-size: 2.6rem;
    margin: 0 0 10px 0;
  }
  .side_web_link:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_line_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 80px;
    height: 120px;
    text-decoration: none;
    color: #ffffff;
    background-color: #4BC033;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2rem;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.05em;
    border-radius: 12px;
    position: fixed;
    top: 266px;
    right: 10px;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_line_link i {
    font-size: 2.6rem;
    margin: 0 0 10px 0;
  }
  .side_line_link:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .side_web_link {
    position: fixed;
    top: 236px;
    right: 10px;
  }
  .side_line_link {
    position: fixed;
    top: 366px;
    right: 10px;
  }
}
/* -----------------------------------------------------------
　グローバルナビ
----------------------------------------------------------- */
nav.main_nav_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  nav.main_nav_pc {
    display: block;
    width: 1100px;
    height: 40px;
    margin: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
  }
  nav.main_nav_pc ul {
    width: 1100px;
    height: 40px;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style-type: none;
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  nav.main_nav_pc ul li {
    display: block;
    width: auto;
    height: 40px;
    margin: 0;
    padding: 0;
    position: relative;
  }
  nav.main_nav_pc ul li a {
    width: 100%;
    height: 40px;
    text-decoration: none;
    text-align: center;
    color: #333333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0 0 0 0;
    letter-spacing: 0.03em;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    text-align: center;
    line-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li a span {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 4px;
    padding: 8px 12px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc ul li a {
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li a::before {
    position: absolute;
    bottom: 5px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: #F09600;
  }
  nav.main_nav_pc ul li a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  nav.main_nav_pc ul li .sub_nav_box {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 244px;
    margin: 0 0 0 0;
    background-color: #ffffff;
    padding: 20px 0 8px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  }
  nav.main_nav_pc ul li .sub_nav_box ul {
    all: initial;
    width: 244px;
    height: auto;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 9999;
    background-color: #ffffff;
    border-radius: 12px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li {
    all: initial;
    display: block;
    width: 210px;
    height: 38px;
    margin: 0 auto 12px auto;
    padding: 0;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li::before {
    content: "";
    display: none;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a {
    all: initial;
    width: 100%;
    height: 38px;
    text-decoration: none;
    text-align: center;
    color: #333333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    border-radius: 5px;
    letter-spacing: 0.05em;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a span {
    display: none;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a br {
    display: none;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a::before {
    content: "";
    display: none;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a:hover {
    cursor: pointer;
    cursor: hand;
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #F39800;
    color: #ffffff;
  }
  nav.main_nav_pc ul li:last-child::after {
    content: "";
    display: none;
  }
  nav.main_nav_pc ul li.home {
    width: 53px;
  }
  nav.main_nav_pc ul li.clinic {
    width: 187px;
  }
  nav.main_nav_pc ul li.clinic .sub_nav_box {
    margin: 0 0 0 -37.5px;
  }
  nav.main_nav_pc ul li.treatment {
    width: 93px;
  }
  nav.main_nav_pc ul li.treatment .sub_nav_box {
    width: 300px;
    margin: 0 0 0 -115.5px;
  }
  nav.main_nav_pc ul li.treatment .sub_nav_box ul {
    all: initial;
    width: 300px;
  }
  nav.main_nav_pc ul li.treatment .sub_nav_box ul li {
    width: 260px;
  }
  nav.main_nav_pc ul li.disease {
    width: 131px;
  }
  nav.main_nav_pc ul li.disease .sub_nav_box {
    width: 800px;
    margin: 0 0 0 -334.5px;
  }
  nav.main_nav_pc ul li.disease .sub_nav_box ul {
    all: initial;
    width: 800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  nav.main_nav_pc ul li.disease .sub_nav_box ul li {
    width: 360px;
  }
  nav.main_nav_pc ul li.disease .sub_nav_box ul li.long {
    width: 720px;
  }
  nav.main_nav_pc ul li.disease .sub_nav_box ul li:last-child {
    margin: 0 0 12px 20px;
  }
  nav.main_nav_pc ul li.visitor {
    width: 131px;
  }
  nav.main_nav_pc ul li.visitor .sub_nav_box {
    width: 300px;
    margin: 0 0 0 -93.5px;
  }
  nav.main_nav_pc ul li.visitor .sub_nav_box ul {
    all: initial;
    width: 300px;
  }
  nav.main_nav_pc ul li.visitor .sub_nav_box ul li {
    width: 260px;
  }
  nav.main_nav_pc ul li.clinic a::after, nav.main_nav_pc ul li.treatment a::after, nav.main_nav_pc ul li.disease a::after, nav.main_nav_pc ul li.visitor a::after {
    font-family: "fontello";
    font-size: 1.3rem;
    content: "\e80b";
    margin: 6px 0 0 5px;
    color: #4BC033;
  }
  nav.main_nav_pc ul li.clinic ul li a::after, nav.main_nav_pc ul li.treatment ul li a::after, nav.main_nav_pc ul li.disease ul li a::after, nav.main_nav_pc ul li.visitor ul li a::after {
    content: "";
    margin: 0;
  }
  nav.main_nav_pc ul li.clinic:hover, nav.main_nav_pc ul li.treatment:hover, nav.main_nav_pc ul li.disease:hover, nav.main_nav_pc ul li.visitor:hover {
    cursor: pointer;
    cursor: hand;
  }
  nav.main_nav_pc ul li.clinic:hover a span::after, nav.main_nav_pc ul li.treatment:hover a span::after, nav.main_nav_pc ul li.disease:hover a span::after, nav.main_nav_pc ul li.visitor:hover a span::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    margin: 0 0 0 4px;
  }
  nav.main_nav_pc ul li:hover {
    cursor: pointer;
    cursor: hand;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li:hover .sub_nav_box {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .nav_add {
    position: fixed !important;
    top: 0 !important;
    bottom: auto !important;
    right: 0 !important;
    z-index: 9999999999 !important;
    width: 100% !important;
    height: 60px !important;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .nav_add ul {
    width: 1100px !important;
    height: 60px !important;
    margin: 0 auto !important;
  }
  .nav_add ul li {
    height: 60px !important;
  }
  .nav_add ul li a {
    height: 60px !important;
  }
  .nav_add ul li .sub_nav_box ul {
    height: auto !important;
    margin: 0 0 0 0 !important;
  }
  .nav_add ul li .sub_nav_box ul li {
    height: 38px !important;
  }
  .nav_add ul li .sub_nav_box ul li a {
    height: 38px !important;
  }
  .nav_add ul li.clinic {
    width: 187px !important;
  }
  .nav_add ul li.clinic .sub_nav_box {
    margin: 0 0 0 -37.5px !important;
  }
  .nav_add ul li.clinic .sub_nav_box ul {
    width: 244px !important;
  }
  .nav_add ul li.treatment .sub_nav_box {
    width: 300px !important;
    margin: 0 0 0 -115.5px !important;
  }
  .nav_add ul li.treatment .sub_nav_box ul {
    all: initial;
    width: 300px !important;
  }
  .nav_add ul li.treatment .sub_nav_box ul li {
    width: 260px !important;
  }
  .nav_add ul li.disease {
    width: 131px !important;
  }
  .nav_add ul li.disease .sub_nav_box {
    width: 800px !important;
    margin: 0 0 0 -334.5px !important;
  }
  .nav_add ul li.disease .sub_nav_box ul {
    all: initial;
    width: 800px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .nav_add ul li.disease .sub_nav_box ul li {
    width: 360px !important;
  }
  .nav_add ul li.disease .sub_nav_box ul li.long {
    width: 720px !important;
  }
  .nav_add ul li.disease .sub_nav_box ul li:last-child {
    margin: 0 0 12px 20px !important;
  }
  .nav_add ul li.visitor {
    width: 131px !important;
  }
  .nav_add ul li.visitor .sub_nav_box {
    width: 300px !important;
    margin: 0 0 0 -93.5px !important;
  }
  .nav_add ul li.visitor .sub_nav_box ul {
    all: initial;
    width: 300px !important;
  }
  .nav_add ul li.visitor .sub_nav_box ul li {
    width: 260px !important;
  }
}
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
/*トップキービジュアル*/
.key_visual {
  position: relative;
  width: 100%;
  height: 125vw;
  margin: -18vw 0 0 0;
}
.key_visual .key {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  /*大枠*/
}
.key_visual .key .key_bg {
  width: 100%;
  height: 125vw;
}
.key_visual .key .key_01 {
  background: url("../img/key_visual_01.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_02 {
  background: url("../img/key_visual_02.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_03 {
  background: url("../img/key_visual_03.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_04 {
  background: url("../img/key_visual_04.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key_contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 125vw;
}
.key_visual .key_contents .key_text {
  position: absolute;
  top: 16vw;
  left: 0;
  width: 100%;
  height: 76vw;
  padding: 17vw 0 0 5vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/key_text_bg.svg") no-repeat;
  background-position: left -14vw center;
  background-size: contain;
}
.key_visual .key_contents .key_text .key_text1 {
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: #333333;
  margin: 0 0 1rem 0;
}
.key_visual .key_contents .key_text .key_text2 {
  margin: 0;
}
.key_visual .key_contents .key_text .key_text2 span {
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.2rem;
  background-color: #3C9664;
  color: #ffffff;
  padding: 0.3rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0.4rem 0 0 0;
  border-radius: 0.3rem;
  display: inline-block;
}
.key_visual .key_contents .schedule {
  position: absolute;
  bottom: 0;
  right: 2%;
  width: 30%;
  height: 30vw;
}
.key_visual .key_contents .schedule img {
  width: 100%;
  height: auto;
}

/*下層キービジュアル*/
.key_visual_low {
  width: 100%;
  height: 30vw;
  background: url("../img/key_visual_low.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.key_visual_low h1 {
  font-family: "zenmarugothic_medium";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  color: #333333;
  line-height: 160%;
  letter-spacing: 0.1em;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.2rem 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
}

@media screen and (min-width: 768px), print {
  /*トップキービジュアル*/
  .key_visual {
    position: relative;
    width: 100%;
    height: 960px;
    margin: -159px 0 0 0;
  }
  .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100% !important;
    height: 960px;
    margin: 0;
    overflow: hidden;
    /*大枠*/
  }
  .key_visual .key .key_bg {
    width: 100%;
    height: 960px;
  }
  .key_visual .key .key_01 {
    background: url("../img/key_visual_01.webp") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_02 {
    background: url("../img/key_visual_02.webp") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_03 {
    background: url("../img/key_visual_03.webp") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_04 {
    background: url("../img/key_visual_04.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key_contents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 1100px;
    height: 960px;
    margin: 0 auto;
  }
  .key_visual .key_contents .key_text {
    position: absolute;
    top: 216px;
    left: -160px;
    width: 640px;
    height: 640px;
    padding: 112px 0 0 160px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/key_text_bg.svg") no-repeat;
    background-position: left center;
    background-size: contain;
    overflow: visible;
  }
  .key_visual .key_contents .key_text .key_text1 {
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 6.2rem;
    letter-spacing: 0.2em;
    color: #333333;
    margin: 0 0 6px 0;
    line-height: 145%;
  }
  .key_visual .key_contents .key_text .key_text2 {
    margin: 0;
  }
  .key_visual .key_contents .key_text .key_text2 span {
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.8rem;
    background-color: #3C9664;
    color: #ffffff;
    padding: 6px 2px 8px 12px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 10px 0 0 0;
    border-radius: 6px;
    display: inline-block;
    white-space: nowrap;
    line-height: 100%;
    letter-spacing: 0.04em;
  }
  .key_visual .key_contents .schedule {
    position: absolute;
    bottom: 32px;
    right: 0;
    width: 202px;
    height: 190px;
  }
  .key_visual .key_contents .schedule img {
    width: 202px;
    height: 190px;
  }
  /*下層キービジュアル*/
  .key_visual_low {
    width: 100%;
    height: 300px;
    background: url("../img/key_visual_low.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    margin: 10px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .key_visual_low h1 {
    font-family: "zenmarugothic_medium";
    font-size: 4.2rem;
    font-weight: normal;
    text-align: center;
    color: #333333;
    line-height: 160%;
    letter-spacing: 0.2em;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 11px 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 12px;
  }
}
/* -----------------------------------------------------------
　お知らせ
----------------------------------------------------------- */
.notice_bg {
  width: 100%;
  margin: 0 0 0 0;
  padding: 7rem 0 5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_news_bg.svg") no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
}
.notice_bg::before {
  content: "";
  width: 100%;
  height: 3rem;
  display: block;
  background: url("../img/index_news_bottom.svg") no-repeat;
  background-position: center bottom;
  background-size: 150%;
  position: absolute;
  bottom: 0;
}
.notice_bg .notice_frame {
  width: 90%;
  margin: 0 auto 0 auto;
  background-color: #ffffff;
  border: #4BC033 1px solid;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: visible;
  position: relative;
}
.notice_bg .notice_frame::before {
  content: "";
  width: 6rem;
  height: 6em;
  display: block;
  background: url("../img/index_news_01.svg") no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  top: -2rem;
  left: -1.5rem;
}
.notice_bg .notice_frame::after {
  content: "";
  width: 6rem;
  height: 6em;
  display: block;
  background: url("../img/index_news_02.svg") no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
}
.notice_bg .notice_frame h2.notice_title {
  text-align: center;
  margin: 0;
  font-family: "robotoslab_regular";
  font-weight: normal;
  font-size: 1.2rem;
  color: #4BC033;
  line-height: 100%;
  margin: -3rem 0 0 0;
  position: relative;
  z-index: 1;
}
.notice_bg .notice_frame h2.notice_title span {
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 140%;
  color: #3C9664;
  display: block;
  position: relative;
  z-index: 3;
}
.notice_bg .notice_frame h2.notice_title::before {
  content: "";
  width: 40%;
  height: 4px;
  display: block;
  position: absolute;
  bottom: 1.2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #ffffff;
  z-index: 2;
}
.notice_bg .notice_frame .notice_box {
  width: 98%;
  height: auto;
  margin: 0 auto 0 auto;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_bg .notice_frame .notice_box .medico-info-list {
  height: auto;
  margin: 0 auto 0 auto;
  width: 96%;
  height: 80vw;
  overflow-y: scroll;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding: 0 0 1.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*border-bottom: $color_notice_border 1px dashed;*/
}
.notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header {
  color: #4BC033;
  margin: 1rem 0 0 0;
  padding: 2rem 0 1rem 2rem;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
  line-height: 120%;
  position: relative;
  border-top: #4BC033 1px dashed;
}
.notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header::marker {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  color: #ffffff;
}
.notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header::before {
  display: block;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/icon_arrow_up.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 2.2rem;
}
.notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header span {
  margin: 0 0 0 -1.4rem;
}
.notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header.open::before {
  content: "";
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item:first-of-type .accordion-header {
  border-top: none;
}
.notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
  color: #333333;
  font-family: "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 140%;
}
.notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p a {
  color: #333333;
}

@media screen and (min-width: 768px), print {
  .notice_bg {
    width: 100%;
    margin: 0 0 0 0;
    padding: 82px 0 151px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_news_bg.svg") no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
  }
  .notice_bg::before {
    content: "";
    width: 100%;
    height: 67px;
    display: block;
    background: url("../img/index_news_bottom.svg") no-repeat;
    background-position: center bottom;
    background-size: contain;
    position: absolute;
    bottom: 0;
  }
  .notice_bg .notice_frame {
    width: 900px;
    margin: 59px auto 100px auto;
    background-color: #ffffff;
    border: #4BC033 1px solid;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: visible;
    position: relative;
    padding: 0 0 7px 0;
    box-sizing: border-box;
  }
  .notice_bg .notice_frame::before {
    content: "";
    width: 93px;
    height: 93px;
    display: block;
    background: url("../img/index_news_01.svg") no-repeat;
    background-position: center top;
    background-size: cover;
    position: absolute;
    top: -24px;
    left: -27px;
  }
  .notice_bg .notice_frame::after {
    content: "";
    width: 98px;
    height: 96px;
    display: block;
    background: url("../img/index_news_02.svg") no-repeat;
    background-position: center top;
    background-size: cover;
    position: absolute;
    bottom: -33px;
    right: -22px;
  }
  .notice_bg .notice_frame h2.notice_title {
    text-align: center;
    margin: 0;
    font-family: "robotoslab_regular";
    font-weight: normal;
    font-size: 1.6rem;
    color: #4BC033;
    line-height: 130%;
    margin: -42px 0 0 0;
    position: relative;
    z-index: 1;
  }
  .notice_bg .notice_frame h2.notice_title span {
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 3.4rem;
    line-height: 140%;
    color: #3C9664;
    display: block;
    position: relative;
    z-index: 3;
    margin: 0 0 0 8px;
    letter-spacing: 0.14em;
  }
  .notice_bg .notice_frame h2.notice_title::before {
    content: "";
    width: 184px;
    height: 4px;
    display: block;
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #ffffff;
    z-index: 2;
  }
  .notice_bg .notice_frame .notice_box {
    width: 900px;
    height: auto;
    margin: -3px 0 0 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_bg .notice_frame .notice_box .medico-info-list {
    height: auto;
    margin: 0 auto 0 auto;
    width: 820px;
    height: 475px;
    overflow-y: scroll;
    overflow-x: hidden;
    overflow-wrap: break-word;
    padding: 0 0 10px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /*border-bottom: $color_notice_border 1px dashed;*/
  }
  .notice_bg .notice_frame .notice_box .medico-info-list .accordion-container {
    margin: 10px 0 0 0;
  }
  .notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header {
    color: #4BC033;
    margin: 0 0 0 0;
    padding: 30px 0 9px 21px;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    letter-spacing: 0.1em;
    line-height: 130%;
    position: relative;
    border-top: #4BC033 1px dashed;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header::marker {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    color: #ffffff;
  }
  .notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header::before {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url("../img/icon_arrow_up.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 32px;
  }
  .notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header span {
    margin: 0 0 0 -20px;
    text-align: left;
  }
  .notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header.open::before {
    content: "";
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  .notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header:hover {
    color: #F09600;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item:first-of-type .accordion-header {
    border-top: none;
  }
  .notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p {
    margin: 0 0 24px 0;
    padding: 0 0 0 0;
    color: #333333;
    font-family: "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 160%;
  }
  .notice_bg .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p a {
    color: #333333;
  }
}
/* -----------------------------------------------------------
カレンダー
----------------------------------------------------------- */
.calendar_box {
  width: 90%;
  margin: 4rem auto 0 auto;
}
.calendar_box table.caledit {
  font-family: "zenmarugothic_medium";
  width: 100%;
  margin: 0 0 2rem 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 1rem;
}
.calendar_box table.caledit tr th {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  color: #3C9664;
  background-color: #E9F0D8;
  padding: 0.8rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.calendar_box table.caledit tr td {
  font-family: "robotoslab_regular";
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  color: #333333;
  background-color: #ffffff;
  padding: 0.8rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: #4BC033 1px dashed;
  border-right: #4BC033 1px solid;
}
.calendar_box table.caledit tr td:first-child {
  border-left: #4BC033 1px solid;
}
.calendar_box table.caledit tr td .shortTitle {
  display: none;
}
.calendar_box table.caledit tr td.amOnly {
  background-color: #E2EAF7;
}
.calendar_box table.caledit tr td.outPatient {
  background-color: #F7E4E1;
}
.calendar_box table.caledit tr td.notTheMonth {
  color: #DCDCDC;
  background-color: #ffffff;
}
.calendar_box table.caledit tr.month th {
  font-size: 1.8rem;
  font-weight: bold;
  background-color: transparent;
}
.calendar_box table.caledit tr.week th {
  border-top: #4BC033 1px solid;
  border-bottom: #4BC033 1px solid;
  border-right: #4BC033 1px solid;
}
.calendar_box table.caledit tr.week th:first-child {
  border-top-left-radius: 1rem;
  border-left: #4BC033 1px solid;
}
.calendar_box table.caledit tr.week th:last-child {
  border-top-right-radius: 1rem;
}
.calendar_box table.caledit tr:last-child td {
  border-bottom: #4BC033 1px solid;
}
.calendar_box table.caledit tr:last-child td:first-child {
  border-bottom-left-radius: 1rem;
}
.calendar_box table.caledit tr:last-child td:last-child {
  border-bottom-right-radius: 1rem;
}

ul.calendar_notice {
  list-style-type: none;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  width: 90%;
  height: 3rem;
  border-radius: 0.8rem;
  background-color: #ffffff;
  margin: 0 auto 0 auto;
  padding: 0 0.8rem;
}
ul.calendar_notice li {
  margin: 0 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
ul.calendar_notice li::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  margin: 0 0.4rem 0 0;
}
ul.calendar_notice li.cn01::before {
  background-color: #ffffff;
  border: #C6E08E 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
ul.calendar_notice li.cn02::before {
  background-color: #E2EAF7;
}
ul.calendar_notice li.cn03::before {
  background-color: #F7E4E1;
}

@media screen and (min-width: 768px), print {
  .calendar_box {
    width: 1100px;
    margin: 0 auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .calendar_box table.caledit {
    font-family: "zenmarugothic_medium";
    width: 530px;
    margin: 0 0 16px 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 1rem;
  }
  .calendar_box table.caledit tr th {
    font-size: 2.2rem;
    font-weight: normal;
    text-align: center;
    color: #3C9664;
    background-color: #E9F0D8;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 53px;
    vertical-align: middle;
  }
  .calendar_box table.caledit tr td {
    font-family: "robotoslab_regular";
    font-size: 2.2rem;
    font-weight: normal;
    text-align: center;
    color: #333333;
    background-color: #ffffff;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: #4BC033 1px dashed;
    border-right: #4BC033 1px solid;
    height: 50px;
    vertical-align: middle;
  }
  .calendar_box table.caledit tr td:first-child {
    border-left: #4BC033 1px solid;
  }
  .calendar_box table.caledit tr td .shortTitle {
    display: none;
  }
  .calendar_box table.caledit tr td.amOnly {
    background-color: #E2EAF7;
  }
  .calendar_box table.caledit tr td.outPatient {
    background-color: #F7E4E1;
  }
  .calendar_box table.caledit tr td.notTheMonth {
    color: #DCDCDC;
    background-color: #ffffff;
  }
  .calendar_box table.caledit tr.month th {
    font-size: 2.8rem;
    background-color: transparent;
  }
  .calendar_box table.caledit tr.week th {
    border-top: #4BC033 1px solid;
    border-bottom: #4BC033 1px solid;
    border-right: #4BC033 1px solid;
  }
  .calendar_box table.caledit tr.week th:first-child {
    border-top-left-radius: 12px;
    border-left: #4BC033 1px solid;
  }
  .calendar_box table.caledit tr.week th:last-child {
    border-top-right-radius: 12px;
  }
  .calendar_box table.caledit tr:last-child td {
    border-bottom: #4BC033 1px solid;
  }
  .calendar_box table.caledit tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
  }
  .calendar_box table.caledit tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
  }
  ul.calendar_notice {
    list-style-type: none;
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 2rem;
    width: 400px;
    height: 50px;
    border-radius: 12px;
    background-color: #ffffff;
    margin: 0 auto 0 auto;
    padding: 0 24px;
  }
  ul.calendar_notice li {
    margin: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.calendar_notice li::before {
    content: "";
    width: 22px;
    height: 22px;
    display: block;
    margin: 0 8px 0 0;
  }
  ul.calendar_notice li.cn01::before {
    background-color: #ffffff;
    border: #C6E08E 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  ul.calendar_notice li.cn02::before {
    background-color: #E2EAF7;
  }
  ul.calendar_notice li.cn03::before {
    background-color: #F7E4E1;
  }
}
/* -----------------------------------------------------------
当クリニックのMRIについて
----------------------------------------------------------- */
.about_frame {
  width: 100%;
  background-color: #E9F0D8;
  padding: 3.5rem 0 5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: -2px 0 0 0;
}
.about_frame h2.about_title {
  width: 90%;
  margin: 0 auto 3rem auto;
  font-family: "zenmarugothic_bold";
  font-weight: normal;
  font-size: 2rem;
  color: #3C9664;
  text-align: center;
  line-height: 120%;
  border-top: #3C9664 4px solid;
  border-bottom: #3C9664 4px solid;
  padding: 1rem 0 1.2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: url("../img/index_about_01.svg") no-repeat;
  background-size: 7rem;
  background-position: right bottom 4px;
}
.about_frame h2.about_title::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #3C9664;
  position: absolute;
  top: 3px;
}
.about_frame h2.about_title::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #3C9664;
  position: absolute;
  bottom: 3px;
}
.about_frame .about_box {
  width: 96%;
  margin: 0 auto;
}
.about_frame .about_box .about_box_left {
  width: 80%;
  display: block;
  margin: 0 auto 3rem auto;
  position: relative;
  z-index: 1;
}
.about_frame .about_box .about_box_left img {
  width: 100%;
  height: auto;
}
.about_frame .about_box .about_box_left::before {
  content: "";
  width: 6rem;
  height: 8rem;
  display: block;
  background: url("../img/index_about_02.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: -1.5rem;
  bottom: -2rem;
  z-index: 2;
}
.about_frame .about_box .about_box_right p {
  width: 94%;
  margin: 0 auto 1rem auto;
}
.about_frame .about_box .about_box_right ul.about_link {
  list-style: none;
  width: 94%;
  margin: 0 auto 0 auto;
}
.about_frame .about_box .about_box_right ul.about_link li {
  margin: 0 0 1rem 0;
}
.about_frame .about_box .about_box_right ul.about_link li a {
  width: 80%;
  height: 14vw;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #333333;
  text-decoration: none;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.4rem;
  padding: 0 0 0 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
}
.about_frame .about_box .about_box_right ul.about_link li a i {
  color: #3C9664;
  font-size: 2rem;
  margin: 0 1rem 0 0;
}
.about_frame .about_box .about_box_right ul.about_link li a i.icon-icon07 {
  font-size: 2.4rem;
}
.about_frame .about_box .about_box_right ul.about_link li a {
  position: relative;
}
.about_frame .about_box .about_box_right ul.about_link li a::after {
  content: "";
  width: 20%;
  height: 100%;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: 30%;
  background-position: center center;
  background-color: #4BC033;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (min-width: 768px), print {
  .about_frame {
    width: 100%;
    background-color: #E9F0D8;
    padding: 100px 0 124px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 0;
  }
  .about_frame h2.about_title {
    width: 820px;
    height: 91px;
    margin: 0 auto 68px auto;
    font-family: "zenmarugothic_bold";
    font-weight: normal;
    font-size: 3.4rem;
    color: #3C9664;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.1em;
    border-top: #3C9664 4px solid;
    border-bottom: #3C9664 4px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 0 0 0;
    position: relative;
    background: url("../img/index_about_01.svg") no-repeat;
    background-size: 113px;
    background-position: right 15px bottom 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about_frame h2.about_title::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: #3C9664;
    position: absolute;
    top: 2px;
  }
  .about_frame h2.about_title::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: #3C9664;
    position: absolute;
    bottom: 2px;
  }
  .about_frame .about_box {
    width: 1100px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about_frame .about_box .about_box_left {
    width: 605px;
    display: block;
    margin: 0 0 0 0;
    position: relative;
    z-index: 1;
  }
  .about_frame .about_box .about_box_left img {
    width: 590px;
    height: auto;
    margin: 0 0 0 15px;
  }
  .about_frame .about_box .about_box_left::before {
    content: "";
    width: 179px;
    height: 202px;
    display: block;
    background: url("../img/index_about_02.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    left: -37px;
    bottom: auto;
    top: 234px;
    z-index: 2;
  }
  .about_frame .about_box .about_box_right {
    width: 436px;
  }
  .about_frame .about_box .about_box_right p {
    width: 400px;
    margin: 0 0 28px 0;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    line-height: 170%;
  }
  .about_frame .about_box .about_box_right ul.about_link {
    list-style: none;
    width: 100%;
    margin: 31px 0 0 0;
  }
  .about_frame .about_box .about_box_right ul.about_link li {
    margin: 0 0 1rem 0;
  }
  .about_frame .about_box .about_box_right ul.about_link li a {
    width: 350px;
    height: 60px;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: #333333;
    text-decoration: none;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.9rem;
    padding: 0 0 0 69px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 6px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    letter-spacing: 0.08em;
  }
  .about_frame .about_box .about_box_right ul.about_link li a i {
    color: #3C9664;
    font-size: 2.7rem;
    margin: 0 3px 0 0;
  }
  .about_frame .about_box .about_box_right ul.about_link li a i.icon-icon07 {
    font-size: 3.5rem;
    margin: 0 0 0 -6px;
  }
  .about_frame .about_box .about_box_right ul.about_link li a {
    position: relative;
  }
  .about_frame .about_box .about_box_right ul.about_link li a::after {
    content: "";
    width: 60px;
    height: 60px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background: url("../img/icon_arrow.svg") no-repeat;
    background-size: 30%;
    background-position: center center;
    background-color: #4BC033;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .about_frame .about_box .about_box_right ul.about_link li a:hover {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .about_frame .about_box .about_box_right ul.about_link li a:hover::after {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #F09600;
  }
}
/* -----------------------------------------------------------
当クリニックのMRIについて
----------------------------------------------------------- */
.symptoms_frame {
  width: 100%;
  background-color: #FEF5E5;
  padding: 4rem 0 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: visible;
}
.symptoms_frame::before {
  content: "";
  width: 100%;
  height: 3rem;
  display: block;
  background: url("../img/index_symptoms_bottom.svg") no-repeat;
  background-position: center bottom;
  background-size: 150%;
  position: absolute;
  bottom: 0;
}
.symptoms_frame .symptoms_img_01 {
  width: 9rem;
  height: auto;
  position: absolute;
  top: -4rem;
  right: 1rem;
}
.symptoms_frame .symptoms_img_02_1 {
  width: 3rem;
  height: auto;
  position: absolute;
  top: 2rem;
  left: 1rem;
}
.symptoms_frame .symptoms_img_02_2 {
  display: none;
}
.symptoms_frame .symptoms_img_02_3 {
  display: none;
}
.symptoms_frame .symptoms_img_03 {
  display: none;
}
.symptoms_frame .symptoms_img_04 {
  display: none;
}
.symptoms_frame .symptoms_box_01 {
  width: 90%;
  margin: 2rem auto 0 auto;
  background-color: #DCE7D8;
  border-radius: 5rem;
  padding: 3rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li {
  width: 48%;
  margin: 0 0 1rem 0;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li a {
  width: 100%;
  height: 40vw;
  border-radius: 4rem;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: center;
  line-height: 120%;
  color: #333333;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li a::before {
  content: "";
  display: block;
  width: 9rem;
  height: 7rem;
  margin: -1rem 0 1rem 0;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_none {
  display: none;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_01 a::before {
  background: url("../img/icon_sympton01.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_02 a::before {
  background: url("../img/icon_sympton02.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_03 a::before {
  background: url("../img/icon_sympton03.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_04 a::before {
  background: url("../img/icon_sympton04.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_05 a::before {
  background: url("../img/icon_sympton05.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_06 a::before {
  background: url("../img/icon_sympton06.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_07 a::before {
  background: url("../img/icon_sympton07.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_08 a::before {
  background: url("../img/icon_sympton08.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_09 a::before {
  background: url("../img/icon_sympton09.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_10 a::before {
  background: url("../img/icon_sympton10.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_11 a::before {
  background: url("../img/icon_sympton11.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_02 {
  width: 90%;
  margin: 0.5rem auto 0 auto;
  background: url("../img/symptoms_bg.svg") no-repeat;
  background-size: cover;
  border-radius: 5rem;
  padding: 3rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.symptoms_frame .symptoms_box_02::before {
  content: "";
  width: 5rem;
  height: 7rem;
  display: block;
  background: url("../img/index_symptoms_05.svg") no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  top: 17rem;
  right: 1rem;
}
.symptoms_frame .symptoms_box_02::after {
  content: "";
  width: 8rem;
  height: 7rem;
  display: block;
  background: url("../img/index_symptoms_06.svg") no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  top: 23rem;
  right: 6rem;
}
.symptoms_frame .symptoms_box_02 ul.symptoms_list_02 {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
.symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li {
  width: 48%;
  margin: 0 0 1rem 0;
}
.symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li a {
  width: 100%;
  height: 40vw;
  border-radius: 4rem;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: center;
  line-height: 120%;
  color: #333333;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li a::before {
  content: "";
  display: block;
  width: 9rem;
  height: 7rem;
  margin: -1rem 0 1rem 0;
}
.symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li.symptoms_12 a::before {
  background: url("../img/icon_sympton12.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li.symptoms_13 a::before {
  background: url("../img/icon_sympton13.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li.symptoms_14 a::before {
  background: url("../img/icon_sympton14.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}

@media screen and (min-width: 768px), print {
  .symptoms_frame {
    width: 100%;
    background-color: #FEF5E5;
    padding: 104px 0 182px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    overflow: visible;
  }
  .symptoms_frame::before {
    content: "";
    width: 100%;
    height: 68px;
    display: block;
    background: url("../img/index_symptoms_bottom.svg") no-repeat;
    background-position: center bottom;
    background-size: cover;
    position: absolute;
    bottom: 0;
  }
  .symptoms_frame .symptoms_img_01 {
    width: 261px;
    height: 275px;
    position: absolute;
    top: -96px;
    right: 50%;
    margin: 0 -598px 0 0;
  }
  .symptoms_frame .symptoms_img_02_1 {
    width: 147px;
    height: 71px;
    position: absolute;
    top: 106px;
    left: 50%;
    margin: 0 0 0 -823px;
  }
  .symptoms_frame .symptoms_img_02_2 {
    display: block;
    width: 147px;
    height: 71px;
    position: absolute;
    top: 428px;
    right: 50%;
    margin: 0 -808px 0 0;
  }
  .symptoms_frame .symptoms_img_02_3 {
    display: block;
    width: 147px;
    height: 71px;
    position: absolute;
    top: 777px;
    right: 50%;
    margin: 0 -923px 0 0;
  }
  .symptoms_frame .symptoms_img_03 {
    display: block;
    width: 138px;
    height: 146px;
    position: absolute;
    top: 1082px;
    left: 50%;
    margin: 0 0 0 -926px;
  }
  .symptoms_frame .symptoms_img_04 {
    display: block;
    width: 138px;
    height: 146px;
    position: absolute;
    top: 1358px;
    right: 50%;
    margin: 0 -831px 0 0;
  }
  .symptoms_frame .symptoms_box_01 {
    width: 1190px;
    margin: 51px auto 0 auto;
    background-color: #DCE7D8;
    border-radius: 120px;
    padding: 60px 0 40px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 1075px;
    margin: 0 auto;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li {
    width: 250px;
    margin: 0 0 20px 0;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li a {
    width: 250px;
    height: 250px;
    border-radius: 100px;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.2rem;
    text-decoration: none;
    text-align: center;
    line-height: 130%;
    letter-spacing: 0.1em;
    color: #333333;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li a::before {
    content: "";
    display: block;
    width: 160px;
    height: 130px;
    margin: 31px 0 13px 0;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_none {
    display: none;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_01 a::before {
    background: url("../img/icon_sympton01.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_02 a::before {
    background: url("../img/icon_sympton02.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_03 a::before {
    background: url("../img/icon_sympton03.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_04 a::before {
    background: url("../img/icon_sympton04.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_05 a::before {
    background: url("../img/icon_sympton05.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_06 a::before {
    background: url("../img/icon_sympton06.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_07 a::before {
    background: url("../img/icon_sympton07.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_08 a::before {
    background: url("../img/icon_sympton08.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_09 {
    margin: 0 0 20px 135px;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_09 a::before {
    background: url("../img/icon_sympton09.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_10 a::before {
    background: url("../img/icon_sympton10.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_11 {
    margin: 0 135px 20px 0;
  }
  .symptoms_frame .symptoms_box_01 ul.symptoms_list_01 li.symptoms_11 a::before {
    background: url("../img/icon_sympton11.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_02 {
    width: 1190px;
    height: 371px;
    margin: 10px auto 0 auto;
    background: url("../img/symptoms_bg.svg") no-repeat;
    background-size: cover;
    border-radius: 120px;
    padding: 60px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .symptoms_frame .symptoms_box_02::before {
    content: "";
    width: 102px;
    height: 147px;
    display: block;
    background: url("../img/index_symptoms_05.svg") no-repeat;
    background-position: center top;
    background-size: cover;
    position: absolute;
    top: 18px;
    right: 70px;
  }
  .symptoms_frame .symptoms_box_02::after {
    content: "";
    width: 227px;
    height: 198px;
    display: block;
    background: url("../img/index_symptoms_06.svg") no-repeat;
    background-position: center top;
    background-size: cover;
    position: absolute;
    top: auto;
    bottom: -38px;
    right: auto;
    left: -18px;
  }
  .symptoms_frame .symptoms_box_02 ul.symptoms_list_02 {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 800px;
    margin: 0 auto;
  }
  .symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li {
    width: 250px;
    margin: 0 0 0 0;
  }
  .symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li a {
    width: 250px;
    height: 250px;
    border-radius: 100px;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.2rem;
    text-decoration: none;
    text-align: center;
    line-height: 132%;
    color: #333333;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li a::before {
    content: "";
    display: block;
    width: 160px;
    height: 130px;
    margin: 32px 0 13px 0;
  }
  .symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li.symptoms_12 a::before {
    background: url("../img/icon_sympton12.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li.symptoms_13 a::before {
    background: url("../img/icon_sympton13.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .symptoms_frame .symptoms_box_02 ul.symptoms_list_02 li.symptoms_14 a::before {
    background: url("../img/icon_sympton14.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
}
/* -----------------------------------------------------------
診療案内
----------------------------------------------------------- */
.medical_frame {
  width: 100%;
  background: url("../img/index_medical_bg.svg") no-repeat;
  background-size: cover;
  background-position: center top -2.4rem;
  padding: 4rem 0 13rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.medical_frame .medical_box {
  width: 80%;
  margin: 2rem auto 0 auto;
}
.medical_frame .medical_box ul {
  width: 100%;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.medical_frame .medical_box ul li {
  width: 100%;
  margin: 0 0 2rem 0;
}
.medical_frame .medical_box ul li a {
  width: 100%;
  background-color: #ffffff;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 2rem;
  text-align: center;
  text-decoration: none;
  color: #3C9664;
  padding: 4rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
  border: #4BC033 1px solid;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.medical_frame .medical_box ul li a::before {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  margin: 0 auto 1rem auto;
}
.medical_frame .medical_box ul li a::after {
  content: "";
  display: block;
  width: 30%;
  height: 10vw;
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: 25%;
  background-position: center center;
  background-color: #4BC033;
  margin: 4rem 0 0 0;
  border-radius: 2rem;
}
.medical_frame .medical_box ul li a span {
  display: block;
  color: #4BC033;
  font-family: "robotoslab_regular";
  font-weight: normal;
  font-size: 1.4rem;
}
.medical_frame .medical_box ul li.neurosurgery a::before {
  background: url("../img/index_medical_01.jpg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.medical_frame .medical_box ul li.pediatric a::before {
  background: url("../img/index_medical_02.jpg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.medical_frame .medical_box ul li.brain a::before {
  background: url("../img/index_medical_03.jpg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.medical_frame .medical_box ul li.baby a::before {
  background: url("../img/index_medical_04.jpg") no-repeat;
  background-size: 100%;
  background-position: center center;
}

@media screen and (min-width: 768px), print {
  .medical_frame {
    width: 100%;
    height: 813px;
    background: url("../img/index_medical_bg.svg") no-repeat;
    background-size: cover;
    background-position: center top -13px;
    padding: 114px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .medical_frame .medical_box {
    width: 1100px;
    margin: 57px auto 0 auto;
  }
  .medical_frame .medical_box ul {
    width: 1100px;
    margin: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medical_frame .medical_box ul li {
    width: 260px;
    margin: 0 0 0 0;
  }
  .medical_frame .medical_box ul li a {
    width: 100%;
    height: 384px;
    background-color: #ffffff;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.6rem;
    text-align: center;
    text-decoration: none;
    color: #3C9664;
    padding: 59px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 12px;
    border: #4BC033 1px solid;
    line-height: 150%;
    letter-spacing: 0.1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .medical_frame .medical_box ul li a::before {
    content: "";
    display: block;
    width: 160px;
    height: 160px;
    margin: 0 auto 11px auto;
  }
  .medical_frame .medical_box ul li a::after {
    content: "";
    display: block;
    width: 60px;
    height: 30px;
    background: url("../img/icon_arrow.svg") no-repeat;
    background-size: 14px;
    background-position: center center;
    background-color: #4BC033;
    margin: 40px 0 0 0;
    border-radius: 30px;
  }
  .medical_frame .medical_box ul li a span {
    display: block;
    color: #4BC033;
    font-family: "robotoslab_regular";
    font-weight: normal;
    font-size: 1.6rem;
    white-space: nowrap;
    margin: -7px 0 0 0;
    letter-spacing: 0.05em;
  }
  .medical_frame .medical_box ul li a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .medical_frame .medical_box ul li a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: #F09600 1px solid;
    color: #F09600;
  }
  .medical_frame .medical_box ul li a:hover::after {
    background-color: #F09600;
  }
  .medical_frame .medical_box ul li a:hover span {
    color: #F09600;
  }
  .medical_frame .medical_box ul li.neurosurgery a::before {
    background: url("../img/index_medical_01.jpg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .medical_frame .medical_box ul li.pediatric a::before {
    background: url("../img/index_medical_02.jpg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .medical_frame .medical_box ul li.brain a::before {
    background: url("../img/index_medical_03.jpg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .medical_frame .medical_box ul li.baby a::before {
    background: url("../img/index_medical_04.jpg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .medical_frame .medical_box ul li.line2 a {
    padding: 38px 0 0 0;
  }
  .medical_frame .medical_box ul li.line2 a::after {
    margin: 23px 0 0 0;
  }
  .medical_frame .medical_box ul li.line2 a span {
    margin: -8px 0 0 0;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
.features_frame {
  width: 100%;
  padding: 2rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: -8rem 0 0 0;
}
.features_frame h2.features_title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 2rem 0;
}
.features_frame h2.features_title span {
  text-align: center;
  margin: 0;
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 140%;
  color: #3C9664;
  margin: 0;
  text-align: center;
  width: 70%;
}
.features_frame h2.features_title span em {
  font-family: "robotoslab_regular";
  font-weight: normal;
  font-size: 1.2rem;
  color: #4BC033;
  display: block;
  line-height: 100%;
  font-style: normal;
}
.features_frame h2.features_title::after {
  content: "";
  display: block;
  width: 15%;
  height: 4rem;
  background: url("../img/indedx_features_title_right.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.features_frame h2.features_title::before {
  content: "";
  display: block;
  width: 15%;
  height: 4rem;
  background: url("../img/indedx_features_title_left.svg") no-repeat;
  background-size: 100%;
  background-position: center center;
}
.features_frame .features_img_01 {
  display: none;
}
.features_frame .features_img_02 {
  display: none;
}
.features_frame .features_img_03 {
  display: none;
}
.features_frame .features_img_04 {
  display: none;
}
.features_frame .features_box {
  width: 90%;
  margin: 0 auto 5rem auto;
}
.features_frame .features_box .features_img {
  width: 100%;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.features_frame .features_box .features_img figure img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.features_frame .features_box .features_img.dot img {
  padding: 0 5% 0 0;
}
.features_frame .features_box .features_img.line img {
  padding: 0 0 0 5%;
}
.features_frame .features_box .features_content {
  width: 100%;
  padding: 0 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: #4BC033 6px double;
  border-bottom: #4BC033 6px double;
  position: relative;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.features_frame .features_box .features_content::after {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  right: -6px;
}
.features_frame .features_box .features_content::before {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  background-color: #ffffff;
  position: absolute;
  bottom: -6px;
  left: 0;
}
.features_frame .features_box .features_content h3.features_title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  color: #F09600;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 2rem;
  margin: 0 0 2rem 0;
  line-height: 120%;
  letter-spacing: 0.1em;
}
.features_frame .features_box .features_content .features_no {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  background-color: #4BC033;
  color: #ffffff;
  font-family: "robotoslab_regular";
  font-weight: normal;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 100%;
  border-radius: 2rem;
  margin: 0 0 1.5rem 0;
}
.features_frame .features_box .features_content .features_no span {
  font-size: 1.4rem;
}
.features_frame .features_box .features_content .features_text {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  line-height: 160%;
}

@media screen and (min-width: 768px), print {
  .features_frame {
    width: 100%;
    padding: 88px 0 78px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    margin: 0;
  }
  .features_frame h2.features_title {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 56px 0;
  }
  .features_frame h2.features_title span {
    text-align: center;
    margin: 0;
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 3.4rem;
    line-height: 160%;
    letter-spacing: 0.1em;
    color: #3C9664;
    margin: -9px 6px 1px 6px;
    text-align: center;
    width: auto;
  }
  .features_frame h2.features_title span em {
    font-family: "robotoslab_regular";
    font-weight: normal;
    font-size: 1.6rem;
    color: #4BC033;
    display: block;
    line-height: 100%;
    letter-spacing: 0;
    font-style: normal;
    margin: 0 0 2px 0;
  }
  .features_frame h2.features_title::after {
    content: "";
    display: block;
    width: 112px;
    height: 82px;
    background: url("../img/indedx_features_title_right.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .features_frame h2.features_title::before {
    content: "";
    display: block;
    width: 112px;
    height: 82px;
    background: url("../img/indedx_features_title_left.svg") no-repeat;
    background-size: 100%;
    background-position: center center;
  }
  .features_frame .features_img_01 {
    display: block;
    width: 280px;
    height: 316px;
    position: absolute;
    top: 160px;
    right: 50%;
    margin: 0 -922px 0 0;
  }
  .features_frame .features_img_02 {
    display: block;
    width: 271px;
    height: 283px;
    position: absolute;
    top: 1081px;
    left: 50%;
    margin: 0 0 0 -912px;
  }
  .features_frame .features_img_03 {
    display: block;
    width: 277px;
    height: 162px;
    position: absolute;
    top: 2056px;
    right: 50%;
    margin: 0 -894px 0 0;
  }
  .features_frame .features_img_04 {
    display: block;
    width: 264px;
    height: 288px;
    position: absolute;
    top: 2749px;
    left: 50%;
    margin: 0 0 0 -895px;
  }
  .features_frame .features_box {
    width: 1100px;
    margin: 0 auto 72px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .features_frame .features_box .features_img {
    width: 350px;
    height: 406px;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    overflow: visible;
  }
  .features_frame .features_box .features_img figure img {
    width: auto;
    height: auto;
    display: block;
    margin: 0;
  }
  .features_frame .features_box .features_img figure.fi01 {
    position: absolute;
    top: 0;
    right: 0;
    width: 399px;
    height: 435px;
  }
  .features_frame .features_box .features_img figure.fi01 img {
    width: 399px;
    height: 435px;
  }
  .features_frame .features_box .features_img figure.fi02 {
    position: absolute;
    top: 0;
    left: 0;
    width: 399px;
    height: 444px;
  }
  .features_frame .features_box .features_img figure.fi02 img {
    width: 399px;
    height: 444px;
  }
  .features_frame .features_box .features_img figure.fi03 {
    position: absolute;
    top: 0;
    right: 0;
    width: 399px;
    height: 435px;
  }
  .features_frame .features_box .features_img figure.fi03 img {
    width: 399px;
    height: 435px;
  }
  .features_frame .features_box .features_img figure.fi04 {
    position: absolute;
    top: 0;
    left: 0;
    width: 399px;
    height: 434px;
  }
  .features_frame .features_box .features_img figure.fi04 img {
    width: 399px;
    height: 434px;
  }
  .features_frame .features_box .features_img figure.fi05 {
    position: absolute;
    top: 0;
    right: 0;
    width: 399px;
    height: 435px;
  }
  .features_frame .features_box .features_img figure.fi05 img {
    width: 399px;
    height: 435px;
  }
  .features_frame .features_box .features_img figure.fi06 {
    position: absolute;
    top: 0;
    left: 0;
    width: 399px;
    height: 439px;
  }
  .features_frame .features_box .features_img figure.fi06 img {
    width: 399px;
    height: 439px;
  }
  .features_frame .features_box .features_img figure.fi07 {
    position: absolute;
    top: 3px;
    right: 2px;
    width: 399px;
    height: 435px;
  }
  .features_frame .features_box .features_img figure.fi07 img {
    width: 418.65px;
    height: 435px;
  }
  .features_frame .features_box .features_img.dot img {
    padding: 0 0 0 0;
  }
  .features_frame .features_box .features_img.line img {
    padding: 0 0 0 0;
  }
  .features_frame .features_box .features_content {
    width: 674px;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-right: #4BC033 6px double;
    border-bottom: #4BC033 6px double;
    position: relative;
    overflow: visible;
    margin: 53px 16px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .features_frame .features_box .features_content.fc01 {
    height: 332px;
  }
  .features_frame .features_box .features_content.fc02 {
    height: 365px;
  }
  .features_frame .features_box .features_content.fc03 {
    height: 368px;
  }
  .features_frame .features_box .features_content.fc04 {
    height: 308px;
    margin: 62px 16px 0 17px !important;
  }
  .features_frame .features_box .features_content.fc05 {
    height: 277px;
    margin: 74px 16px 0 17px !important;
  }
  .features_frame .features_box .features_content.fc06 {
    height: 369px;
    margin: 37px 16px 0 17px !important;
  }
  .features_frame .features_box .features_content.fc07 {
    height: 435px;
    margin: 7px 16px 0 17px !important;
  }
  .features_frame .features_box .features_content::after {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: -6px;
  }
  .features_frame .features_box .features_content::before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    background-color: #ffffff;
    position: absolute;
    bottom: -6px;
    left: 0;
  }
  .features_frame .features_box .features_content h3.features_title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    color: #F09600;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.8rem;
    margin: 0 0 31px 0;
    line-height: 120%;
    letter-spacing: 0.1em;
  }
  .features_frame .features_box .features_content .features_no {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    background-color: #4BC033;
    color: #ffffff;
    font-family: "robotoslab_regular";
    font-weight: normal;
    font-size: 2rem;
    padding: 10px 23px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 100%;
    border-radius: 2rem;
    margin: 0 0 22px 0;
  }
  .features_frame .features_box .features_content .features_no span {
    font-size: 3rem;
  }
  .features_frame .features_box .features_content .features_text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-size: 1.8rem;
    line-height: 170%;
    width: 610px;
    margin: 0;
    letter-spacing: 0;
  }
  .features_frame .features_box.fb2 .features_img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .features_frame .features_box.fb2 .features_content {
    width: 674px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    border-right: none;
    border-left: #4BC033 6px double;
    border-bottom: #4BC033 6px double;
    padding: 0 0 0 70px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 40px 0 0 17px;
  }
  .features_frame .features_box.fb2 .features_content::after {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: -6px;
    right: auto;
  }
  .features_frame .features_box.fb2 .features_content::before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    background-color: #ffffff;
    position: absolute;
    bottom: -6px;
    left: auto;
    right: 0;
  }
  .features_frame .features_box.fb2 .features_content .features_no {
    background-color: #3C9664;
  }
  .features_frame .features_box.fb2 .features_content .features_text {
    width: 600px;
  }
}
/* -----------------------------------------------------------
院長ごあいさつ
----------------------------------------------------------- */
.greeting_frame {
  width: 100%;
  background-color: #E9F0D8;
  padding: 4rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: visible;
}
.greeting_frame .greeting_img_01 {
  display: none;
}
.greeting_frame .greeting_img_02 {
  display: none;
}
.greeting_frame::before {
  content: "";
  width: 100%;
  height: 14vw;
  display: block;
  background: url("../img/index_greeting_top.svg") no-repeat;
  background-size: cover;
  background-position: center top;
  position: absolute;
  top: -11vw;
  left: 0;
}
.greeting_frame .greeting_box {
  margin: 2rem auto 2rem auto;
  width: 90%;
  overflow: hidden;
}
.greeting_frame .greeting_box .greeting_text a {
  width: 80%;
  height: 14vw;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #333333;
  text-decoration: none;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.6rem;
  padding: 0 0 0 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
  margin: 0 0 0 20%;
}
.greeting_frame .greeting_box .greeting_text a i {
  color: #3C9664;
  font-size: 2rem;
  margin: 0 1rem 0 0;
}
.greeting_frame .greeting_box .greeting_text a i.icon-icon07 {
  font-size: 2.4rem;
}
.greeting_frame .greeting_box .greeting_text a {
  position: relative;
}
.greeting_frame .greeting_box .greeting_text a::after {
  content: "";
  width: 20%;
  height: 100%;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: 30%;
  background-position: center center;
  background-color: #4BC033;
  position: absolute;
  top: 0;
  right: 0;
}
.greeting_frame .greeting_box .greeting_img {
  width: 120%;
  margin: 4rem 0 0 0;
}
.greeting_frame .greeting_box .greeting_img figure {
  width: 100%;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.greeting_frame .greeting_box .greeting_img figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 0 0 0 10%;
}
.greeting_frame .greeting_box .greeting_img figure figcaption {
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.8rem;
  text-align: center;
  line-height: 100%;
  margin: -3.5rem 15% 0 0;
}

@media screen and (min-width: 768px), print {
  .greeting_frame {
    width: 100%;
    background-color: #E9F0D8;
    padding: 140px 0 116px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    overflow: visible;
  }
  .greeting_frame .greeting_img_01 {
    display: block;
    width: 147px;
    height: 72px;
    position: absolute;
    top: 397px;
    right: 50%;
    margin: 0 -900px 0 0;
  }
  .greeting_frame .greeting_img_02 {
    display: block;
    width: 147px;
    height: 72px;
    position: absolute;
    top: 700px;
    left: 50%;
    margin: 0 0 0 -887px;
  }
  .greeting_frame::before {
    content: "";
    width: 100%;
    height: 139px;
    display: block;
    background: url("../img/index_greeting_top.svg") no-repeat;
    background-size: cover;
    background-position: center top;
    position: absolute;
    top: -113px;
    left: 0;
  }
  .greeting_frame .greeting_box {
    margin: 50px auto 0 auto;
    width: 1100px;
    overflow: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .greeting_frame .greeting_box .greeting_text {
    width: 752px;
  }
  .greeting_frame .greeting_box .greeting_text p {
    font-size: 1.8rem;
    line-height: 180%;
  }
  .greeting_frame .greeting_box .greeting_text a {
    width: 350px;
    height: 60px;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: #333333;
    text-decoration: none;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    padding: 0 0 0 42px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 6px;
    margin: -7px 27px 0 0;
    float: right;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .greeting_frame .greeting_box .greeting_text a i {
    color: #3C9664;
    font-size: 2.6rem;
    margin: 0 11px 0 7px;
  }
  .greeting_frame .greeting_box .greeting_text a i.icon-icon07 {
    font-size: 3.2rem;
  }
  .greeting_frame .greeting_box .greeting_text a {
    position: relative;
  }
  .greeting_frame .greeting_box .greeting_text a::after {
    content: "";
    width: 60px;
    height: 60px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background: url("../img/icon_arrow.svg") no-repeat;
    background-size: 30%;
    background-position: center center;
    background-color: #4BC033;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .greeting_frame .greeting_box .greeting_text a:hover {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .greeting_frame .greeting_box .greeting_text a:hover::after {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #F09600;
  }
  .greeting_frame .greeting_box .greeting_img {
    width: 300px;
    margin: 0 0 0 0;
  }
  .greeting_frame .greeting_box .greeting_img figure {
    width: 422px;
    height: 480px;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    overflow: visible;
  }
  .greeting_frame .greeting_box .greeting_img figure img {
    width: 422px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .greeting_frame .greeting_box .greeting_img figure figcaption {
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2rem;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0.1em;
    margin: 0 0 0 0;
    width: 300px;
    position: absolute;
    top: auto;
    bottom: 32px;
    left: 0;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  background: url("../img/overview_bg.svg") no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-color: #FEF5E5;
  padding: 2rem 0 2rem 0;
  margin: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.overview .overview_box {
  width: 92%;
  margin: 0 auto 0 auto;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.overview .overview_box .overview_box_left .overview_logo {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto 0 auto;
}
.overview .overview_box .overview_box_left .overview_logo img {
  width: 100%;
  height: auto;
}
.overview .overview_box .overview_box_left dl.overview_list {
  width: 100%;
  margin: 2rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 120%;
  border-top: #4BC033 1px solid;
}
.overview .overview_box .overview_box_left dl.overview_list dt {
  width: 30%;
  margin: 0 0 0 0;
  padding: 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3C9664;
  font-weight: bold;
  border-bottom: #4BC033 1px solid;
}
.overview .overview_box .overview_box_left dl.overview_list dd {
  width: 70%;
  margin: 0 0 0 0;
  padding: 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  font-weight: normal;
  border-bottom: #4BC033 1px solid;
  letter-spacing: 0.1em;
}
.overview .overview_box .overview_box_left dl.overview_list dd a {
  color: #333333;
  text-decoration: none;
}
.overview .overview_box .overview_box_left .instagram {
  width: 80%;
  height: 26vw;
  margin: 1rem auto 2rem auto;
  background-color: #ffffff;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  line-height: 100%;
}
.overview .overview_box .overview_box_left .instagram span {
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #3C9664;
}
.overview .overview_box .overview_box_left .instagram a {
  text-decoration: none;
  width: 15%;
  min-height: 29px;
  display: block;
  margin: 0 0 0 2.5rem;
}
.overview .overview_box .overview_box_left .instagram a img {
  width: 100%;
  height: auto;
}
.overview .overview_box .overview_box_left table.timetable {
  margin: 2rem 0 0 0;
}
.overview .overview_box .overview_box_right {
  margin: 2rem 0 0 0;
}
.overview .overview_box .overview_box_right img {
  width: 100%;
  height: auto;
}
.overview .overview_box .overview_box_right iframe.googlemap {
  width: 100%;
  height: 100vw;
  display: block;
  margin: 2rem 0 0 0;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    background: url("../img/overview_bg.svg") no-repeat;
    background-size: contain;
    background-position: center bottom;
    background-color: #FEF5E5;
    padding: 100px 0 80px 0;
    margin: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .overview .overview_box {
    width: 1100px;
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .overview .overview_box .overview_box_left {
    width: 530px;
  }
  .overview .overview_box .overview_box_left .overview_logo {
    width: 460px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
  }
  .overview .overview_box .overview_box_left .overview_logo img {
    width: 100%;
    height: auto;
  }
  .overview .overview_box .overview_box_left dl.overview_list {
    width: 530px;
    margin: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-family: "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 1.8rem;
    line-height: 170%;
    border-top: #4BC033 1px solid;
  }
  .overview .overview_box .overview_box_left dl.overview_list dt {
    width: 132px;
    margin: 0 0 0 0;
    padding: 14px 0 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #3C9664;
    font-weight: bold;
    border-bottom: #4BC033 1px solid;
    letter-spacing: 0.1em;
  }
  .overview .overview_box .overview_box_left dl.overview_list dd {
    width: 398px;
    margin: 0 0 0 0;
    padding: 14px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #333333;
    font-weight: normal;
    border-bottom: #4BC033 1px solid;
    letter-spacing: 0.1em;
  }
  .overview .overview_box .overview_box_left dl.overview_list dd a {
    color: #333333;
    text-decoration: none;
  }
  .overview .overview_box .overview_box_left .instagram {
    width: 222px;
    height: 80px;
    margin: 10px auto 30px auto;
    background-color: #ffffff;
    border-radius: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    line-height: 100%;
  }
  .overview .overview_box .overview_box_left .instagram span {
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 1.8rem;
    color: #3C9664;
  }
  .overview .overview_box .overview_box_left .instagram a {
    text-decoration: none;
    width: 30px;
    min-height: 29px;
    display: block;
    margin: 0 0 0 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .overview .overview_box .overview_box_left .instagram a img {
    width: 100%;
    height: auto;
  }
  .overview .overview_box .overview_box_left .instagram a:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .overview .overview_box .overview_box_left table.timetable {
    margin: 33px 0 0 0;
  }
  .overview .overview_box .overview_box_right {
    width: 530px;
    margin: 0 0 0 0;
  }
  .overview .overview_box .overview_box_right img {
    width: 530px;
    height: auto;
  }
  .overview .overview_box .overview_box_right iframe.googlemap {
    width: 530px;
    height: 650px;
    display: block;
    margin: 11px 0 0 0;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer .footer_frame {
  display: none;
}
footer .footer_green .footer_green_box .copyright {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  color: #ffffff;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.05em;
  background-color: #3C9664;
}
footer .footer_green .footer_green_box .copyright a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
}
footer .footer_green .footer_green_box .privacy_policy {
  margin: 0;
  padding: 1rem 0 0 0;
  text-align: center;
  color: #ffffff;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.1em;
  background-color: #3C9664;
  display: block;
  text-decoration: none;
}

.footer_link {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: 999999;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
}
.footer_link a.footer_tel {
  width: 50%;
  height: 13vw;
  font-family: "zenoldmincho_semibold";
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 100%;
  color: #333333;
  background-color: #ffffff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_link a.footer_tel em {
  font-size: 1rem;
  font-style: normal;
}
.footer_link a.footer_web {
  width: 25%;
  height: 13vw;
  font-family: "zenoldmincho_semibold";
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 100%;
  color: #ffffff;
  background-color: #F09600;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_link a.footer_web i {
  font-size: 1.4rem;
}
.footer_link a.footer_line {
  width: 25%;
  height: 13vw;
  font-family: "zenoldmincho_semibold";
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 100%;
  color: #ffffff;
  background-color: #4BC033;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_link a.footer_line i {
  font-size: 1.4rem;
}
.footer_link .smoothScrolls {
  width: 15%;
  height: 13vw;
  display: block;
}
.footer_link .smoothScrolls a {
  width: 100%;
  height: 13vw;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F09600;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0;
    padding: 57px 0 0 0;
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 416px;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    display: block;
    width: 1100px;
    height: 200px;
    position: relative;
    margin: 0 auto 0 auto;
  }
  footer .footer_frame ul.footer_list {
    line-height: 130%;
    font-size: 1.8rem;
    margin: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer_frame ul.footer_list li {
    width: auto;
    margin: 0 28px 20px 0;
    padding: 0 0 0 15px;
    list-style-type: none;
    position: relative;
    line-height: 100%;
  }
  footer .footer_frame ul.footer_list li::before {
    font-family: "fontello";
    content: "\e80f";
    color: #4BC033;
    font-size: 1.2rem;
    margin: 0 7px 0 0;
    position: absolute;
    top: 2px;
    left: 0;
  }
  footer .footer_frame ul.footer_list li a {
    color: #333333;
    text-decoration: none;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    position: relative;
  }
  footer .footer_frame ul.footer_list li a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: #333333 1px solid;
  }
  footer .footer_frame ul.footer_list li a span {
    display: none;
  }
  footer .footer_frame ul.footer_list li a br {
    display: none;
  }
  footer .footer_frame ul.footer_list li.disease {
    display: none;
  }
  footer .footer_frame ul.footer_list li.treatment {
    display: none;
  }
  footer .footer_frame ul.footer_list li.access {
    display: none;
  }
  footer .footer_frame ul.footer_list li.brain_checkup {
    display: none;
  }
  footer .footer_frame ul.footer_list li:last-child {
    border-right: none;
  }
  footer .footer_frame ul.footer_list li .main_nav_sub {
    display: none;
  }
  footer .footer_frame ul.footer_list li {
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  footer .footer_frame ul.footer_list li::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: #F09600;
  }
  footer .footer_frame ul.footer_list li:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  footer .footer_frame .footer_link1 {
    width: 390px;
    position: absolute;
    top: 60px;
    left: 0;
  }
  footer .footer_frame .footer_link1 .sub_title {
    color: #716C6A;
    font-family: "zenmarugothic_medium";
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0 0 16px 0;
  }
  footer .footer_frame .footer_link2 {
    width: 550px;
    position: absolute;
    top: 60px;
    left: 550px;
  }
  footer .footer_frame .footer_link2 .sub_title {
    color: #716C6A;
    font-family: "zenmarugothic_medium";
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0 0 16px 0;
  }
  footer .footer_green {
    width: 100%;
    height: 135px;
    background-color: #3C9664;
    position: absolute;
    bottom: 0;
  }
  footer .footer_green .footer_green_box {
    width: 1100px;
    height: 135px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer_green .footer_green_box .copyright {
    margin: 0;
    padding: 0 0;
    text-align: center;
    color: #ffffff;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    height: auto;
    width: auto;
    letter-spacing: 0.1em;
    background-color: #3C9664;
    background-color: transparent;
  }
  footer .footer_green .footer_green_box .copyright a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
  }
  footer .footer_green .footer_green_box .copyright a::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: #ffffff;
  }
  footer .footer_green .footer_green_box .copyright a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  footer .footer_green .footer_green_box .privacy_policy {
    margin: 0;
    padding: 0 0 4px 0;
    text-align: center;
    color: #ffffff;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    height: auto;
    width: auto;
    letter-spacing: 0.05em;
    background-color: #3C9664;
    background-color: transparent;
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  footer .footer_green .footer_green_box .privacy_policy::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: #ffffff;
  }
  footer .footer_green .footer_green_box .privacy_policy:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .footer_link {
    display: none;
  }
}
/* -----------------------------------------------------------
　ページトップへ
----------------------------------------------------------- */
#pagetop_position {
  display: block;
  margin: 0;
  padding: 0;
}
#pagetop_position #linkpagetop a {
  width: 4rem;
  height: 4rem;
}
#pagetop_position #linkpagetop a img {
  width: 4rem;
  height: 4rem;
}

#pagetop {
  position: fixed;
  bottom: 16vw;
  right: 2%;
  z-index: 999999;
}

@media screen and (min-width: 768px), print {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 109px;
    height: 120px;
  }
  #pagetop_position #linkpagetop a img {
    width: 109px;
    height: 120px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #pagetop_position #linkpagetop a img:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #pagetop {
    position: fixed;
    bottom: 120px;
    right: 30px;
    z-index: 999999;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 109px;
    height: 120px;
  }
  #pagetop_position #linkpagetop a img {
    width: 109px;
    height: 120px;
  }
  #pagetop {
    position: fixed;
    bottom: 120px;
    right: 2%;
    z-index: 999999;
  }
}
/*# sourceMappingURL=style.css.map */