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

 共通項目

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

/*◇◆◇◆◇◆基本色◇◆◇◆◇◆*/
/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*◇◆◇◆◇◆ハンバーガー色◇◆◇◆◇◆*/
/*ハンバーガー棒と文字*/
/*ハンバーガー背景*/
/*ハンバーガーdrawr背景*/
/*ハンバーガーdrawrテキスト*/
/*ハンバーガーdrawrサブ背景*/
/*ハンバーガーdrawrサブ背景*/
/*ハンバーガーdrawrボーダー*/
/*◇◆◇◆◇◆お知らせ色◇◆◇◆◇◆*/
/*お知らせタイトル*/
/*お知らせ文字*/
/*お知らせボーダー*/
/*◇◆◇◆◇◆フッターPC◇◆◇◆◇◆*/
/*フッター背景色*/
/*フッターテキスト*/
/*フッターボーダー*/
/*◇◆◇◆◇◆フッターリンクSP◇◆◇◆◇◆*/
/*フッターリンク背景色*/
/*フッターリンクテキスト*/
/*フッターリンクボーダー*/
/*◇◆◇◆◇◆コピーライト◇◆◇◆◇◆*/
/*コピーライト背景色*/
/*コピーライトテキスト*/
/*◇◆◇◆◇◆リンク系◇◆◇◆◇◆*/
/*リンクカラー*/
/*リンクカラーホバー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆診療時間テーブル◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*thボーダー*/
/*◇◆◇◆◇◆汎用テーブル系◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*tdボーダー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆影◇◆◇◆◇◆*/
/*◇◆◇◆◇◆透過◇◆◇◆◇◆*/
/*◇◆◇◆◇◆フロー◇◆◇◆◇◆*/
/*◇◆◇◆◇◆矢印◇◆◇◆◇◆*/
/*青*/
/*水色*/
/*黒*/
/*緑*/
/*黒*/
/*青*/
/*青*/
/*緑*/
/*灰色*/
/*水色*/
/*青*/
/*水色*/
/*灰色*/
/*灰色*/
/*薄い水色*/
/*水色*/
/*灰色*/
/*茶色*/
/*仕様変更後のカラー*/
/*青*/
/*茶色*/
/*茶色*/
/*黒*/
/*茶色*/
/*茶色*/
/*茶色*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@font-face {
  font-family: "petitformalscript_regular";
  src: url(../font/PetitFormalScript-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenkakugothicnew_regular";
  src: url(../font/ZenKakuGothicNew-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenkakugothicnew_medium";
  src: url(../font/ZenKakuGothicNew-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenkakugothicnew_light";
  src: url(../font/ZenKakuGothicNew-Light.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenkakugothicnew_bold";
  src: url(../font/ZenKakuGothicNew-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "zenkakugothicnew_black";
  src: url(../font/ZenKakuGothicNew-Black.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: 99999999;
  background-color: rgba(0, 0, 0, 0.7);
  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;
  border-top: #ffffff 1px solid;
  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: #ffffff;
  font-family: "zenoldmincho_bold";
  font-weight: 500;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 1rem;
  border-bottom: #ffffff 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
  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;
  line-height: 140%;
}
.main_nav_sp .drawr ul.hbg li a span {
  display: none;
}
.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 {
  display: none;
  width: 100%;
  list-style-type: none;
}
.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 {
  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 {
  background-color: rgba(204, 230, 246, 0.8);
  color: #444444;
  border-bottom: none;
  text-align: center;
  font-family: "zenoldmincho_bold";
  font-weight: 500;
  border-bottom: #ffffff 1px solid;
}
.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 {
  display: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li a::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem 0 0;
  border-radius: 5px;
}
.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 {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.doctor a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.doctor a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.doctor a::before {
  background: url("../img/icon_doctor.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.clinic a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.clinic a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.clinic a::before {
  background: url("../img/icon_clinic.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.first a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.first a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.first a::before {
  background: url("../img/icon_first.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.internal_medicine a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.internal_medicine a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.internal_medicine a::before {
  background: url("../img/icon_internal_medicine.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.lifestyle_related a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.lifestyle_related a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.lifestyle_related a::before {
  background: url("../img/icon_lifestyle_related.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.high_blood_pressure a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.high_blood_pressure a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.high_blood_pressure a::before {
  background: url("../img/icon_high_blood_pressure.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.dyslipidemia a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.dyslipidemia a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.dyslipidemia a::before {
  background: url("../img/icon_dyslipidemia.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.hyperuricemia a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.hyperuricemia a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.hyperuricemia a::before {
  background: url("../img/icon_hyperuricemia.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.gastro a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.gastro a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.gastro a::before {
  background: url("../img/icon_gastro.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.liver a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.liver a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.liver a::before {
  background: url("../img/icon_liver.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.health_check a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.health_check a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.health_check a::before {
  background: url("../img/icon_health_check.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.vaccination a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.vaccination a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.vaccination a::before {
  background: url("../img/icon_vaccination.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.occult_blood_in_stool a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.occult_blood_in_stool a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.occult_blood_in_stool a::before {
  background: url("../img/icon_occult_blood_in_stool.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.bloody_stool_black_stool a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.bloody_stool_black_stool a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.bloody_stool_black_stool a::before {
  background: url("../img/icon_bloody_stool_black_stool.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.abnormal_liver_function_test a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.abnormal_liver_function_test a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.abnormal_liver_function_test a::before {
  background: url("../img/icon_abnormal_liver_function_test.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.weight_loss a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.weight_loss a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.weight_loss a::before {
  background: url("../img/icon_weight_loss.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.diarrhea a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.diarrhea a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.diarrhea a::before {
  background: url("../img/icon_diarrhea.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.constipation a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.constipation a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.constipation a::before {
  background: url("../img/icon_constipation.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.heavy_stomach a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.heavy_stomach a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.heavy_stomach a::before {
  background: url("../img/icon_heavy_stomach.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.dry_mouth a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.dry_mouth a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.dry_mouth a::before {
  background: url("../img/icon_dry_mouth.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li.abdominal_pain a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li.abdominal_pain a::before, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li.abdominal_pain a::before {
  background: url("../img/icon_abdominal_pain.svg") no-repeat;
  background-size: contain;
}
.main_nav_sp .drawr ul.hbg li.treatment_hbg a::after, .main_nav_sp .drawr ul.hbg li.about_hbg a::after, .main_nav_sp .drawr ul.hbg li.surgery_hbg a::after {
  font-family: "fontello";
  content: "\e94c";
  font-size: 1.2rem;
  margin: 0 0 0 0.5rem;
  color: #007BC6;
}
.main_nav_sp .drawr ul.hbg li.open_treatment a::after, .main_nav_sp .drawr ul.hbg li.open_about a::after, .main_nav_sp .drawr ul.hbg li.open_surgery a::after {
  font-size: 1.2rem;
  margin: 0 0 0 0.5rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

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

.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: "zenoldmincho_bold";
  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: "zenoldmincho_bold";
  font-size: 1rem;
}

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

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

.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: #8FC31F;
  height: 12vw;
}

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

 共通項目

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

h2.top_title {
  text-align: center;
  font-size: 2.2rem;
  line-height: 160%;
  margin: 0;
}
h2.low {
  color: #444444;
  font-family: "zenkakugothicnew_medium";
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 120%;
  padding: 0 0 0 0;
  margin: 4rem 0 2.2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
h2.low::after {
  width: 16%;
  height: 6vw;
  margin: 0.8rem auto 0 auto;
  content: "";
  display: block;
  background: url("../img/icon_h2.svg") no-repeat;
  background-position: center top;
  background-size: cover;
}
h2.first {
  margin: 0 0 3rem 0;
}

h3.low {
  color: #014F7E;
  font-family: "zenkakugothicnew_medium";
  font-size: 2rem;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 120%;
  border-bottom: #014F7E 3px solid;
  -webkit-box-shadow: 0 3px #6FBAE8;
          box-shadow: 0 3px #6FBAE8;
  padding: 0 0 0.6rem 0;
  margin: 3rem 0 1.5rem 0;
}
h3.flow {
  color: #6FBAE8;
  font-family: "zenkakugothicnew_medium";
  font-size: 1.9rem;
  font-weight: normal;
  line-height: 120%;
  position: relative;
  text-align: justify;
  padding: 0 0 0 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h3.flow span {
  position: absolute;
  top: 0;
  left: 0;
}
h3.first {
  margin: 0 0 1.5rem 0;
}

h4.low {
  color: #8FC31F;
  font-family: "zenkakugothicnew_medium";
  font-size: 1.9rem;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 120%;
  border-bottom: #8FC31F 3px solid;
  padding: 0 0 0.6rem 0;
  margin: 1rem 0 1rem 0;
}
h4.flow {
  color: #6FBAE8;
  font-family: "zenkakugothicnew_medium";
  font-size: 1.9rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
}
h4.first {
  margin: 0 0 1rem 0;
}

h5.low {
  color: #007BC6;
  font-family: "zenkakugothicnew_medium";
  font-size: 1.8rem;
  font-weight: normal;
  border-bottom: #007BC6 4px dotted;
  margin: 0.8rem 0 1rem 0;
  padding: 0 0 0.6rem 0;
  line-height: 120%;
}
h5.first {
  margin: 0 0 1rem 0;
}

p {
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
  letter-spacing: 0.05em;
  text-align: justify;
}

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title {
    text-align: center;
    font-size: 2.6rem;
    line-height: 200%;
    margin: 0;
  }
  h2.low {
    color: #444444;
    font-family: "zenkakugothicnew_medium";
    font-size: 3.6rem;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 116%;
    padding: 0 0 0 0;
    /*margin: 100px 0 32px 0;*/
    margin: 80px 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  h2.low::after {
    width: 85.355px;
    height: 35.355px;
    margin: 7px auto 0 auto;
    content: "";
    display: block;
    background: url("../img/icon_h2.svg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  h2.first {
    margin: 0 0 70px 0;
  }
  h3.low {
    color: #014F7E;
    font-family: "zenkakugothicnew_medium";
    font-size: 3.4rem;
    font-weight: normal;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 110%;
    border-bottom: #014F7E 3px solid;
    -webkit-box-shadow: 0 3px #6FBAE8;
            box-shadow: 0 3px #6FBAE8;
    padding: 0 0 8px 0;
    /*margin: 44px 0 35px 0; */
    margin: 45px 0 35px 0;
  }
  h3.flow {
    color: #6FBAE8;
    font-family: "zenkakugothicnew_medium";
    font-size: 2.6rem;
    font-weight: normal;
    line-height: 120%;
    text-align: left;
    padding: 0 0 0 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  h3.flow span {
    position: absolute;
    top: 0;
    left: 0;
  }
  h3.first {
    margin: 0 0 35px 0;
  }
  h4.low {
    color: #8FC31F;
    font-family: "zenkakugothicnew_medium";
    font-size: 3.2rem;
    font-weight: normal;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 105%;
    border-bottom: #8FC31F 3px solid;
    padding: 0 0 6px 0;
    /*margin: 44px 0 35px 0;*/
    margin: 40px 0 35px 0;
  }
  h4.flow {
    color: #6FBAE8;
    font-family: "zenkakugothicnew_medium";
    font-size: 2.6rem;
    font-weight: normal;
    margin: 0 0 20px 0;
  }
  h4.first {
    margin: 0 0 35px 0;
  }
  h5.low {
    color: #007BC6;
    font-family: "zenkakugothicnew_medium";
    font-size: 3rem;
    font-weight: normal;
    border-bottom: #007BC6 4px dotted;
    margin: 35px 0 33px 0;
    padding: 0 0 6px 0;
    line-height: 110%;
  }
  h5.first {
    margin: 0 0 33px 0;
  }
  p {
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    line-height: 190%;
    letter-spacing: 0.05em;
    text-align: justify;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
table.timetable {
  padding: 0;
  margin: 0 auto;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  border-collapse: separate;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 140%;
  font-family: "zenkakugothicnew_medium";
  border-radius: 0.7rem;
}
table.timetable tr th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #444444;
  background-color: #E4E4E4;
  width: 10%;
}
table.timetable tr th.time {
  letter-spacing: 0.1em;
}
table.timetable tr th:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
table.timetable tr th:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
table.timetable tr td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #444444;
  background-color: #F5F5F5;
}
table.timetable tr td i {
  font-size: 4vw;
  color: #444444;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
  color: #444444;
}
table.timetable tr td:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
table.timetable tr td:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
table.timetable tr.line td {
  background-color: #FFFFFF !important;
  padding: 0.4rem 0;
}
table.timetable caption {
  caption-side: bottom;
  font-size: 1.2rem;
  margin: 1rem 0 0 0;
  width: 100%;
  color: #2a2a2a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  line-height: 140%;
}

@media screen and (min-width: 768px), print {
  table.timetable {
    padding: 0;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 140%;
    font-family: "zenkakugothicnew_medium";
    border-radius: 5px;
  }
  table.timetable tr th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: normal;
    font-size: 1.8rem;
    padding: 0;
    vertical-align: middle;
    color: #444444;
    background-color: #E4E4E4;
    width: 10%;
    height: 50px;
    box-sizing: border-box;
  }
  table.timetable tr th.time {
    width: 30%;
    letter-spacing: 0.1em;
  }
  table.timetable tr th:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  table.timetable tr th:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  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: #444444;
    background-color: #F5F5F5;
    height: 40px;
    box-sizing: border-box;
  }
  table.timetable tr td i {
    font-size: 1.8rem;
    color: #444444;
  }
  table.timetable tr td.time {
    width: 30%;
    text-align: center;
    color: #444444;
  }
  table.timetable tr td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  table.timetable tr td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  table.timetable tr.line td {
    background-color: #FFFFFF !important;
    padding: 0;
    height: 10px;
  }
  table.timetable caption {
    caption-side: bottom;
    font-size: 1.8rem;
    margin: 12px 0 0 0;
    width: 100%;
    color: #2a2a2a;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 110%;
    text-align: left;
  }
}
/*テーブル*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table {
  width: 90%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 auto 2rem auto;
}
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-weight: normal;
  color: #444444;
  border-bottom: #707070 1px solid;
  background-color: #E7F3FB;
}
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: #444444;
  border-bottom: #707070 1px solid;
  background-color: #ffffff;
}
table.low_table tr:first-child th {
  border-top: #707070 1px solid;
}
table.low_table tr:first-child td {
  border-top: #707070 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  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-weight: normal;
    color: #444444;
    border-bottom: #707070 1px solid;
    background-color: #E7F3FB;
  }
  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: #444444;
    border-bottom: #707070 1px solid;
    background-color: #ffffff;
  }
  table.low_table tr:first-child th {
    border-top: #707070 1px solid;
  }
  table.low_table tr:first-child td {
    border-top: #707070 1px solid;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide {
  width: 800px;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 120%;
}
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: left;
  vertical-align: middle;
  font-weight: normal;
  color: #444444;
  border-bottom: #707070 1px solid;
  background-color: #E7F3FB;
}
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: #444444;
  border-bottom: #707070 1px solid;
  background-color: #ffffff;
}
table.low_table_slide tr:first-child th {
  border-top: #707070 1px solid;
}
table.low_table_slide tr:first-child td {
  border-top: #707070 1px solid;
}
table.low_table_slide.end_table tr th {
  width: 33%;
  text-align: center;
}
table.low_table_slide.end_table tr td {
  width: 33%;
  text-align: center;
}

.slide_box {
  width: 90%;
  margin: 0 auto;
}

/*横スライドテーブル用*/
.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: left;
    vertical-align: middle;
    font-weight: normal;
    color: #444444;
    border-bottom: #707070 1px solid;
    background-color: #E7F3FB;
  }
  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: #444444;
    border-bottom: #707070 1px solid;
    background-color: #ffffff;
  }
  table.low_table_slide tr:first-child th {
    border-top: #707070 1px solid;
  }
  table.low_table_slide tr:first-child td {
    border-top: #707070 1px solid;
  }
  .slide_box {
    width: 100%;
    margin: 0;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  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: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #444444;
  background-color: #E7F3FB;
  border-bottom: #707070 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: #444444;
  background-color: #ffffff;
  border-bottom: #707070 1px solid;
}
table.low_table_spblock tr td span {
  color: #0047AB;
  font-weight: bold;
}
table.low_table_spblock tr td span a {
  color: #0047AB;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock tr:first-child th {
  border-top: #707070 1px solid;
}

