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

 共通項目

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

/*◇◆◇◆◇◆基本色◇◆◇◆◇◆*/
/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*◇◆◇◆◇◆ハンバーガー色◇◆◇◆◇◆*/
/*ハンバーガー棒と文字*/
/*ハンバーガー背景*/
/*ハンバーガーdrawr背景*/
/*ハンバーガーdrawrテキスト*/
/*ハンバーガーdrawrサブ背景*/
/*ハンバーガーdrawrボーダー*/
/*◇◆◇◆◇◆お知らせ色◇◆◇◆◇◆*/
/*お知らせタイトル*/
/*お知らせ文字*/
/*お知らせボーダー*/
/*お知らせボーダー*/
/*◇◆◇◆◇◆フッターPC◇◆◇◆◇◆*/
/*フッター背景色*/
/*フッターテキスト*/
/*フッターボーダー*/
/*◇◆◇◆◇◆フッターリンクSP◇◆◇◆◇◆*/
/*フッターリンク背景色*/
/*フッターリンクテキスト*/
/*フッターリンクボーダー*/
/*◇◆◇◆◇◆コピーライト◇◆◇◆◇◆*/
/*コピーライト背景色*/
/*コピーライトテキスト*/
/*◇◆◇◆◇◆リンク系◇◆◇◆◇◆*/
/*リンクカラー*/
/*リンクカラーホバー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆診療時間テーブル◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*thボーダー*/
/*◇◆◇◆◇◆汎用テーブル系◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*tdボーダー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆影◇◆◇◆◇◆*/
/*◇◆◇◆◇◆フロー◇◆◇◆◇◆*/
/*◇◆◇◆◇◆矢印◇◆◇◆◇◆*/
/*紺*/
/*薄紫*/
/*薄紫*/
/*灰色*/
/*灰色*/
/*薄紫*/
/*灰色*/
/*灰色*/
/*灰色*/
/*青*/
/*赤*/
/*黄色*/
/*黒*/
/*下層H1*/
/*茶色*/
/*紺色*/
/*青*/
/*茶色*/
/*仕様変更後のカラー*/
/*青*/
/*茶色*/
/*茶色*/
/*黒*/
/*茶色*/
/*茶色*/
/*茶色*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@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_bold";
  src: url(../font/ZenKakuGothicNew-Bold.ttf);
  font-weight: bold;
  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: "zenoldmincho_regular";
  src: url(../font/ZenOldMincho-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenoldmincho_medium";
  src: url(../font/ZenOldMincho-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenoldmincho_bold";
  src: url(../font/ZenOldMincho-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
/*共通モジュール*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.cf::after {
  clear: both;
}

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

.fl_r {
  float: right;
}

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

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

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

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

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

@media screen and (min-width: 768px), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
/*ハンバーガー*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.main_nav_sp {
  width: 100%;
}
.main_nav_sp .drawr {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 0 2rem 0;
  margin: 0 0 0 0;
  z-index: 99999999;
  background-color: #F0F4FF;
  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: #91A0D5 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_hbg:hover {
  cursor: pointer;
  cursor: hand;
}
.main_nav_sp .drawr ul.hbg li a {
  color: #2E354D;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 1rem;
  border-bottom: #91A0D5 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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  line-height: 140%;
}
.main_nav_sp .drawr ul.hbg li a br {
  display: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub {
  display: none;
  width: 100%;
  list-style-type: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub.open_nav {
  display: block;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a {
  background-color: #E8EBF2;
  color: #2E354D;
  border-bottom: none;
  text-align: center;
  border-bottom: #91A0D5 1px solid;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a::after {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li.treatment_hbg a::after {
  font-family: "fontello";
  content: "\f004";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.open_treatment a::after {
  font-family: "fontello";
  content: "\f005";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}

@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-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-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: #898FA5;
  border-radius: 0.3rem;
  height: 12vw;
}

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

 共通項目

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

h2.top_title {
  text-align: center;
  font-family: "zenoldmincho_medium";
  font-weight: normal;
  font-size: 2.2rem;
  color: #2E354D;
  line-height: 140%;
  margin: 0;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
h2.top_title span {
  margin: 0 0.5rem;
}
h2.top_title span em {
  font-style: normal;
  display: block;
  font-size: 1.2rem;
  color: #898FA5;
  margin: -0.5rem 0 0 0;
}
h2.top_title::before {
  content: "";
  display: block;
  width: 3rem;
  height: 6rem;
  background: url("../img/h2_left.svg") no-repeat center center;
  background-size: contain;
}
h2.top_title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 6rem;
  background: url("../img/h2_right.svg") no-repeat center center;
  background-size: contain;
}
h2.low {
  text-align: center;
  font-family: "zenoldmincho_medium";
  font-weight: normal;
  font-size: 2.2rem;
  color: #2E354D;
  line-height: 140%;
  margin: 4rem 0 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
h2.low span {
  max-width: calc(100% - 8rem);
  background-image: linear-gradient(to right, #898FA5 6px, transparent 2px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  margin: 0 0.5rem;
  padding: 0 0 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h2.low::before {
  content: "";
  display: block;
  width: 3rem;
  height: 6rem;
  background: url("../img/h2_left.svg") no-repeat center center;
  background-size: contain;
}
h2.low::after {
  content: "";
  display: block;
  width: 3rem;
  height: 6rem;
  background: url("../img/h2_right.svg") no-repeat center center;
  background-size: contain;
}
h2.first {
  margin: 0 0 2rem 0;
}

h3.low {
  color: #2E354D;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(246, 247, 249)), to(rgb(238, 240, 249)));
  background: linear-gradient(to bottom, rgb(246, 247, 249) 0%, rgb(238, 240, 249) 100%);
  border: #91A0D5 1px solid;
  font-family: "zenkakugothicnew_medium";
  font-size: 2rem;
  font-weight: normal;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2rem 0 1.5rem 0;
  line-height: 120%;
  position: relative;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
  width: calc(100% - 3px);
}
h3.low::before {
  content: "";
  width: 0.2rem;
  height: 70%;
  display: block;
  background-color: #91A0D5;
  position: absolute;
  top: 15%;
  left: 0;
}
h3.first {
  margin: 0 0 1.5rem 0;
}

h4.low {
  color: #2E354D;
  font-family: "zenkakugothicnew_medium";
  font-size: 1.9rem;
  font-weight: normal;
  margin: 1.9rem 0 1rem 0;
  padding: 0 0 0 3rem;
  line-height: 120%;
  position: relative;
}
h4.low::before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background-color: #91A0D5;
  position: absolute;
  top: calc(50% - 1rem);
  left: 0;
}
h4.first {
  margin: 0 0 1rem 0;
}

h5.low {
  color: #91A0D5;
  font-family: "zenkakugothicnew_medium";
  font-size: 1.8rem;
  font-weight: normal;
  margin: 1.9rem 0 1rem 0;
  padding: 0 0 1rem 0;
  line-height: 120%;
  background-image: linear-gradient(to right, #91A0D5 6px, transparent 2px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
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;
}
p.ajs_mt {
  margin: 1rem 0 2rem 0;
}

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title {
    text-align: center;
    font-family: "zenoldmincho_medium";
    font-weight: normal;
    font-size: 3.6rem;
    color: #2E354D;
    line-height: 140%;
    margin: 0;
    padding: 12px 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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  h2.top_title span {
    margin: 13px 20px 0 20px;
  }
  h2.top_title span em {
    font-style: normal;
    display: block;
    font-size: 1.6rem;
    color: #898FA5;
    margin: -12px 0 0 0;
  }
  h2.top_title::before {
    content: "";
    display: block;
    width: 49px;
    height: 100px;
    background: url("../img/h2_left.svg") no-repeat center center;
    background-size: contain;
  }
  h2.top_title::after {
    content: "";
    display: block;
    width: 49px;
    height: 100px;
    background: url("../img/h2_right.svg") no-repeat center center;
    background-size: contain;
  }
  h2.low {
    text-align: center;
    font-family: "zenoldmincho_medium";
    font-weight: normal;
    font-size: 3.6rem;
    color: #2E354D;
    line-height: 140%;
    margin: 80px 0 50px 0;
    padding: 12px 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: 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;
  }
  h2.low span {
    max-width: calc(100% - 138px);
    background-image: linear-gradient(to right, #898FA5 6px, transparent 2px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
    margin: 0 20px;
    padding: 0 0 15px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  h2.low::before {
    content: "";
    display: block;
    width: 49px;
    height: 100px;
    background: url("../img/h2_left.svg") no-repeat center center;
    background-size: contain;
  }
  h2.low::after {
    content: "";
    display: block;
    width: 49px;
    height: 100px;
    background: url("../img/h2_right.svg") no-repeat center center;
    background-size: contain;
  }
  h2.first {
    margin: 0 0 50px 0;
  }
  h3.low {
    color: #2E354D;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(246, 247, 249)), to(rgb(238, 240, 249)));
    background: linear-gradient(to bottom, rgb(246, 247, 249) 0%, rgb(238, 240, 249) 100%);
    border: #91A0D5 1px solid;
    font-family: "zenkakugothicnew_medium";
    font-size: 2.8rem;
    font-weight: normal;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 70px 0 20px 0;
    line-height: 120%;
    position: relative;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
    width: calc(100% - 3px);
  }
  h3.low::before {
    content: "";
    width: 6px;
    height: 50px;
    display: block;
    background-color: #91A0D5;
    position: absolute;
    top: calc(50% - 25px);
    left: 0;
  }
  h3.first {
    margin: 0 0 20px 0;
  }
  h4.low {
    color: #2E354D;
    font-family: "zenkakugothicnew_medium";
    font-size: 2.6rem;
    font-weight: normal;
    margin: 60px 0 20px 0;
    padding: 0 0 0 30px;
    line-height: 120%;
    position: relative;
  }
  h4.low::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background-color: #91A0D5;
    position: absolute;
    top: calc(50% - 10px);
    left: 0;
  }
  h4.first {
    margin: 0 0 20px 0;
  }
  h5.low {
    color: #91A0D5;
    font-family: "zenkakugothicnew_medium";
    font-size: 2.2rem;
    font-weight: normal;
    margin: 50px 0 20px 0;
    padding: 0 0 18px 0;
    line-height: 120%;
    background-image: linear-gradient(to right, #91A0D5 6px, transparent 2px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  h5.first {
    margin: 0 0 20px 0;
  }
  p {
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    line-height: 160%;
    letter-spacing: 0.05em;
    text-align: justify;
  }
  p.ajs_mt {
    margin: 15px 0 30px 0;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
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";
  font-weight: normal;
}
table.timetable tr th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #ffffff;
  background-color: #898FA5;
  border: #898FA5 1px solid;
  width: 10%;
}
table.timetable tr th.time {
  letter-spacing: 0.1em;
}
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: #2E354D;
  background-color: #ffffff;
  border-bottom: #898FA5 1px solid;
}
table.timetable tr td i {
  font-size: 1.2rem;
  color: #292941;
}
table.timetable tr td i.icon-play {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
  color: #2E354D;
  letter-spacing: 0.1em;
}
table.timetable caption {
  caption-side: bottom;
  font-size: 1.2rem;
  margin: 0.6rem 0 0 0;
  width: 100%;
  color: #2E354D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "zenkakugothicnew_regular";
  font-weight: normal;
  text-align: left;
  line-height: 140%;
}
table.timetable caption i {
  font-size: 1.2rem;
  margin: 0 -0.3rem 0 0;
}
table.timetable caption i.icon-play {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
}

@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";
    font-weight: normal;
  }
  table.timetable tr th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 0;
    vertical-align: middle;
    color: #ffffff;
    background-color: #898FA5;
    border: #898FA5 1px solid;
    width: 10%;
    height: 62px;
    box-sizing: border-box;
  }
  table.timetable tr th.time {
    width: 30%;
    letter-spacing: 0.1em;
  }
  table.timetable tr td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: normal;
    font-size: 1.6rem;
    padding: 0;
    vertical-align: middle;
    color: #2E354D;
    background-color: #ffffff;
    height: 84px;
    box-sizing: border-box;
    border-bottom: #898FA5 1px solid;
  }
  table.timetable tr td i {
    font-size: 1.6rem;
    color: #2E354D;
  }
  table.timetable tr td.time {
    text-align: center;
    color: #2E354D;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
  table.timetable caption {
    caption-side: bottom;
    font-size: 1.6rem;
    margin: 16px 0 0 0;
    width: 100%;
    color: #2E354D;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "zenkakugothicnew_regular";
    font-weight: normal;
    line-height: 120%;
    text-align: left;
  }
  table.timetable caption i {
    font-size: 1.4rem;
    margin: 0 -0.5rem 0 0;
  }
  table.timetable caption i.icon-play {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    display: inline-block;
  }
}
/*テーブル*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
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: #6574A7;
  border: #CCCCCC 1px solid;
  background-color: #E8EBF2;
}
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: #2E354D;
  border: #CCCCCC 1px solid;
  background-color: #ffffff;
}

@media screen and (min-width: 768px), print {
  table.low_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.6rem;
    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: #6574A7;
    border: #CCCCCC 1px solid;
    background-color: #E8EBF2;
  }
  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: #2E354D;
    border: #CCCCCC 1px solid;
    background-color: #ffffff;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide {
  width: 1000px;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
}
table.low_table_slide caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_slide tr th {
  width: 40%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #6574A7;
  border: #CCCCCC 1px solid;
  background-color: #E8EBF2;
}
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: #2E354D;
  border: #CCCCCC 1px solid;
  background-color: #ffffff;
}

/*横スライドテーブル用*/
.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.6rem;
    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: #6574A7;
    border: #CCCCCC 1px solid;
    background-color: #E8EBF2;
  }
  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: #2E354D;
    border: #CCCCCC 1px solid;
    background-color: #ffffff;
  }
  /*横スライドテーブル用*/
  .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: #6574A7;
  background-color: #E8EBF2;
  border-bottom: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 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: #2E354D;
  background-color: #ffffff;
  border-bottom: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
}
table.low_table_spblock tr td span {
  color: #91A0D5;
  font-weight: bold;
}
table.low_table_spblock tr td span a {
  color: #91A0D5;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock tr td ul {
  margin: 0.5rem 0 0 0;
}
table.low_table_spblock tr td ul li {
  margin: 0 0 0.5rem 1.8rem;
}
table.low_table_spblock tr:first-child th {
  border-top: #CCCCCC 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table_spblock {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.6rem;
    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: #6574A7;
    background-color: #E8EBF2;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 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: #2E354D;
    background-color: #ffffff;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr td span {
    color: #2E354D;
    font-weight: bold;
  }
  table.low_table_spblock tr td span a {
    color: #2E354D;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock tr td ul {
    margin: 5px 0 0 0;
  }
  table.low_table_spblock tr td ul li {
    margin: 0 0 0 25px;
  }
  table.low_table_spblock tr:first-child th {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr:first-child td {
    border-top: #CCCCCC 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: #6574A7;
  border-bottom: #CCCCCC 1px solid;
  background-color: #E8EBF2;
}
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: #2E354D;
  border-bottom: #CCCCCC 1px solid;
  background-color: #ffffff;
}
table.low_table2 tr:first-child th {
  border-top: #CCCCCC 1px solid;
}
table.low_table2 tr:first-child td {
  border-top: #CCCCCC 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table2 {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.6rem;
    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: #6574A7;
    border-bottom: #CCCCCC 1px solid;
    background-color: #E8EBF2;
  }
  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: #2E354D;
    border-bottom: #CCCCCC 1px solid;
    background-color: #ffffff;
  }
  table.low_table2 tr:first-child th {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table2 tr:first-child td {
    border-top: #CCCCCC 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: #6574A7;
  border-bottom: #CCCCCC 1px solid;
  background-color: #E8EBF2;
}
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: #2E354D;
  border-bottom: #CCCCCC 1px solid;
  background-color: #ffffff;
}
table.low_table_slide2 tr:first-child th {
  border-top: #CCCCCC 1px solid;
}
table.low_table_slide2 tr:first-child td {
  border-top: #CCCCCC 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.6rem;
    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: #6574A7;
    border-bottom: #CCCCCC 1px solid;
    background-color: #E8EBF2;
  }
  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: #2E354D;
    border-bottom: #CCCCCC 1px solid;
    background-color: #ffffff;
  }
  table.low_table_slide2 tr:first-child th {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table_slide2 tr:first-child td {
    border-top: #CCCCCC 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: #6574A7;
  background-color: #E8EBF2;
  border-bottom: #CCCCCC 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: #2E354D;
  background-color: #ffffff;
  border-bottom: #CCCCCC 1px solid;
}
table.low_table_spblock2 tr td span {
  color: #91A0D5;
  font-weight: bold;
}
table.low_table_spblock2 tr td span a {
  color: #91A0D5;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock2 tr:first-child th {
  border-top: #CCCCCC 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table_spblock2 {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.6rem;
    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: #6574A7;
    background-color: #E8EBF2;
    border-bottom: #CCCCCC 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: #2E354D;
    background-color: #ffffff;
    border-bottom: #CCCCCC 1px solid;
  }
  table.low_table_spblock2 tr td span {
    color: #91A0D5;
    font-weight: bold;
  }
  table.low_table_spblock2 tr td span a {
    color: #91A0D5;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock2 tr:first-child th {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table_spblock2 tr:first-child td {
    border-top: #CCCCCC 1px solid;
  }
}
/*テーブル丸角*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #2E354D;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #CCCCCC 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: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  background-color: #E8EBF2;
  color: #6574A7;
  -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: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #2E354D;
  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: #CCCCCC 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: #2E354D;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #CCCCCC 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: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    background-color: #E8EBF2;
    color: #6574A7;
    -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: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #2E354D;
    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: #CCCCCC 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: #2E354D;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #CCCCCC 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: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  background-color: #F1F2F5;
  -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: #91A0D5;
  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: #7185BA;
  color: #2E354D;
  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: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #2E354D;
  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: #2E354D;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #CCCCCC 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: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    background-color: #E8EBF2;
    -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: #91A0D5;
    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: #7185BA;
    color: #2E354D;
    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: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #2E354D;
    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: #2E354D;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0 0 0 0;
  line-height: 140%;
  border-radius: 0.7rem;
  border-top: #91A0D5 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: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  background-color: #E8EBF2;
  color: #6574A7;
  -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: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #2E354D;
  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: #CCCCCC 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: #2E354D;
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0 0 0 0;
    line-height: 160%;
    border-radius: 0.7rem;
    border-top: #CCCCCC 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: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    background-color: #E8EBF2;
    color: #6574A7;
    -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: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #2E354D;
    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: #CCCCCC 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: #2E354D;
  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: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  background-color: #E8EBF2;
  color: #6574A7;
  -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: #91A0D5 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  line-height: 140%;
  display: block;
  color: #2E354D;
  background-color: #ffffff;
}
table.low_table_spblock3 tr td span {
  color: #91A0D5;
  font-size: 2.2rem;
  font-weight: bold;
}
table.low_table_spblock3 tr td span a {
  color: #91A0D5;
  text-decoration: none;
}
table.low_table_spblock3 tr:first-child th {
  border-top: #CCCCCC 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: #2E354D;
    font-size: 1.6rem;
    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: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: none;
    background-color: #E8EBF2;
    color: #6574A7;
    -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: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    line-height: 140%;
    display: table-cell;
    color: #2E354D;
    background-color: #ffffff;
  }
  table.low_table_spblock3 tr td span {
    color: #91A0D5;
    font-size: 3rem;
    font-weight: bold;
  }
  table.low_table_spblock3 tr td span a {
    color: #91A0D5;
    text-decoration: none;
  }
  table.low_table_spblock3 tr:first-child th {
    border-top: #CCCCCC 1px solid;
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
  }
  table.low_table_spblock3 tr:first-child td {
    border-top: #CCCCCC 1px solid;
    border-top-right-radius: 10px;
  }
  table.low_table_spblock3 tr:last-child th {
    border-bottom-left-radius: 10px;
    border-bottom: #CCCCCC 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;
}

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

.img-fluid {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  .img_right {
    float: right;
    margin: 0 0 20px 70px;
  }
  .img_right img {
    width: 500px;
    height: auto;
  }
  .img_center {
    float: none;
    margin: 0 0 20px 0;
    text-align: center;
  }
  .img_center img {
    width: auto;
    height: auto;
  }
}
/*リスト*/
/* 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;
}

ul.list_link {
  list-style-type: none;
}
ul.list_link li a {
  width: 100%;
}

/*標準 数字*/
ul.list_num {
  list-style-type: decimal;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_num li {
  margin: 0 0 1rem 1.8rem;
  padding: 0 0 0 0;
}

/*記号*/
ul.list_symbol {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_symbol li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
ul.list_symbol li::before {
  content: "※";
  width: 1.4rem;
  height: 1.4rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px), print {
  ul.list_normal {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
  ul.list_normal li {
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準2列 disc*/
  ul.list_normal_two {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_normal_two li {
    width: 45%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準3列 disc*/
  ul.list_normal_three {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_normal_three li {
    width: 30%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準 maru*/
  ul.list_maru {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
  ul.list_maru li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 5px;
    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.6rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_two li {
    width: 45%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 5px;
    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.6rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_three li {
    width: 30%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 5px;
    background-size: 12px;
    margin: 0 3% 5px 0;
    padding: 0 0 0 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  ul.list_link {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_link li {
    margin: 0 20px 0 0;
  }
  ul.list_link li a {
    width: auto;
  }
  /*標準 数字*/
  ul.list_num {
    list-style-type: decimal;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
  ul.list_num li {
    margin: 0 0 5px 20px;
    padding: 0 0 0 0;
  }
  /*記号*/
  ul.list_symbol {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
  ul.list_symbol li {
    margin: 0 0 10px 0;
    padding: 0 0 0 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  ul.list_symbol li::before {
    content: "※";
    width: 1.6rem;
    height: 1.6rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/*略歴*/
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.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: 25%;
  margin: 0 0 1rem 0;
}
dl.bio_list dd {
  width: 75%;
  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.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: 10%;
  margin: 0 0 1rem 0;
}
dl.num_list dd {
  width: 90%;
  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: #E8EBF2;
  color: #6574A7;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}
dl.title_box dt:first-child {
  border-top: #CCCCCC 1px solid;
}
dl.title_box dd {
  width: 100%;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}
dl.title_box dd ul.mb_none {
  margin: 0;
}

@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.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 500px;
  }
  dl.bio_list dt {
    width: 100px;
    margin: 0 0 1rem 0;
  }
  dl.bio_list dd {
    width: 400px;
    margin: 0 0 1rem 0;
  }
  /*数字*/
  dl.num_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.num_list dt {
    width: 20px;
    margin: 0 0 20px 0;
  }
  dl.num_list dd {
    width: 1180px;
    margin: 0 0 20px 0;
  }
  /*タイトルボックス*/
  dl.title_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  dl.title_box dt {
    width: 100%;
    margin: 0;
    background-color: #E8EBF2;
    color: #6574A7;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
  dl.title_box dt:first-child {
    border-top: #CCCCCC 1px solid;
  }
  dl.title_box dd {
    width: 100%;
    margin: 0;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
  dl.title_box dd ul.mb_none {
    margin: 0;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用
----------------------------------------------------------- */
/*矢印*/
.arrow {
  width: 100%;
  height: 2rem;
  border: none;
  text-align: center;
  display: block;
  background: url("../img/a_flow_arrow.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 2rem auto;
}

/*強調*/
.emphasis {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(246, 247, 249)), to(rgb(238, 240, 249)));
  background: linear-gradient(to bottom, rgb(246, 247, 249) 0%, rgb(238, 240, 249) 100%);
  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;
}
.emphasis dl.bio_list {
  margin: 0;
}

/*二列*/
/*下層電話*/
.low_tel {
  margin: 0 0 1rem 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;
}

.text_bold {
  font-weight: bold;
}

.text_red {
  color: #FF0000;
}

.text_underline {
  text-decoration: underline;
}

.tar {
  text-align: right;
}

@media screen and (min-width: 768px), print {
  /*矢印*/
  .arrow {
    width: 100%;
    height: 28px;
    border: none;
    text-align: center;
    display: block;
    background: url("../img/a_flow_arrow.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    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: 1200px;
  }
  .two_box section {
    width: 48%;
  }
  /*強調*/
  .emphasis {
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(246, 247, 249)), to(rgb(238, 240, 249)));
    background: linear-gradient(to bottom, rgb(246, 247, 249) 0%, rgb(238, 240, 249) 100%);
    padding: 35px;
    -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;
  }
  .emphasis dl.bio_list {
    margin: 0;
  }
  /*下層電話*/
  .low_tel {
    margin: 0 0 20px 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;
  }
  .text_bold {
    font-weight: bold;
  }
  .text_red {
    color: #FF0000;
  }
  .text_underline {
    text-decoration: underline;
  }
  .tar {
    text-align: right;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
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: 2rem auto 1rem auto;
}
ul.pankuzu_list li::after {
  content: "＞";
  font-size: 1.4rem;
  color: #2E354D;
  margin: 0 0.5rem;
}
ul.pankuzu_list li a {
  font-size: 1.4rem;
  color: #2E354D;
  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: 20px auto 0 auto;
  }
  ul.pankuzu_list li::after {
    content: "＞";
    font-size: 1.6rem;
    color: #2E354D;
    margin: 0 10px;
  }
  ul.pankuzu_list li a {
    font-size: 1.6rem;
    color: #2E354D;
    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: #2E354D;
  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: #2E354D;
    font-size: 2rem;
    margin: 30px 0 0 0;
    font-weight: bold;
  }
  .lightbox_frame2 {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lightbox_frame2 .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lightbox_frame2 .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame2 .img_box a img {
    width: 380px;
  }
}
/* -----------------------------------------------------------
　バナー
----------------------------------------------------------- */
.banner_01 {
  width: 96%;
  margin: 0 auto 2rem auto;
  border: #2E354D 2px solid;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  background-color: #91A0D5;
  padding: 1rem;
  text-decoration: none;
  color: #2E354D;
}
.banner_01 img {
  width: 70%;
  display: block;
  margin: 0 auto 1rem auto;
}
.banner_01 .banner_title {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #2E354D;
  margin: 0 0 1rem 0;
}
.banner_01 .banner_text {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  font-weight: normal;
  color: #2E354D;
  margin: 0 0 1rem 0;
  line-height: 140%;
}
.banner_01 ul {
  color: #2E354D;
}

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

.low_button {
  background: url("../img/icon_arrow2.svg") no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.5rem;
  background-color: #2E354D;
  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;
}

@media screen and (min-width: 768px), print {
  .low_link_text {
    color: #91A0D5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_link_text:hover {
    color: #505f93;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button {
    background: url("../img/icon_arrow2.svg") no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    background-color: #2E354D;
    width: auto;
    height: auto;
    margin: 0 0 2rem 0;
    text-align: left;
    text-decoration: none;
    padding: 20px 80px 20px 80px;
    line-height: 120%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff;
    font-size: 2rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button:hover {
    background-color: #505f93;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/*下層*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.doctor_name {
  text-align: right;
}
.doctor_name span {
  font-size: 1.8rem;
}

@media screen and (min-width: 768px), print {
  .img_doctor {
    float: right;
    margin: 0 0 20px 70px;
    text-align: right;
  }
  .img_doctor img {
    width: 350px;
    height: auto;
  }
  .doctor_name {
    text-align: right;
  }
  .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;
  }
}
/* -----------------------------------------------------------
　初めての方へ(流れ)2
----------------------------------------------------------- */
dl.flow_box {
  background-color: #F1F2F5;
  padding: 2rem 2rem 1rem 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.flow_box dt {
  background-color: #6574A7;
  color: #FFFFFF;
  font-family: "zenkakugothicnew_medium";
  font-weight: normal;
  font-size: 1.4rem;
  padding: 0.5rem 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin: 0 0 2rem 0;
}
dl.flow_box dt::before {
  content: "";
  width: 2rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: solid 2.5rem transparent;
  border-left: solid 1.5rem #F1F2F5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.flow_box dt::after {
  content: "";
  width: 2rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  border-top: solid 2.5rem transparent;
  border-right: solid 1.5rem #F1F2F5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.flow_box dd {
  color: #2E354D;
  font-family: "zenkakugothicnew_regular";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 140%;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  dl.flow_box {
    background-color: #F1F2F5;
    padding: 50px 40px 20px 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.flow_box dt {
    background-color: #6574A7;
    color: #FFFFFF;
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 2rem;
    padding: 8px 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 0 0 18px 0;
  }
  dl.flow_box dt::before {
    content: "";
    width: 2rem;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: solid 50px transparent;
    border-left: solid 30px #F1F2F5;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.flow_box dt::after {
    content: "";
    width: 2rem;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    border-top: solid 50px transparent;
    border-right: solid 30px #F1F2F5;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.flow_box dd {
    color: #2E354D;
    font-family: "zenkakugothicnew_regular";
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 140%;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
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: #2E354D;
  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: #2E354D;
    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;
  }
}
/* -----------------------------------------------------------
　お知らせ
----------------------------------------------------------- */
.notice_frame_low .notice_box {
  width: 98%;
  height: auto;
  margin: 2rem auto 0 auto;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_frame_low .notice_box dl {
  height: auto;
  margin: 0 auto 0 auto;
  width: 96%;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding: 0 0 1.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_frame_low .notice_box dl dt {
  color: #2E354D;
  margin: 1rem 0 1rem 0;
  padding: 2rem 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;
  border-bottom: #414141 1px solid;
}
.notice_frame_low .notice_box dl dt .date {
  display: block;
  font-size: 1.2rem;
}
.notice_frame_low .notice_box dl dt .new {
  color: #FF0000;
  font-size: 1.3rem;
}
.notice_frame_low .notice_box dl dt::after {
  display: block;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/icon_arrow_notice.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  right: 0;
  top: 2.2rem;
}
.notice_frame_low .notice_box dl dt.open::before {
  content: "";
}
.notice_frame_low .notice_box dl dt.close::after {
  content: "";
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.notice_frame_low .notice_box dl dt:first-child {
  border-top: none;
}
.notice_frame_low .notice_box dl dd {
  margin: 0 0 1rem 0;
  padding: 0 2rem 0 0;
  color: #2E354D;
  font-family: "zenkakugothicnew_regular";
  font-size: 1.4rem;
  line-height: 120%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}
.notice_frame_low .notice_box dl dd.open {
  display: block;
}
.notice_frame_low .notice_box dl dd p {
  font-family: "zenkakugothicnew_regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
}
.notice_frame_low .notice_box dl dd p a {
  color: #2E354D;
}

@media screen and (min-width: 768px), print {
  .notice_frame_low .notice_box {
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame_low .notice_box dl {
    height: auto;
    margin: 2px 0 26px 0;
    width: 100%;
    overflow-x: hidden;
    overflow-wrap: break-word;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame_low .notice_box dl dt {
    color: #2E354D;
    margin: 0 0 12px 0;
    padding: 5px 0 3px 0;
    font-family: "zenkakugothicnew_medium";
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 130%;
    position: relative;
    border-bottom: #414141 1px solid;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_frame_low .notice_box dl dt .date {
    display: inline;
    font-size: 1.4rem;
    margin: 0 20px 0 0;
  }
  .notice_frame_low .notice_box dl dt .new {
    color: #FF0000;
    font-size: 1.4rem;
  }
  .notice_frame_low .notice_box dl dt::after {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url("../img/icon_arrow_notice.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    right: 0;
    top: 10px;
  }
  .notice_frame_low .notice_box dl dt.open::before {
    content: "";
  }
  .notice_frame_low .notice_box dl dt.close {
    margin: 0 0 24px 0;
  }
  .notice_frame_low .notice_box dl dt.close::after {
    content: "";
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  .notice_frame_low .notice_box dl dt:first-child {
    border-top: none;
    padding: 0 0 3px 0;
  }
  .notice_frame_low .notice_box dl dt:first-child::after {
    top: 2px;
  }
  .notice_frame_low .notice_box dl dt:hover {
    cursor: pointer;
    cursor: hand;
    color: #91A0D5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_frame_low .notice_box dl dd {
    margin: 0 0 28px 0;
    padding: 0 20px 0 0;
    color: #2E354D;
    font-family: "zenkakugothicnew_regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 1.8rem;
    line-height: 130%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: none;
  }
  .notice_frame_low .notice_box dl dd.open {
    display: block;
  }
  .notice_frame_low .notice_box dl dd p {
    font-family: "zenkakugothicnew_regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 1.6rem;
    margin: 0 0 10px 0;
  }
  .notice_frame_low .notice_box dl dd p a {
    color: #2E354D;
  }
}
/*メールフォームプロ用*/
/* 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: #898FA5;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #2E354D;
  border-top: #2E354D 1px solid;
  border-left: #2E354D 1px solid;
  border-right: #2E354D 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: #2E354D 1px solid;
  border-left: #2E354D 1px solid;
  border-right: #2E354D 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: #2E354D 1px solid;
}

@media screen and (min-width: 768px), print {
  #mailformpro table {
    font-size: 1.6rem;
    line-height: 140%;
    width: 1200px;
  }
  #mailformpro table tr th {
    width: 400px;
    display: table-cell;
    text-align: left;
    font-weight: normal;
    background-color: #898FA5;
    padding: 1.5rem 1rem 1.5rem 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #2E354D 1px solid;
    border-left: #2E354D 1px solid;
    border-right: #2E354D 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: #2E354D 1px solid;
    border-left: #2E354D 1px solid;
    border-right: #2E354D 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;
  }
}
/* -----------------------------------------------------------
 フォントサイズ基本
----------------------------------------------------------- */
html {
  font-size: 3.125vw;
  overflow-y: auto;
  font-family: "zenkakugothicnew_regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #2E354D;
  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_regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    color: #2E354D;
    background-color: #ffffff;
    padding: 0;
    /*ページ内リンク用*/
    scroll-behavior: smooth;
    /*スクロール後の余白設定*/
    scroll-padding-top: 60px;
  }
}
/* -----------------------------------------------------------
 構成
----------------------------------------------------------- */
body {
  position: relative;
  width: 100%;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

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

.sentence {
  height: auto;
  overflow: hidden;
}
.sentence .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px), print {
  .sentence .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.sentence .-txt_c {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .sentence .-txt_c {
    text-align: left;
  }
}

.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: 4rem auto 14rem auto;
  padding: 0;
}
.main_low.main_access {
  margin: 4rem auto 2rem auto;
}

@media screen and (min-width: 768px), print {
  .wrapper {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .wrapper_low {
    height: auto;
    width: 100%;
    margin: 80px 0 80px 0;
    padding: 0;
  }
  .main {
    height: auto;
    width: 100%;
    margin: 0 0 0 0;
    padding: 0;
  }
  .main_low {
    height: auto;
    width: 1200px;
    margin: 0 auto 250px auto;
    padding: 0;
  }
  .main_low.main_access {
    margin: 0 auto 0 auto;
  }
}
/* -----------------------------------------------------------
　ヘッダー
----------------------------------------------------------- */
header.header {
  background-color: #ffffff;
  padding: 2vw 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 9999;
}
header.header .header_box {
  /*ロゴとハンバーガー*/
  /*ヘッダー情報*/
}
header.header .header_box .header_top {
  width: 100%;
  height: 14vw;
  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;
  margin: 4vw 0 0 0;
}
header.header .header_box .header_info {
  display: none;
}

.side_instagram {
  display: none;
}

@media screen and (min-width: 768px), print {
  header.header {
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 114px;
  }
  header.header .header_box {
    width: 1200px;
    height: 114px;
    margin: 0 auto;
    position: relative;
    /*ロゴとハンバーガー*/
    /*ヘッダー情報*/
  }
  header.header .header_box .header_top {
    width: 692px;
    height: 64px;
    margin: 0;
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 0;
    display: block;
    /*ハンバーガー*/
    /*ロゴ*/
  }
  header.header .header_box .header_top .container {
    display: none;
  }
  header.header .header_box .header_top .head_logo {
    width: 569px;
    margin: 0;
  }
  header.header .header_box .header_top .head_logo a {
    display: block;
    width: 569px;
    text-decoration: none;
  }
  header.header .header_box .header_top .head_logo a img {
    width: 569px;
    height: auto;
    margin: 0;
  }
  header.header .header_box .header_info {
    display: block;
    margin: 0;
    position: absolute;
    top: 26px;
    right: 0;
    /*電話番号*/
    /*住所*/
  }
  header.header .header_box .header_info .header_tel {
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 3rem;
    text-align: right;
    margin: 0;
    color: #2E354D;
    line-height: 100%;
  }
  header.header .header_box .header_info .header_address {
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    font-size: 1.4rem;
    color: #2E354D;
    text-align: right;
    line-height: 100%;
    margin: 7px 0 0 0;
    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;
  }
  header.header .header_box .header_info .header_address i {
    font-size: 2.2rem;
    margin: 0 -0.2rem 0 0;
  }
  .side_instagram {
    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: 90px;
    height: 90px;
    text-decoration: none;
    color: #ffffff;
    background-color: #ffffff;
    border: #91A0D5 1px solid;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 2.6rem;
    font-weight: normal;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.05em;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
    position: fixed;
    top: 210px;
    right: 0;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_instagram img {
    width: 40px;
    height: 40px;
  }
  .side_instagram:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　グローバルナビ
----------------------------------------------------------- */
nav.main_nav_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  nav.main_nav_pc {
    display: block;
    width: 100%;
    height: 45px;
    margin: 0;
    background-color: #ffffff;
  }
  nav.main_nav_pc ul {
    width: 1200px;
    height: 47px;
    margin: 0 auto;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  nav.main_nav_pc ul li {
    display: block;
    height: 37px;
    margin: 0;
    padding: 0;
  }
  nav.main_nav_pc ul li.home {
    width: 90px;
  }
  nav.main_nav_pc ul li.home span {
    display: none;
  }
  nav.main_nav_pc ul li.doctor {
    width: 139px;
  }
  nav.main_nav_pc ul li.treatment {
    width: 157px;
  }
  nav.main_nav_pc ul li.treatment a::after {
    font-family: "fontello";
    content: "\f004";
    margin: 7px 0 0 5px;
  }
  nav.main_nav_pc ul li.treatment ul li a::after {
    content: "";
    margin: 0;
  }
  nav.main_nav_pc ul li.treatment:hover {
    cursor: pointer;
    cursor: hand;
  }
  nav.main_nav_pc ul li.open_treatment a::after {
    font-family: "fontello";
    content: "\f005";
    margin: 7px 0 0 5px;
  }
  nav.main_nav_pc ul li.symptoms {
    width: 199px;
  }
  nav.main_nav_pc ul li.clinic {
    width: 199px;
  }
  nav.main_nav_pc ul li.access {
    width: 237px;
  }
  nav.main_nav_pc ul li.staff {
    width: 179px;
  }
  nav.main_nav_pc ul li.staff a {
    border-right: #2E354D 1px solid;
  }
  nav.main_nav_pc ul li a {
    width: 100%;
    height: 37px;
    text-decoration: none;
    text-align: center;
    color: #2E354D;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
    font-family: "zenoldmincho_bold";
    font-size: 1.8rem;
    font-weight: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-left: #2E354D 1px solid;
  }
  nav.main_nav_pc ul li a i {
    font-size: 3.1rem;
  }
  nav.main_nav_pc ul li a:hover {
    background-color: #F0F4FF;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li .sub_nav_box {
    display: none;
    width: 285px;
    margin: 10px 0 0 0;
  }
  nav.main_nav_pc ul li .sub_nav_box ul {
    width: 285px;
    height: auto;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    position: relative;
    z-index: 9999;
    display: -webkit-flext;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li {
    display: block;
    width: 285px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a {
    width: 100%;
    height: 44px;
    text-decoration: none;
    text-align: center;
    color: #2E354D;
    background-color: #F0F4FF;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0 0 0 20px;
    letter-spacing: 0.05em;
    font-family: "zenkakugothicnew_regular";
    font-size: 1.6rem;
    font-weight: normal;
    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;
    border-top: #91A0D5 1px solid;
    border-left: #91A0D5 1px solid;
    border-right: #91A0D5 1px solid;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a br {
    display: none;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a:hover {
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li:last-child a {
    border-bottom: #91A0D5 1px solid;
  }
  .nav_add {
    position: fixed;
    top: 0;
    z-index: 9999999999;
  }
}
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
/*トップキービジュアル*/
.key_visual {
  position: relative;
  width: 100%;
  height: 70vw;
}
.key_visual .key {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  /*大枠*/
}
.key_visual .key .key_bg {
  width: 100%;
  height: 70vw;
}
.key_visual .key .key_01 {
  background: url("../img/key_visual_01.jpg") no-repeat;
  background-size: cover;
  background-position: right 25% top;
}
.key_visual .key .key_02 {
  background: url("../img/key_visual_02.jpg") no-repeat;
  background-size: cover;
  background-position: right 25% top;
}
.key_visual .key .key_03 {
  background: url("../img/key_visual_03.jpg") no-repeat;
  background-size: cover;
  background-position: right 25% top;
}
.key_visual .key .key_04 {
  background: url("../img/key_visual_04.jpg") no-repeat;
  background-size: cover;
  background-position: right 25% top;
}
.key_visual .key_contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 70vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.key_visual .key_contents .key_text {
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.4rem;
  background-color: #2E354D;
  color: #ffffff;
  display: inline-block;
  padding: 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
}
.key_visual .key_contents .key_text.kt01 {
  position: absolute;
  bottom: 15vw;
  left: 2%;
}
.key_visual .key_contents .key_text.kt02 {
  position: absolute;
  bottom: 2vw;
  left: 2%;
}
.key_visual .key_contents .key_open {
  color: #ffffff;
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.8rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.16), 0 0 5px rgba(0, 0, 0, 0.16), 0 0 5px rgba(0, 0, 0, 0.16);
  text-align: center;
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
}
.key_visual .key_contents .key_open span {
  font-size: 1.4rem;
}

/*下層キービジュアル*/
.key_visual_low {
  width: 100%;
  height: 30vw;
  background: url("../img/key_visual_low.jpg") no-repeat;
  background-position: right 35% top;
  background-size: cover;
}
.key_visual_low h1 {
  width: 100%;
  height: 30vw;
  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;
  padding: 0 0 0 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.key_visual_low h1 span {
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  color: #ffffff;
  line-height: 160%;
  letter-spacing: 0.1em;
  background-color: #2E354D;
  padding: 0.4rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  /*トップキービジュアル*/
  .key_visual {
    position: relative;
    width: 100%;
    height: 550px;
  }
  .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100% !important;
    height: 550px;
    margin: 0 auto;
    overflow: hidden;
    /*大枠*/
  }
  .key_visual .key .key_bg {
    width: 100%;
    height: 550px;
  }
  .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;
    right: 0;
    z-index: 2;
    width: 1200px;
    height: 550px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
  .key_visual .key_contents .key_text {
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 1.8rem;
    background-color: #2E354D;
    color: #ffffff;
    display: inline-block;
    padding: 24px 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    line-height: 100%;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  }
  .key_visual .key_contents .key_text.kt01 {
    position: absolute;
    bottom: 105px;
    left: 0;
  }
  .key_visual .key_contents .key_text.kt02 {
    position: absolute;
    bottom: 28px;
    left: 0;
  }
  .key_visual .key_contents .key_open {
    color: #ffffff;
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 2.8rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.16), 0 0 5px rgba(0, 0, 0, 0.16), 0 0 5px rgba(0, 0, 0, 0.16);
    text-align: center;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
  }
  .key_visual .key_contents .key_open span {
    font-size: 1.8rem;
  }
  /*下層キービジュアル*/
  .key_visual_low {
    width: 100%;
    height: 300px;
    background: url("../img/key_visual_low.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .key_visual_low h1 {
    width: 1200px;
    height: 300px;
    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;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
  .key_visual_low h1 span {
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 2.6rem;
    text-align: center;
    color: #ffffff;
    line-height: 160%;
    letter-spacing: 0.1em;
    background-color: #2E354D;
    padding: 12px 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
　お知らせ
----------------------------------------------------------- */
.notice_bg {
  width: 100%;
  background: url("../img/index_notice_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 0 0 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_bg .notice_frame {
  width: 100%;
  margin: 0 0 0 0;
  padding: 4rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_bg .notice_frame h2.notice_title {
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  color: #2E354D;
  letter-spacing: 0.1em;
}
.notice_bg .notice_frame h2.notice_title span {
  font-family: "jost_regular";
  font-size: 1.2rem;
  font-weight: normal;
  color: #6574A7;
  display: block;
  margin: 1rem 0 0 0;
}
.notice_bg .notice_frame .notice_box {
  width: 98%;
  height: auto;
  margin: 2rem auto 0 auto;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_bg .notice_frame .notice_box dl {
  height: auto;
  margin: 0 auto 0 auto;
  width: 96%;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding: 0 0 1.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_bg .notice_frame .notice_box dl dt {
  color: #2E354D;
  margin: 1rem 0 1rem 0;
  padding: 2rem 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;
  border-bottom: #414141 1px solid;
}
.notice_bg .notice_frame .notice_box dl dt .date {
  display: block;
  font-size: 1.2rem;
}
.notice_bg .notice_frame .notice_box dl dt .new {
  color: #FF0000;
  font-size: 1.3rem;
}
.notice_bg .notice_frame .notice_box dl dt::after {
  display: block;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/icon_arrow_notice.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  right: 0;
  top: 2.2rem;
}
.notice_bg .notice_frame .notice_box dl dt.open::before {
  content: "";
}
.notice_bg .notice_frame .notice_box dl dt.close::after {
  content: "";
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.notice_bg .notice_frame .notice_box dl dt:first-child {
  border-top: none;
}
.notice_bg .notice_frame .notice_box dl dd {
  margin: 0 0 1rem 0;
  padding: 0 2rem 0 0;
  color: #2E354D;
  font-family: "zenkakugothicnew_regular";
  font-size: 1.4rem;
  line-height: 120%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}
.notice_bg .notice_frame .notice_box dl dd.open {
  display: block;
}
.notice_bg .notice_frame .notice_box dl dd p {
  font-family: "zenkakugothicnew_regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
}
.notice_bg .notice_frame .notice_box dl dd p a {
  color: #2E354D;
}
.notice_bg .notice_frame .notice_box dl dd img {
  width: 100%;
  height: 100%;
}
.notice_bg .notice_frame .notice_box .notice_button {
  font-family: "zenkakugothicnew_regular";
  font-weight: normal;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: #2E354D;
  text-decoration: none;
  padding: 0.6rem 2rem 0.6rem 1rem;
  position: relative;
  float: right;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
  margin: 0 2% 3px 0;
}
.notice_bg .notice_frame .notice_box .notice_button::before {
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 0.8rem;
  content: "";
  display: block;
  width: 0.7rem;
  height: 1.4rem;
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (min-width: 768px), print {
  .notice_bg {
    width: 100%;
    min-height: 756px;
    background: url("../img/index_notice_bg.jpg") no-repeat;
    background-size: contain;
    background-position: center top;
    background-color: #f7f7f7;
    padding: 0 0 115px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_bg .notice_frame {
    width: 1200px;
    margin: 1px auto 0 auto;
    padding: 120px 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;
    overflow: visible;
  }
  .notice_bg .notice_frame .top_title {
    width: 400px;
    padding: 1px 0 0 0;
  }
  .notice_bg .notice_frame .notice_box {
    width: 800px;
    height: auto;
    margin: 0 0 0 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_bg .notice_frame .notice_box dl {
    height: auto;
    margin: 2px 0 26px 0;
    width: 800px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_bg .notice_frame .notice_box dl dt {
    color: #2E354D;
    margin: 0 0 12px 0;
    padding: 5px 0 3px 0;
    font-family: "zenkakugothicnew_medium";
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 130%;
    position: relative;
    border-bottom: #414141 1px solid;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_bg .notice_frame .notice_box dl dt .date {
    display: inline;
    font-size: 1.4rem;
    margin: 0 20px 0 0;
  }
  .notice_bg .notice_frame .notice_box dl dt .new {
    color: #FF0000;
    font-size: 1.4rem;
  }
  .notice_bg .notice_frame .notice_box dl dt::after {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url("../img/icon_arrow_notice.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    right: 0;
    top: 10px;
  }
  .notice_bg .notice_frame .notice_box dl dt.open::before {
    content: "";
  }
  .notice_bg .notice_frame .notice_box dl dt.close {
    margin: 0 0 24px 0;
  }
  .notice_bg .notice_frame .notice_box dl dt.close::after {
    content: "";
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  .notice_bg .notice_frame .notice_box dl dt:first-child {
    border-top: none;
    padding: 0 0 3px 0;
  }
  .notice_bg .notice_frame .notice_box dl dt:first-child::after {
    top: 2px;
  }
  .notice_bg .notice_frame .notice_box dl dt:hover {
    cursor: pointer;
    cursor: hand;
    color: #91A0D5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_bg .notice_frame .notice_box dl dd {
    margin: 0 0 28px 0;
    padding: 0 20px 0 0;
    color: #2E354D;
    font-family: "zenkakugothicnew_regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 1.8rem;
    line-height: 130%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: none;
  }
  .notice_bg .notice_frame .notice_box dl dd.open {
    display: block;
  }
  .notice_bg .notice_frame .notice_box dl dd p {
    font-family: "zenkakugothicnew_regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 1.6rem;
    margin: 0 0 10px 0;
  }
  .notice_bg .notice_frame .notice_box dl dd p a {
    color: #2E354D;
  }
  .notice_bg .notice_frame .notice_box dl dd img {
    width: 100%;
    height: 100%;
  }
  .notice_bg .notice_frame .notice_box .notice_button {
    font-family: "zenkakugothicnew_regular";
    font-weight: normal;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #2E354D;
    text-decoration: none;
    padding: 9px 30px 9px 17px;
    position: relative;
    float: right;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
    margin: 0 0 3px 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_bg .notice_frame .notice_box .notice_button::before {
    position: absolute;
    top: calc(50% - 9px);
    right: 15px;
    content: "";
    display: block;
    width: 10px;
    height: 18px;
    background: url("../img/icon_arrow.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .notice_bg .notice_frame .notice_box .notice_button:hover {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　初診の方へバナー
----------------------------------------------------------- */
.bana_frame {
  width: 100%;
  padding: 2rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bana_frame .bana_link {
  width: 96%;
  margin: 0 auto;
  text-decoration: none;
  border: #7185BA 2px solid;
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  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;
}
.bana_frame .bana_link .bana_title {
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  color: #7185BA;
  margin: 0 0 1rem 0;
}
.bana_frame .bana_link .bana_text {
  font-family: "zenkakugothicnew_regular";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  line-height: 140%;
  color: #2E354D;
  margin: 0 0 0 0;
}
.bana_frame .bana_link .bana_text em {
  font-style: normal;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #E8EBF2));
  background: linear-gradient(transparent 60%, #E8EBF2 40%);
}
.bana_frame .bana_link::before {
  content: "";
  width: 98%;
  height: 96%;
  position: absolute;
  top: 2%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border: #7185BA 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .bana_frame {
    width: 100%;
    padding: 120px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .bana_frame .bana_link {
    width: 800px;
    height: 161px;
    margin: 0 auto;
    text-decoration: none;
    border: #7185BA 2px solid;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    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;
  }
  .bana_frame .bana_link .bana_title {
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 2.2rem;
    text-align: center;
    color: #7185BA;
    margin: 0 0 18px 0;
  }
  .bana_frame .bana_link .bana_text {
    font-family: "zenkakugothicnew_regular";
    font-weight: normal;
    font-size: 1.6rem;
    text-align: center;
    line-height: 180%;
    color: #2E354D;
    margin: 0 0 0 0;
    letter-spacing: 0.1em;
  }
  .bana_frame .bana_link .bana_text em {
    font-style: normal;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #E8EBF2));
    background: linear-gradient(transparent 60%, #E8EBF2 40%);
  }
  .bana_frame .bana_link::before {
    content: "";
    width: 788px;
    height: 149px;
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: #7185BA 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.treatment_frame {
  width: 100%;
  padding: 4rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.treatment_frame ul.treatment_list {
  list-style-type: none;
  width: 90%;
  margin: 2rem auto 0 auto;
}
.treatment_frame ul.treatment_list li {
  margin: 0 0 2rem 0;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
}
.treatment_frame ul.treatment_list li a {
  font-family: "zenkakugothicnew_regular";
  font-weight: normal;
  font-size: 1.6rem;
  text-decoration: none;
  background-color: #F6F7F9;
  color: #2E354D;
  border: #898FA5 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3rem 2rem 3rem 6rem;
  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;
}
.treatment_frame ul.treatment_list li a::before {
  position: absolute;
  top: calc(50% - 2rem);
  left: 1.2rem;
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
}
.treatment_frame ul.treatment_list li a br {
  display: none;
}
.treatment_frame ul.treatment_list li.ortho a::before {
  background: url("../img/icon_01.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame ul.treatment_list li.osteoporosis a::before {
  background: url("../img/icon_02.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame ul.treatment_list li.rehabilitation a::before {
  background: url("../img/icon_03.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame ul.treatment_list li.locomo a::before {
  background: url("../img/icon_04.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame ul.treatment_list li.rheumatism a::before {
  background: url("../img/icon_05.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame ul.treatment_list li.traffic_accident a::before {
  background: url("../img/icon_06.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame ul.treatment_list li.sports_orthopedics a::before {
  background: url("../img/icon_07.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (min-width: 768px), print {
  .treatment_frame {
    width: 100%;
    padding: 107px 0 79px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .treatment_frame ul.treatment_list {
    list-style-type: none;
    width: 1200px;
    margin: 46px 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-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .treatment_frame ul.treatment_list li {
    margin: 0 37px 40px 0;
    width: 270px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame ul.treatment_list li a {
    font-family: "zenkakugothicnew_regular";
    font-weight: normal;
    font-size: 2.2rem;
    text-decoration: none;
    background-color: #F6F7F9;
    color: #2E354D;
    border: #898FA5 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
    padding: 0 0 0 92px;
    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;
    width: 270px;
    height: 120px;
    line-height: 120%;
  }
  .treatment_frame ul.treatment_list li a::before {
    position: absolute;
    top: calc(50% - 25px);
    left: 20px;
    content: "";
    display: block;
    width: 50px;
    height: 50px;
  }
  .treatment_frame ul.treatment_list li a br {
    display: block;
  }
  .treatment_frame ul.treatment_list li.ortho a::before {
    background: url("../img/icon_01.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame ul.treatment_list li.osteoporosis a::before {
    background: url("../img/icon_02.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame ul.treatment_list li.rehabilitation a::before {
    background: url("../img/icon_03.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame ul.treatment_list li.locomo a::before {
    background: url("../img/icon_04.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame ul.treatment_list li.rheumatism a::before {
    background: url("../img/icon_05.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame ul.treatment_list li.traffic_accident a::before {
    background: url("../img/icon_06.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame ul.treatment_list li.sports_orthopedics a::before {
    background: url("../img/icon_07.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame ul.treatment_list li:nth-child(4n) {
    margin: 0 0 38px 0;
  }
  .treatment_frame ul.treatment_list li:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
当院の特徴
----------------------------------------------------------- */
.feature_frame {
  width: 100%;
  background: url("../img/index_feature_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
  margin: 3rem 0 0 0;
  padding: 4rem 0 5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.feature_frame .feature_box {
  width: 96%;
  margin: 6rem auto 0 auto;
  position: relative;
  overflow: visible;
}
.feature_frame .feature_box .feature_sub_title {
  font-family: "zenkakugothicnew_light";
  font-weight: normal;
  font-size: 2rem;
  color: #91A0D5;
  line-height: 120%;
  position: absolute;
  margin: 0;
}
.feature_frame .feature_box img {
  width: 90%;
  height: auto;
  position: relative;
  z-index: 2;
  overflow: visible;
  display: block;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
}
.feature_frame .feature_box .feature_text_box {
  width: 90%;
  background-color: #ffffff;
  padding: 2rem 2rem 2rem 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: -6vw auto 0 auto;
  position: relative;
  z-index: 3;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
  overflow: visible;
}
.feature_frame .feature_box .feature_text_box h3.feature_title {
  font-family: "zenkakugothicnew_regular";
  font-weight: 400;
  font-size: 2rem;
  color: #2E354D;
  margin: 0 0 1rem 0;
  line-height: 120%;
  text-align: justify;
}
.feature_frame .feature_box .feature_text_box p {
  text-align: justify;
}
.feature_frame .feature_box .feature_text_box .feature_button {
  text-align: right;
  margin: 0;
}
.feature_frame .feature_box .feature_text_box .feature_button a {
  font-family: "zenkakugothicnew_regular";
  font-weight: normal;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: #2E354D;
  text-decoration: none;
  padding: 0.6rem 2rem 0.6rem 1rem;
  position: relative;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
  margin: 0 0 3px 0;
}
.feature_frame .feature_box .feature_text_box .feature_button a::before {
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 0.8rem;
  content: "";
  display: block;
  width: 0.7rem;
  height: 1.4rem;
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.feature_frame .feature_box.fb_left img {
  margin: 0 10% 0 0;
}
.feature_frame .feature_box.fb_left .feature_sub_title {
  top: -2.3rem;
  right: 10%;
}
.feature_frame .feature_box.fb_right img {
  margin: 0 0 0 10%;
}
.feature_frame .feature_box.fb_right .feature_sub_title {
  top: -2.3rem;
  left: 10%;
}

@media screen and (min-width: 768px), print {
  .feature_frame {
    width: 100%;
    background: url("../img/index_feature_bg.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
    margin: 0 0 0 0;
    padding: 109px 0 149px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .feature_frame .feature_box {
    width: 1200px;
    height: 350px;
    margin: 64px auto 0 auto;
    position: relative;
    overflow: visible;
  }
  .feature_frame .feature_box .feature_sub_title {
    font-family: "zenkakugothicnew_light";
    font-weight: normal;
    font-size: 3rem;
    color: #91A0D5;
    line-height: 120%;
    position: absolute;
    margin: 0;
  }
  .feature_frame .feature_box img {
    width: 540px;
    height: auto;
    position: absolute;
    z-index: 2;
    overflow: visible;
    display: block;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
  }
  .feature_frame .feature_box .feature_text_box {
    width: 540px;
    height: auto;
    background-color: #ffffff;
    padding: 53px 40px 54px 42px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 0;
    position: absolute;
    z-index: 3;
  }
  .feature_frame .feature_box .feature_text_box h3.feature_title {
    font-family: "zenkakugothicnew_bold";
    font-weight: bold;
    font-size: 2.6rem;
    color: #2E354D;
    margin: 0 0 34px 0;
    line-height: 120%;
    text-align: justify;
  }
  .feature_frame .feature_box .feature_text_box p {
    text-align: justify;
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 140%;
    margin: 0 0 34px 0;
  }
  .feature_frame .feature_box .feature_text_box .feature_button {
    text-align: right;
    margin: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .feature_frame .feature_box .feature_text_box .feature_button a {
    font-family: "zenkakugothicnew_regular";
    font-weight: normal;
    font-size: 1.7rem;
    color: #ffffff;
    background-color: #2E354D;
    text-decoration: none;
    padding: 5px 29px 5px 19px;
    position: relative;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
    margin: 0 0 3px 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .feature_frame .feature_box .feature_text_box .feature_button a::before {
    position: absolute;
    top: calc(50% - 9px);
    right: 14px;
    content: "";
    display: block;
    width: 10px;
    height: 18px;
    background: url("../img/icon_arrow.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .feature_frame .feature_box .feature_text_box .feature_button:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  .feature_frame .feature_box.fb_left img {
    top: 0;
    left: 0;
    margin: 0 0 0 0;
  }
  .feature_frame .feature_box.fb_left .feature_text_box {
    bottom: -34px;
    right: 150px;
  }
  .feature_frame .feature_box.fb_left .feature_sub_title {
    top: auto;
    right: auto;
  }
  .feature_frame .feature_box.fb_right img {
    top: 0;
    right: 0;
    margin: 0 0 0 0;
  }
  .feature_frame .feature_box.fb_right .feature_text_box {
    bottom: -34px;
    left: 150px;
  }
  .feature_frame .feature_box.fb_right .feature_sub_title {
    top: auto;
    left: auto;
  }
  .feature_frame .feature_box.fb01 {
    margin: 48px auto 0 auto;
  }
  .feature_frame .feature_box.fb01 .feature_sub_title {
    top: 66px;
    right: 150px;
  }
  .feature_frame .feature_box.fb02 .feature_sub_title {
    top: 66px;
    left: 150px;
  }
  .feature_frame .feature_box.fb03 .feature_sub_title {
    top: 41px;
    right: 150px;
  }
  .feature_frame .feature_box.fb04 .feature_sub_title {
    top: 126px;
    left: 150px;
  }
  .feature_frame .feature_box.fb04 p {
    margin: 0 0 0 0;
  }
  .feature_frame .feature_box.fb05 .feature_sub_title {
    top: -8px;
    right: 150px;
  }
  .feature_frame .feature_box.fb06 .feature_sub_title {
    top: 42px;
    left: 150px;
  }
  .feature_frame .feature_box.fb06 p {
    margin: 0 0 0 0;
  }
  .feature_frame .feature_box.fb06 .feature_text_box {
    width: 540px;
    height: 295px;
    bottom: -25px;
  }
}
/* -----------------------------------------------------------
　部位
----------------------------------------------------------- */
.probrems_frame {
  width: 100%;
  margin: 0 0 0 0;
  padding: 5rem 0 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.probrems_frame .probrems_box {
  margin: 2rem 0 0 0;
  padding: 35rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_probrems_img_base.png") no-repeat;
  background-size: 60%;
  background-position: center top;
  position: relative;
}
.probrems_frame .probrems_box .probrems_list {
  width: 90%;
}
.probrems_frame .probrems_box .probrems_list ul {
  width: 100%;
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  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;
}
.probrems_frame .probrems_box .probrems_list ul li {
  width: 49%;
  margin: 0 0 1rem 0;
}
.probrems_frame .probrems_box .probrems_list ul li a {
  font-family: "zenkakugothicnew_regular";
  font-weight: 400;
  font-size: 1.6rem;
  text-decoration: none;
  color: #2E354D;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffff;
  border: #898FA5 2px solid;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
  display: block;
  margin: 0 auto;
  text-align: center;
}
.probrems_frame .probrems_box .probrems_list ul li a::before {
  content: "";
  width: 3rem;
  height: 3rem;
  display: block;
  background-color: #91A0D5;
  border-radius: 50%;
  opacity: 0.4;
}
.probrems_frame .probrems_box .probrems_list ul li.shoulder a::before {
  position: absolute;
  top: 6rem;
  left: 11rem;
}
.probrems_frame .probrems_box .probrems_list ul li.elbow a::before {
  position: absolute;
  top: 13.5rem;
  left: 9rem;
}
.probrems_frame .probrems_box .probrems_list ul li.hip_joint a::before {
  position: absolute;
  top: 19.4rem;
  left: 14.1rem;
}
.probrems_frame .probrems_box .probrems_list ul li.knees a::before {
  position: absolute;
  top: 26.5rem;
  left: 12.3rem;
}
.probrems_frame .probrems_box .probrems_list ul li.neck a::before {
  position: absolute;
  top: 5rem;
  left: 15.5rem;
}
.probrems_frame .probrems_box .probrems_list ul li.hand a::before {
  position: absolute;
  top: 20.5rem;
  left: 22rem;
}
.probrems_frame .probrems_box .probrems_list ul li.waist a::before {
  position: absolute;
  top: 16.5rem;
  left: 17rem;
}
.probrems_frame .probrems_box .probrems_list ul li.legs a::before {
  position: absolute;
  top: 36rem;
  left: 16rem;
}
.probrems_frame .probrems_box .probrems_list.pl1 {
  margin: 8rem auto 0 auto;
}
.probrems_frame .probrems_box .probrems_list.pl2 {
  margin: 0 auto 0 auto;
}

@media screen and (min-width: 768px), print {
  .probrems_frame {
    width: 100%;
    margin: 0 0 0 0;
    padding: 105px 0 120px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .probrems_frame .probrems_box {
    width: 950px;
    margin: 50px 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;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_probrems_img_base.png") no-repeat;
    background-size: 270px;
    background-position: center top;
    position: relative;
    height: 600px;
  }
  .probrems_frame .probrems_box .probrems_list {
    width: 220px;
  }
  .probrems_frame .probrems_box .probrems_list ul {
    width: 100%;
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    display: block;
  }
  .probrems_frame .probrems_box .probrems_list ul li {
    width: 100%;
    margin: 0 0 60px 0;
  }
  .probrems_frame .probrems_box .probrems_list ul li a {
    font-family: "zenkakugothicnew_bold";
    font-weight: bold;
    font-size: 1.6rem;
    text-decoration: none;
    color: #2E354D;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #ffffff;
    border: #898FA5 2px solid;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    height: 54px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .probrems_frame .probrems_box .probrems_list ul li a::before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    background-color: #91A0D5;
    border-radius: 50%;
    opacity: 0.4;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .probrems_frame .probrems_box .probrems_list ul li a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #c4cce6;
  }
  .probrems_frame .probrems_box .probrems_list ul li a:hover::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scale(1.3, 1.3);
            transform: scale(1.3, 1.3);
  }
  .probrems_frame .probrems_box .probrems_list ul li.shoulder a::before {
    position: absolute;
    top: 90px;
    left: 410px;
  }
  .probrems_frame .probrems_box .probrems_list ul li.elbow a::before {
    position: absolute;
    top: 197px;
    left: 382px;
  }
  .probrems_frame .probrems_box .probrems_list ul li.hip_joint a::before {
    position: absolute;
    top: 280px;
    left: 456px;
  }
  .probrems_frame .probrems_box .probrems_list ul li.knees a::before {
    position: absolute;
    top: 390px;
    left: 429px;
  }
  .probrems_frame .probrems_box .probrems_list ul li.neck a::before {
    position: absolute;
    top: 69px;
    left: 475px;
  }
  .probrems_frame .probrems_box .probrems_list ul li.hand a::before {
    position: absolute;
    top: 300px;
    left: 570px;
  }
  .probrems_frame .probrems_box .probrems_list ul li.waist a::before {
    position: absolute;
    top: 237px;
    left: 500px;
  }
  .probrems_frame .probrems_box .probrems_list ul li.legs a::before {
    position: absolute;
    top: 523px;
    left: 484px;
  }
  .probrems_frame .probrems_box .probrems_list.pl1 {
    margin: 101px 0 0 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .probrems_frame .probrems_box .probrems_list.pl2 {
    margin: 101px 0 0 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
/* -----------------------------------------------------------
ごあいさつ
----------------------------------------------------------- */
.greeting_frame {
  width: 100%;
  background: url("../img/index_greeting_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 5rem 0 14rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.greeting_frame .greeting_box {
  width: 96%;
  margin: 2rem auto 0 auto;
}
.greeting_frame .greeting_box .greeting_text p {
  font-family: "zenkakugothicnew_regular";
  font-weight: normal;
  font-size: 1.4rem;
  color: #2E354D;
  line-height: 160%;
  text-align: justify;
  margin: 0 0 2rem 0;
}
.greeting_frame .greeting_box .greeting_text p.greeting_name {
  text-align: right;
  font-size: 1.8rem;
}
.greeting_frame .greeting_box .greeting_text .greeting_button {
  text-align: right;
  margin: 0;
}
.greeting_frame .greeting_box .greeting_text .greeting_button a {
  font-family: "zenkakugothicnew_regular";
  font-weight: normal;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: #2E354D;
  text-decoration: none;
  padding: 0.6rem 2rem 0.6rem 1rem;
  position: relative;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
  margin: 0 0 3px 0;
}
.greeting_frame .greeting_box .greeting_text .greeting_button a::before {
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 0.8rem;
  content: "";
  display: block;
  width: 0.7rem;
  height: 1.4rem;
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.greeting_frame .greeting_box .greeting_text .greeting_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}
.greeting_frame .greeting_box .greeting_img {
  width: 70%;
  margin: 4rem auto 0 auto;
}
.greeting_frame .greeting_box .greeting_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  .greeting_frame {
    width: 100%;
    height: auto;
    background: url("../img/index_greeting_bg.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .greeting_frame .greeting_box {
    width: 1200px;
    margin: 48px 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_text {
    width: 640px;
    margin: -3px 0 0 0;
  }
  .greeting_frame .greeting_box .greeting_text p {
    font-family: "zenkakugothicnew_regular";
    font-weight: normal;
    font-size: 1.7rem;
    color: #2E354D;
    line-height: 190%;
    text-align: justify;
    margin: 0 0 27px 0;
  }
  .greeting_frame .greeting_box .greeting_text p.greeting_name {
    text-align: right;
    font-size: 2.1rem;
    margin: 43px 0 7px 0;
  }
  .greeting_frame .greeting_box .greeting_text .greeting_button {
    text-align: right;
    margin: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .greeting_frame .greeting_box .greeting_text .greeting_button a {
    font-family: "zenkakugothicnew_regular";
    font-weight: normal;
    font-size: 1.7rem;
    color: #ffffff;
    background-color: #2E354D;
    text-decoration: none;
    padding: 5px 29px 5px 19px;
    position: relative;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
    margin: 0 0 3px 0;
  }
  .greeting_frame .greeting_box .greeting_text .greeting_button a::before {
    position: absolute;
    top: calc(50% - 9px);
    right: 14px;
    content: "";
    display: block;
    width: 10px;
    height: 18px;
    background: url("../img/icon_arrow.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .greeting_frame .greeting_box .greeting_text .greeting_button:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  .greeting_frame .greeting_box .greeting_text .greeting_flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .greeting_frame .greeting_box .greeting_img {
    width: 460px;
    margin: 3px 0 0 0;
  }
  .greeting_frame .greeting_box .greeting_img img {
    width: 100%;
    height: auto;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  background: url("../img/overview_bg.svg") no-repeat;
  background-size: 350%;
  background-position: center top;
  padding: 5vw 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: -30vw 0 0 0;
  overflow: hidden;
}
.overview .overview_logo_r {
  width: 60vw;
  height: 60vw;
  margin: 0 auto 0 auto;
  padding: 8vw 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  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;
}
.overview .overview_logo_r img {
  width: 65%;
  height: auto;
}
.overview .overview_box {
  width: 96%;
  margin: -10vw auto 0 auto;
  padding: 0 0 0 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 {
  display: block;
  width: 90%;
  margin: 0 auto 2rem auto;
}
.overview .overview_box .overview_info_box_left .overview_logo img {
  width: 100%;
  height: auto;
  display: block;
}
.overview .overview_box .overview_info_box_left dl.overview_list {
  width: 100%;
  margin: 2rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
  line-height: 160%;
}
.overview .overview_box .overview_info_box_left dl.overview_list dt {
  width: 25%;
  margin: 0 0 1.5rem 0;
  padding: 0 0 0.5rem 0;
  font-family: "zenkakugothicnew_medium";
  font-weight: normal;
  color: #898FA5;
  background-image: linear-gradient(to right, #898FA5 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd {
  width: 75%;
  margin: 0 0 1.5rem 0;
  padding: 0 0 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "zenkakugothicnew_regular";
  font-weight: normal;
  color: #2E354D;
  background-image: linear-gradient(to right, #898FA5 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd a {
  color: #2E354D;
  text-decoration: none;
}
.overview .overview_box .overview_info_box_right {
  margin: 2rem 0 0 0;
}
.overview .overview_box .overview_info_box_right .overview_timetable {
  width: 100%;
  margin: 0;
}

iframe.googlemap {
  width: 100%;
  height: 100vw;
  display: block;
  margin: 2rem 0 0 0;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    background: url("../img/overview_bg.svg") no-repeat;
    background-size: 2000px;
    background-position: center top;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: -125px 0 0 0;
    overflow: hidden;
  }
  .overview .overview_logo_r {
    width: 328px;
    height: 328px;
    margin: 0 auto 0 auto;
    padding: 61px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 50%;
    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;
  }
  .overview .overview_logo_r img {
    width: 200px;
    height: auto;
  }
  .overview .overview_box {
    width: 1200px;
    margin: -40px auto 29px 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: 520px;
  }
  .overview .overview_box .overview_info_box_left .overview_logo {
    display: block;
    width: 396.76px;
    margin: 0 0 54px 62px;
  }
  .overview .overview_box .overview_info_box_left .overview_logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list {
    width: 520px;
    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: 160%;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt {
    width: 120px;
    margin: 0 0 18px 0;
    padding: 0 0 5px 0;
    font-family: "zenkakugothicnew_medium";
    font-weight: normal;
    color: #898FA5;
    background-image: linear-gradient(to right, #898FA5 2px, transparent 2px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd {
    width: 400px;
    margin: 0 0 18px 0;
    padding: 0 0 5px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "zenkakugothicnew_regular";
    font-weight: normal;
    color: #2E354D;
    background-image: linear-gradient(to right, #898FA5 2px, transparent 2px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd a {
    color: #2E354D;
    text-decoration: none;
  }
  .overview .overview_box .overview_info_box_right {
    width: 645px;
    margin: 0 0 0 0;
  }
  .overview .overview_box .overview_info_box_right .overview_timetable {
    width: 100%;
    margin: 0;
  }
  iframe.googlemap {
    width: 100%;
    height: 400px;
    display: block;
    margin: 0;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
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: #ffffff;
}
footer .copyright a {
  color: #2E354D;
  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: 50%;
  margin: 0;
  color: #ffffff;
  background-color: #898FA5;
  text-align: center;
  font-family: "zenkakugothicnew_regular", "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.1em;
  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_reserve {
  width: 35%;
  margin: 0;
  color: #ffffff;
  background-color: #898FA5;
  text-align: center;
  font-family: "zenkakugothicnew_regular", "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.1em;
  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: #898FA5;
  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: 53px 0 0 0;
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 211px;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    display: block;
    width: 1200px;
    margin: 0 auto 0 auto;
  }
  footer .footer_frame ul.footer_list {
    line-height: 130%;
    font-size: 1.6rem;
    margin: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer_frame ul.footer_list li {
    width: auto;
    margin: 0 0 10px 0;
    padding: 0;
    list-style-type: none;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 100%;
    height: 12px;
    position: relative;
  }
  footer .footer_frame ul.footer_list li a {
    color: #2E354D;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.4rem;
    position: relative;
    line-height: 100%;
    height: 12px;
    display: inline-block;
    padding: 0 8px 0 8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  footer .footer_frame ul.footer_list li a i {
    display: none;
  }
  footer .footer_frame ul.footer_list li a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #F0F4FF;
  }
  footer .footer_frame ul.footer_list li a br {
    display: none;
  }
  footer .footer_frame ul.footer_list li.treatment {
    display: none;
  }
  footer .footer_frame ul.footer_list li::before {
    content: "";
    position: absolute;
    display: block;
    top: 3px;
    left: 0;
    width: 1px;
    height: 12px;
    border-left: 1px solid #2E354D;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 2;
  }
  footer .footer_frame ul.footer_list li:first-child::before {
    display: none;
  }
  footer .footer_frame .subtitle {
    display: none;
  }
  footer .copyright {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #2E354D;
    font-size: 1.4rem;
    height: 70px;
    width: 100%;
    letter-spacing: 0.05em;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  footer .copyright a {
    color: #2E354D;
    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 #2E354D;
  }
  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: 60px;
    height: 60px;
  }
  #pagetop_position #linkpagetop a img {
    width: 60px;
    height: 60px;
  }
  #pagetop_position #linkpagetop a:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #pagetop {
    position: fixed;
    bottom: 13px;
    right: 10px;
    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: 60px;
    height: 60px;
  }
  #pagetop_position #linkpagetop a img {
    width: 60px;
    height: 60px;
  }
  #pagetop {
    position: fixed;
    bottom: 13px;
    right: 10px;
    z-index: 999999;
  }
}/*# sourceMappingURL=style.css.map */