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

 共通項目

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

/*◇◆◇◆◇◆基本色◇◆◇◆◇◆*/
/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*◇◆◇◆◇◆ハンバーガー色◇◆◇◆◇◆*/
/*ハンバーガー棒と文字*/
/*ハンバーガー背景*/
/*ハンバーガーdrawr背景*/
/*ハンバーガーdrawrテキスト*/
/*ハンバーガーdrawrサブ背景*/
/*ハンバーガーdrawrサブテキスト*/
/*ハンバーガーdrawrボーダー*/
/*◇◆◇◆◇◆お知らせ色◇◆◇◆◇◆*/
/*お知らせタイトル*/
/*お知らせ文字*/
/*お知らせボーダー*/
/*お知らせアイコン*/
/*お知らせ背景*/
/*◇◆◇◆◇◆フッターPC◇◆◇◆◇◆*/
/*フッター背景色*/
/*フッターテキスト*/
/*フッターボーダー*/
/*◇◆◇◆◇◆フッターリンクSP◇◆◇◆◇◆*/
/*フッターリンク背景色*/
/*フッターリンクテキスト*/
/*フッターリンクボーダー*/
/*◇◆◇◆◇◆コピーライト◇◆◇◆◇◆*/
/*コピーライト背景色*/
/*コピーライトテキスト*/
/*◇◆◇◆◇◆リンク系◇◆◇◆◇◆*/
/*リンクカラー*/
/*リンクカラーホバー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆診療時間テーブル◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*thボーダー*/
/*◇◆◇◆◇◆汎用テーブル系◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*tdボーダー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆影◇◆◇◆◇◆*/
/*◇◆◇◆◇◆透過◇◆◇◆◇◆*/
/*◇◆◇◆◇◆フロー◇◆◇◆◇◆*/
/*◇◆◇◆◇◆矢印◇◆◇◆◇◆*/
/*青緑*/
/*灰色*/
/*水色*/
/*水色*/
/*水色*/
/*灰色*/
/*水色*/
/*黒*/
/*黒*/
/*くらい黄色*/
/*ピンク*/
/*茶色*/
/*茶色*/
/*黒っぽい灰色*/
/*青紫色*/
/*ピンク*/
/*黒っぽい灰色*/
/*青*/
/*青*/
/*ピンク*/
/*水色*/
/*黒*/
/*茶色*/
/*茶色*/
/*茶色*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@font-face {
  font-family: "kaiseiopti_regular";
  src: url(../font/KaiseiOpti-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "kaiseiopti_medium";
  src: url(../font/KaiseiOpti-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "kaiseiopti_bold";
  src: url(../font/KaiseiOpti-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "zen_maru_gothic_regular";
  src: url(../font/ZenMaruGothic-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zen_maru_gothic_bold";
  src: url(../font/ZenMaruGothic-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "zen_maru_gothic_Medium";
  src: url(../font/ZenMaruGothic-Medium.ttf);
  font-weight: normal;
  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: #ffffff;
  overflow-x: hidden;
  overflow: auto;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.main_nav_sp .drawr::-webkit-scrollbar {
  display: none;
}
.main_nav_sp .drawr ul.hbg {
  list-style-type: none;
  border-top: #474A5B 1px solid;
  width: 90%;
  margin: 20vw auto 20vw auto;
}
.main_nav_sp .drawr ul.hbg li {
  width: 100%;
  text-align: center;
}
.main_nav_sp .drawr ul.hbg li.treatment:hover {
  cursor: pointer;
  cursor: hand;
}
.main_nav_sp .drawr ul.hbg li a {
  color: #474A5B;
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 1rem 0 1rem 1rem;
  border-bottom: #474A5B 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  line-height: 140%;
}
.main_nav_sp .drawr ul.hbg li a span {
  color: #CCCCCC;
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub, .main_nav_sp .drawr ul.hbg li .main_nav_sub2 {
  display: none;
  width: 100%;
  list-style-type: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub.open_nav, .main_nav_sp .drawr ul.hbg li .main_nav_sub2.open_nav {
  display: block;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a, .main_nav_sp .drawr ul.hbg li .main_nav_sub2 li a {
  background-color: #C8E4FF;
  color: #474A5B;
  border-bottom: none;
  text-align: center;
  border-bottom: #474A5B 1px solid;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a::after, .main_nav_sp .drawr ul.hbg li .main_nav_sub2 li a::after {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li.treatment_hbg a::after, .main_nav_sp .drawr ul.hbg li.introductiont_hbg a::after {
  font-family: "fontello";
  content: "\f004";
  font-size: 1.4rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.is-open a::after {
  font-family: "fontello";
  content: "\f005";
  font-size: 1.4rem;
  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: #539BE3;
  border-radius: 0.3rem;
  height: 12vw;
}

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

 共通項目

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

h2.top_title {
  text-align: center;
  font-size: 2.2rem;
  line-height: 160%;
  margin: 0;
}
h2.low {
  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: 4rem 0 1rem 0;
}
h2.low span {
  text-align: center;
  font-family: "kaiseiopti_medium";
  font-weight: normal;
  font-size: 2.2rem;
  color: #65A2DE;
  line-height: 100%;
  width: auto;
  max-width: 60%;
}
h2.low::before {
  content: "";
  width: 15%;
  height: 20vw;
  display: block;
  background: url("../img/h2_left.svg") no-repeat;
  background-size: contain;
  background-position: center center;
}
h2.low::after {
  content: "";
  width: 15%;
  height: 20vw;
  display: block;
  background: url("../img/h2_right.svg") no-repeat;
  background-size: contain;
  background-position: center center;
}
h2.first {
  margin: 0 0 1rem 0;
}

.first_box {
  margin: 4rem 0 1rem 0;
}

h3.low {
  color: #ffffff;
  background-color: #539BE3;
  font-family: "kaiseiopti_bold";
  font-size: 1.9rem;
  font-weight: bold;
  padding: 0.8rem 0.8rem 0.8rem 4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4rem;
  margin: 2rem 0 1rem 0;
  line-height: 120%;
  position: relative;
}
h3.low::before {
  position: absolute;
  top: calc(50% - 1.3rem);
  left: 0.9rem;
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background: url("../img/icon_h3.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
h3.first {
  margin: 0 0 1rem 0;
}

h4.low {
  color: #539BE3;
  font-family: "kaiseiopti_bold";
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1rem 1rem 0.5rem 3.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 1rem 0 1rem 0;
  line-height: 120%;
  border-bottom: #539BE3 1px solid;
  position: relative;
}
h4.low::before {
  position: absolute;
  top: calc(50% - 1.7rem);
  left: 0.2rem;
  content: "";
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  background: url("../img/icon_h4.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
h4.first {
  margin: 0 0 1rem 0;
}

h5.low {
  font-family: "kaiseiopti_bold";
  font-weight: bold;
  font-size: 1.7rem;
  color: #F19CA6;
  border-bottom: #F19CA6 1px dashed;
  margin: 1.5rem 0 1rem 0;
  padding: 0 0 0.5rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 120%;
}
h5.first {
  margin: 0 0 1rem 0;
}

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

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title {
    text-align: center;
    font-size: 2.6rem;
    line-height: 200%;
    margin: 0;
  }
  h2.low {
    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: 80px 0 40px 0;
  }
  h2.low span {
    text-align: center;
    font-family: "kaiseiopti_medium";
    font-weight: normal;
    font-size: 3rem;
    color: #65A2DE;
    line-height: 100%;
    width: auto;
    max-width: 80%;
    letter-spacing: 0.25em;
    margin: 9px 14px 0 14px;
  }
  h2.low::before {
    content: "";
    width: 84px;
    height: 101px;
    display: block;
    background: url("../img/h2_left.svg") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  h2.low::after {
    content: "";
    width: 89px;
    height: 101px;
    display: block;
    background: url("../img/h2_right.svg") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  h2.first {
    margin: 0 0 40px 0;
  }
  .first_box {
    margin: 80px 0 30px 0;
  }
  h3.low {
    color: #ffffff;
    background-color: #539BE3;
    font-family: "kaiseiopti_bold";
    font-size: 2.4rem;
    font-weight: bold;
    padding: 11px 16px 11px 68px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 4rem;
    margin: 60px 0 20px 0;
    line-height: 120%;
    position: relative;
  }
  h3.low::before {
    position: absolute;
    top: calc(50% - 19px);
    left: 18px;
    content: "";
    display: block;
    width: 39px;
    height: 38px;
    background: url("../img/icon_h3.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  h3.first {
    margin: 0 0 20px 0;
  }
  h4.low {
    color: #539BE3;
    font-family: "kaiseiopti_bold";
    font-size: 2.2rem;
    font-weight: bold;
    padding: 10px 0 10px 63px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 55px 0 20px 0;
    line-height: 120%;
    border-bottom: #539BE3 1px solid;
    position: relative;
  }
  h4.low::before {
    position: absolute;
    top: calc(50% - 18px);
    left: 5px;
    content: "";
    display: block;
    width: 48px;
    height: 36px;
    background: url("../img/icon_h4.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  h4.first {
    margin: 0 0 20px 0;
  }
  h5.low {
    font-family: "kaiseiopti_bold";
    font-weight: bold;
    font-size: 2rem;
    color: #F19CA6;
    border-bottom: #F19CA6 1px dashed;
    margin: 50px 0 20px 0;
    padding: 0 0 10px 19px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 120%;
  }
  h5.first {
    margin: 0 0 20px 0;
  }
  p {
    font-size: 1.6rem;
    margin: 0 0 30px 0;
    line-height: 180%;
    letter-spacing: 0.05em;
    text-align: justify;
  }
  p.ajs {
    margin: 0 0 20px 0;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
table.timetable {
  padding: 0;
  margin: 0 auto;
  vertical-align: middle;
  width: 100%;
  font-family: "zen_maru_gothic_Medium";
  text-align: center;
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 140%;
}
table.timetable tr th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #ffffff;
  background-color: #539BE3;
  border: #539BE3 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: #333333;
  background-color: #ffffff;
  border-bottom: #539BE3 1px solid;
}
table.timetable tr td i {
  font-size: 1.2rem;
}
table.timetable tr td i.icon-stop {
  color: #F19CA6;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: inline-block;
}
table.timetable tr td i.icon-star {
  color: #A3A412;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
  color: #000000;
}
table.timetable tr:last-child td {
  border-bottom: #539BE3 2px solid;
}
table.timetable caption {
  caption-side: bottom;
  font-size: 1.2rem;
  margin: 0.6rem 0 0 0;
  width: 100%;
  color: #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  line-height: 140%;
}
table.timetable caption span {
  font-size: 1.2rem;
}
table.timetable caption i.icon-stop {
  font-size: 1.1rem;
  color: #F19CA6;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: inline-block;
}
table.timetable caption i.icon-star {
  font-size: 1.2rem;
  color: #A3A412;
  margin: 0 0 0 1rem;
}

.low_timetable table.timetable tr th {
  font-size: 1.2rem;
}
.low_timetable table.timetable tr td {
  font-size: 1.2rem;
}
.low_timetable table.timetable caption {
  font-size: 1.2rem;
}
.low_timetable table.timetable caption span {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px), print {
  table.timetable {
    padding: 0;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    font-family: "zen_maru_gothic_Medium";
    text-align: center;
    border-collapse: collapse;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 140%;
  }
  table.timetable tr th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 0;
    vertical-align: middle;
    color: #ffffff;
    background-color: #539BE3;
    border: #539BE3 1px solid;
    width: 10%;
    height: 31px;
    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.4rem;
    padding: 0;
    vertical-align: middle;
    color: #333333;
    background-color: #ffffff;
    height: 40px;
    box-sizing: border-box;
    border-bottom: #539BE3 1px solid;
  }
  table.timetable tr td i {
    font-size: 1.4rem;
  }
  table.timetable tr td i.icon-stop {
    color: #F19CA6;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    display: inline-block;
  }
  table.timetable tr td i.icon-star {
    color: #A3A412;
  }
  table.timetable tr td.time {
    width: 30%;
    text-align: center;
    color: #000000;
  }
  table.timetable tr:last-child td {
    border-bottom: #539BE3 2px solid;
  }
  table.timetable caption {
    caption-side: bottom;
    font-size: 1.4rem;
    margin: 0.6rem 0 0 0;
    width: 100%;
    color: #000000;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    line-height: 160%;
    letter-spacing: 0.1em;
  }
  table.timetable caption span {
    font-size: 1.4rem;
  }
  table.timetable caption i.icon-stop {
    font-size: 1.4rem;
    color: #F19CA6;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    display: inline-block;
  }
  table.timetable caption i.icon-star {
    font-size: 1.2rem;
    color: #A3A412;
    margin: 0 0 0 1rem;
  }
  .low_timetable table.timetable tr th {
    font-size: 1.6rem;
  }
  .low_timetable table.timetable tr td {
    font-size: 1.6rem;
  }
  .low_timetable table.timetable caption {
    font-size: 1.6rem;
  }
  .low_timetable table.timetable caption span {
    font-size: 1.6rem;
  }
}
/*テーブル*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
}
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: #333333;
  border: #888888 1px solid;
  background-color: #F3F9FF;
}
table.low_table tr td {
  width: 60%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #333333;
  border: #888888 1px solid;
  background-color: #ffffff;
}
table.low_table tr td ul.list_maru {
  margin: 0;
}
table.low_table.price tr th {
  width: 30%;
  text-align: center;
}
table.low_table.price tr td {
  width: 70%;
  text-align: center;
}
table.low_table.price2 tr th {
  width: 50%;
  text-align: left;
}
table.low_table.price2 tr td {
  width: 50%;
  text-align: left;
}

@media screen and (min-width: 768px), print {
  table.low_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  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: #333333;
    border: #888888 1px solid;
    background-color: #F3F9FF;
  }
  table.low_table tr td {
    width: 60%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
    border: #888888 1px solid;
    background-color: #ffffff;
  }
  table.low_table tr td ul.list_maru {
    margin: 0;
  }
  table.low_table.price tr th {
    width: 30%;
    text-align: center;
  }
  table.low_table.price tr td {
    width: 70%;
    text-align: center;
  }
  table.low_table.price2 tr th {
    width: 50%;
    text-align: left;
  }
  table.low_table.price2 tr td {
    width: 50%;
    text-align: left;
  }
  table.low_table.ajs_right {
    width: 62%;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
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: #333333;
  border: #888888 1px solid;
  background-color: #F3F9FF;
}
table.low_table_slide tr td {
  width: 60%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #333333;
  border: #888888 1px solid;
  background-color: #ffffff;
}
table.low_table_slide.price_table tr th.title, table.low_table_slide.price_table tr td.title {
  width: 40%;
}
table.low_table_slide.price_table tr th.price, table.low_table_slide.price_table tr td.price {
  width: 20%;
}
table.low_table_slide.price_table tr th.text, table.low_table_slide.price_table tr td.text {
  width: 40%;
}
table.low_table_slide.price_table2 tr th.title, table.low_table_slide.price_table2 tr td.title {
  width: 50%;
}
table.low_table_slide.price_table2 tr th.price, table.low_table_slide.price_table2 tr td.price {
  width: 50%;
}

/*横スライドテーブル用*/
.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: #333333;
    border: #888888 1px solid;
    background-color: #F3F9FF;
  }
  table.low_table_slide tr td {
    width: 60%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
    border: #888888 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: #333333;
  background-color: #F3F9FF;
  border-bottom: #888888 1px solid;
  border-left: #888888 1px solid;
  border-right: #888888 1px solid;
}
table.low_table_spblock tr td {
  width: 100%;
  padding: 1rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #333333;
  background-color: #ffffff;
  border-bottom: #888888 1px solid;
  border-left: #888888 1px solid;
  border-right: #888888 1px solid;
}
table.low_table_spblock tr td span {
  color: #539BE3;
  font-weight: bold;
}
table.low_table_spblock tr td span a {
  color: #539BE3;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock tr:first-child th {
  border-top: #888888 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: #333333;
    background-color: #F3F9FF;
    border-bottom: #888888 1px solid;
    border-left: #888888 1px solid;
    border-right: #888888 1px solid;
  }
  table.low_table_spblock tr td {
    width: 70%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #333333;
    background-color: #ffffff;
    border-bottom: #888888 1px solid;
    border-left: #888888 1px solid;
    border-right: #888888 1px solid;
  }
  table.low_table_spblock tr td span {
    color: #539BE3;
    font-weight: bold;
  }
  table.low_table_spblock tr td span a {
    color: #539BE3;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock tr:first-child th {
    border-top: #888888 1px solid;
  }
  table.low_table_spblock tr:first-child td {
    border-top: #888888 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: #333333;
  border-bottom: #888888 1px solid;
  background-color: #F3F9FF;
}
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: #333333;
  border-bottom: #888888 1px solid;
  background-color: #ffffff;
}
table.low_table2 tr:first-child th {
  border-top: #888888 1px solid;
}
table.low_table2 tr:first-child td {
  border-top: #888888 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: #333333;
    border-bottom: #888888 1px solid;
    background-color: #F3F9FF;
  }
  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: #333333;
    border-bottom: #888888 1px solid;
    background-color: #ffffff;
  }
  table.low_table2 tr:first-child th {
    border-top: #888888 1px solid;
  }
  table.low_table2 tr:first-child td {
    border-top: #888888 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: #333333;
  border-bottom: #888888 1px solid;
  background-color: #F3F9FF;
}
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: #333333;
  border-bottom: #888888 1px solid;
  background-color: #ffffff;
}
table.low_table_slide2 tr:first-child th {
  border-top: #888888 1px solid;
}
table.low_table_slide2 tr:first-child td {
  border-top: #888888 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: #333333;
    border-bottom: #888888 1px solid;
    background-color: #F3F9FF;
  }
  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: #333333;
    border-bottom: #888888 1px solid;
    background-color: #ffffff;
  }
  table.low_table_slide2 tr:first-child th {
    border-top: #888888 1px solid;
  }
  table.low_table_slide2 tr:first-child td {
    border-top: #888888 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: #333333;
  background-color: #F3F9FF;
  border-bottom: #888888 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: #333333;
  background-color: #ffffff;
  border-bottom: #888888 1px solid;
}
table.low_table_spblock2 tr td span {
  color: #539BE3;
  font-weight: bold;
}
table.low_table_spblock2 tr td span a {
  color: #539BE3;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock2 tr:first-child th {
  border-top: #888888 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: #333333;
    background-color: #F3F9FF;
    border-bottom: #888888 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: #333333;
    background-color: #ffffff;
    border-bottom: #888888 1px solid;
  }
  table.low_table_spblock2 tr td span {
    color: #539BE3;
    font-weight: bold;
  }
  table.low_table_spblock2 tr td span a {
    color: #539BE3;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock2 tr:first-child th {
    border-top: #888888 1px solid;
  }
  table.low_table_spblock2 tr:first-child td {
    border-top: #888888 1px solid;
  }
}
/*テーブル丸角*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #000000;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #888888 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: #888888 1px solid;
  border-left: #888888 1px solid;
  border-right: #888888 1px solid;
  background-color: #F3F9FF;
  color: #333333;
  -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: #888888 1px solid;
  border-right: #888888 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #333333;
  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: #888888 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: #000000;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #888888 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: #888888 1px solid;
    border-left: #888888 1px solid;
    border-right: #888888 1px solid;
    background-color: #F3F9FF;
    color: #333333;
    -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: #888888 1px solid;
    border-right: #888888 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #333333;
    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: #888888 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: #000000;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #888888 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: #888888 1px solid;
  border-left: #888888 1px solid;
  border-right: #888888 1px solid;
  background-color: #539BE3;
  -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: #cccccc;
  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: #A3A412;
  color: #000000;
  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: #888888 1px solid;
  border-left: #888888 1px solid;
  border-right: #888888 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #333333;
  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: #000000;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #888888 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: #888888 1px solid;
    border-left: #888888 1px solid;
    border-right: #888888 1px solid;
    background-color: #F3F9FF;
    -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: #cccccc;
    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: #A3A412;
    color: #000000;
    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: #888888 1px solid;
    border-left: #888888 1px solid;
    border-right: #888888 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #333333;
    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: #000000;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0 0 0 0;
  line-height: 140%;
  border-radius: 0.7rem;
  border-top: #cccccc 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: #888888 1px solid;
  border-left: #888888 1px solid;
  border-right: #888888 1px solid;
  background-color: #F3F9FF;
  color: #333333;
  -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: #888888 1px solid;
  border-right: #888888 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #333333;
  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: #888888 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: #000000;
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0 0 0 0;
    line-height: 160%;
    border-radius: 0.7rem;
    border-top: #888888 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: #888888 1px solid;
    border-left: #888888 1px solid;
    border-right: #888888 1px solid;
    background-color: #F3F9FF;
    color: #333333;
    -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: #888888 1px solid;
    border-right: #888888 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #333333;
    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: #888888 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: #000000;
  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: #888888 1px solid;
  border-left: #888888 1px solid;
  border-right: #888888 1px solid;
  background-color: #F3F9FF;
  color: #333333;
  -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: #cccccc 1px solid;
  border-left: #888888 1px solid;
  border-right: #888888 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  line-height: 140%;
  display: block;
  color: #333333;
  background-color: #ffffff;
}
table.low_table_spblock3 tr td span {
  color: #539BE3;
  font-size: 2.2rem;
  font-weight: bold;
}
table.low_table_spblock3 tr td span a {
  color: #539BE3;
  text-decoration: none;
}
table.low_table_spblock3 tr:first-child th {
  border-top: #888888 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: #000000;
    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: #888888 1px solid;
    border-left: #888888 1px solid;
    border-right: none;
    background-color: #F3F9FF;
    color: #333333;
    -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: #888888 1px solid;
    border-left: #888888 1px solid;
    border-right: #888888 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    line-height: 140%;
    display: table-cell;
    color: #333333;
    background-color: #ffffff;
  }
  table.low_table_spblock3 tr td span {
    color: #cccccc;
    font-size: 3rem;
    font-weight: bold;
  }
  table.low_table_spblock3 tr td span a {
    color: #cccccc;
    text-decoration: none;
  }
  table.low_table_spblock3 tr:first-child th {
    border-top: #888888 1px solid;
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
  }
  table.low_table_spblock3 tr:first-child td {
    border-top: #888888 1px solid;
    border-top-right-radius: 10px;
  }
  table.low_table_spblock3 tr:last-child th {
    border-bottom-left-radius: 10px;
    border-bottom: #888888 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_left {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_left img {
  width: 70%;
  height: auto;
}

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

@media screen and (min-width: 768px), print {
  .img_right {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right img {
    width: 400px;
    height: auto;
  }
  .img_left {
    float: left;
    margin: 0 20px 20px 0;
  }
  .img_left img {
    width: 424px;
    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.5rem;
  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.5rem;
  background-size: 1rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}

/*標準3列 maru*/
ul.list_maru_three {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.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.5rem;
  background-size: 1rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}