@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: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #444444;
    background-color: #E7F3FB;
    border-bottom: #707070 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: #444444;
    background-color: #ffffff;
    border-bottom: #707070 1px solid;
  }
  table.low_table_spblock tr td span {
    color: #0047AB;
    font-weight: bold;
  }
  table.low_table_spblock tr td span a {
    color: #0047AB;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock tr:first-child th {
    border-top: #707070 1px solid;
  }
  table.low_table_spblock tr:first-child td {
    border-top: #707070 1px solid;
  }
}
/*テーブル線上下のみ*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
table.low_table2 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table2 tr th {
  width: 40%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #444444;
  border-bottom: #707070 1px solid;
  background-color: #E7F3FB;
}
table.low_table2 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: #444444;
  border-bottom: #707070 1px solid;
  background-color: #ffffff;
}
table.low_table2 tr:first-child th {
  border-top: #707070 1px solid;
}
table.low_table2 tr:first-child td {
  border-top: #707070 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table2 {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  table.low_table2 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table2 tr th {
    width: 40%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #444444;
    border-bottom: #707070 1px solid;
    background-color: #E7F3FB;
  }
  table.low_table2 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: #444444;
    border-bottom: #707070 1px solid;
    background-color: #ffffff;
  }
  table.low_table2 tr:first-child th {
    border-top: #707070 1px solid;
  }
  table.low_table2 tr:first-child td {
    border-top: #707070 1px solid;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide2 {
  width: 1000px;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
}
table.low_table_slide2 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_slide2 tr th {
  width: 40%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #444444;
  border-bottom: #707070 1px solid;
  background-color: #E7F3FB;
}
table.low_table_slide2 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: #444444;
  border-bottom: #707070 1px solid;
  background-color: #ffffff;
}
table.low_table_slide2 tr:first-child th {
  border-top: #707070 1px solid;
}
table.low_table_slide2 tr:first-child td {
  border-top: #707070 1px solid;
}

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

@media screen and (min-width: 768px), print {
  table.low_table_slide2 {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  table.low_table_slide2 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_slide2 tr th {
    width: 40%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #444444;
    border-bottom: #707070 1px solid;
    background-color: #E7F3FB;
  }
  table.low_table_slide2 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: #444444;
    border-bottom: #707070 1px solid;
    background-color: #ffffff;
  }
  table.low_table_slide2 tr:first-child th {
    border-top: #707070 1px solid;
  }
  table.low_table_slide2 tr:first-child td {
    border-top: #707070 1px solid;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
table.low_table_spblock2 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_spblock2 tr th {
  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: #444444;
  background-color: #E7F3FB;
  border-bottom: #707070 1px solid;
}
table.low_table_spblock2 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: #444444;
  background-color: #ffffff;
  border-bottom: #707070 1px solid;
}
table.low_table_spblock2 tr td span {
  color: #0047AB;
  font-weight: bold;
}
table.low_table_spblock2 tr td span a {
  color: #0047AB;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock2 tr:first-child th {
  border-top: #707070 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table_spblock2 {
    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_spblock2 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_spblock2 tr th {
    width: 30%;
    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: #444444;
    background-color: #E7F3FB;
    border-bottom: #707070 1px solid;
  }
  table.low_table_spblock2 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: #444444;
    background-color: #ffffff;
    border-bottom: #707070 1px solid;
  }
  table.low_table_spblock2 tr td span {
    color: #0047AB;
    font-weight: bold;
  }
  table.low_table_spblock2 tr td span a {
    color: #0047AB;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock2 tr:first-child th {
    border-top: #707070 1px solid;
  }
  table.low_table_spblock2 tr:first-child td {
    border-top: #707070 1px solid;
  }
}
/*テーブル丸角*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #2a2a2a;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #707070 1px solid;
}
table.low_table3 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table3 tr th {
  width: 30%;
  padding: 1rem;
  border-bottom: #707070 1px solid;
  border-left: #707070 1px solid;
  border-right: #707070 1px solid;
  background-color: #E7F3FB;
  color: #444444;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table3 tr td {
  width: 70%;
  padding: 1rem;
  border-bottom: #707070 1px solid;
  border-right: #707070 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #444444;
  background-color: #ffffff;
}
table.low_table3 tr:first-child th {
  border-top-left-radius: 0.7rem;
}
table.low_table3 tr:first-child td {
  border-top-right-radius: 0.7rem;
}
table.low_table3 tr:last-child th {
  border-bottom-left-radius: 0.7rem;
  border-bottom: #707070 1px solid;
}
table.low_table3 tr:last-child td {
  border-bottom-right-radius: 0.7rem;
}

@media screen and (min-width: 768px), print {
  table.low_table3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #2a2a2a;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #707070 1px solid;
  }
  table.low_table3 caption {
    caption-side: bottom;
    text-align: left;
    margin: 0.5rem 0 0 0;
  }
  table.low_table3 tr th {
    width: 30%;
    padding: 20px;
    border-bottom: #707070 1px solid;
    border-left: #707070 1px solid;
    border-right: #707070 1px solid;
    background-color: #E7F3FB;
    color: #444444;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table3 tr td {
    width: 70%;
    padding: 20px;
    border-bottom: #707070 1px solid;
    border-right: #707070 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #444444;
    background-color: #ffffff;
  }
  table.low_table3 tr:first-child th {
    border-top-left-radius: 10px;
  }
  table.low_table3 tr:first-child td {
    border-top-right-radius: 10px;
  }
  table.low_table3 tr:last-child th {
    border-bottom-left-radius: 10px;
    border-bottom: #707070 1px solid;
  }
  table.low_table3 tr:last-child td {
    border-bottom-right-radius: 10px;
  }
}
/* -----------------------------------------------------------
　テーブルサブタイトル
----------------------------------------------------------- */
table.low_table_subtitle3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #2a2a2a;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #707070 1px solid;
}
table.low_table_subtitle3 caption {
  caption-side: bottom;
  text-align: left;
  margin: 1rem 0 0 0;
}
table.low_table_subtitle3 tr th {
  width: 100%;
  border-bottom: #707070 1px solid;
  border-left: #707070 1px solid;
  border-right: #707070 1px solid;
  background-color: #686868;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table_subtitle3 tr th .sub_title {
  background-color: #CCE6F6;
  color: #ffffff;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
table.low_table_subtitle3 tr th .sub_title.st_top {
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}
table.low_table_subtitle3 tr th .sub_text {
  background-color: #E2F3FE;
  color: #2a2a2a;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
table.low_table_subtitle3 tr td {
  width: 100%;
  padding: 0.5rem;
  border-bottom: #707070 1px solid;
  border-left: #707070 1px solid;
  border-right: #707070 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #444444;
  background-color: #ffffff;
}
table.low_table_subtitle3 tr:first-child th {
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}
table.low_table_subtitle3 tr:last-child th {
  border-bottom-left-radius: 0.7rem;
}
table.low_table_subtitle3 tr:last-child td {
  border-bottom-right-radius: 0.7rem;
}

@media screen and (min-width: 768px), print {
  table.low_table_subtitle3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #2a2a2a;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #707070 1px solid;
  }
  table.low_table_subtitle3 caption {
    caption-side: bottom;
    text-align: left;
    margin: 16px 0 0 0;
  }
  table.low_table_subtitle3 tr th {
    width: 100%;
    border-bottom: #707070 1px solid;
    border-left: #707070 1px solid;
    border-right: #707070 1px solid;
    background-color: #E7F3FB;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table_subtitle3 tr th .sub_title {
    background-color: #CCE6F6;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
  table.low_table_subtitle3 tr th .sub_title.st_top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  table.low_table_subtitle3 tr th .sub_text {
    background-color: #E2F3FE;
    color: #2a2a2a;
    margin: 0;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
  }
  table.low_table_subtitle3 tr td {
    width: 100%;
    padding: 20px;
    border-bottom: #707070 1px solid;
    border-left: #707070 1px solid;
    border-right: #707070 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #444444;
    background-color: #ffffff;
  }
  table.low_table_subtitle3 tr:first-child th {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  table.low_table_subtitle3 tr:last-child th {
    border-bottom-left-radius: 0.7rem;
  }
  table.low_table_subtitle3 tr:last-child td {
    border-bottom-right-radius: 0.7rem;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide3 {
  width: 1200px;
  border-collapse: separate;
  border-spacing: 0;
  color: #2a2a2a;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0 0 0 0;
  line-height: 140%;
  border-radius: 0.7rem;
  border-top: #CCE6F6 1px solid;
}
table.low_table_slide3 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_slide3 tr th {
  width: auto;
  padding: 1rem;
  border-bottom: #707070 1px solid;
  border-left: #707070 1px solid;
  border-right: #707070 1px solid;
  background-color: #E7F3FB;
  color: #444444;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table_slide3 tr td {
  width: auto;
  padding: 1rem;
  border-bottom: #707070 1px solid;
  border-right: #707070 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #444444;
  background-color: #ffffff;
}
table.low_table_slide3 tr:first-child th {
  border-top-left-radius: 0.7rem;
}
table.low_table_slide3 tr:first-child td {
  border-top-right-radius: 0.7rem;
}
table.low_table_slide3 tr:last-child th {
  border-bottom-left-radius: 0.7rem;
  border-bottom: #707070 1px solid;
}
table.low_table_slide3 tr:last-child td {
  border-bottom-right-radius: 0.7rem;
}

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

@media screen and (min-width: 768px), print {
  table.low_table_slide3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #2a2a2a;
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0 0 0 0;
    line-height: 160%;
    border-radius: 0.7rem;
    border-top: #707070 1px solid;
  }
  table.low_table_slide3 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
    line-height: 160%;
  }
  table.low_table_slide3 tr th {
    width: auto;
    padding: 20px;
    border-bottom: #707070 1px solid;
    border-left: #707070 1px solid;
    border-right: #707070 1px solid;
    background-color: #E7F3FB;
    color: #444444;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table_slide3 tr td {
    width: auto;
    padding: 20px;
    border-bottom: #707070 1px solid;
    border-right: #707070 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #444444;
    background-color: #ffffff;
  }
  table.low_table_slide3 tr:first-child th {
    border-top-left-radius: 10px;
  }
  table.low_table_slide3 tr:first-child td {
    border-top-right-radius: 10px;
  }
  table.low_table_slide3 tr:last-child th {
    border-bottom-left-radius: 10px;
    border-bottom: #707070 1px solid;
  }
  table.low_table_slide3 tr:last-child td {
    border-bottom-right-radius: 10px;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #2a2a2a;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
}
table.low_table_spblock3 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_spblock3 tr th {
  width: 100%;
  padding: 1rem 0.5rem;
  border-bottom: #707070 1px solid;
  border-left: #707070 1px solid;
  border-right: #707070 1px solid;
  background-color: #E7F3FB;
  color: #444444;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
}
table.low_table_spblock3 tr td {
  width: 100%;
  padding: 1rem 0.5rem;
  border-bottom: #CCE6F6 1px solid;
  border-left: #707070 1px solid;
  border-right: #707070 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  line-height: 140%;
  display: block;
  color: #444444;
  background-color: #ffffff;
}
table.low_table_spblock3 tr td span {
  color: #0047AB;
  font-size: 2.2rem;
  font-weight: bold;
}
table.low_table_spblock3 tr td span a {
  color: #0047AB;
  text-decoration: none;
}
table.low_table_spblock3 tr:first-child th {
  border-top: #707070 1px solid;
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}
table.low_table_spblock3 tr:last-child td {
  border-bottom-left-radius: 0.7rem;
  border-bottom-right-radius: 0.7rem;
}

@media screen and (min-width: 768px), print {
  table.low_table_spblock3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #2a2a2a;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 10px;
  }
  table.low_table_spblock3 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_spblock3 tr th {
    width: 30%;
    padding: 20px;
    border-bottom: #707070 1px solid;
    border-left: #707070 1px solid;
    border-right: none;
    background-color: #E7F3FB;
    color: #444444;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
  }
  table.low_table_spblock3 tr td {
    width: 70%;
    padding: 20px;
    border-bottom: #707070 1px solid;
    border-left: #707070 1px solid;
    border-right: #707070 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    line-height: 140%;
    display: table-cell;
    color: #444444;
    background-color: #ffffff;
  }
  table.low_table_spblock3 tr td span {
    color: #CCE6F6;
    font-size: 3rem;
    font-weight: bold;
  }
  table.low_table_spblock3 tr td span a {
    color: #CCE6F6;
    text-decoration: none;
  }
  table.low_table_spblock3 tr:first-child th {
    border-top: #707070 1px solid;
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
  }
  table.low_table_spblock3 tr:first-child td {
    border-top: #707070 1px solid;
    border-top-right-radius: 10px;
  }
  table.low_table_spblock3 tr:last-child th {
    border-bottom-left-radius: 10px;
    border-bottom: #707070 1px solid;
  }
  table.low_table_spblock3 tr:last-child td {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 10px;
  }
}
/*画像*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.img_center {
  margin: 0 0 10px 0;
  text-align: center;
}
.img_center img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
}

@media screen and (min-width: 768px), print {
  .img_right {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right img {
    width: 400px;
    height: auto;
    border-radius: 10px;
  }
  .img_center {
    float: none;
    margin: 0 0 20px 0;
    text-align: center;
  }
  .img_center img {
    width: auto;
    height: auto;
    border-radius: 10px;
  }
}
/*リスト*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*標準 disc*/
ul.list_normal {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  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.4rem;
  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.4rem;
  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.4rem;
  margin: 0 0 2rem 0;
}
ul.list_maru li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.4rem;
  background-size: 1rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}

/*標準2列 maru*/
ul.list_maru_two {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_two li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.4rem;
  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.4rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_three li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.4rem;
  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.4rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_side li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.4rem;
  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 15px 0;
  }
  ul.list_normal li {
    margin: 0 0 5px 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 15px 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 5px 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 15px 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 5px 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 15px 0;
  }
  ul.list_maru li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 6px;
    background-size: 12px;
    margin: 0 0 5px 0;
    padding: 0 0 0 25px;
  }
  /*標準2列 maru*/
  ul.list_maru_two {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 15px 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 6px;
    background-size: 12px;
    margin: 0 0 5px 0;
    padding: 0 0 0 25px;
  }
  /*標準3列 maru*/
  ul.list_maru_three {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 15px 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 6px;
    background-size: 12px;
    margin: 0 1% 5px 0;
    padding: 0 0 0 25px;
  }
  /*標準横並び maru*/
  ul.list_maru_side {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 15px 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 6px;
    background-size: 12px;
    margin: 0 30px 5px 0;
    padding: 0 0 0 25px;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/*略歴*/
dl.bio_list {
  /*
  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-size: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.bio_list dt {
  width: 100%;
  margin: 0 0 0 0;
  font-weight: bold;
}
dl.bio_list dd {
  width: 100%;
  margin: 0 0 2rem 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.4rem;
  -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.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 1rem 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.4rem;
  -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: #E7F3FB;
  color: #444444;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: #707070 1px solid;
}
dl.title_box dt:first-child {
  border-top: #707070 1px solid;
}
dl.title_box dd {
  width: 100%;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: #707070 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: 515px;
  }
  dl.bio_list dt {
    width: 110px;
    margin: 0 0 1rem 0;
    font-weight: normal;
  }
  dl.bio_list dd {
    width: 395px;
    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: 1200px;
  }
  dl.num_list dt {
    width: 25px;
    margin: 0 0 10px 0;
  }
  dl.num_list dd {
    width: 1175px;
    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: 1200px;
  }
  dl.symbol_list dt {
    width: 25px;
    margin: 0 0 0 0;
  }
  dl.symbol_list dd {
    width: 1175px;
    margin: 0 0 0 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: #E7F3FB;
    color: #444444;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: #707070 1px solid;
  }
  dl.title_box dt:first-child {
    border-top: #707070 1px solid;
  }
  dl.title_box dd {
    width: 100%;
    margin: 0;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: #707070 1px solid;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

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

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

/*二列*/
/*下層電話*/
.low_tel {
  margin: 0 0 2rem 0;
}
.low_tel span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 2.4rem;
  font-weight: bold;
}
.low_tel span i {
  font-size: 2.4rem;
}

.low_tel_button {
  background-color: #007BC6;
  width: auto;
  height: auto;
  margin: 0 0 2rem 0;
  text-align: left;
  text-decoration: none;
  padding: 1rem 4rem 1rem 2.5rem;
  line-height: 120%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: normal;
  border-radius: 0.5rem;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: relative;
}
.low_tel_button::before {
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 1rem;
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/icon_arrow_left2.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

.text_bold {
  font-weight: bold;
}

.text_red {
  color: #ff0000;
}

.text_underline {
  text-decoration: underline;
}

.line_dashed {
  border-bottom: #2a2a2a 1px dashed;
}

.large_text {
  font-size: 1.5rem;
}

.sub_title {
  color: #686868;
  font-family: "zenkakugothicnew_medium";
  font-size: 1.9rem;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 120%;
  padding: 0 0 0.6rem 0;
  margin: 1rem 0 1rem 0;
}

@media screen and (min-width: 768px), print {
  /*矢印*/
  .arrow {
    width: 0;
    height: 0;
    border: none;
    border-left: 98px solid transparent;
    border-right: 98px solid transparent;
    border-top: 33px solid #6FBAE8;
    text-align: center;
    display: block;
    margin: 30px 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: 1074px;
  }
  .two_box section {
    width: 48%;
  }
  /*強調*/
  .emphasis {
    background-color: #E7F3FB;
    border-radius: 10px;
    padding: 48px 36px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .emphasis p.mb_none {
    margin: 0;
  }
  .emphasis ul.mb_none {
    margin: 0;
  }
  /*下層電話*/
  .low_tel {
    margin: 0 0 30px 0;
  }
  .low_tel span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 4rem;
    font-weight: bold;
  }
  .low_tel span i {
    font-size: 4rem;
  }
  .low_tel_button {
    background-color: #007BC6;
    width: auto;
    height: auto;
    margin: 0 0 30px 0;
    text-align: left;
    text-decoration: none;
    padding: 12px 22px 12px 22px;
    line-height: 120%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff;
    font-size: 2rem;
    font-weight: normal;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
            box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
    position: relative;
  }
  .low_tel_button::before {
    content: "";
    display: none;
  }
  .text_bold {
    font-weight: bold;
  }
  .text_red {
    color: #ff0000;
  }
  .text_underline {
    text-decoration: underline;
  }
  .line_dashed {
    border-bottom: #2a2a2a 1px dashed;
  }
  .large_text {
    font-size: 2rem;
  }
  .sub_title {
    color: #686868;
    font-family: "zenkakugothicnew_medium";
    font-size: 3.2rem;
    font-weight: normal;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 150%;
    padding: 0 0 0 0;
    margin: 44px 0 25px 0;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
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-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: 1rem auto 1rem auto;
}
ul.pankuzu_list li::after {
  content: "＞";
  font-size: 1.4rem;
  color: #2a2a2a;
  margin: 0 0.5rem;
}
ul.pankuzu_list li a {
  font-size: 1.4rem;
  color: #2a2a2a;
  text-decoration: none;
}
ul.pankuzu_list li:last-child:after {
  content: "";
  margin: 0;
}

@media screen and (min-width: 768px), print {
  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-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: 1200px;
    margin: 18px auto 18px auto;
  }
  ul.pankuzu_list li::after {
    content: "＞";
    font-size: 1.8rem;
    color: #2a2a2a;
    margin: 0 10px;
  }
  ul.pankuzu_list li a {
    font-size: 1.8rem;
    color: #2a2a2a;
    text-decoration: none;
  }
  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: #2a2a2a;
  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: #2a2a2a;
    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;
  }
}
/* -----------------------------------------------------------
　リンク、ボタン
----------------------------------------------------------- */
.low_link_text {
  color: #0047AB;
}

.low_button {
  background-color: #007BC6;
  width: auto;
  height: auto;
  margin: 0 0 0 0;
  text-align: left;
  text-decoration: none;
  padding: 1rem 4rem 1rem 2.5rem;
  line-height: 130%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: normal;
  border-radius: 0.5rem;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: relative;
}
.low_button::before {
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 1rem;
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/icon_arrow_left2.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

ul.list_link {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  margin: 0 0 2rem 0;
}
ul.list_link li {
  margin: 0 0 1rem 0;
}
ul.list_link li a {
  background-color: #F5F5F5;
  width: auto;
  height: auto;
  margin: 0 0 0 0;
  text-align: left;
  text-decoration: none;
  padding: 1rem 4rem 1rem 2.5rem;
  line-height: 120%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #007BC6;
  font-size: 1.4rem;
  font-weight: normal;
  border-radius: 0.5rem;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: relative;
}
ul.list_link 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_arrow_bottom.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (min-width: 768px), print {
  .low_link_text {
    color: #0047AB;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_link_text:hover {
    color: #91bcf7;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button {
    background-color: #007BC6;
    width: auto;
    height: auto;
    margin: 0 0 0 0;
    text-align: left;
    text-decoration: none;
    padding: 12px 60px 12px 22px;
    line-height: 120%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff;
    font-size: 2rem;
    font-weight: normal;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
            box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button::before {
    position: absolute;
    top: calc(50% - 12.5px);
    right: 20px;
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url("../img/icon_arrow_left2.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .low_button:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  ul.list_link {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    margin: 0 0 2rem 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.list_link li {
    margin: 0 15px 20px 0;
  }
  ul.list_link li a {
    background-color: #F5F5F5;
    width: auto;
    height: auto;
    margin: 0 0 0 0;
    text-align: left;
    text-decoration: none;
    padding: 12px 60px 12px 22px;
    line-height: 120%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #007BC6;
    font-size: 2rem;
    font-weight: normal;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
            box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  ul.list_link li a::before {
    position: absolute;
    top: calc(50% - 12.5px);
    right: 20px;
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url("../img/icon_arrow_bottom.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  ul.list_link li a:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/*下層*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　院長紹介
----------------------------------------------------------- */
.doctor_box .img_doctor {
  margin: 0 0 1rem 0;
  text-align: center;
}
.doctor_box .img_doctor img {
  width: 70%;
  height: auto;
  border-radius: 0.8rem;
}
.doctor_box .doctor_text .doctor_name {
  text-align: right;
}
.doctor_box .doctor_text .doctor_name span {
  font-size: 1.8rem;
}

@media screen and (min-width: 768px), print {
  .doctor_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;
  }
  .doctor_box .img_doctor {
    width: 356px;
    margin: 0;
    text-align: right;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .doctor_box .img_doctor img {
    width: 356px;
    height: auto;
    border-radius: 10px;
  }
  .doctor_box .doctor_text {
    width: 700px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .doctor_box .doctor_text .doctor_name {
    text-align: right;
  }
  .doctor_box .doctor_text .doctor_name span {
    font-size: 2.2rem;
  }
}
/* -----------------------------------------------------------
　医院紹介
----------------------------------------------------------- */
.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;
}

/*スライダー*/
.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;
  }
  /*スライダー*/
  .slider-pro {
    margin: 0 auto 30px auto !important;
  }
  .slider-pro p.sp-layer {
    font-size: 2rem !important;
  }
}
/* -----------------------------------------------------------
　初めての方へ(流れ)
----------------------------------------------------------- */
.flow_box {
  border: #6FBAE8 2px solid;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.flow_box h3 {
  margin: 0 0 2rem 0;
}
.flow_box p.flow_title {
  color: #6FBAE8;
  font-family: "zenkakugothicnew_medium";
  font-size: 1.9rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
}
.flow_box p.mb_none {
  margin: 0;
}
.flow_box .flow_box_img {
  width: 100%;
}
.flow_box .flow_box_img img {
  width: calc(100% - 3px);
  height: auto;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  margin: 0 0 3px 0;
}

@media screen and (min-width: 768px), print {
  .flow_box {
    border: #6FBAE8 1px solid;
    border-radius: 10px;
    padding: 37px 32px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 26px 0;
  }
  .flow_box h3 {
    margin: 0 0 35px 0;
  }
  .flow_box p.flow_title {
    color: #6FBAE8;
    font-family: "zenkakugothicnew_medium";
    font-size: 2.6rem;
    font-weight: normal;
  }
  .flow_box p.mb_none {
    margin: 0;
  }
  .flow_box .flow_box_img {
    width: 100%;
    text-align: center;
  }
  .flow_box .flow_box_img img {
    width: auto;
    height: auto;
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
    margin: 0 0 3px 0;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
dl.access_info {
  width: 96%;
  margin: 2rem 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;
  font-size: 1.2rem;
  line-height: 160%;
}
dl.access_info dt {
  width: 25%;
  margin: 0 0 1rem 0;
}
dl.access_info dt span {
  background-color: #007BC6;
  color: #ffffff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 0.2rem;
  height: 8vw;
  letter-spacing: 0.1em;
}
dl.access_info dd {
  width: 70%;
  margin: 0 0 1rem 0;
  padding: 0.3rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

iframe.accessmap {
  width: 96%;
  height: 500px;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px), print {
  dl.access_info {
    width: 550px;
    margin: 20px 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;
    font-size: 1.6rem;
    line-height: 160%;
  }
  dl.access_info dt {
    width: 25%;
    margin: 0 0 20px 0;
  }
  dl.access_info dt span {
    background-color: #007BC6;
    color: #ffffff;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: bold;
    font-size: 1.6rem;
    border-radius: 0.2rem;
    height: 40px;
    letter-spacing: 0.1em;
  }
  dl.access_info dd {
    width: 70%;
    margin: 0 0 20px 0;
    padding: 6px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  iframe.accessmap {
    width: 100%;
    height: 500px;
    display: block;
    margin: 0;
  }
}
/*-----------------------------------------------------------
 よくある質問
----------------------------------------------------------- */
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-family: "zenkakugothicnew_medium";
  font-weight: normal;
  font-size: 1.4rem;
  -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 1.4rem 0;
}
dl.qabox dt.question {
  color: #039FB1;
}
dl.qabox dt.answer {
  margin: 0 0 0.6rem 0;
  color: #007BC6;
}
dl.qabox dd {
  width: 94%;
  margin: 0 0 1.4rem 0;
}
dl.qabox dd.question {
  color: #039FB1;
}
dl.qabox dd.answer {
  margin: 0 0 0.6rem 0;
  color: #007BC6;
}
dl.qabox.mt {
  margin: 4rem 0 0 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-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 2.4rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.qabox dt {
    width: 47px;
    margin: 0 0 15px 0;
  }
  dl.qabox dt.question {
    color: #039FB1;
  }
  dl.qabox dt.answer {
    margin: 0 0 7px 0;
    color: #007BC6;
  }
  dl.qabox dd {
    width: 1153px;
    margin: 0 0 15px 0;
  }
  dl.qabox dd.question {
    color: #039FB1;
  }
  dl.qabox dd.answer {
    margin: 0 0 7px 0;
    color: #007BC6;
  }
  dl.qabox.mt {
    margin: 40px 0 0 0;
  }
}
/*メールフォームプロ用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　お問い合わせ・メールフォーム
----------------------------------------------------------- */
#mailformpro table {
  font-size: 1.4rem;
  line-height: 140%;
  width: 100%;
}
#mailformpro table tr th {
  display: block;
  text-align: left;
  font-weight: normal;
  background-color: #444444;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #2a2a2a;
  border-top: #007BC6 1px solid;
  border-left: #007BC6 1px solid;
  border-right: #007BC6 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: #007BC6 1px solid;
  border-left: #007BC6 1px solid;
  border-right: #007BC6 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: #007BC6 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: #444444;
    padding: 1.5rem 1rem 1.5rem 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #007BC6 1px solid;
    border-left: #007BC6 1px solid;
    border-right: #007BC6 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: #007BC6 1px solid;
    border-left: #007BC6 1px solid;
    border-right: #007BC6 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 2s ease 1s 1 normal backwards;
          animation: fvfadein 2s ease 1s 1 normal backwards;
}

/*サイド*/
.first_view_side_anime {
  -webkit-animation: fvfadein_right 2s ease 1s 1 normal backwards;
          animation: fvfadein_right 2s ease 1s 1 normal backwards;
}

/*ヘッダー*/
.first_view_header_anime {
  -webkit-animation: fvfadein_top 1s ease 1s 1 normal backwards;
          animation: fvfadein_top 1s ease 1s 1 normal backwards;
}

/*フッター*/
.first_view_footer_anime {
  -webkit-animation: fvfadein_bottom 1s ease 1s 1 normal backwards;
          animation: fvfadein_bottom 1s ease 1s 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);
  }
}
@-webkit-keyframes fvfadein_right {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fvfadein_right {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fvfadein_top {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fvfadein_top {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fvfadein_bottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fvfadein_bottom {
  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 2s ease 1s 1 normal backwards;
            animation: fvfadein 2s ease 1s 1 normal backwards;
  }
  /*サイド*/
  .first_view_side_anime {
    -webkit-animation: fvfadein_right 2s ease 1s 1 normal backwards;
            animation: fvfadein_right 2s ease 1s 1 normal backwards;
  }
  /*ヘッダー*/
  .first_view_header_anime {
    -webkit-animation: fvfadein_top 1s ease 1s 1 normal backwards;
            animation: fvfadein_top 1s ease 1s 1 normal backwards;
  }
  /*フッター*/
  .first_view_footer_anime {
    -webkit-animation: fvfadein_bottom 0.5s ease 1s 1 normal backwards;
            animation: fvfadein_bottom 0.5s ease 1s 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);
    }
  }
  @-webkit-keyframes fvfadein_right {
    from {
      opacity: 0;
      -webkit-transform: translateX(20px);
              transform: translateX(20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes fvfadein_right {
    from {
      opacity: 0;
      -webkit-transform: translateX(20px);
              transform: translateX(20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @-webkit-keyframes fvfadein_top {
    from {
      opacity: 0;
      -webkit-transform: translateY(-20px);
              transform: translateY(-20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fvfadein_top {
    from {
      opacity: 0;
      -webkit-transform: translateY(-20px);
              transform: translateY(-20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @-webkit-keyframes fvfadein_bottom {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fvfadein_bottom {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
/* -----------------------------------------------------------
　お知らせのアニメーション
----------------------------------------------------------- */
.greeting_anime1 {
  -webkit-animation: greeting_fadein 0.5s ease 2s 1 normal backwards;
          animation: greeting_fadein 0.5s ease 2s 1 normal backwards;
}

.greeting_anime2 {
  -webkit-animation: greeting_fadein 0.5s ease 2.5s 1 normal backwards;
          animation: greeting_fadein 0.5s ease 2.5s 1 normal backwards;
}

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

@keyframes greeting_fadein {
  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 {
  .greeting_anime1 {
    -webkit-animation: none;
            animation: none;
  }
  .greeting_anime2 {
    -webkit-animation: none;
            animation: none;
  }
}
/* -----------------------------------------------------------
　アニメーション
----------------------------------------------------------- */
/*左から*/
.scroll_left {
  /*transform: translateX(-200px);*/
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
}

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

/*右から*/
.scroll_right {
  /*transform: translateX(200px);*/
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
  opacity: 0;
}

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

/*下から*/
.scroll_up {
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: all 1s ease-in;
  transition: all 1s 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(-50px);
            transform: translateX(-50px);
    -webkit-transition: all 1s ease-in;
    transition: all 1s ease-in;
  }
  .scroll_left.blockIn {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /*右から*/
  .scroll_right {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    -webkit-transition: all 1s ease-in;
    transition: all 1s ease-in;
  }
  .scroll_right.blockIn {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /*下から*/
  .scroll_up {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 1s ease-in;
    transition: all 1s 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 1s ease-in;
    transition: all 1s ease-in;
    opacity: 0;
  }
  .scroll_up_pc.blockIn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  /*下から順番*/
  .scroll_up1 {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    opacity: 0;
  }
  .scroll_up2 {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
    opacity: 0;
  }
  .scroll_up3 {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.9s ease-in;
    transition: all 0.9s ease-in;
    opacity: 0;
  }
  .scroll_up1.blockIn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .scroll_up2.blockIn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .scroll_up3.blockIn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.scroll_treatment_up li {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  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;
}

/* -----------------------------------------------------------
　診療内容 divタイプ
----------------------------------------------------------- */
.scroll_treatment_up2 .tc_up {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}
.scroll_treatment_up2 .tc_up.tcup1 {
  -webkit-transition: all 0.5s ease-in 0.1s;
  transition: all 0.5s ease-in 0.1s;
}
.scroll_treatment_up2 .tc_up.tcup2 {
  -webkit-transition: all 0.5s ease-in 0.2s;
  transition: all 0.5s ease-in 0.2s;
}
.scroll_treatment_up2 .tc_up.tcup3 {
  -webkit-transition: all 0.5s ease-in 0.3s;
  transition: all 0.5s ease-in 0.3s;
}
.scroll_treatment_up2 .tc_up.tcup4 {
  -webkit-transition: all 0.5s ease-in 0.4s;
  transition: all 0.5s ease-in 0.4s;
}
.scroll_treatment_up2 .tc_up.tcup5 {
  -webkit-transition: all 0.5s ease-in 0.5s;
  transition: all 0.5s ease-in 0.5s;
}
.scroll_treatment_up2 .tc_up.tcup6 {
  -webkit-transition: all 0.5s ease-in 0.6s;
  transition: all 0.5s ease-in 0.6s;
}
.scroll_treatment_up2 .tc_up.tcup7 {
  -webkit-transition: all 0.5s ease-in 0.7s;
  transition: all 0.5s ease-in 0.7s;
}
.scroll_treatment_up2 .tc_up.tcup8 {
  -webkit-transition: all 0.5s ease-in 0.8s;
  transition: all 0.5s ease-in 0.8s;
}
.scroll_treatment_up2 .tc_up.tcup9 {
  -webkit-transition: all 0.5s ease-in 0.9s;
  transition: all 0.5s ease-in 0.9s;
}

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

/* -----------------------------------------------------------
 フォントサイズ基本
----------------------------------------------------------- */
html {
  font-size: 3.125vw;
  overflow-y: auto;
  font-family: "zenkakugothicnew_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #2a2a2a;
  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: "zenkakugothicnew_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    color: #2a2a2a;
    background-color: #ffffff;
    padding: 0;
    /*ページ内リンク用*/
    scroll-behavior: smooth;
    /*スクロール後の余白設定*/
    scroll-padding-top: 110px;
  }
}
/* -----------------------------------------------------------
 構成
----------------------------------------------------------- */
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;
  padding: 0;
}

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

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

.main_low {
  height: auto;
  width: 96%;
  margin: 2rem auto 4rem auto;
  padding: 0;
}

@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: 0;
  }
  .main {
    height: auto;
    width: 100%;
    margin: 0 0 0 0;
    padding: 0;
  }
  .main_low {
    height: auto;
    width: 1074px;
    margin: 50px auto 100px auto;
    padding: 0;
  }
}
/* -----------------------------------------------------------
　ヘッダー
----------------------------------------------------------- */
header.header {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2vw 0 3vw 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
header.header .header_box {
  /*ロゴとハンバーガー*/
  /*ヘッダー情報*/
}
header.header .header_box .header_top {
  width: 100%;
  height: 13vw;
  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_box .header_top .container {
  width: 15%;
}
header.header .header_box .header_top .head_logo {
  width: 80%;
  margin: 0 0 0 2%;
}
header.header .header_box .header_top .head_logo a {
  display: block;
  width: 100%;
  text-decoration: none;
}
header.header .header_box .header_top .head_logo a img {
  width: 95%;
  height: auto;
}
header.header .header_box .header_tel {
  display: none;
}
header.header .header_box .header_address {
  display: none;
}

.side_web_link {
  display: none;
}

.side_line_link {
  display: none;
}

@media screen and (min-width: 768px), print {
  header.header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 9999;
  }
  header.header .header_box {
    width: 100%;
    height: 110px;
    margin: 0;
    position: relative;
    /*ロゴとハンバーガー*/
    /*ヘッダー情報*/
  }
  header.header .header_box .header_top {
    width: 350px;
    height: 55.6px;
    margin: 0;
    position: absolute;
    top: 8px;
    left: 20px;
    z-index: 0;
    display: block;
    /*ハンバーガー*/
    /*ロゴ*/
  }
  header.header .header_box .header_top .container {
    display: none;
  }
  header.header .header_box .header_top .head_logo {
    width: 350px;
    margin: 0;
  }
  header.header .header_box .header_top .head_logo a {
    display: block;
    width: 100%;
    text-decoration: none;
  }
  header.header .header_box .header_top .head_logo a img {
    width: 350px;
    height: auto;
  }
  header.header .header_box .header_address {
    width: 290px;
    height: 35px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    background-color: #007BC6;
    color: #ffffff;
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 1.8rem;
    letter-spacing: 0;
    position: absolute;
    top: 0;
    right: 20px;
    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;
  }
  header.header .header_box .header_address i {
    font-size: 2rem;
  }
  header.header .header_box .header_tel {
    width: 160px;
    height: 35px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    background-color: #007BC6;
    color: #ffffff;
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 2rem;
    letter-spacing: 0;
    position: absolute;
    top: 0;
    right: 320px;
    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;
  }
  header.header .header_box .header_tel i {
    font-size: 2rem;
  }
  .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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 80px;
    height: 160px;
    text-decoration: none;
    color: #ffffff;
    background-color: #8FC31F;
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 130px;
    right: 0;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 12px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .side_web_link span {
    white-space: pre;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    display: inline-block;
  }
  .side_web_link span i {
    font-size: 2.8rem;
    margin: 0 0 5px 0;
  }
  .side_web_link:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    -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: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 80px;
    height: 80px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    position: fixed;
    top: 300px;
    right: 0;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_line_link img {
    width: 40px;
    height: 40px;
  }
  .side_line_link:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　グローバルナビTOP
----------------------------------------------------------- */
nav.main_nav_pc_top {
  display: none;
}

@media screen and (min-width: 768px), print {
  nav.main_nav_pc_top {
    display: block;
    width: 100%;
    height: 60px;
    margin: -60px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc_top .main_nav_box {
    width: 1200px;
    margin: 0 auto;
  }
  nav.main_nav_pc_top .main_nav_box .nav_logo {
    display: none;
  }
  nav.main_nav_pc_top .main_nav_box ul {
    width: 1200px;
    height: 60px;
    margin: 0 0 0 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_top .main_nav_box ul li {
    display: block;
    width: auto;
    height: 60px;
    margin: 0;
    padding: 0;
  }
  nav.main_nav_pc_top .main_nav_box ul li .menu-child {
    display: none;
  }
  nav.main_nav_pc_top .main_nav_box ul li a {
    width: 100%;
    height: 60px;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 1px 0 0 0;
    letter-spacing: 0.05em;
    font-family: "zenkakugothicnew_medium";
    font-weight: 500;
    font-size: 1.8rem;
    text-align: center;
    line-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc_top .main_nav_box ul li a.menu-parent_a span::after {
    content: "\e94c";
    font-family: "fontello";
    font-size: 1.75rem;
    color: #007BC6;
    margin: 0 0 0 3px;
  }
  nav.main_nav_pc_top .main_nav_box ul li a:hover {
    cursor: pointer;
    cursor: hand;
    text-shadow: 0 0 5px #ffffff, 0 0 5px #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc_top .main_nav_box ul li a i {
    position: relative;
    font-style: normal;
    width: 100%;
    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: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: -6px 0 0 0;
    padding: 6px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box {
    width: 100%;
    background-color: rgba(204, 230, 246, 0.9);
    margin: 0 0 0 0;
    padding: 44px 0 53px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 0;
    z-index: 999;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul {
    all: initial;
    display: block;
    width: 1120px;
    margin: 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: 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;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li {
    all: initial;
    margin: 34px 0 0 0;
    padding: 0;
    width: 224px;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li a {
    all: initial;
    width: 224px;
    height: 85px;
    color: #444444;
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 100%;
    letter-spacing: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    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;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li a::before {
    content: "";
    display: block;
    width: 85px;
    height: 85px;
    margin: 0 10px 0 0;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li a:hover {
    cursor: pointer;
    cursor: hand;
    text-shadow: none;
    color: #007BC6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li a:hover::before {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.doctor a::before {
    background: url("../img/icon_doctor.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.clinic {
    width: 276px;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.clinic a {
    width: 276px;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.clinic a::before {
    background: url("../img/icon_clinic.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.first a::before {
    background: url("../img/icon_first.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.internal_medicine a::before {
    background: url("../img/icon_internal_medicine.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.lifestyle_related a::before {
    background: url("../img/icon_lifestyle_related.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.high_blood_pressure a::before {
    background: url("../img/icon_high_blood_pressure.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.dyslipidemia a::before {
    background: url("../img/icon_dyslipidemia.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.hyperuricemia a::before {
    background: url("../img/icon_hyperuricemia.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.gastro a::before {
    background: url("../img/icon_gastro.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.liver a::before {
    background: url("../img/icon_liver.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.health_check a::before {
    background: url("../img/icon_health_check.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.vaccination a::before {
    background: url("../img/icon_vaccination.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.occult_blood_in_stool a::before {
    background: url("../img/icon_occult_blood_in_stool.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.bloody_stool_black_stool a::before {
    background: url("../img/icon_bloody_stool_black_stool.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.abnormal_liver_function_test a::before {
    background: url("../img/icon_abnormal_liver_function_test.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.weight_loss a::before {
    background: url("../img/icon_weight_loss.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.diarrhea a::before {
    background: url("../img/icon_diarrhea.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.constipation a::before {
    background: url("../img/icon_constipation.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.heavy_stomach a::before {
    background: url("../img/icon_heavy_stomach.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.dry_mouth a::before {
    background: url("../img/icon_dry_mouth.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li.abdominal_pain a::before {
    background: url("../img/icon_abdominal_pain.svg") no-repeat;
    background-size: contain;
  }
  nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li:nth-child(1), nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li:nth-child(2), nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li:nth-child(3), nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li:nth-child(4), nav.main_nav_pc_top .main_nav_box ul li .sub_nav_box ul li:nth-child(5) {
    margin: 0 0 0 0;
  }
  .nav_add {
    position: fixed !important;
    top: 0 !important;
    z-index: 9999999999;
    height: 68px !important;
    background-color: #ffffff;
  }
  .nav_add .main_nav_box .nav_logo {
    display: block !important;
    position: absolute;
    top: 5px;
    left: 50%;
    margin: 0 0 0 -595px;
  }
  .nav_add .main_nav_box .nav_logo img {
    width: 300px;
    height: auto;
  }
  .nav_add .main_nav_box ul {
    margin: 10px 0 0 430px !important;
  }
  .nav_add .main_nav_box ul li a {
    color: #2a2a2a !important;
  }
  .nav_add .main_nav_box ul li a.menu-parent_a span::after {
    color: #2a2a2a !important;
  }
  .nav_add .main_nav_box ul li a::before {
    border-bottom: 1px solid #2a2a2a !important;
  }
  .nav_add .main_nav_box ul li .sub_nav_box ul {
    margin: 0 auto !important;
  }
  .nav_add .main_nav_box ul li .sub_nav_box ul li a::before {
    border-bottom: none !important;
  }
  .nav_add .main_nav_box ul li .sub_nav_box.sub3 .sub_nav_box_inner ul {
    margin: 0 !important;
  }
}
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
/*トップキービジュアル*/
.key_visual {
  position: relative;
  width: 100%;
  height: 100vw;
  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: 100vw;
}
.key_visual .key .key_01 {
  background: url("../img/key_visual_01.jpg") no-repeat;
  background-size: cover;
  background-position: right -54vw top 20vw;
}
.key_visual .key .key_02 {
  background: url("../img/key_visual_02.jpg") no-repeat;
  background-size: cover;
  background-position: center top 20vw;
}
.key_visual .key .key_03 {
  background: url("../img/key_visual_03.jpg") no-repeat;
  background-size: cover;
  background-position: right -25vw top 20vw;
  /*background-position: right -60vw top 20vw;*/
}
.key_visual .key .key_04 {
  background: url("../img/key_visual_04.jpg") no-repeat;
  background-size: cover;
  background-position: right -57vw top 14vw;
}
.key_visual .key_contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vw;
}
.key_visual .key_contents img {
  display: block;
  width: 98%;
  height: auto;
  position: absolute;
  bottom: 5rem;
  left: 2%;
}
.key_visual .key_contents .catch_text {
  position: absolute;
  bottom: 1.8rem;
  left: 2%;
  font-family: "zenkakugothicnew_bold";
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 0 0 1px #ffffff, 0 0 1px #ffffff, 0 0 1px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff;
  margin: 0;
  line-height: 140%;
  color: #2a2a2a;
}

/*下層キービジュアル*/
.key_visual_low {
  width: 100%;
  height: 50vw;
  background: url("../img/key_visual_low.jpg") no-repeat;
  background-position: left 55% bottom;
  background-size: 140%;
  background-color: #e9f1f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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: "zenkakugothicnew_medium";
  font-weight: normal;
  font-size: 2.2rem;
  text-align: right;
  color: #444444;
  line-height: 160%;
  letter-spacing: 0.1em;
  padding: 15vw 2% 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  /*トップキービジュアル*/
  .key_visual {
    position: relative;
    width: 100%;
    height: 900px;
    margin: 0 0 0 0;
  }
  .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100% !important;
    height: 900px;
    margin: 0 auto;
    overflow: hidden;
    /*大枠*/
  }
  .key_visual .key .key_bg {
    width: 100%;
    height: 900px;
  }
  .key_visual .key .key_01 {
    background: url("../img/key_visual_01.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_02 {
    background: url("../img/key_visual_02.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_03 {
    background: url("../img/key_visual_03.jpg") 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: 900px;
  }
  .key_visual .key_contents img {
    display: block;
    width: 809px;
    height: auto;
    position: absolute;
    bottom: 153px;
    left: 100px;
  }
  .key_visual .key_contents .catch_text {
    position: absolute;
    bottom: 61px;
    left: 100px;
    font-family: "zenkakugothicnew_bold";
    font-weight: bold;
    font-size: 3.1rem;
    text-shadow: 0 0 1px #ffffff, 0 0 1px #ffffff, 0 0 1px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff;
    margin: 0;
    line-height: 138%;
    letter-spacing: -0.05em;
    color: #2a2a2a;
  }
  /*下層キービジュアル*/
  .key_visual_low {
    width: 100%;
    height: 500px;
    background: url("../img/key_visual_low.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    background-color: #e9f1f4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -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 {
    width: 1200px;
    height: 500px;
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 3.6rem;
    text-align: right;
    color: #444444;
    line-height: 160%;
    letter-spacing: 0.1em;
    padding: 270px 42px 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
}
/* -----------------------------------------------------------
　お知らせ
----------------------------------------------------------- */
.notice_frame {
  width: 100%;
  margin: 3rem 0 2.7rem 0;
}
.notice_frame h2.notice_title {
  font-family: "zenkakugothicnew_medium";
  font-size: 1.8rem;
  font-weight: normal;
  color: #686868;
  letter-spacing: 0;
  width: 94%;
  margin: 0 auto 0 auto;
}
.notice_frame h2.notice_title span {
  font-family: "petitformalscript_regular";
  font-size: 4rem;
  font-weight: normal;
  color: #6FBAE8;
  display: block;
  margin: 1rem 0 0 0;
}
.notice_frame .notice_box {
  width: 94%;
  height: 100vw;
  overflow-y: scroll;
  margin: 2rem auto 0 auto;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: #999999 1px solid;
  border-bottom: #999999 1px solid;
  /* スクロールバー1 */
}
.notice_frame .notice_box::-webkit-scrollbar {
  width: 0.6rem; /* 横幅設定 */
}
.notice_frame .notice_box::-webkit-scrollbar-thumb {
  background: #D5D4D4; /* ハンドルの色 */
}
.notice_frame .notice_box::-webkit-scrollbar-track {
  background: #F5F5F5; /* 背景色 */
}
.notice_frame .notice_box .medico-info-list {
  height: auto;
  margin: 0 0 0 0;
  width: 100%;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding: 0 0 1.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header {
  color: #014F7E;
  margin: 0 0 0 0;
  padding: 1rem 0 1rem 0;
  font-family: "zenkakugothicnew_medium";
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 120%;
  position: relative;
}
.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_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header::before {
  display: block;
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/icon_arrow_notice.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 1.2rem;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header.open::before {
  content: "";
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}
.notice_frame .notice_box .medico-info-list .accordion-container .accordion-item:first-of-type .accordion-header {
  border-top: none;
}
.notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content {
  padding: 0 1rem 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  color: #444444;
  font-family: "zenkakugothicnew_medium";
  font-size: 1.4rem;
  line-height: 120%;
}
.notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p a {
  color: #2a2a2a;
  font-size: 1.4rem;
}
.notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner ul {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
.notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner ul li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}
.notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner ul li p {
  margin: 0;
  margin-left: 0 !important;
}
.notice_frame .notice_box .medico-info-list .accordion-container .accordion-item.open .accordion-header::before {
  content: "";
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}

@media screen and (min-width: 768px), print {
  .notice_frame {
    width: 1200px;
    margin: 100px 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;
    overflow: visible;
  }
  .notice_frame h2.notice_title {
    font-family: "zenkakugothicnew_medium";
    font-size: 2.4rem;
    font-weight: normal;
    color: #686868;
    letter-spacing: 0;
    width: 308px;
    margin: 0 0 0 0;
  }
  .notice_frame h2.notice_title span {
    font-family: "petitformalscript_regular";
    font-size: 6rem;
    font-weight: normal;
    color: #6FBAE8;
    display: block;
    margin: -4px 0 0 0;
  }
  .notice_frame .notice_box {
    width: 890px;
    height: 450px;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 0 0 0 0;
    padding: 0 0 30px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #999999 1px solid;
    border-bottom: #999999 1px solid;
    /* スクロールバー1 */
  }
  .notice_frame .notice_box::-webkit-scrollbar {
    width: 15px; /* 横幅設定 */
  }
  .notice_frame .notice_box::-webkit-scrollbar-thumb {
    background: #D5D4D4; /* ハンドルの色 */
  }
  .notice_frame .notice_box::-webkit-scrollbar-track {
    background: #F5F5F5; /* 背景色 */
  }
  .notice_frame .notice_box .medico-info-list {
    height: auto;
    margin: 0;
    width: 890px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    padding: 18px 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header {
    width: 845px;
    color: #014F7E;
    margin: 0 0 4px 0;
    padding: 32px 0 0 0;
    font-family: "zenkakugothicnew_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 130%;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .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_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header::before {
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    background: url("../img/icon_arrow_notice.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 37px;
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header.open::before {
    content: "";
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header:hover {
    cursor: pointer;
    cursor: hand;
    color: #007BC6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item:first-of-type .accordion-header {
    border-top: none;
    padding: 0 0 0 0;
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item:first-of-type .accordion-header::before {
    top: 6px;
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content {
    width: 845px;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    color: #444444;
    font-family: "zenkakugothicnew_medium";
    font-size: 1.8rem;
    line-height: 150%;
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p a {
    color: #007BC6;
    font-size: 1.4rem;
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner ul {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner ul li {
    margin: 0 0 5px 25px;
    padding: 0;
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner ul li p {
    margin: 0;
    margin-left: 0 !important;
  }
  .notice_frame .notice_box .medico-info-list .accordion-container .accordion-item.open .accordion-header::before {
    content: "";
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}
/* -----------------------------------------------------------
診療時間
----------------------------------------------------------- */
.time_frame {
  width: 100%;
  margin: 3rem 0 1.8rem 0;
}
.time_frame h2.time_title {
  font-family: "zenkakugothicnew_medium";
  font-size: 1.8rem;
  font-weight: normal;
  color: #686868;
  letter-spacing: 0;
  width: 94%;
  margin: 0 auto 0 auto;
}
.time_frame h2.time_title span {
  font-family: "petitformalscript_regular";
  font-size: 4rem;
  font-weight: normal;
  color: #6FBAE8;
  display: block;
  margin: 1rem 0 0 0;
}
.time_frame .timetable_box {
  width: 94%;
  height: auto;
  margin: 2rem auto 0 auto;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .time_frame {
    width: 1200px;
    margin: 100px 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;
    overflow: visible;
  }
  .time_frame h2.time_title {
    font-family: "zenkakugothicnew_medium";
    font-size: 2.4rem;
    font-weight: normal;
    color: #686868;
    letter-spacing: 0;
    width: 308px;
    margin: 0 0 0 0;
  }
  .time_frame h2.time_title span {
    font-family: "petitformalscript_regular";
    font-size: 6rem;
    font-weight: normal;
    color: #6FBAE8;
    display: block;
    margin: -2px 0 2px 0;
  }
  .time_frame .timetable_box {
    width: 890px;
    height: auto;
    margin: 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
診療時間
----------------------------------------------------------- */
.greeting_frame {
  width: 100%;
  margin: 2rem 0 2rem 0;
  background: url("../img/index_greeting_bg.webp") no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 4.2rem 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.greeting_frame h2.greeting_title {
  font-family: "zenkakugothicnew_medium";
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0;
  width: 94%;
  margin: 0 auto 0 auto;
  line-height: 160%;
}
.greeting_frame h2.greeting_title span {
  font-family: "petitformalscript_regular";
  font-size: 4rem;
  font-weight: normal;
  color: #ffffff;
  display: block;
  margin: 0 0 0 0;
}
.greeting_frame .greeting_box {
  margin: 2rem 0 0 0;
}
.greeting_frame .greeting_box .greeting_box_left .doctor_img {
  width: 80%;
  height: 100vw;
  background: url("../img/index_greeting_img.png") no-repeat;
  background-position: center top;
  background-size: cover;
  margin: 0 auto 0 auto;
  position: relative;
}
.greeting_frame .greeting_box .greeting_box_left .doctor_img .doctor_name {
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  margin: 0;
  font-family: "zenkakugothicnew_medium";
  font-weight: normal;
  font-size: 1.4rem;
  color: #ffffff;
}
.greeting_frame .greeting_box .greeting_box_left .doctor_img .doctor_name span {
  font-size: 1.6rem;
  margin: 0 0 0 1rem;
}
.greeting_frame .greeting_box .greeting_box_left .doctor_link {
  width: 80%;
  margin: 1rem auto 0 auto;
}
.greeting_frame .greeting_box .greeting_box_left .doctor_link a {
  width: 70%;
  height: 10vw;
  font-family: "zenkakugothicnew_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-decoration: none;
  background-color: #ffffff;
  color: #007BC6;
  padding: 0 0 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 0.5rem;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  margin: 0 0 0 30%;
  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;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.greeting_frame .greeting_box .greeting_box_left .doctor_link a::before {
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 1rem;
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/icon_arrow_left.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.greeting_frame .greeting_box .greeting_box_left .doctor_link a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #CCE6F6;
}
.greeting_frame .greeting_box .greeting_box_right {
  width: 94%;
  margin: 3rem auto 0 auto;
}
.greeting_frame .greeting_box .greeting_box_right p {
  color: #ffffff;
}

@media screen and (min-width: 768px), print {
  .greeting_frame {
    width: 100%;
    height: 1055px;
    margin: 98px 0 0 0;
    background: url("../img/index_greeting_bg.webp") no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 110px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .greeting_frame h2.greeting_title {
    font-family: "zenkakugothicnew_medium";
    font-size: 2.4rem;
    font-weight: normal;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0;
    width: 100%;
    margin: 0 auto 0 auto;
    line-height: 160%;
  }
  .greeting_frame h2.greeting_title span {
    font-family: "petitformalscript_regular";
    font-size: 6rem;
    font-weight: normal;
    color: #ffffff;
    display: block;
    margin: 0 0 6px 0;
  }
  .greeting_frame .greeting_box {
    width: 1200px;
    margin: 53px 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;
  }
  .greeting_frame .greeting_box .greeting_box_left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 426px;
  }
  .greeting_frame .greeting_box .greeting_box_left .doctor_img {
    width: 426px;
    height: 550px;
    background: url("../img/index_greeting_img.png") no-repeat;
    background-position: center top;
    background-size: cover;
    margin: 0 0 0 0;
    position: relative;
  }
  .greeting_frame .greeting_box .greeting_box_left .doctor_img .doctor_name {
    position: absolute;
    right: 40px;
    bottom: 22px;
    margin: 0;
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 2rem;
    color: #ffffff;
  }
  .greeting_frame .greeting_box .greeting_box_left .doctor_img .doctor_name span {
    font-size: 2.4rem;
    margin: 0 0 0 12px;
  }
  .greeting_frame .greeting_box .greeting_box_left .doctor_link {
    width: 426px;
    margin: 30px 0 0 0;
  }
  .greeting_frame .greeting_box .greeting_box_left .doctor_link a {
    width: 273px;
    height: 50px;
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 2rem;
    text-decoration: none;
    background-color: #ffffff;
    color: #007BC6;
    padding: 0 0 0 22px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
            box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
    margin: 0 0 0 153px;
    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;
  }
  .greeting_frame .greeting_box .greeting_box_left .doctor_link a::before {
    position: absolute;
    top: calc(50% - 12.5px);
    right: 20px;
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url("../img/icon_arrow_left.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .greeting_frame .greeting_box .greeting_box_right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 720px;
    margin: -7px 0 0 0;
  }
  .greeting_frame .greeting_box .greeting_box_right p {
    color: #ffffff;
    line-height: 210%;
    letter-spacing: 0;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
.features_frame {
  width: 100%;
  padding: 2.8rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_frame h2.features_title {
  font-family: "zenkakugothicnew_medium";
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  color: #686868;
  letter-spacing: 0;
  width: 94%;
  margin: 0 auto 2rem auto;
  line-height: 160%;
}
.features_frame h2.features_title span {
  font-family: "petitformalscript_regular";
  font-size: 4rem;
  font-weight: normal;
  color: #6FBAE8;
  display: block;
  margin: 0 0 0 0;
}
.features_frame .features_box_outside1 {
  width: 100%;
}
.features_frame .features_box_outside1 .features_box1 {
  width: 100%;
  margin: 0 0 2.5rem 0;
}
.features_frame .features_box_outside1 .features_box1 section {
  width: 94%;
  margin: -2px auto 0 auto;
  position: relative;
  padding: 0 0 0 14%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_frame .features_box_outside1 .features_box1 section h3.features_title1 {
  font-family: "zenkakugothicnew_bold";
  font-weight: bold;
  font-size: 1.6rem;
  color: #6FBAE8;
  line-height: 140%;
  margin: 0.5rem 0 1rem 0;
}
.features_frame .features_box_outside1 .features_box1 section .features_no {
  position: absolute;
  top: 0;
  left: 0;
  width: 12%;
  height: 100%;
  background: url("../img/features_no.svg") no-repeat;
  background-size: contain;
  background-position: left top;
  color: #999999;
  font-family: "petitformalscript_regular";
  font-weight: normal;
  font-size: 2rem;
  padding: 1rem 0 0 0;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.features_frame .features_box_outside1 .features_box1 section .features_text {
  font-family: "zenkakugothicnew_medium";
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 140%;
  margin: 0 0 1rem 0;
}
.features_frame .features_box_outside1 .features_box1.f01::after {
  content: "";
  display: block;
  width: 100%;
  height: 39vw;
  background: url("../img/index_feature_01.jpg") no-repeat;
  background-size: 200%;
  background-position: right top;
}
.features_frame .features_box_outside1 .features_box1.f02::after {
  content: "";
  display: block;
  width: 100%;
  height: 39vw;
  background: url("../img/index_feature_02.jpg") no-repeat;
  background-size: 200%;
  background-position: left top;
}
.features_frame .features_box_outside1 .features_box1.f03::after {
  content: "";
  display: block;
  width: 100%;
  height: 39vw;
  background: url("../img/index_feature_03.jpg") no-repeat;
  background-size: 200%;
  background-position: right top;
}
.features_frame .features_box_outside1 .features_box1.f04::after {
  content: "";
  display: block;
  width: 100%;
  height: 39vw;
  background: url("../img/index_feature_04.jpg") no-repeat;
  background-size: 200%;
  background-position: left top;
}
.features_frame .features_box_outside1 .features_box1.f05::after {
  content: "";
  display: block;
  width: 100%;
  height: 39vw;
  background: url("../img/index_feature_05.jpg") no-repeat;
  background-size: 200%;
  background-position: right top;
}
.features_frame .features_box_outside1 .features_box1.fb_right section {
  padding: 0 14% 0 0;
}
.features_frame .features_box_outside1 .features_box1.fb_right section h3.features_title1 {
  text-align: right;
}
.features_frame .features_box_outside1 .features_box1.fb_right section .features_no {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
}
.features_frame .features_box_outside2 {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(238, 252, 254)), to(rgb(239, 241, 255)));
  background: linear-gradient(to right, rgb(238, 252, 254) 0%, rgb(239, 241, 255) 100%);
  padding: 1rem 0 3.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_frame .features_box_outside2 .features_box_outside {
  margin: 2rem 0 0 0;
}
.features_frame .features_box_outside2 .features_box_outside .features_box {
  position: relative;
}
.features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left {
  position: relative;
  z-index: 2;
}
.features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section {
  width: 94%;
  margin: 0 auto;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: visible;
}
.features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section h3.features_title {
  text-align: left;
  color: #039FB1;
  font-family: "zenkakugothicnew_bold";
  font-weight: bold;
  font-size: 2rem;
  margin: 0 0 2rem 0;
  letter-spacing: 0;
  position: relative;
  overflow: visible;
}
.features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section h3.features_title span {
  color: #007BC6;
}
.features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section h3.features_title::before {
  content: "";
  width: 120%;
  height: 2px;
  border-bottom: #039FB1 2px solid;
  display: block;
  margin: 0 0 0 0;
  position: absolute;
  bottom: -1rem;
  right: 0;
}
.features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section .features_text {
  font-family: "zenkakugothicnew_medium";
  font-weight: normal;
  font-size: 1.4rem;
}
.features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section .features_link {
  width: 80%;
  height: 10vw;
  font-family: "zenkakugothicnew_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-decoration: none;
  background-color: #1854AE;
  color: #ffffff;
  padding: 0 0 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 0.5rem;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  margin: 0 0 0 20%;
  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;
}
.features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section .features_link::before {
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 1rem;
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/icon_arrow_left2.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section .features_link.green {
  background-color: #039FB1;
}
.features_frame .features_box_outside2 .features_box_outside .features_box figure.features_box_right {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 0 0;
}
.features_frame .features_box_outside2 .features_box_outside .features_box figure.features_box_right img {
  width: 100%;
  height: auto;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.features_frame .features_box_outside2 .features_box_outside .fb_01 figure.features_box_right img {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.features_frame .features_box_outside2 .features_box_outside .fb_02 .features_box_left section h3.features_title {
  color: #1854AE;
}
.features_frame .features_box_outside2 .features_box_outside .fb_02 .features_box_left section h3.features_title::before {
  content: "";
  display: none;
}
.features_frame .features_box_outside2 .features_box_outside .fb_02 .features_box_left section h3.features_title::after {
  content: "";
  width: 120%;
  height: 2px;
  border-bottom: #007BC6 2px solid;
  display: block;
  margin: 0 0 0 0;
  position: absolute;
  bottom: -1rem;
  left: 0;
}
.features_frame .features_box_outside2 .features_box_outside.fbo_last {
  margin: 2rem 0 0 0;
}

@media screen and (min-width: 768px), print {
  .features_frame {
    width: 100%;
    padding: 109px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .features_frame h2.features_title {
    font-family: "zenkakugothicnew_medium";
    font-size: 2.4rem;
    font-weight: normal;
    text-align: center;
    color: #686868;
    letter-spacing: 0;
    width: 100%;
    margin: 0 auto 63px auto;
    line-height: 160%;
  }
  .features_frame h2.features_title span {
    font-family: "petitformalscript_regular";
    font-size: 6rem;
    font-weight: normal;
    color: #6FBAE8;
    display: block;
    margin: 0 0 6px 0;
  }
  .features_frame .features_box_outside1 {
    width: 100%;
  }
  .features_frame .features_box_outside1 .features_box1 {
    width: 100%;
    height: 400px;
    margin: 0 0 0 0;
    position: relative;
  }
  .features_frame .features_box_outside1 .features_box1 section {
    width: 800px;
    height: 400px;
    position: absolute;
    top: 0;
    z-index: 2;
    padding: 62px 0 0 206px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .features_frame .features_box_outside1 .features_box1 section h3.features_title1 {
    font-family: "zenkakugothicnew_bold";
    font-weight: bold;
    font-size: 2.6rem;
    color: #6FBAE8;
    line-height: 140%;
    margin: 0;
  }
  .features_frame .features_box_outside1 .features_box1 section .features_no {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 350px;
    background: url("../img/features_no.svg") no-repeat;
    background-size: cover;
    background-position: left top;
    color: #999999;
    font-family: "petitformalscript_regular";
    font-weight: normal;
    font-size: 10rem;
    padding: 26px 0 0 0;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .features_frame .features_box_outside1 .features_box1 section .features_text {
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 180%;
    width: 412px;
    letter-spacing: 0;
    margin: 20px 0 0 0;
  }
  .features_frame .features_box_outside1 .features_box1.f01::after {
    content: "";
    display: block;
    width: 100%;
    height: 400px;
    background: url("../img/index_feature_01.jpg") no-repeat;
    background-size: cover;
    background-position: right -60px top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .features_frame .features_box_outside1 .features_box1.f02::after {
    content: "";
    display: block;
    width: 100%;
    height: 400px;
    background: url("../img/index_feature_02.jpg") no-repeat;
    background-size: cover;
    background-position: left top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .features_frame .features_box_outside1 .features_box1.f03::after {
    content: "";
    display: block;
    width: 100%;
    height: 400px;
    background: url("../img/index_feature_03.jpg") no-repeat;
    background-size: cover;
    background-position: right top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .features_frame .features_box_outside1 .features_box1.f04::after {
    content: "";
    display: block;
    width: 100%;
    height: 400px;
    background: url("../img/index_feature_04.jpg") no-repeat;
    background-size: cover;
    background-position: left top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .features_frame .features_box_outside1 .features_box1.f05::after {
    content: "";
    display: block;
    width: 100%;
    height: 400px;
    background: url("../img/index_feature_05.jpg") no-repeat;
    background-size: cover;
    background-position: right top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .features_frame .features_box_outside1 .features_box1.fb_left section {
    left: 50%;
    margin: 0 0 0 -600px;
  }
  .features_frame .features_box_outside1 .features_box1.fb_right section {
    right: 50%;
    margin: 0 -600px 0 0;
    padding: 62px 204px 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .features_frame .features_box_outside1 .features_box1.fb_right section h3.features_title1 {
    text-align: right;
    margin: 0 0 0 0;
  }
  .features_frame .features_box_outside1 .features_box1.fb_right section .features_no {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    padding: 30px 0 0 0;
  }
  .features_frame .features_box_outside1 .features_box1.fb_right section .features_text {
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 180%;
    width: 412px;
    letter-spacing: 0;
    margin: 20px 0 0 184px;
  }
  .features_frame .features_box_outside2 {
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(238, 252, 254)), to(rgb(239, 241, 255)));
    background: linear-gradient(to right, rgb(238, 252, 254) 0%, rgb(239, 241, 255) 100%);
    padding: 105px 0 49px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .features_frame .features_box_outside2 .features_box_outside {
    margin: 0 0 50px 0;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box {
    position: relative;
    width: 1200px;
    height: 440px;
    margin: 0 auto;
    overflow: visible;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left {
    width: 590px;
    height: 440px;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section {
    width: 690px;
    height: 440px;
    margin: 0;
    padding: 30px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: visible;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section h3.features_title {
    text-align: left;
    color: #039FB1;
    font-family: "zenkakugothicnew_bold";
    font-weight: bold;
    font-size: 3rem;
    margin: 0 0 42px 0;
    letter-spacing: 0;
    position: relative;
    overflow: visible;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section h3.features_title span {
    color: #007BC6;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section h3.features_title::before {
    content: "";
    width: 150%;
    height: 2px;
    border-bottom: #039FB1 2px solid;
    display: block;
    margin: 0 0 0 0;
    position: absolute;
    bottom: -24px;
    right: 0;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section .features_text {
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 180%;
    letter-spacing: 0;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section .features_link {
    width: 376px;
    height: 50px;
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 2rem;
    text-decoration: none;
    background-color: #1854AE;
    color: #ffffff;
    padding: 0 0 0 22px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
            box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
    margin: 20px 0 0 313px;
    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;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section .features_link::before {
    position: absolute;
    top: calc(50% - 12.5px);
    right: 20px;
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url("../img/icon_arrow_left2.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section .features_link.green {
    background-color: #039FB1;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box .features_box_left section .features_link:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0.6;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box figure.features_box_right {
    width: 879px;
    margin: 0;
  }
  .features_frame .features_box_outside2 .features_box_outside .features_box figure.features_box_right img {
    width: 100%;
    height: auto;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_01 .features_box_left {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 2;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_01 .features_box_left section .features_text {
    margin: 0 0 0 0;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_01 figure.features_box_right {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    margin: 0 0 0 120px;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_01 figure.features_box_right img {
    width: 100%;
    height: auto;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_02 .features_box_left {
    position: absolute;
    top: 0;
    left: auto;
    right: -40px;
    right: 0;
    z-index: 2;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_02 .features_box_left section {
    width: 690px;
    height: 440px;
    margin: 0 0 0 -100px;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_02 .features_box_left section h3.features_title {
    color: #1854AE;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_02 .features_box_left section h3.features_title::before {
    content: "";
    display: none;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_02 .features_box_left section h3.features_title::after {
    content: "";
    width: 200%;
    height: 2px;
    border-bottom: #007BC6 2px solid;
    display: block;
    margin: 0 0 0 0;
    position: absolute;
    bottom: -24px;
    left: 0;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_02 .features_box_left section .features_text {
    margin: 0 0 0 0;
  }
  .features_frame .features_box_outside2 .features_box_outside .fb_02 figure.features_box_right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    margin: 0 720px 0 0;
  }
  .features_frame .features_box_outside2 .features_box_outside.fbo_last {
    margin: 72px 0 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .features_frame .features_box_outside1 .features_box1.f01::after {
    left: 25%;
  }
  .features_frame .features_box_outside1 .features_box1.f02::after {
    left: -25%;
  }
  .features_frame .features_box_outside1 .features_box1.f03::after {
    left: 25%;
  }
  .features_frame .features_box_outside1 .features_box1.f04::after {
    left: -25%;
  }
  .features_frame .features_box_outside1 .features_box1.f05::after {
    left: 25%;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.treatment_frame {
  width: 100%;
  margin: 0 0 0 0;
  position: relative;
  overflow: visible;
  padding: 3.5rem 0 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_treatment_bg.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
.treatment_frame h2.treatment_title {
  font-family: "zenkakugothicnew_medium";
  font-size: 1.8rem;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 0;
  width: 96%;
  margin: 0 auto 0 auto;
  text-align: center;
}
.treatment_frame h2.treatment_title span {
  font-family: "petitformalscript_regular";
  font-size: 4rem;
  font-weight: normal;
  color: #ffffff;
  display: block;
  margin: 1rem 0 0 0;
}
.treatment_frame ul.treatment_list {
  width: 94%;
  margin: 2rem 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;
  list-style-type: none;
}
.treatment_frame ul.treatment_list li {
  width: 48%;
  margin: 2rem 0 0.5rem 0;
}
.treatment_frame ul.treatment_list li a {
  width: 100%;
  height: 14.2rem;
  background-color: #E2F3FE;
  color: #014F7E;
  border-radius: 50%;
  border: #ffffff 1.2rem solid;
  text-decoration: none;
  text-align: center;
  font-family: "zenkakugothicnew_medium";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 110%;
  padding: 4.2vw 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
}
.treatment_frame ul.treatment_list li a::before {
  content: "";
  width: 6rem;
  height: 6rem;
  margin: 0 0 0.5rem 0;
}
.treatment_frame ul.treatment_list li.internal_medicine a::before {
  background: url("../img/treatment_internal_medicine.svg") no-repeat;
  background-size: contain;
}
.treatment_frame ul.treatment_list li.lifestyle_related a::before {
  background: url("../img/treatment_lifestyle_related.svg") no-repeat;
  background-size: contain;
}
.treatment_frame ul.treatment_list li.high_blood_pressure a::before {
  background: url("../img/treatment_high_blood_pressure.svg") no-repeat;
  background-size: contain;
}
.treatment_frame ul.treatment_list li.dyslipidemia a::before {
  background: url("../img/treatment_dyslipidemia.svg") no-repeat;
  background-size: contain;
  margin: 0 0 0.2rem 0;
}
.treatment_frame ul.treatment_list li.hyperuricemia a::before {
  background: url("../img/treatment_hyperuricemia.svg") no-repeat;
  background-size: contain;
}
.treatment_frame ul.treatment_list li.gastro a::before {
  background: url("../img/treatment_gastro.svg") no-repeat;
  background-size: contain;
}
.treatment_frame ul.treatment_list li.liver a::before {
  background: url("../img/treatment_liver.svg") no-repeat;
  background-size: contain;
}
.treatment_frame ul.treatment_list li.health_check a::before {
  background: url("../img/treatment_health_check.svg") no-repeat;
  background-size: contain;
  margin: 0 0 0.2rem 0;
}
.treatment_frame ul.treatment_list li.vaccination a::before {
  background: url("../img/treatment_vaccination.svg") no-repeat;
  background-size: contain;
  margin: 0 0 0.2rem 0;
}
.treatment_frame ul.treatment_list li.none {
  width: 48%;
  background: url("../img/treatment_none.svg") no-repeat;
  background-size: contain;
  opacity: 0.3;
}

@media screen and (min-width: 768px), print {
  .treatment_frame {
    width: 100%;
    height: 760px;
    margin: 0 0 0 0;
    position: relative;
    overflow: visible;
    padding: 106px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_treatment_bg.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .treatment_frame h2.treatment_title {
    font-family: "zenkakugothicnew_medium";
    font-size: 2.4rem;
    font-weight: normal;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0;
    width: 100%;
    margin: 0 auto 0 auto;
    line-height: 160%;
  }
  .treatment_frame h2.treatment_title span {
    font-family: "petitformalscript_regular";
    font-size: 6rem;
    font-weight: normal;
    color: #ffffff;
    display: block;
    margin: 0 0 8px 0;
  }
  .treatment_frame ul.treatment_list {
    width: 1200px;
    margin: 69px 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;
    list-style-type: none;
  }
  .treatment_frame ul.treatment_list li {
    width: 180px;
    margin: 0 75px 42px 0;
  }
  .treatment_frame ul.treatment_list li a {
    width: 180px;
    height: 180px;
    background-color: #E2F3FE;
    color: #014F7E;
    border-radius: 50%;
    border: #ffffff 10px solid;
    text-decoration: none;
    text-align: center;
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 110%;
    padding: 18px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame ul.treatment_list li a::before {
    content: "";
    width: 75px;
    height: 75px;
    margin: 0 0 13px 0;
  }
  .treatment_frame ul.treatment_list li a:hover {
    /*transform: translateY(-10px); */
    background-color: #6FBAE8;
    border: #CCE6F6 10px solid;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame ul.treatment_list li.internal_medicine a::before {
    background: url("../img/treatment_internal_medicine.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame ul.treatment_list li.lifestyle_related a::before {
    background: url("../img/treatment_lifestyle_related.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame ul.treatment_list li.high_blood_pressure a::before {
    background: url("../img/treatment_high_blood_pressure.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame ul.treatment_list li.dyslipidemia a::before {
    background: url("../img/treatment_dyslipidemia.svg") no-repeat;
    background-size: contain;
    margin: 0 0 0.2rem 0;
  }
  .treatment_frame ul.treatment_list li.hyperuricemia a::before {
    background: url("../img/treatment_hyperuricemia.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame ul.treatment_list li.gastro a::before {
    background: url("../img/treatment_gastro.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame ul.treatment_list li.liver a {
    padding: 12px 0 0 0;
  }
  .treatment_frame ul.treatment_list li.liver a::before {
    background: url("../img/treatment_liver.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame ul.treatment_list li.health_check a {
    padding: 14px 0 0 0;
  }
  .treatment_frame ul.treatment_list li.health_check a::before {
    background: url("../img/treatment_health_check.svg") no-repeat;
    background-size: contain;
    margin: 0 0 14px 0;
  }
  .treatment_frame ul.treatment_list li.vaccination a {
    padding: 13px 0 0 0;
  }
  .treatment_frame ul.treatment_list li.vaccination a::before {
    background: url("../img/treatment_vaccination.svg") no-repeat;
    background-size: contain;
    margin: 0 0 14px 0;
  }
  .treatment_frame ul.treatment_list li.none {
    width: 180px;
    background: url("../img/treatment_none.svg") no-repeat;
    background-size: contain;
    opacity: 0.3;
  }
  .treatment_frame ul.treatment_list li:nth-child(5n) {
    margin: 0 0 40px 0;
  }
}
/* -----------------------------------------------------------
　画像ループ
----------------------------------------------------------- */
.loop_css {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 100%;
  overflow: hidden;
  margin: 0 0 0 0;
  background-color: #F5F5F5;
  padding: 5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.loop_css ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 4320px;
  margin: 0;
  padding: 0;
}
.loop_css ul li {
  display: inline-block;
  width: 50vw;
  min-width: 250px;
  margin: 0 0.4rem 0 0.4rem;
  list-style: none;
  text-align: center;
}
.loop_css ul li a {
  display: block;
}
.loop_css ul li img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
}
.loop_css ul:first-child {
  -webkit-animation: loop 120s -60s linear infinite;
  animation: loop 120s -60s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.loop_css ul + ul {
  -webkit-animation: loop2 120s linear infinite;
  animation: loop2 120s linear infinite;
}

.loop_css:hover ul {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
.loop_js {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3600px;
  height: 150px;
  overflow: hidden;
}

.loop_js > * {
  width: 33.333333%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  .loop_css {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    width: 100%;
    overflow: hidden;
    margin: 0 0 0 0;
    background-color: #F5F5F5;
    padding: 95px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .loop_css ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    width: 4320px;
    margin: 0;
    padding: 0;
  }
  .loop_css ul li {
    display: inline-block;
    width: 350px;
    min-width: 350px;
    margin: 0 5px 0 5px;
    list-style: none;
    text-align: center;
  }
  .loop_css ul li a {
    display: block;
  }
  .loop_css ul li img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  .loop_css ul:first-child {
    -webkit-animation: loop 120s -60s linear infinite;
    animation: loop 120s -60s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
  }
  .loop_css ul + ul {
    -webkit-animation: loop2 120s linear infinite;
    animation: loop2 120s linear infinite;
  }
  .loop_css:hover ul {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
  @-webkit-keyframes loop {
    0% {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @keyframes loop {
    0% {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @-webkit-keyframes loop2 {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-200%);
      transform: translateX(-200%);
    }
  }
  @keyframes loop2 {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-200%);
      transform: translateX(-200%);
    }
  }
  .loop_js {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 3600px;
    height: 250px;
    overflow: hidden;
  }
  .loop_js > * {
    width: 33.333333%;
    height: auto;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  background-color: #E8EDF2;
  padding: 3rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.overview .overview_box {
  width: 94%;
  margin: 0 auto;
  padding: 1rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*左側*/
  /*右側*/
}
.overview .overview_box .overview_info_box_left {
  width: 100%;
}
.overview .overview_box .overview_info_box_left .overview_logo {
  width: 90%;
  margin: 0 auto 2rem auto;
  display: block;
}
.overview .overview_box .overview_info_box_left .overview_logo img {
  width: 100%;
}
.overview .overview_box .overview_info_box_left p {
  font-size: 1.4rem;
}
.overview .overview_box .overview_info_box_left .overview_tel {
  color: #007BC6;
  font-family: "zenkakugothicnew_bold";
  font-weight: bold;
  font-size: 2.4rem;
}
.overview .overview_box .overview_info_box_left .overview_tel a {
  text-decoration: none;
  color: #007BC6;
}
.overview .overview_box .overview_info_box_left dl.overview_list {
  width: 100%;
  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-size: 1.4rem;
  line-height: 160%;
}
.overview .overview_box .overview_info_box_left dl.overview_list dt {
  width: 22%;
  margin: 0 0 1rem 0;
  color: #2a2a2a;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd {
  width: 78%;
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #2a2a2a;
}
.overview .overview_box .overview_info_box_left .overview_timetable {
  width: 100%;
  margin: 0 0 0 0;
}
.overview .overview_box .overview_info_box_left .overview_timetable table.timetable tr.line td {
  background-color: #E8EDF2 !important;
  padding: 0.4rem 0;
}
.overview .overview_box .overview_info_box_right {
  margin: 2rem 0 0 0;
}
.overview .overview_box .overview_info_box_right iframe.googlemap {
  width: 100%;
  height: 100vw;
  display: block;
  margin: 0;
  border: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    background-color: #E8EDF2;
    padding: 100px 0 100px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .overview .overview_box {
    width: 1200px;
    margin: 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_info_box_left {
    width: 582px;
  }
  .overview .overview_box .overview_info_box_left .overview_logo {
    width: 376px;
    margin: 0 0 23px 0;
    display: block;
  }
  .overview .overview_box .overview_info_box_left .overview_logo img {
    width: 100%;
  }
  .overview .overview_box .overview_info_box_left p {
    font-size: 1.6rem;
    margin: 0 0 21px 0;
    line-height: 120%;
  }
  .overview .overview_box .overview_info_box_left .overview_tel {
    color: #007BC6;
    font-family: "zenkakugothicnew_bold";
    font-weight: bold;
    font-size: 3.4rem;
    margin: -7px 0 16px 0;
  }
  .overview .overview_box .overview_info_box_left .overview_tel i {
    font-size: 3rem;
  }
  .overview .overview_box .overview_info_box_left .overview_tel a {
    text-decoration: none;
    color: #007BC6;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list {
    width: 582px;
    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-size: 1.6rem;
    line-height: 110%;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt {
    width: 66px;
    margin: 0 0 6px 0;
    color: #2a2a2a;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd {
    width: 516px;
    margin: 0 0 6px 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #2a2a2a;
  }
  .overview .overview_box .overview_info_box_left .overview_timetable {
    width: 100%;
    margin: 55px 0 0 0;
  }
  .overview .overview_box .overview_info_box_left .overview_timetable table.timetable tr.line td {
    background-color: #E8EDF2 !important;
    padding: 0.4rem 0;
  }
  .overview .overview_box .overview_info_box_right {
    width: 582px;
    margin: 0 0 0 0;
  }
  .overview .overview_box .overview_info_box_right iframe.googlemap {
    width: 582px;
    height: 750px;
    display: block;
    margin: 0;
    border: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer .footer_frame {
  display: none;
}
footer .copyright {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.05em;
  background-color: #014F7E;
}
footer .copyright a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer_link {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 13vw;
  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;
  border-top: #ffffff 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_link a.footer_tel {
  width: 45%;
  margin: 0;
  color: #ffffff;
  background-color: #014F7E;
  text-align: center;
  font-family: "zenkakugothicnew_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  border-right: #ffffff 1px solid;
  text-decoration: 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;
}
.footer_link a.footer_tel i {
  font-size: 1.2rem;
}
.footer_link a.footer_reserve {
  width: 25%;
  margin: 0;
  color: #ffffff;
  background-color: #014F7E;
  text-align: center;
  font-family: "zenkakugothicnew_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  border-right: #ffffff 1px solid;
  text-decoration: 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;
}
.footer_link a.footer_line {
  width: 25%;
  margin: 0;
  color: #ffffff;
  background-color: #014F7E;
  text-align: center;
  font-family: "zenkakugothicnew_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  border-right: #ffffff 1px solid;
  text-decoration: 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;
}
.footer_link .smoothScrolls {
  color: #ffffff;
  background-color: #014F7E;
  width: 15%;
  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;
}
.footer_link .smoothScrolls a {
  width: 100%;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0 0 0 0;
    padding: 54px 0 0 0;
    background-color: #014F7E;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    display: block;
    width: 1200px;
    margin: 0 auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -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 {
    width: 208px;
    height: 194px;
    line-height: 130%;
    font-size: 1.6rem;
    margin: 0 0 0 0;
    border-left: #ffffff 2px solid;
    padding: 6px 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .footer_frame ul.footer_list li {
    width: auto;
    height: 16px;
    margin: 0 24px 18px 0;
    padding: 0 0 0 0;
    list-style-type: none;
    line-height: 77%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .footer_frame ul.footer_list li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.6rem;
    position: relative;
  }
  footer .footer_frame ul.footer_list li a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 2px solid #ffffff;
  }
  footer .footer_frame ul.footer_list li a:hover::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    top: 0;
    bottom: -3px;
  }
  footer .footer_frame ul.footer_list li.treatment {
    display: none;
  }
  footer .footer_frame ul.footer_list li:last-child {
    border-right: none;
  }
  footer .footer_frame .subtitle {
    display: none;
  }
  footer .copyright {
    margin: 0 auto;
    padding: 0;
    text-align: right;
    color: #ffffff;
    font-size: 1.8rem;
    height: 72px;
    width: 1200px;
    letter-spacing: 0.05em;
    background-color: #014F7E;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  footer .copyright a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
  }
  footer .copyright a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ffffff;
  }
  footer .copyright a:hover::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    top: 0;
    bottom: -2px;
  }
  .footer_link {
    display: none;
  }
}
/* -----------------------------------------------------------
　ページトップへ
----------------------------------------------------------- */
#pagetop_position {
  display: none;
}

@media screen and (min-width: 768px), print {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 50px;
    height: 50px;
  }
  #pagetop_position #linkpagetop a img {
    width: 50px;
    height: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #pagetop_position #linkpagetop a img:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #pagetop {
    position: fixed;
    bottom: 265px;
    right: 10%;
    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: 50px;
    height: 50px;
  }
  #pagetop_position #linkpagetop a img {
    width: 50px;
    height: 50px;
  }
  #pagetop {
    position: fixed;
    bottom: 265px;
    right: 2%;
    z-index: 999999;
  }
}
/*# sourceMappingURL=style.css.map */