/*横並び maru*/
ul.list_maru_side {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_side li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.5rem;
  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 {
  margin: 0 0 1rem 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 6px;
    background-size: 10px;
    margin: 0 0 10px 0;
    padding: 0 0 0 22px;
  }
  /*標準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 6px;
    background-size: 10px;
    margin: 0 0 10px 0;
    padding: 0 0 0 22px;
  }
  /*標準3列 maru*/
  ul.list_maru_three {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.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 6px;
    background-size: 10px;
    margin: 0 2% 10px 0;
    padding: 0 0 0 22px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  ul.list_maru_side {
    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_side li {
    width: auto;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 6px;
    background-size: 10px;
    margin: 0 40px 10px 0;
    padding: 0 0 0 22px;
    -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;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/*略歴*/
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: 30%;
  margin: 0 0 1rem 0;
}
dl.bio_list dd {
  width: 70%;
  margin: 0 0 1rem 0;
}

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

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

/*タイトルボックス*/
dl.title_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.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: #F3F9FF;
  color: #333333;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #888888 1px solid;
  border-right: #888888 1px solid;
  border-bottom: #888888 1px solid;
}
dl.title_box dt:first-child {
  border-top: #888888 1px solid;
}
dl.title_box dd {
  width: 100%;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #888888 1px solid;
  border-right: #888888 1px solid;
  border-bottom: #888888 1px solid;
}

@media screen and (min-width: 768px), print {
  /*略歴*/
  dl.bio_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.bio_list dt {
    width: 100px;
    margin: 0 0 5px 0;
  }
  dl.bio_list dd {
    width: 1100px;
    margin: 0 0 5px 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 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.num_list dt {
    width: 20px;
    margin: 0 0 5px 0;
  }
  dl.num_list dd {
    width: 1180px;
    margin: 0 0 5px 0;
  }
  /*記号*/
  dl.symbol_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.symbol_list dt {
    width: 20px;
    margin: 0 0 5px 0;
  }
  dl.symbol_list dd {
    width: 1180px;
    margin: 0 0 5px 0;
  }
  dl.symbol_list.ajs_right {
    width: 62%;
  }
  dl.symbol_list.ajs_right dt {
    width: 20px;
    margin: 0 0 5px 0;
  }
  dl.symbol_list.ajs_right dd {
    width: calc(100% - 20px);
    margin: 0 0 5px 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: #F3F9FF;
    color: #333333;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #888888 1px solid;
    border-right: #888888 1px solid;
    border-bottom: #888888 1px solid;
  }
  dl.title_box dt:first-child {
    border-top: #888888 1px solid;
  }
  dl.title_box dd {
    width: 100%;
    margin: 0;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #888888 1px solid;
    border-right: #888888 1px solid;
    border-bottom: #888888 1px solid;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

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

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

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

@media screen and (min-width: 768px), print {
  /*矢印*/
  .arrow {
    width: 0;
    height: 0;
    border: none;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 32px solid #9DC714;
    text-align: center;
    display: block;
    margin: 30px auto;
  }
  /*二列*/
  .two_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 1200px;
  }
  .two_box section {
    width: 48%;
  }
  /*強調*/
  .emphasis {
    background-color: #F3F9FF;
    padding: 20px;
    -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.ajs {
    width: 750px;
    float: right;
    overflow: hidden;
  }
  /*下層電話*/
  .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;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
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: #000000;
  margin: 0 0.5rem;
}
ul.pankuzu_list li a {
  font-size: 1.4rem;
  color: #000000;
  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: -260px auto 0 auto;
  }
  ul.pankuzu_list li::after {
    content: "＞";
    font-size: 1.6rem;
    color: #000000;
    margin: 0 10px;
  }
  ul.pankuzu_list li a {
    font-size: 1.6rem;
    color: #000000;
    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: #000000;
  font-size: 1.4rem;
  margin: 1rem 0 0 0;
  line-height: 120%;
}

.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%;
  height: auto;
}

@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: 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;
  }
  .lightbox_frame .img_box {
    width: 380px;
    margin: 0 10px 60px 10px;
    -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;
    height: auto;
  }
  .lightbox_frame .img_box a span {
    display: block;
    text-align: center;
    color: #000000;
    font-size: 2rem;
    margin: 30px 0 0 0;
    line-height: 140%;
  }
  .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: #36c0b8 2px solid;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  background-color: #cccccc;
  padding: 1rem;
  text-decoration: none;
  color: #000000;
}
.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: #000000;
  margin: 0 0 1rem 0;
}
.banner_01 .banner_text {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  font-weight: normal;
  color: #000000;
  margin: 0 0 1rem 0;
  line-height: 140%;
}
.banner_01 ul {
  color: #000000;
}

@media screen and (min-width: 768px), print {
  .banner_01 {
    width: 800px;
    height: 300px;
    margin: 0 auto 40px auto;
    border: #36c0b8 2px solid;
    border-radius: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    background-color: #cccccc;
    padding: 20px;
    text-decoration: none;
    color: #000000;
    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: #000000;
    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: #000000;
    margin: 0 0 1rem 0;
    line-height: 160%;
    width: 500px;
  }
  .banner_01 ul {
    position: absolute;
    top: 80px;
    left: 240px;
  }
}
/* -----------------------------------------------------------
　リンク、ボタン
----------------------------------------------------------- */
.low_link_text {
  color: #539BE3;
}

.low_button {
  width: auto;
  text-decoration: none;
  background-color: #539BE3;
  color: #ffffff;
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.4rem;
  padding: 1rem 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
  display: inline-block;
}
.low_button::before {
  font-family: "fontello";
  content: "\e80a";
  margin: 0 0.8rem 0 0;
}

ul.list_button {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
ul.list_button li {
  width: 49%;
}
ul.list_button li a {
  width: 100%;
  text-decoration: none;
  background-color: #539BE3;
  color: #ffffff;
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.4rem;
  padding: 1rem 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
  display: inline-block;
}
ul.list_button li a::before {
  font-family: "fontello";
  content: "\e80a";
  margin: 0 0.8rem 0 0;
}

@media screen and (min-width: 768px), print {
  .low_link_text {
    color: #539BE3;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_link_text:hover {
    color: #F5C72D;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button {
    width: auto;
    text-decoration: none;
    background-color: #539BE3;
    color: #ffffff;
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.6rem;
    padding: 14px 38px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 8px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button::before {
    font-family: "fontello";
    content: "\e80a";
    margin: 0 8px 0 0;
  }
  .low_button:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #79B3EC;
  }
  ul.list_button {
    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-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_button li {
    width: 200px;
    margin: 0 20px 0 0;
  }
  ul.list_button li a {
    width: 100%;
    text-decoration: none;
    background-color: #539BE3;
    color: #ffffff;
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.6rem;
    padding: 14px 38px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 8px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  ul.list_button li a::before {
    font-family: "fontello";
    content: "\e80a";
    margin: 0 8px 0 0;
  }
  ul.list_button li a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #79B3EC;
  }
}
/*下層*/
/* 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 20px;
    text-align: right;
  }
  .img_doctor img {
    width: 400px;
    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;
  }
}
/* -----------------------------------------------------------
　初めての方へ(流れ)
----------------------------------------------------------- */
.flow_box {
  border: #36c0b8 1px solid;
  border-radius: 0.5rem;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.flow_box h3 {
  margin: 0 0 1rem 0;
}
.flow_box p.mb_none {
  margin: 0;
}

@media screen and (min-width: 768px), print {
  .flow_box {
    border: #36c0b8 1px solid;
    border-radius: 15px;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .flow_box h3 {
    margin: 0 0 20px 0;
  }
  .flow_box p.mb_none {
    margin: 0;
  }
}
/* -----------------------------------------------------------
　初めての方へ(流れ)2
----------------------------------------------------------- */
dl.flow_box {
  background-color: #FFF9F1;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
}
dl.flow_box dt {
  color: #575757;
  font-family: "kiwimaru_medium";
  font-weight: normal;
  font-size: 1.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;
}
dl.flow_box dt .flow_no {
  background-color: #9DC714;
  color: #FFFFFF;
  width: 3.5rem;
  height: 3.5rem;
  font-family: "kiwimaru_medium";
  font-weight: normal;
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 1rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
dl.flow_box dt .bold_title {
  font-family: "kiwimaru_medium";
  font-weight: bold;
  margin: 0 0 1rem 0;
}
dl.flow_box dd {
  color: #575757;
  font-family: "kiwimaru_medium";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 140%;
  padding: 0 0 0 4.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.flow_box dd.ajs {
  padding: 0;
}

@media screen and (min-width: 768px), print {
  dl.flow_box {
    background-color: #FFF9F1;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 10px;
  }
  dl.flow_box dt {
    color: #575757;
    font-family: "kiwimaru_medium";
    font-weight: normal;
    font-size: 2.4rem;
    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;
  }
  dl.flow_box dt .flow_no {
    background-color: #9DC714;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    font-family: "kiwimaru_medium";
    font-weight: normal;
    font-size: 2.4rem;
    border-radius: 50%;
    margin: 0 22px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  dl.flow_box dt .bold_title {
    font-family: "kiwimaru_medium";
    font-weight: bold;
    margin: 0 0 1rem 0;
  }
  dl.flow_box dd {
    color: #575757;
    font-family: "kiwimaru_medium";
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 180%;
    padding: 10px 0 0 72px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.flow_box dd.ajs {
    padding: 0;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
dl.access_info {
  width: 96%;
  margin: 2rem auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 160%;
}
dl.access_info dt {
  width: 25%;
  margin: 0 0 1rem 0;
}
dl.access_info dt span {
  background-color: #36c0b8;
  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: #36c0b8;
    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;
  }
}
/*メールフォームプロ用*/
/* 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: #C8E4FF;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000000;
  border-top: #36c0b8 1px solid;
  border-left: #36c0b8 1px solid;
  border-right: #36c0b8 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: #36c0b8 1px solid;
  border-left: #36c0b8 1px solid;
  border-right: #36c0b8 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: #36c0b8 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: #C8E4FF;
    padding: 1.5rem 1rem 1.5rem 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #36c0b8 1px solid;
    border-left: #36c0b8 1px solid;
    border-right: #36c0b8 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: #36c0b8 1px solid;
    border-left: #36c0b8 1px solid;
    border-right: #36c0b8 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: "zen_maru_gothic_Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #000000;
  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: "zen_maru_gothic_Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    color: #000000;
    background-color: #ffffff;
    padding: 0;
    /*ページ内リンク用*/
    scroll-behavior: smooth;
    /*スクロール後の余白設定*/
    scroll-padding-top: 60px;
  }
}
/* -----------------------------------------------------------
 構成
----------------------------------------------------------- */
body {
  position: relative;
  width: 100%;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

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

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

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.pc_none_span {
  display: inline;
}

.sp_none_span {
  display: none;
}

@media screen and (min-width: 768px), print {
  body {
    position: relative;
    z-index: 1;
    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: 6rem 0 4rem 0;
  padding: 0;
}

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

@media screen and (min-width: 768px), print {
  .wrapper {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .wrapper_low {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .main {
    height: auto;
    width: 100%;
    margin: 0 auto 100px auto;
    padding: 0;
    position: relative;
  }
  .main_low {
    height: auto;
    width: 1200px;
    margin: 10px auto 100px auto;
    padding: 0;
  }
}
/* -----------------------------------------------------------
　ヘッダー
----------------------------------------------------------- */
header.header {
  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 {
  /*ロゴ*/
}
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: 3vw 0 0 0;
}
header.header .header_box .header_top .head_logo a img.logo_pc {
  display: none;
}

.side_reserve_link {
  display: none;
}

.side_interview_link {
  display: none;
}

/*下層*/
header.header_low {
  padding: 2vw 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 9999;
  /*ハンバーガー*/
}
header.header_low .container {
  width: 15%;
}
header.header_low .main_nav_pc_low .main_nav_pc_low_box .nav_logo_low {
  display: block;
  width: 80%;
  margin: 0 0 0 2%;
  text-decoration: none;
}
header.header_low .main_nav_pc_low .main_nav_pc_low_box .nav_logo_low img {
  width: 95%;
  height: auto;
  margin: 3vw 0 0 0;
}
header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low {
  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: 999;
    width: 100%;
    height: 110px;
    overflow: visible;
  }
  header.header .header_box {
    width: 1200px;
    height: 110px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    /*ロゴとハンバーガー*/
  }
  header.header .header_box .header_top {
    width: 476.125px;
    height: 219.002px;
    margin: 0;
    position: absolute;
    top: 38px;
    left: 50px;
    z-index: 0;
    display: block;
    /*ハンバーガー*/
  }
  header.header .header_box .header_top .container {
    display: none;
  }
  header.header .header_box .header_top {
    /*ロゴ*/
  }
  header.header .header_box .header_top .head_logo {
    width: 476.125px;
    margin: 0;
  }
  header.header .header_box .header_top .head_logo a {
    display: block;
    width: 476.125px;
    text-decoration: none;
  }
  header.header .header_box .header_top .head_logo a img {
    width: 476.125px;
    height: auto;
    margin: 0;
  }
  header.header .header_box .header_top .head_logo a img.logo_sp {
    display: none;
  }
  header.header .header_box .header_top .head_logo a img.logo_pc {
    display: block;
  }
  header.header .header_box .header_top .head_logo a img.logo_sp_low {
    width: 346.52px;
    height: auto;
    margin: -21px 0 0 -28px;
  }
  .side_reserve_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 104.1px;
    height: 160.2px;
    text-decoration: none;
    color: #ffffff;
    background: url("../img/side_reserve_link_bg.svg") no-repeat;
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.8rem;
    font-weight: normal;
    text-align: center;
    line-height: 120%;
    position: fixed;
    padding: 28px 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 200px;
    right: 0;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_reserve_link i {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
  .side_reserve_link:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_interview_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 104.1px;
    height: 160.2px;
    text-decoration: none;
    color: #ffffff;
    background: url("../img/side_interview_link_bg.svg") no-repeat;
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.8rem;
    font-weight: normal;
    text-align: center;
    line-height: 120%;
    position: fixed;
    padding: 28px 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 380px;
    right: 0;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_interview_link i {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
  .side_interview_link:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  /*下層*/
  header.header_low {
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 9999;
    width: 100%;
    height: 80px;
    overflow: visible;
    background-color: #ffffff;
    /*ハンバーガー*/
  }
  header.header_low .container {
    display: none;
  }
  header.header_low .main_nav_pc_low {
    width: 100%;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box {
    width: 1200px;
    height: 80px;
    margin: 0 auto;
    position: relative;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .nav_logo_low {
    display: block;
    width: 346.52px;
    margin: 0 0 0 0;
    text-decoration: none;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .nav_logo_low img {
    width: 346.52px;
    height: auto;
    margin: 18px 0 0 10px;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low {
    display: block;
    width: 823px;
    height: 80px;
    margin: 0;
    position: absolute;
    top: 0;
    right: 10px;
    z-index: 999999999;
    overflow: visible;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li {
    display: block;
    width: auto;
    height: 40px;
    margin: 0;
    padding: 0;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li.home {
    display: none;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li.doctor {
    width: 116px;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li.clinic {
    width: 164px;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li.treatment {
    width: 117px;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li.treatment:hover {
    cursor: pointer;
    cursor: hand;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li.introduction {
    width: 148px;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li.introduction:hover {
    cursor: pointer;
    cursor: hand;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li.access {
    width: 177.5px;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li a {
    width: 100%;
    height: 40px;
    text-decoration: none;
    text-align: left;
    color: #000000;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0 0 0 32px;
    letter-spacing: 0;
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.6rem;
    background: url("../img/gnav_line.svg") no-repeat;
    background-size: 23px;
    background-position: left top;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li a span {
    display: block;
    font-size: 1.2rem;
    color: #cccccc;
    margin: 8px 0 0 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li a:hover {
    color: #539BE3;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li a:hover span {
    color: #539BE3;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box {
    display: none;
    width: 230px;
    margin: 20px 0 0 -52px;
    background-color: #F3F9FF;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box ul {
    all: initial;
    width: 230px;
    height: auto;
    margin: 9px 0 0 0;
    position: relative;
    z-index: 9999;
    background-color: #F3F9FF;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box ul li {
    all: initial;
    display: block;
    width: 230px;
    height: auto;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box ul li a {
    all: initial;
    width: 230px;
    height: 40px;
    font-family: "zen_maru_gothic_Medium";
    font-weight: 500;
    font-size: 1.6rem;
    color: #000000;
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box ul li a br {
    display: none;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box ul li a::before {
    content: "";
    display: none;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box ul li a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box ul li a:hover {
    color: #539BE3;
    cursor: pointer;
    cursor: hand;
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #C8E4FF;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box ul li:nth-last-child(1) {
    border-bottom: none;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box2 {
    display: none;
    width: 250px;
    margin: 20px 0 0 -52px;
    background-color: #F3F9FF;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box2 ul {
    all: initial;
    width: 250px;
    height: auto;
    margin: 9px 0 0 0;
    position: relative;
    z-index: 9999;
    background-color: #F3F9FF;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box2 ul li {
    all: initial;
    display: block;
    width: 250px;
    height: auto;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box2 ul li a {
    all: initial;
    width: 250px;
    height: 40px;
    font-family: "zen_maru_gothic_Medium";
    font-weight: 500;
    font-size: 1.6rem;
    color: #000000;
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box2 ul li a br {
    display: none;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box2 ul li a::before {
    content: "";
    display: none;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box2 ul li a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box2 ul li a:hover {
    color: #539BE3;
    cursor: pointer;
    cursor: hand;
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #C8E4FF;
  }
  header.header_low .main_nav_pc_low .main_nav_pc_low_box .main_nav_low li .sub_nav_box2 ul li:nth-last-child(1) {
    border-bottom: none;
  }
  header.header_low .main_nav_pc_low.nav_add_low {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 9999999999 !important;
    width: 100% !important;
    height: 80px !important;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}
/* -----------------------------------------------------------
　グローバルナビ
----------------------------------------------------------- */
nav.main_nav_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  nav.main_nav_pc {
    display: block;
    width: 722.5px;
    height: 80px;
    margin: 0;
    position: absolute;
    top: 20px;
    right: 50px;
    z-index: 999999999;
    overflow: visible;
  }
  nav.main_nav_pc .main_nav_box .nav_logo {
    display: none;
  }
  nav.main_nav_pc .main_nav_box ul {
    width: 722.5px;
    height: 40px;
    margin: 20px 0 0 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  nav.main_nav_pc .main_nav_box ul li {
    display: block;
    width: auto;
    height: 40px;
    margin: 0;
    padding: 0;
  }
  nav.main_nav_pc .main_nav_box ul li.home {
    display: none;
  }
  nav.main_nav_pc .main_nav_box ul li.doctor {
    width: 116px;
  }
  nav.main_nav_pc .main_nav_box ul li.clinic {
    width: 164px;
  }
  nav.main_nav_pc .main_nav_box ul li.treatment {
    width: 117px;
  }
  nav.main_nav_pc .main_nav_box ul li.treatment:hover {
    cursor: pointer;
    cursor: hand;
  }
  nav.main_nav_pc .main_nav_box ul li.introduction {
    width: 148px;
  }
  nav.main_nav_pc .main_nav_box ul li.introduction:hover {
    cursor: pointer;
    cursor: hand;
  }
  nav.main_nav_pc .main_nav_box ul li.access {
    width: 177.5px;
  }
  nav.main_nav_pc .main_nav_box ul li a {
    width: 100%;
    height: 40px;
    text-decoration: none;
    text-align: left;
    color: #000000;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0 0 0 32px;
    letter-spacing: 0;
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.6rem;
    background: url("../img/gnav_line.svg") no-repeat;
    background-size: 23px;
    background-position: left top;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc .main_nav_box ul li a span {
    display: block;
    font-size: 1.2rem;
    color: #cccccc;
    margin: 8px 0 0 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc .main_nav_box ul li a:hover {
    color: #539BE3;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc .main_nav_box ul li a:hover span {
    color: #539BE3;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box {
    display: none;
    width: 230px;
    margin: 20px 0 0 -52px;
    background-color: #F3F9FF;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box ul {
    all: initial;
    width: 230px;
    height: auto;
    margin: 9px 0 0 0;
    position: relative;
    z-index: 9999;
    background-color: #F3F9FF;
    /*
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction:row;
    flex-direction:row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    */
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box ul li {
    all: initial;
    display: block;
    width: 230px;
    height: auto;
    margin: 0;
    padding: 0;
    /*border-bottom: $bace_color 1px solid;*/
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box ul li a {
    all: initial;
    width: 230px;
    height: 40px;
    font-family: "zen_maru_gothic_Medium";
    font-weight: 500;
    font-size: 1.6rem;
    color: #000000;
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box ul li a br {
    display: none;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box ul li a::before {
    content: "";
    display: none;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box ul li a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box ul li a:hover {
    color: #539BE3;
    cursor: pointer;
    cursor: hand;
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #C8E4FF;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box ul li:nth-last-child(1) {
    border-bottom: none;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box ul li {
    /*
                  &:nth-child(odd){
                    border-right: $bace_color 1px solid;
                  }
    */
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box2 {
    display: none;
    width: 250px;
    margin: 20px 0 0 -52px;
    background-color: #F3F9FF;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box2 ul {
    all: initial;
    width: 250px;
    height: auto;
    margin: 9px 0 0 0;
    position: relative;
    z-index: 9999;
    background-color: #F3F9FF;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box2 ul li {
    all: initial;
    display: block;
    width: 250px;
    height: auto;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box2 ul li a {
    all: initial;
    width: 250px;
    height: 40px;
    font-family: "zen_maru_gothic_Medium";
    font-weight: 500;
    font-size: 1.6rem;
    color: #000000;
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box2 ul li a br {
    display: none;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box2 ul li a::before {
    content: "";
    display: none;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box2 ul li a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box2 ul li a:hover {
    color: #539BE3;
    cursor: pointer;
    cursor: hand;
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #C8E4FF;
  }
  nav.main_nav_pc .main_nav_box ul li .sub_nav_box2 ul li:nth-last-child(1) {
    border-bottom: none;
  }
  .nav_add {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 9999999999 !important;
    width: 100% !important;
    height: 80px !important;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .nav_add .main_nav_box {
    width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .nav_add .main_nav_box .nav_logo {
    display: block !important;
    width: 346.52px;
    margin: 0 10px 0 10px;
  }
  .nav_add .main_nav_box .nav_logo a {
    display: block;
    width: 346.52px;
    text-decoration: none;
  }
  .nav_add .main_nav_box .nav_logo a img {
    width: 346.52px;
    height: 43.56px;
  }
  .nav_add .main_nav_box ul {
    width: 823px !important;
  }
  .nav_add .main_nav_box ul li.home {
    display: block !important;
    width: 100.5px !important;
  }
  .nav_add .main_nav_box ul .sub_nav_box {
    display: none;
    width: 460px;
    margin: 20px 0 0 -165px;
  }
  .nav_add .main_nav_box ul .sub_nav_box ul {
    width: 460px !important;
  }
  .nav_add .main_nav_box ul .sub_nav_box2 {
    display: none;
    width: 460px;
    margin: 20px 0 0 -165px;
  }
  .nav_add .main_nav_box ul .sub_nav_box2 ul {
    width: 460px !important;
  }
}
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
.key_visual_bg {
  width: 100%;
  background: url("../img/key_left.svg"), url("../img/key_right.svg");
  background-position: left top, right top;
  background-size: 30%, 30%;
  background-repeat: no-repeat, no-repeat;
  margin: -22vw 0 0 0;
  padding: 22vw 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.key_visual_bg .key_visual {
  position: relative;
  width: 92%;
  height: 58vw;
  margin: 0 auto 0 auto;
}
.key_visual_bg .key_visual .key {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  /*大枠*/
}
.key_visual_bg .key_visual .key .key_bg {
  width: 100%;
  height: 60vw;
}
.key_visual_bg .key_visual .key .key_01 {
  background: url("../img/key_visual_01.png") no-repeat;
  background-size: contain;
  background-position: center top;
}
.key_visual_bg .key_visual .key .key_02 {
  background: url("../img/key_visual_02.png") no-repeat;
  background-size: contain;
  background-position: center top;
}
.key_visual_bg .key_visual .key .key_03 {
  background: url("../img/key_visual_03.png") no-repeat;
  background-size: contain;
  background-position: center top;
}
.key_visual_bg .key_visual .key_contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 60vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.key_visual_bg .key_visual .key_contents .key_open {
  position: absolute;
  bottom: -10vw;
  right: 0;
  background: url("../img/key_open.svg") no-repeat;
  background-size: contain;
  background-position: center bottom;
  color: #ffffff;
  text-align: center;
  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: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 10rem;
  height: 18rem;
  margin: 0;
  line-height: 100%;
  padding: 0 0.5rem 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0;
}
.key_visual_bg .key_visual .key_contents .key_open .kot_text1 {
  font-size: 1rem;
}
.key_visual_bg .key_visual .key_contents .key_open .kot_text2 {
  font-size: 1rem;
}
.key_visual_bg .key_visual .key_contents .key_open .kot_text2 em {
  font-style: normal;
  font-size: 1.2rem;
}
.key_visual_bg .key_visual .key_contents .key_open .kot_text2 b {
  font-size: 0.9rem;
}
.key_visual_bg .key_visual .key_contents .key_open .kot_text3 {
  font-size: 1.1rem;
}
.key_visual_bg .key_visual .key_contents .key_open .kot_text4 {
  font-size: 1.2rem;
}

/*下層キービジュアル*/
.key_visual_low {
  width: 100%;
  height: 30vw;
  background: url("../img/key_visual_low.jpg") no-repeat;
  background-position: center top;
  background-size: 150%;
  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;
}
.key_visual_low h1 {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "kaiseiopti_bold";
  font-weight: bold;
  font-size: 2.1rem;
  text-align: justify;
  color: #539BE3;
  line-height: 120%;
  letter-spacing: 0;
  padding: 2rem 4rem 0 4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  /*トップキービジュアル*/
  .key_visual_bg {
    width: 100%;
    height: 930px;
    background: url("../img/key_left.svg"), url("../img/key_right.svg");
    background-position: left top, right -43px top;
    background-size: 425px, 541px;
    background-repeat: no-repeat, no-repeat;
    margin: -110px 0 0 0;
    padding: 168px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .key_visual_bg .key_visual {
    position: relative;
    z-index: 0;
    width: 1151.09px;
    height: 760.62px;
    margin: 0 auto 0 auto;
  }
  .key_visual_bg .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100% !important;
    height: 760.62px;
    margin: 0 auto;
    overflow: hidden;
    /*大枠*/
  }
  .key_visual_bg .key_visual .key .key_bg {
    width: 100%;
    height: 760.62px;
  }
  .key_visual_bg .key_visual .key .key_01 {
    background: url("../img/key_visual_01.png") no-repeat;
    background-size: contain;
    background-position: center top;
  }
  .key_visual_bg .key_visual .key .key_02 {
    background: url("../img/key_visual_02.png") no-repeat;
    background-size: contain;
    background-position: center top;
  }
  .key_visual_bg .key_visual .key .key_03 {
    background: url("../img/key_visual_03.png") no-repeat;
    background-size: contain;
    background-position: center top;
  }
  .key_visual_bg .key_visual .key_contents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    width: 1152px;
    height: 760.62px;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .key_visual_bg .key_visual .key_contents .key_open {
    position: absolute;
    bottom: 61px;
    right: 15px;
    background: url("../img/key_open.svg") no-repeat;
    background-size: contain;
    background-position: center bottom;
    color: #ffffff;
    text-align: center;
    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: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 227.62px;
    height: 411.71px;
    margin: 0;
    line-height: 200%;
    padding: 0 30px 41px 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    letter-spacing: 0;
  }
  .key_visual_bg .key_visual .key_contents .key_open .kot_text1 {
    font-size: 2.6rem;
  }
  .key_visual_bg .key_visual .key_contents .key_open .kot_text2 {
    font-size: 2.6rem;
  }
  .key_visual_bg .key_visual .key_contents .key_open .kot_text2 em {
    font-style: normal;
    font-size: 3.2rem;
  }
  .key_visual_bg .key_visual .key_contents .key_open .kot_text2 b {
    font-size: 2.2rem;
  }
  .key_visual_bg .key_visual .key_contents .key_open .kot_text3 {
    font-size: 2.2rem;
  }
  .key_visual_bg .key_visual .key_contents .key_open .kot_text4 {
    font-size: 2.6rem;
  }
  /*下層キービジュアル*/
  .key_visual_low {
    width: 100%;
    height: 549px;
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -80px 0 0 0;
  }
  .key_visual_low h1 {
    width: 1200px;
    height: auto;
    margin: 0 auto 0 auto;
    font-family: "kaiseiopti_bold";
    font-weight: bold;
    font-size: 3.4rem;
    text-align: justify;
    color: #539BE3;
    line-height: 120%;
    letter-spacing: 0;
    padding: 139px 0 0 180px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
　忙しい毎日を頑張るあなたへ。ストレスに寄り添うクリニック
----------------------------------------------------------- */
.stress_frame {
  width: 100%;
  background: url("../img/index_stress_left.svg"), url("../img/index_stress_right.svg");
  background-position: left -150% top, right -150% top 60vw;
  background-size: 90%, 90%;
  background-repeat: no-repeat, no-repeat;
}
.stress_frame h2.stress_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 2rem 0;
}
.stress_frame h2.stress_title span {
  text-align: center;
  font-family: "kaiseiopti_medium";
  font-weight: normal;
  font-size: 1.6rem;
  color: #65A2DE;
  line-height: 110%;
  width: 60%;
}
.stress_frame h2.stress_title span em {
  display: block;
  font-style: normal;
  font-size: 2rem;
  margin: 1rem 0 0 0.2rem;
}
.stress_frame h2.stress_title::before {
  content: "";
  width: 15%;
  height: 20vw;
  display: block;
  background: url("../img/h2_left.svg") no-repeat;
  background-size: contain;
  background-position: center center;
}
.stress_frame h2.stress_title::after {
  content: "";
  width: 15%;
  height: 20vw;
  display: block;
  background: url("../img/h2_right.svg") no-repeat;
  background-size: contain;
  background-position: center center;
}
.stress_frame .stress_frame_box figure {
  width: 80%;
  margin: 0 auto 1rem auto;
}
.stress_frame .stress_frame_box figure img {
  display: block;
  width: 100%;
  height: auto;
}
.stress_frame .stress_frame_box p {
  color: #333333;
  width: 90%;
  margin: 0 auto 0 auto;
  line-height: 140%;
  letter-spacing: 0;
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.4rem;
  color: #333333;
}

@media screen and (min-width: 768px), print {
  .stress_frame {
    width: 100%;
    background: url("../img/index_stress_left.svg"), url("../img/index_stress_right.svg");
    background-position: left 0 bottom 159px, right -16px bottom -45px;
    background-size: 881.81px, 1082px;
    background-repeat: no-repeat, no-repeat;
    padding: 100px 0 200px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: -16px 0 0 0;
  }
  .stress_frame h2.stress_title {
    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 0 auto;
    width: 710.37px;
    height: 125.11px;
  }
  .stress_frame h2.stress_title span {
    text-align: center;
    font-family: "kaiseiopti_medium";
    font-weight: normal;
    font-size: 2.6rem;
    color: #65A2DE;
    line-height: 110%;
    width: auto;
  }
  .stress_frame h2.stress_title span em {
    display: block;
    font-style: normal;
    font-size: 3.4rem;
    margin: 15px 0 0 0;
  }
  .stress_frame h2.stress_title::before {
    content: "";
    width: 103.59px;
    height: 125.11px;
    display: block;
    background: url("../img/h2_left.svg") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .stress_frame h2.stress_title::after {
    content: "";
    width: 111.78px;
    height: 125.08px;
    display: block;
    background: url("../img/h2_right.svg") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .stress_frame .stress_frame_box {
    width: 923.96px;
    margin: -10px 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;
  }
  .stress_frame .stress_frame_box figure {
    width: 390.35px;
    margin: 0;
  }
  .stress_frame .stress_frame_box figure img {
    display: block;
    width: 100%;
    height: auto;
  }
  .stress_frame .stress_frame_box p {
    width: 533.61px;
    margin: -3px 0 0 0;
    line-height: 179%;
    letter-spacing: 0;
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.8rem;
    color: #333333;
    padding: 50px 0 0 42px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
　お知らせ矢印画像
----------------------------------------------------------- */
.notice_frame {
  width: 100%;
  margin: 5rem 0 2.7rem 0;
}
.notice_frame h2.notice_title {
  width: 70%;
  height: 40vw;
  background: url("../img/index_notice_bg.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  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;
  font-family: "kaiseiopti_bold";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin: 0 auto 0 auto;
}
.notice_frame h2.notice_title span {
  font-size: 1.2rem;
  color: #ffffff;
  display: block;
  margin: 1rem 0 0 0;
}
.notice_frame .notice_box {
  width: 98%;
  height: auto;
  margin: 0 auto 0 auto;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_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;
  border-bottom: #C3C3C3 1px dashed;
}
.notice_frame .notice_box dl dt {
  color: #539BE3;
  margin: 1rem 0 0 0;
  padding: 2rem 0 1rem 2rem;
  font-family: "zen_maru_gothic_Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  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-top: #C3C3C3 1px dashed;
}
.notice_frame .notice_box dl dt::before {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/icon_arrow_notice.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 2.2rem;
}
.notice_frame .notice_box dl dt .date {
  font-size: 1.4rem;
}
.notice_frame .notice_box dl dt.open::before {
  content: "";
}
.notice_frame .notice_box dl dt.close::before {
  content: "";
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.notice_frame .notice_box dl dt:first-child {
  border-top: none;
}
.notice_frame .notice_box dl dd {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
  color: #000000;
  font-family: "zen_maru_gothic_Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 120%;
  display: none;
}
.notice_frame .notice_box dl dd.open {
  display: block;
}
.notice_frame .notice_box dl dd p {
  font-family: "zen_maru_gothic_Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
}
.notice_frame .notice_box dl dd p a {
  color: #000000;
}

@media screen and (min-width: 768px), print {
  .notice_frame {
    width: 1200px;
    height: auto;
    min-height: 247px;
    margin: -47px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: visible;
  }
  .notice_frame h2.notice_title {
    width: 276px;
    height: 211px;
    background: url("../img/index_notice_bg.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    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;
    font-family: "kaiseiopti_bold";
    font-size: 3rem;
    font-weight: normal;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.3em;
    margin: 36px 0 0 0;
    padding: 30px 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame h2.notice_title span {
    font-size: 1.4rem;
    color: #ffffff;
    display: block;
    margin: 10px 0 0 0;
    letter-spacing: 0.3em;
  }
  .notice_frame .notice_box {
    width: 860px;
    height: auto;
    margin: 0 40px 0 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame .notice_box dl {
    height: auto;
    margin: 0;
    width: 860px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    padding: 0 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: #C3C3C3 1px dashed;
  }
  .notice_frame .notice_box dl dt {
    color: #539BE3;
    margin: 0 0 11px 0;
    padding: 20px 0 0 30px;
    font-family: "zen_maru_gothic_Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    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-top: #C3C3C3 1px dashed;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_frame .notice_box dl dt::before {
    display: block;
    content: "";
    width: 11px;
    height: 6px;
    background: url("../img/icon_arrow_notice.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    left: 8px;
    top: 30px;
  }
  .notice_frame .notice_box dl dt .date {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    display: inline;
  }
  .notice_frame .notice_box dl dt.open::before {
    content: "";
  }
  .notice_frame .notice_box dl dt.close::before {
    content: "";
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  .notice_frame .notice_box dl dt:first-child {
    border-top: none;
    padding: 0 0 0 30px;
  }
  .notice_frame .notice_box dl dt:first-child::before {
    top: 10px;
  }
  .notice_frame .notice_box dl dt:hover {
    cursor: pointer;
    cursor: hand;
    color: #8FC3F5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_frame .notice_box dl dd {
    margin: 0 0 22px 0;
    padding: 0 0 0 30px;
    color: #000000;
    font-family: "zen_maru_gothic_Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 140%;
    display: none;
  }
  .notice_frame .notice_box dl dd.open {
    display: block;
  }
  .notice_frame .notice_box dl dd p {
    font-family: "zen_maru_gothic_Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
  }
  .notice_frame .notice_box dl dd p a {
    color: #36c0b8;
  }
}
/* -----------------------------------------------------------
　カウンセリングバナー
----------------------------------------------------------- */
.bana_counseling {
  width: 96%;
  display: block;
  text-decoration: none;
  margin: 0 auto 2.7rem auto;
}
.bana_counseling img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  .bana_counseling {
    width: 600px;
    display: block;
    text-decoration: none;
    margin: 60px auto 60px auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .bana_counseling img {
    width: 100%;
    height: auto;
  }
  .bana_counseling:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.treatment_frame {
  width: 100%;
  margin: 2rem 0 0 0;
  background: url("../img/index_treatment_top2.svg"), url("../img/index_treatment_bottom.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center bottom -1px;
  background-size: 200%, 180%;
  background-color: #DFEFFF;
  padding: 22vw 0 44vw 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.treatment_frame .treatment_item1 {
  display: none;
}
.treatment_frame .treatment_item2 {
  display: none;
}
.treatment_frame .treatment_item3 {
  display: none;
}
.treatment_frame .treatment_item4 {
  display: none;
}
.treatment_frame h2.treatment_title {
  width: 45%;
  height: 30vw;
  background: url("../img/index_treatment_tubame.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  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;
  font-family: "kaiseiopti_bold";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  color: #539BE3;
  letter-spacing: 0.1em;
  margin: 0 auto 2rem auto;
}
.treatment_frame h2.treatment_title span {
  font-size: 1.2rem;
  color: #539BE3;
  display: block;
  margin: 0.5rem 0 0 0;
}
.treatment_frame .treatment_text {
  font-family: "kaiseiopti_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  color: #555555;
}
.treatment_frame .treatment_list_box {
  width: 96%;
  margin: 0 auto 0 auto;
}
.treatment_frame .treatment_list_box .treatment_box {
  text-decoration: none;
  margin: 0 0 2rem 0;
  display: block;
  width: 100%;
  height: 45vw;
  background: url("../img/index_treatment_bg.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.treatment_frame .treatment_list_box .treatment_box .treatment_sub_title {
  font-family: "kaiseiopti_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: left;
  color: #539BE3;
  margin: 0 0 0.5rem 3rem;
  line-height: 120%;
}
.treatment_frame .treatment_list_box .treatment_box .treatment_sub_title em {
  font-style: normal;
}
.treatment_frame .treatment_list_box .treatment_box .treatment_text {
  font-family: "kaiseiopti_medium";
  font-weight: normal;
  font-size: 1.3rem;
  text-align: left;
  color: #333333;
  margin: 0 0 0 3rem;
  line-height: 120%;
  width: 60%;
}
.treatment_frame .treatment_list_box .treatment_box::before {
  position: absolute;
  top: calc(50% - 4.5rem);
  right: 0;
  content: "";
  display: block;
  width: 9rem;
  height: 9rem;
}
.treatment_frame .treatment_list_box .treatment_box.tb1::before {
  background: url("../img/index_treatment_01.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame .treatment_list_box .treatment_box.tb2::before {
  background: url("../img/index_treatment_02.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame .treatment_list_box .treatment_box.tb3::before {
  background: url("../img/index_treatment_03.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame .treatment_list_box .treatment_box.tb4::before {
  background: url("../img/index_treatment_04.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame .treatment_list_box .treatment_box.tb5::before {
  background: url("../img/index_treatment_05.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame .treatment_list_box .treatment_box.tb6::before {
  background: url("../img/index_treatment_06.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame .treatment_list_text {
  font-family: "kaiseiopti_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  color: #539BE3;
  width: 90%;
  margin: 0 auto 0 auto;
}
.treatment_frame .treatment_list_sub_box {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 3rem 0 1.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: -1.5rem 0 0 0;
}
.treatment_frame .treatment_list_sub_box ul.treatment_list_sub {
  list-style-type: none;
}
.treatment_frame .treatment_list_sub_box ul.treatment_list_sub li {
  margin: 0 auto 1rem auto;
  width: 80%;
}
.treatment_frame .treatment_list_sub_box ul.treatment_list_sub li a {
  width: 100%;
  text-decoration: none;
  background-color: #539BE3;
  color: #ffffff;
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.4rem;
  padding: 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
  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;
  display: flex;
  justify-content: center;
  align-items: center;
}
.treatment_frame .treatment_list_sub_box ul.treatment_list_sub li a::before {
  font-family: "fontello";
  content: "\e80a";
  margin: 0 0.8rem 0 0;
}
.treatment_frame .treatment_list_sub_box .nado {
  font-family: "kaiseiopti_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  color: #539BE3;
  margin: 0;
}

@media screen and (min-width: 768px), print {
  .treatment_frame {
    width: 100%;
    margin: 19px 0 0 0;
    background: url("../img/index_treatment_top2.svg"), url("../img/index_treatment_bottom.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: center top, center bottom -1px;
    background-size: 2000px, 2000px;
    background-color: #DFEFFF;
    padding: 106px 0 355px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 1;
  }
  .treatment_frame .treatment_item1 {
    display: block;
    width: 169px;
    height: 397px;
    position: absolute;
    top: 267px;
    left: 50%;
    margin: 0 0 0 -743px;
  }
  .treatment_frame .treatment_item2 {
    display: block;
    width: 106px;
    height: 269px;
    position: absolute;
    top: 45px;
    left: 50%;
    margin: 0 0 0 393px;
  }
  .treatment_frame .treatment_item3 {
    display: block;
    width: 154px;
    height: 346px;
    position: absolute;
    top: 877px;
    left: 50%;
    margin: 0 0 0 -754px;
  }
  .treatment_frame .treatment_item4 {
    display: block;
    width: 243px;
    height: 414px;
    position: absolute;
    top: 795px;
    left: 50%;
    margin: 0 0 0 600px;
  }
  .treatment_frame h2.treatment_title {
    width: 200px;
    height: 141px;
    background: url("../img/index_treatment_tubame.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    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;
    font-family: "kaiseiopti_bold";
    font-size: 3rem;
    font-weight: normal;
    text-align: center;
    color: #539BE3;
    letter-spacing: 0.1em;
    margin: 0 auto 14px auto;
  }
  .treatment_frame h2.treatment_title span {
    font-size: 1.4rem;
    color: #539BE3;
    display: block;
    margin: 10px 0 0 0;
  }
  .treatment_frame .treatment_text {
    font-family: "kaiseiopti_medium";
    font-weight: normal;
    font-size: 2.4rem;
    text-align: center;
    color: #555555;
    margin: -30px 0 87px 0;
  }
  .treatment_frame .treatment_list_box {
    width: 1200px;
    margin: 0 auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .treatment_frame .treatment_list_box .treatment_box {
    text-decoration: none;
    margin: 0 0 33px 0;
    display: block;
    width: 594px;
    height: 269px;
    background: url("../img/index_treatment_bg.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame .treatment_list_box .treatment_box .treatment_sub_title {
    font-family: "kaiseiopti_medium";
    font-weight: normal;
    font-size: 2.6rem;
    text-align: left;
    color: #539BE3;
    margin: 0 0 11px 33px;
    line-height: 120%;
  }
  .treatment_frame .treatment_list_box .treatment_box .treatment_sub_title em {
    font-style: normal;
  }
  .treatment_frame .treatment_list_box .treatment_box .treatment_text {
    font-family: "kaiseiopti_medium";
    font-weight: normal;
    font-size: 1.8rem;
    text-align: left;
    color: #333333;
    margin: 0 0 0 33px;
    line-height: 120%;
    width: 312px;
  }
  .treatment_frame .treatment_list_box .treatment_box::before {
    position: absolute;
    top: calc(50% - 106.185px);
    right: 7px;
    content: "";
    display: block;
    width: 231.42px;
    height: 212.37px;
  }
  .treatment_frame .treatment_list_box .treatment_box.tb1::before {
    background: url("../img/index_treatment_01.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame .treatment_list_box .treatment_box.tb2::before {
    background: url("../img/index_treatment_02.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame .treatment_list_box .treatment_box.tb3::before {
    background: url("../img/index_treatment_03.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame .treatment_list_box .treatment_box.tb4::before {
    background: url("../img/index_treatment_04.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame .treatment_list_box .treatment_box.tb5::before {
    background: url("../img/index_treatment_05.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame .treatment_list_box .treatment_box.tb6::before {
    background: url("../img/index_treatment_06.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame .treatment_list_box .treatment_box:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame .treatment_list_text {
    font-family: "kaiseiopti_medium";
    font-weight: normal;
    font-size: 2.2rem;
    text-align: center;
    color: #539BE3;
    width: 100%;
    margin: -19px 0 0 0;
    position: relative;
    z-index: 2;
  }
  .treatment_frame .treatment_list_sub_box {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 27px 0 16px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: -16px 0 0 0;
    position: relative;
    z-index: 1;
  }
  .treatment_frame .treatment_list_sub_box ul.treatment_list_sub {
    list-style-type: none;
    width: 818px;
    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;
    margin: 0 auto 0 auto;
  }
  .treatment_frame .treatment_list_sub_box ul.treatment_list_sub li {
    margin: 0 16px 16px 0;
    width: 187px;
  }
  .treatment_frame .treatment_list_sub_box ul.treatment_list_sub li a {
    width: 100%;
    height: 43px;
    text-decoration: none;
    background-color: #539BE3;
    color: #ffffff;
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.6rem;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 8px;
    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;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame .treatment_list_sub_box ul.treatment_list_sub li a::before {
    font-family: "fontello";
    content: "\e80a";
    margin: 0 8px 0 0;
  }
  .treatment_frame .treatment_list_sub_box ul.treatment_list_sub li a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #79B3EC;
  }
  .treatment_frame .treatment_list_sub_box .nado {
    position: absolute;
    left: 50%;
    top: 86px;
    font-family: "kaiseiopti_medium";
    font-weight: normal;
    font-size: 2.2rem;
    text-align: center;
    color: #539BE3;
    margin: 0 0 0 200px;
  }
}
/* -----------------------------------------------------------
　カウンセリングバナー
----------------------------------------------------------- */
.bana_support_system {
  width: 96%;
  display: block;
  text-decoration: none;
  margin: 0 auto 2.7rem auto;
}
.bana_support_system img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  .bana_support_system {
    width: 600px;
    display: block;
    text-decoration: none;
    margin: -160px auto 60px auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    z-index: 99;
  }
  .bana_support_system img {
    width: 100%;
    height: auto;
  }
  .bana_support_system:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　予約・問診について
----------------------------------------------------------- */
.about_box_bg {
  width: 100%;
  background: url("../img/index_about_bg.svg") no-repeat;
  background-position: center top 30px;
  background-size: 100%;
}
.about_box_bg .about_item1 {
  display: none;
}
.about_box_bg .about_item2 {
  display: none;
}
.about_box_bg .about_item3 {
  display: none;
}
.about_box_bg .about_subbox .about_subbox_01 {
  margin: 0 0 2rem 0;
}
.about_box_bg .about_subbox .about_subbox_01 h2.about_sub_title {
  font-family: "kaiseiopti_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #A3A412;
  text-align: center;
  line-height: 120%;
  margin: 0 0 2rem 0;
  background: url("../img/index_tubame.svg") no-repeat;
  background-position: center top;
  background-size: contain;
  padding: 4.5rem 0 0.2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.about_box_bg .about_subbox .about_subbox_01 h2.about_sub_title span {
  display: block;
  font-size: 1rem;
}
.about_box_bg .about_subbox .about_subbox_01 figure {
  width: 80%;
  margin: 0 auto 1rem auto;
}
.about_box_bg .about_subbox .about_subbox_01 figure img {
  display: block;
  width: 100%;
  margin: 0 0 1rem 0;
}
.about_box_bg .about_subbox .about_subbox_01 figure figcaption {
  font-family: "kaiseiopti_medium";
  font-weight: normal;
  font-size: 1.4rem;
  color: #333333;
  line-height: 120%;
}
.about_box_bg .about_subbox .about_subbox_02 {
  width: 100%;
  margin: 0 0 2rem 0;
  padding: 0 0 3rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_about_bg2.svg") no-repeat;
  background-position: center top;
  background-size: cover;
}
.about_box_bg .about_subbox .about_subbox_03 {
  width: 100%;
  margin: 0 0 0 0;
  padding: 2rem 0 3rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_about_bg2.svg") no-repeat;
  background-position: center top;
  background-size: cover;
}
.about_box_bg .about_subbox .bg2 h3.about_sub_title {
  font-family: "kaiseiopti_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #A3A412;
  line-height: 120%;
  margin: 1rem 0 1rem 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about_box_bg .about_subbox .bg2 h3.firest::before {
  content: "";
  width: 4rem;
  height: 4rem;
  display: block;
  background: url("../img/index_about_02.svg") no-repeat;
  background-position: center center;
  background-size: contain;
}
.about_box_bg .about_subbox .bg2 h3.return_visit::before {
  content: "";
  width: 4rem;
  height: 4rem;
  display: block;
  background: url("../img/index_about_03.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 0.5rem 0 0;
}
.about_box_bg .about_subbox .bg2 .about_text {
  width: 80%;
  margin: 0 auto 0 auto;
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 140%;
  color: #333333;
}
.about_box_bg .about_subbox .bg2 ul.about_list {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 auto 0 auto;
  width: 80%;
}
.about_box_bg .about_subbox .bg2 ul.about_list li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}
.about_box_bg .about_subbox .about_subbox_04 {
  width: 100%;
  margin: 0 0 0 0;
  padding: 2rem 0 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_about_bg3.svg") no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
}
.about_box_bg .about_subbox .about_subbox_04::before {
  content: "";
  width: 5rem;
  height: 8rem;
  display: block;
  background: url("../img/index_fuusen.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 2rem;
  left: 0.5rem;
}
.about_box_bg .about_subbox .about_subbox_04::after {
  content: "";
  width: 5rem;
  height: 8rem;
  display: block;
  background: url("../img/index_kinkyu.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0.5rem;
}
.about_box_bg .about_subbox .about_subbox_04 h3.about_sub_title_pink {
  font-family: "kaiseiopti_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #E87482;
  text-align: center;
  line-height: 120%;
  letter-spacing: 0.1em;
  margin: 6rem 0 1rem 0;
  background: url("../img/index_kumo.svg") no-repeat;
  background-position: center top;
  background-size: 40%;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.about_box_bg .about_subbox .about_subbox_04 h3.about_sub_title_pink span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.about_box_bg .about_subbox .about_subbox_04 img.about_difficult {
  display: block;
  width: 70%;
  margin: 0 auto 1rem auto;
}
.about_box_bg .about_subbox .about_subbox_04 .about_difficult_text {
  width: 90%;
  margin: 0 auto 1rem auto;
  color: #333333;
  font-size: 1.5rem;
}
.about_box_bg .about_subbox .about_subbox_04 ul.about_list {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 auto 0 auto;
  width: 90%;
  color: #333333;
}
.about_box_bg .about_subbox .about_subbox_04 ul.about_list li {
  margin: 0 0 0.5rem 1.8rem;
  padding: 0;
}

@media screen and (min-width: 768px), print {
  .about_box_bg {
    width: 100%;
    background: url("../img/index_about_bg.svg") no-repeat;
    background-position: center top 20px;
    background-size: 200%;
    margin: -120px 0 0 0;
    position: relative;
    z-index: 3;
  }
  .about_box_bg .about_item1 {
    display: block;
    width: 243px;
    height: 414px;
    position: absolute;
    top: 41px;
    left: 50%;
    margin: 0 0 0 357px;
  }
  .about_box_bg .about_item2 {
    display: block;
    width: 154px;
    height: 89px;
    position: absolute;
    top: 906px;
    left: 50%;
    margin: 0 0 0 -754px;
  }
  .about_box_bg .about_item3 {
    display: block;
    width: 146px;
    height: 104px;
    position: absolute;
    top: 806px;
    left: 50%;
    margin: 0 0 0 685px;
  }
  .about_box_bg .about_subbox {
    width: 1200px;
    height: 1241px;
    margin: 0 auto 0 auto;
    position: relative;
    overflow: visible;
  }
  .about_box_bg .about_subbox .about_subbox_01 {
    position: absolute;
    top: 122px;
    left: 140px;
    width: 340px;
    margin: 0 0 0 0;
  }
  .about_box_bg .about_subbox .about_subbox_01 h2.about_sub_title {
    font-family: "kaiseiopti_bold";
    font-weight: bold;
    font-size: 3rem;
    color: #A3A412;
    text-align: center;
    line-height: 120%;
    margin: 0 0 0 0;
    background: url("../img/index_tubame.svg") no-repeat;
    background-position: center top;
    background-size: 177px;
    padding: 66px 0 12px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .about_box_bg .about_subbox .about_subbox_01 h2.about_sub_title span {
    display: block;
    font-size: 1.4rem;
  }
  .about_box_bg .about_subbox .about_subbox_01 figure {
    width: 263px;
    margin: -4px auto 16px auto;
  }
  .about_box_bg .about_subbox .about_subbox_01 figure img {
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .about_box_bg .about_subbox .about_subbox_01 figure figcaption {
    width: 290px;
    margin: 0 auto 0 auto;
    font-family: "kaiseiopti_medium";
    font-weight: normal;
    font-size: 2rem;
    color: #333333;
    line-height: 145%;
  }
  .about_box_bg .about_subbox .about_subbox_02 {
    position: absolute;
    top: 106px;
    right: 190px;
    width: 488px;
    height: 297px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_about_bg2.svg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .about_box_bg .about_subbox .about_subbox_02 h3 {
    margin: -7px 0 16px 80px !important;
  }
  .about_box_bg .about_subbox .about_subbox_02 .about_text {
    margin: 0 0 0 60px !important;
  }
  .about_box_bg .about_subbox .about_subbox_03 {
    position: absolute;
    top: 426px;
    right: 56px;
    width: 488px;
    height: 297px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_about_bg2.svg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .about_box_bg .about_subbox .about_subbox_03 h3 {
    margin: 29px 0 28px 68px !important;
  }
  .about_box_bg .about_subbox .about_subbox_03 .about_text {
    margin: 0 0 0 50px !important;
  }
  .about_box_bg .about_subbox .bg2 h3.about_sub_title {
    font-family: "kaiseiopti_bold";
    font-weight: bold;
    font-size: 2.6rem;
    color: #A3A412;
    line-height: 120%;
    margin: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about_box_bg .about_subbox .bg2 h3.firest::before {
    content: "";
    width: 58.91px;
    height: 87.83px;
    display: block;
    background: url("../img/index_about_02.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    margin: 8px 20px 0 0;
  }
  .about_box_bg .about_subbox .bg2 h3.return_visit::before {
    content: "";
    width: 79.49px;
    height: 79.49px;
    display: block;
    background: url("../img/index_about_03.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    margin: 0 20px 0 0;
  }
  .about_box_bg .about_subbox .bg2 .about_text {
    width: 405px;
    margin: 0 auto 0 auto;
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 150%;
    letter-spacing: 0;
    color: #333333;
  }
  .about_box_bg .about_subbox .bg2 ul.about_list {
    list-style-type: disc;
    line-height: 180%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 auto 0 auto;
    width: 405px;
  }
  .about_box_bg .about_subbox .bg2 ul.about_list li {
    margin: 0 0 1rem 1.8rem;
    padding: 0;
  }
  .about_box_bg .about_subbox .about_subbox_04 {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 116px;
    width: 1004px;
    height: 461px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_about_bg3.svg") no-repeat;
    background-position: center top;
    background-size: cover;
    overflow: visible;
  }
  .about_box_bg .about_subbox .about_subbox_04::before {
    content: "";
    width: 130px;
    height: 202px;
    display: block;
    background: url("../img/index_fuusen.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: -39px;
    left: -17px;
  }
  .about_box_bg .about_subbox .about_subbox_04::after {
    content: "";
    width: 88px;
    height: 125px;
    display: block;
    background: url("../img/index_kinkyu.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    bottom: 8px;
    right: 18px;
  }
  .about_box_bg .about_subbox .about_subbox_04 h3.about_sub_title_pink {
    font-family: "kaiseiopti_bold";
    font-weight: bold;
    font-size: 3rem;
    color: #E87482;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0.18em;
    margin: 0 0 0 0;
    background: url("../img/index_kumo.svg") no-repeat;
    background-position: center top;
    background-size: 271px;
    padding: 42px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 414px;
    height: 126.55px;
  }
  .about_box_bg .about_subbox .about_subbox_04 h3.about_sub_title_pink span {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
  }
  .about_box_bg .about_subbox .about_subbox_04 h3.about_sub_title_pink {
    position: absolute;
    top: 8px;
    right: 180px;
  }
  .about_box_bg .about_subbox .about_subbox_04 img.about_difficult {
    display: block;
    width: 218.12px;
    margin: 0 0 0 0;
    position: absolute;
    top: 108px;
    left: 58px;
  }
  .about_box_bg .about_subbox .about_subbox_04 .about_difficult_text {
    width: 552px;
    margin: 0;
    font-family: "zen_maru_gothic_Medium";
    font-size: 2.4rem;
    line-height: 150%;
    letter-spacing: 0;
    position: absolute;
    top: 148px;
    right: 116px;
    color: #333333;
  }
  .about_box_bg .about_subbox .about_subbox_04 ul.about_list {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0;
    font-size: 2rem;
    margin: 0 auto 0 auto;
    width: 530px;
    position: absolute;
    top: 293px;
    right: 130px;
    color: #333333;
  }
  .about_box_bg .about_subbox .about_subbox_04 ul.about_list li {
    margin: 0 0 0.5rem 1.8rem;
    padding: 0;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
.features_frame_bg {
  width: 100%;
  background: url("../img/index_features_bg_top.svg") no-repeat;
  background-size: 250%;
  background-position: center top;
  background-color: #C8E4FF;
  margin: 4rem 0 0 0;
  padding: 4rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_frame_bg .features_item1 {
  display: none;
}
.features_frame_bg .features_item2 {
  display: none;
}
.features_frame_bg .features_frame h2.features_title {
  font-family: "kaiseiopti_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #539BE3;
  text-align: center;
  line-height: 120%;
  margin: 6rem 0 1rem 0;
  background: url("../img/index_kumo.svg") no-repeat;
  background-position: center top;
  background-size: 50%;
  padding: 2.5rem 0 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_frame_bg .features_frame h2.features_title span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.features_frame_bg .features_frame .features_box {
  width: 100%;
  margin: 2rem 0 0 0;
  background: url("../img/index_features_bg.svg") no-repeat;
  background-size: cover;
  background-position: center center;
}
.features_frame_bg .features_frame .features_box .features_sub_box {
  width: 80%;
  margin: 0 auto 2rem auto;
  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;
}
.features_frame_bg .features_frame .features_box .features_sub_box h3.features_title {
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 2rem;
  text-align: center;
  color: #87881B;
  line-height: 120%;
  background-image: linear-gradient(to right, #B4B511 4px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding: 0 0 0.8rem 0;
  margin: 0 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_frame_bg .features_frame .features_box .features_sub_box .features_text {
  font-weight: 1.4rem;
  line-height: 160%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 0;
}
.features_frame_bg .features_frame .features_box .features_sub_box img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 80%;
  height: auto;
  margin: 0 auto 0.5rem auto;
}
.features_frame_bg .features_frame .features_box .features_item3 {
  display: none;
}

@media screen and (min-width: 768px), print {
  .features_frame_bg {
    width: 100%;
    background: url("../img/index_features_bg_top.svg") no-repeat;
    background-size: contain;
    background-position: center top;
    background-color: #C8E4FF;
    margin: 128px 0 0 0;
    padding: 185px 0 18px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .features_frame_bg .features_item1 {
    display: block;
    width: 154px;
    height: 322px;
    position: absolute;
    top: 645px;
    left: 50%;
    margin: 0 0 0 675px;
  }
  .features_frame_bg .features_item2 {
    display: block;
    width: 130px;
    height: 202px;
    position: absolute;
    top: 1309px;
    left: 50%;
    margin: 0 0 0 -754px;
  }
  .features_frame_bg .features_frame h2.features_title {
    font-family: "kaiseiopti_bold";
    font-weight: bold;
    font-size: 3rem;
    color: #539BE3;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0.18em;
    margin: 0 auto 0 auto;
    background: url("../img/index_kumo.svg") no-repeat;
    background-position: center top;
    background-size: 271px;
    padding: 42px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 414px;
    height: 126.55px;
  }
  .features_frame_bg .features_frame h2.features_title span {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
  }
  .features_frame_bg .features_frame .features_box {
    width: 1220px;
    height: 1041px;
    margin: 123px auto 0 auto;
    background: url("../img/index_features_bg.svg") no-repeat;
    background-size: 1220px;
    background-position: top 70px center;
    position: relative;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box {
    width: auto;
    margin: 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: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box h3.features_title {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 2.6rem;
    text-align: center;
    color: #87881B;
    line-height: 100%;
    background-image: linear-gradient(to right, #B4B511 4px, transparent 2px);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
    padding: 0 0 16px 0;
    margin: -2px 0 8px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 68px;
    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;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box .features_text {
    font-weight: 1.4rem;
    line-height: 170%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 0;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: auto;
    height: auto;
    margin: 0 auto 17px auto;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_01 {
    width: 320px;
    position: absolute;
    top: 0;
    left: 76px;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_01 img {
    width: 303.73px;
    height: 293.91px;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_02 {
    width: 356px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_02 img {
    width: 308.9px;
    height: 293.91px;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_03 {
    width: 325.99px;
    position: absolute;
    top: 0;
    right: 47px;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_03 img {
    width: 309.99px;
    height: 293.91px;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_04 {
    width: 320px;
    position: absolute;
    top: 559px;
    left: 270px;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_04 img {
    width: 303.73px;
    height: 293.91px;
    margin: 0 auto 0 auto;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_04 h3.features_title {
    padding: 0 0 16px 0;
    margin: -14px 0 8px 0;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_05 {
    width: 323.87px;
    position: absolute;
    top: 559px;
    right: 241px;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_05 img {
    width: 303.91px;
    height: 293.91px;
    margin: 0 auto 0 auto;
  }
  .features_frame_bg .features_frame .features_box .features_sub_box.fsb_05 h3.features_title {
    padding: 0 0 16px 0;
    margin: -14px 0 8px 0;
  }
  .features_frame_bg .features_frame .features_box .features_item3 {
    display: block;
    position: absolute;
    bottom: 188px;
    right: 0;
    width: 144px;
    height: 276;
  }
}
/* -----------------------------------------------------------
　ごあいさつ
----------------------------------------------------------- */
.greeting_frame_bg {
  width: 100%;
  background: url("../img/index_greeting_bg.svg") no-repeat;
  background-size: 250%;
  background-position: center top;
  background-color: #ffffff;
  margin: 0 0 0 0;
  padding: 6rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.greeting_frame_bg .greeting_frame {
  width: 96%;
  margin: 0 auto 0 auto;
  background: url("../img/index_greeting_item.svg") no-repeat;
  background-position: top center;
  background-size: 70%;
}
.greeting_frame_bg .greeting_frame h2.greeting_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 2rem 0;
}
.greeting_frame_bg .greeting_frame h2.greeting_title span {
  text-align: center;
  font-family: "kaiseiopti_medium";
  font-weight: normal;
  font-size: 1.8rem;
  color: #E87482;
  line-height: 100%;
  width: auto;
}
.greeting_frame_bg .greeting_frame h2.greeting_title span em {
  display: block;
  font-style: normal;
  font-size: 1rem;
  margin: 0 0 0 0;
}
.greeting_frame_bg .greeting_frame h2.greeting_title::before {
  content: "";
  width: 15%;
  height: 20vw;
  display: block;
  background: url("../img/h2_left.svg") no-repeat;
  background-size: contain;
  background-position: center center;
}
.greeting_frame_bg .greeting_frame h2.greeting_title::after {
  content: "";
  width: 15%;
  height: 20vw;
  display: block;
  background: url("../img/h2_right.svg") no-repeat;
  background-size: contain;
  background-position: center center;
}
.greeting_frame_bg .greeting_frame .greeting_text {
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.4rem;
  color: #888888;
  margin: 0 0 1rem 0;
}
.greeting_frame_bg .greeting_frame .greeting_name {
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: right;
  color: #333333;
  line-height: 180%;
}
.greeting_frame_bg .greeting_frame .greeting_name span {
  font-size: 2.2rem;
  margin: 0 0 0 1rem;
}
.greeting_frame_bg .greeting_frame .greeting_btn {
  width: 70%;
  text-decoration: none;
  background-color: #E87482;
  color: #ffffff;
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.4rem;
  padding: 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
  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;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 30%;
}
.greeting_frame_bg .greeting_frame .greeting_btn::before {
  font-family: "fontello";
  content: "\e80a";
  margin: 0 0.8rem 0 0;
}

@media screen and (min-width: 768px), print {
  .greeting_frame_bg {
    width: 100%;
    background: url("../img/index_greeting_bg.svg") no-repeat;
    background-size: 2000px;
    background-position: center top;
    background-color: #ffffff;
    margin: 0 auto 0 auto;
    padding: 100px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .greeting_frame_bg .greeting_frame {
    width: 800px;
    margin: 0 auto 0 auto;
    background: url("../img/index_greeting_item.svg") no-repeat;
    background-position: top center;
    background-size: 409px;
  }
  .greeting_frame_bg .greeting_frame h2.greeting_title {
    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: 15px 0 19px 0;
  }
  .greeting_frame_bg .greeting_frame h2.greeting_title span {
    text-align: center;
    font-family: "kaiseiopti_medium";
    font-weight: normal;
    font-size: 3rem;
    color: #E87482;
    line-height: 100%;
    width: auto;
    letter-spacing: 0.25em;
    margin: 9px 14px 0 14px;
  }
  .greeting_frame_bg .greeting_frame h2.greeting_title span em {
    display: block;
    font-style: normal;
    font-size: 1.4rem;
    margin: 0 0 0 0;
    letter-spacing: 0.25em;
  }
  .greeting_frame_bg .greeting_frame h2.greeting_title::before {
    content: "";
    width: 84px;
    height: 101px;
    display: block;
    background: url("../img/h2_left.svg") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .greeting_frame_bg .greeting_frame h2.greeting_title::after {
    content: "";
    width: 89px;
    height: 101px;
    display: block;
    background: url("../img/h2_right.svg") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .greeting_frame_bg .greeting_frame .greeting_text {
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.8rem;
    color: #888888;
    margin: 0 0 18px 0;
    line-height: 180%;
    letter-spacing: 0.15em;
  }
  .greeting_frame_bg .greeting_frame .greeting_name {
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.8rem;
    text-align: right;
    color: #333333;
    line-height: 200%;
  }
  .greeting_frame_bg .greeting_frame .greeting_name span {
    font-size: 2.6rem;
    margin: 0 0 0 16px;
  }
  .greeting_frame_bg .greeting_frame .greeting_btn {
    width: 238px;
    height: 43px;
    text-decoration: none;
    background-color: #E87482;
    color: #ffffff;
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.6rem;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 8px;
    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;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 0;
    float: right;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .greeting_frame_bg .greeting_frame .greeting_btn::before {
    font-family: "fontello";
    content: "\e80a";
    margin: 0 8px 0 0;
  }
  .greeting_frame_bg .greeting_frame .greeting_btn:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #FBC2C8;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  background: url("../img/overview_bg.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.overview .overview_box {
  /*左側*/
}
.overview .overview_box .overview_info_box_left {
  width: 100%;
}
.overview .overview_box .overview_info_box_left .overview_info_box_left_in {
  width: 96%;
  margin: 0 auto;
  padding: 2rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 1.5rem;
}
.overview .overview_box .overview_info_box_left .overview_info_box_left_in .overview_logo {
  width: 80%;
  margin: 0 auto 2rem auto;
  display: block;
}
.overview .overview_box .overview_info_box_left .overview_info_box_left_in .overview_logo img {
  width: 100%;
}
.overview .overview_box .overview_info_box_left .overview_info_box_left_in .overview_tel {
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 2.2rem;
  color: #7093C6;
  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;
}
.overview .overview_box .overview_info_box_left .overview_info_box_left_in .overview_tel em {
  background-color: #7093C6;
  color: #ffffff;
  width: 3rem;
  height: 3rem;
  font-size: 1rem;
  font-style: normal;
  border-radius: 50%;
  margin: 0 1rem 0 0;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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 .overview_info_box_left_in .overview_tel span a {
  color: #7093C6;
  text-decoration: none;
}
.overview .overview_box .overview_info_box_left .overview_info_box_left_in dl.overview_list {
  width: 90%;
  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%;
}
.overview .overview_box .overview_info_box_left .overview_info_box_left_in dl.overview_list dt {
  width: 25%;
  margin: 0 0 1rem 0;
  color: #F19CA6;
}
.overview .overview_box .overview_info_box_left .overview_info_box_left_in dl.overview_list dt::before {
  font-family: "fontello";
  content: "\f006";
  margin: 0 0.2rem 0 0;
}
.overview .overview_box .overview_info_box_left .overview_info_box_left_in dl.overview_list dd {
  width: 75%;
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #707070;
}
.overview .overview_box .overview_info_box_left .overview_info_box_left_in .overview_timetable {
  width: 96%;
  margin: 0 auto;
}
.overview .overview_box {
  /*右側*/
}
.overview .overview_box .overview_info_box_right {
  margin: 2rem 0 0 0;
}
.overview .overview_box .overview_info_box_right iframe.googlemap {
  width: 96%;
  height: 100vw;
  display: block;
  margin: 0 auto 0 auto;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    height: 980px;
    background: url("../img/overview_bg.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .overview .overview_box {
    width: 100%;
    margin: 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;
    /*左側*/
  }
  .overview .overview_box .overview_info_box_left {
    width: 50%;
  }
  .overview .overview_box .overview_info_box_left .overview_info_box_left_in {
    width: 520px;
    height: 880px;
    margin: 50px 38px 0 0;
    padding: 50px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 20px;
    float: right;
  }
  .overview .overview_box .overview_info_box_left .overview_info_box_left_in .overview_logo {
    width: 392px;
    margin: 0 auto 17px auto;
    display: block;
  }
  .overview .overview_box .overview_info_box_left .overview_info_box_left_in .overview_logo img {
    width: 100%;
  }
  .overview .overview_box .overview_info_box_left .overview_info_box_left_in .overview_tel {
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 3rem;
    color: #7093C6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 23px 0;
  }
  .overview .overview_box .overview_info_box_left .overview_info_box_left_in .overview_tel em {
    background-color: #7093C6;
    color: #ffffff;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    font-style: normal;
    border-radius: 50%;
    margin: 0 18px 0 0;
    line-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -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 .overview_info_box_left_in .overview_tel span a {
    color: #7093C6;
    text-decoration: none;
  }
  .overview .overview_box .overview_info_box_left .overview_info_box_left_in dl.overview_list {
    width: 420px;
    margin: 0 auto 8px 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: 150%;
    letter-spacing: 0;
  }
  .overview .overview_box .overview_info_box_left .overview_info_box_left_in dl.overview_list dt {
    width: 110px;
    margin: 0 0 12px 0;
    color: #F19CA6;
  }
  .overview .overview_box .overview_info_box_left .overview_info_box_left_in dl.overview_list dt::before {
    font-family: "fontello";
    content: "\f006";
    margin: 0 5px 0 0;
  }
  .overview .overview_box .overview_info_box_left .overview_info_box_left_in dl.overview_list dd {
    width: 310px;
    margin: 0 0 12px 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #707070;
  }
  .overview .overview_box .overview_info_box_left .overview_info_box_left_in .overview_timetable {
    width: 450px;
    margin: 0 auto;
  }
  .overview .overview_box {
    /*右側*/
  }
  .overview .overview_box .overview_info_box_right {
    width: 50%;
    margin: 0 0 0 0;
  }
  .overview .overview_box .overview_info_box_right iframe.googlemap {
    width: 100%;
    height: 980px;
    display: block;
    margin: 0;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer .footer_frame {
  display: none;
}
footer .sp_link {
  display: block;
  margin: 0;
  padding: 1rem 0 0 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.05em;
  background-color: #3D6BAE;
}
footer .sp_link a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
}
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: #3D6BAE;
}
footer .copyright a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer_link {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 13vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: 999999;
  border-top: #ffffff 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_link a.footer_tel {
  width: 16%;
  margin: 0;
  color: #ffffff;
  background-color: #7093C6;
  text-align: center;
  font-family: "zen_maru_gothic_Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-weight: normal;
  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_tel i {
  font-size: 2rem;
}
.footer_link a.footer_reserve {
  /*width:34%; */
  width: 68%;
  margin: 0;
  color: #ffffff;
  background-color: #7093C6;
  text-align: center;
  font-family: "zen_maru_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_interview {
  width: 34%;
  margin: 0;
  color: #ffffff;
  background-color: #7093C6;
  text-align: center;
  font-family: "zen_maru_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: #7093C6;
  width: 16%;
  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: 2rem;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0 0 0 0;
    background-color: #7093C6;
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    display: block;
    width: 1200px;
    margin: 0 auto 0 auto;
    background: url("../img/footer_left.svg"), url("../img/footer_right.svg");
    background-position: left 100px top, right 39px top;
    background-repeat: no-repeat, no-repeat;
    background-size: 45px, 48px;
    padding: 90px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .footer_frame ul.footer_list {
    line-height: 130%;
    font-size: 1.4rem;
    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;
    height: 28px;
    margin: 0 6px 10px 0;
    padding: 0 6px 0 0;
    list-style-type: none;
    position: relative;
    border-right: #ffffff 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .footer_frame ul.footer_list li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.4rem;
    position: relative;
    height: 28px;
    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;
  }
  footer .footer_frame ul.footer_list li a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 2px solid #ffffff;
  }
  footer .footer_frame ul.footer_list li a:hover::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    top: 0;
    bottom: -3px;
  }
  footer .footer_frame ul.footer_list li a span {
    display: none;
  }
  footer .footer_frame ul.footer_list li.treatment {
    display: none;
  }
  footer .footer_frame ul.footer_list li:first-child {
    padding: 0 16px 0 16px;
    border-left: #ffffff 1px solid;
  }
  footer .sp_link {
    display: none;
  }
  footer .copyright {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    height: 30px;
    width: 100%;
    letter-spacing: 0.05em;
    background-color: #3D6BAE;
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  footer .copyright a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
  }
  footer .copyright a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ffffff;
  }
  footer .copyright a:hover::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    top: 0;
    bottom: -2px;
  }
  .footer_link {
    display: none;
  }
}
/* -----------------------------------------------------------
　ページトップへ
----------------------------------------------------------- */
#pagetop_position {
  display: none;
}

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