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

 共通項目

======================================================================= */
/*関数*/
/* -----------------------------------------------------------
 関数
----------------------------------------------------------- */
/*サイトの横幅*/
/*media screen*/
/*文字SP*/
/*文字PC*/
/*基本フォント*/
/*游明朝*/
/*◇◆◇◆◇◆基本色◇◆◇◆◇◆*/
/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*◇◆◇◆◇◆ハンバーガー色◇◆◇◆◇◆*/
/*ハンバーガー棒と文字*/
/*ハンバーガー背景*/
/*ハンバーガーdrawrテキスト*/
/*ハンバーガーdrawr背景*/
/*ハンバーガーdrawrサブ背景*/
/*ハンバーガーdrawrボーダー*/
/*◇◆◇◆◇◆お知らせ色◇◆◇◆◇◆*/
/*お知らせタイトル*/
/*お知らせ文字*/
/*お知らせボーダー*/
/*◇◆◇◆◇◆フッターSP◇◆◇◆◇◆*/
/*フッター背景色*/
/*フッターテキスト*/
/*フッターボーダー*/
/*◇◆◇◆◇◆フッターリンクPC◇◆◇◆◇◆*/
/*フッターリンク背景色*/
/*フッターリンクテキスト*/
/*フッターリンクボーダー*/
/*◇◆◇◆◇◆コピーライト◇◆◇◆◇◆*/
/*コピーライト背景色*/
/*コピーライトテキスト*/
/*◇◆◇◆◇◆リンク系◇◆◇◆◇◆*/
/*リンクカラー*/
/*リンクカラーホバー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆影◇◆◇◆◇◆*/
/*◇◆◇◆◇◆テーブル系◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*tdボーダー*/
/*◇◆◇◆◇◆テーブル系3◇◆◇◆◇◆*/
/*◇◆◇◆◇◆フロー◇◆◇◆◇◆*/
/*◇◆◇◆◇◆矢印◇◆◇◆◇◆*/
/*◇◆◇◆◇◆汎用カラー◇◆◇◆◇◆*/
/*青*/
/*青*/
/*灰色*/
/*青*/
/*青*/
/*灰色*/
/*ピンク*/
/*ピンク*/
/*青*/
/*ピンク*/
/*赤*/
/*黄色*/
/*黒*/
/*下層H1*/
/*茶色*/
/*紺色*/
/*青*/
/*茶色*/
/*仕様変更後のカラー*/
/*青*/
/*茶色*/
/*茶色*/
/*黒*/
/*茶色*/
/*茶色*/
/*茶色*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@font-face {
  font-family: "robotocondensed_regular";
  src: url(../font/RobotoCondensed-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ibmplexsansjp_medium";
  src: url(../font/IBMPlexSansJP-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;
}

.va_m {
  vertical-align: middle;
}

@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;
  }
}
.mt60 {
  margin-top: 6rem;
}

/*ハンバーガー*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.main_nav_sp {
  width: 100%;
  position: relative;
  z-index: 99999999999;
}
.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: #81B9E5 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: "ibmplexsansjp_medium";
  font-size: 1.6rem;
  text-decoration: none;
  padding: 1rem;
  border-bottom: #81B9E5 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  line-height: 140%;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub {
  display: none;
  width: 100%;
  list-style-type: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub.open_nav {
  display: block;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li {
  width: 50%;
  float: left;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a {
  background-color: #ffffff;
  color: #474A5B;
  border-bottom: none;
  text-align: center;
  border-bottom: #81B9E5 1px solid;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a::after {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li:nth-child(odd) a {
  border-right: #81B9E5 1px solid;
}
.main_nav_sp .drawr ul.hbg li.treatment_hbg a::after {
  font-family: "fontello";
  content: "\e805";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
  color: #81B9E5;
}
.main_nav_sp .drawr ul.hbg li.open_treatment a::after {
  font-family: "fontello";
  content: "\e80a";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
  color: #81B9E5;
}

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

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

 共通項目

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

h2.top_title {
  font-family: "ibmplexsansjp_medium";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  color: #333333;
  letter-spacing: 0.1em;
  line-height: 120%;
  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;
}
h2.top_title span {
  font-family: "robotocondensed_regular";
  font-size: 1.2rem;
  font-weight: normal;
  color: #81B9E5;
  display: block;
  margin: 0.5rem 0 0 0;
}
h2.top_title::before {
  content: "";
  display: block;
  background: url(../img/icon_h2.svg) no-repeat;
  background-size: contain;
  background-position: center top;
  width: 5rem;
  height: 4rem;
  margin: 0 0 1rem 0;
}
h2.low {
  font-family: "ibmplexsansjp_medium";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  color: #333333;
  letter-spacing: 0.1em;
  line-height: 120%;
  margin: 5rem 0 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
h2.low::before {
  content: "";
  display: block;
  background: url(../img/icon_h2.svg) no-repeat;
  background-size: contain;
  background-position: center top;
  width: 5rem;
  height: 4rem;
  margin: 0 0 1rem 0;
}
h2.first {
  margin: 0 0 2rem 0;
}

h3.low {
  color: #ffffff;
  background-color: #81B9E5;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.7rem;
  padding: 1.2rem 1rem 0.6rem 1.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2.5rem 0 1.3rem 0;
  line-height: 120%;
  position: relative;
}
h3.low::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0.8rem;
}
h3.first {
  margin: 0 0 1.3rem 0;
}

h4.low {
  color: #333333;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.6rem;
  margin: 2.4rem 0 1.3rem 0;
  padding: 0 0 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 120%;
  position: relative;
}
h4.low::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 20%;
  height: 2px;
  border-bottom: #F098BE 3px solid;
}
h4.low::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  border-bottom: #8DBFE7 3px solid;
}
h4.first {
  margin: 0 0 1rem 0;
}

h5.low {
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.5rem;
  color: #333333;
  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;
  margin: 2.4rem 0 1rem 0;
}
h5.low span {
  width: calc(100% - 1.4rem);
}
h5.low::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background: url(../img/icon_h5.svg) no-repeat;
  background-size: contain;
  margin: 0.2rem 0.3rem 0 0;
}
h5.first {
  margin: 0 0 1rem 0;
}

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

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title {
    font-family: "ibmplexsansjp_medium";
    font-size: 4.8rem;
    font-weight: normal;
    text-align: center;
    color: #333333;
    letter-spacing: 0.1em;
    line-height: 140%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  h2.top_title span {
    font-family: "robotocondensed_regular";
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 100%;
    color: #81B9E5;
    display: block;
    margin: 13px 0 0 0;
  }
  h2.top_title::before {
    content: "";
    display: block;
    background: url(../img/icon_h2.svg) no-repeat;
    background-size: contain;
    background-position: center top;
    width: 87px;
    height: 75px;
    margin: 0 0 14px 0;
  }
  h2.low {
    font-family: "ibmplexsansjp_medium";
    font-size: 4.8rem;
    font-weight: normal;
    text-align: center;
    color: #333333;
    letter-spacing: 0.1em;
    line-height: 140%;
    margin: 80px 0 30px 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;
  }
  h2.low::before {
    content: "";
    display: block;
    background: url(../img/icon_h2.svg) no-repeat;
    background-size: contain;
    background-position: center top;
    width: 87px;
    height: 75px;
    margin: 0 0 14px 0;
  }
  h2.first {
    margin: 0 0 30px 0;
  }
  h3.low {
    color: #ffffff;
    background-color: #81B9E5;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 3rem;
    padding: 13px 15px 11px 26px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 70px 0 20px 0;
    line-height: 120%;
    position: relative;
  }
  h3.low::before {
    content: "";
    width: 3px;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 6px;
  }
  h3.first {
    margin: 0 0 20px 0;
  }
  h4.low {
    color: #333333;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 2.6rem;
    margin: 40px 0 20px 0;
    padding: 0 0 9px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 120%;
    position: relative;
  }
  h4.low::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 76px;
    height: 2px;
    border-bottom: #F098BE 3px solid;
  }
  h4.low::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 2px;
    border-bottom: #8DBFE7 3px solid;
  }
  h4.first {
    margin: 0 0 20px 0;
  }
  h5.low {
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 2.4rem;
    color: #333333;
    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;
    margin: 30px 0 15px 0;
  }
  h5.low span {
    width: calc(100% - 16.5px);
  }
  h5.low::before {
    content: "";
    display: block;
    width: 38px;
    height: 33px;
    background: url(../img/icon_h5.svg) no-repeat;
    background-size: contain;
    margin: 0 10px 0 0;
  }
  h5.first {
    margin: 0 0 15px 0;
  }
  p {
    font-size: 1.6rem;
    margin: 0 0 30px 0;
    line-height: 160%;
    letter-spacing: 0.05em;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
table.timetable {
  padding: 0;
  margin: 0 auto;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  border-collapse: separate;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 140%;
  border-radius: 0.8rem;
}
table.timetable tr th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.1rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #ffffff;
  background-color: #81B9E5;
  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-family: "robotocondensed_regular";
  font-weight: normal;
  font-size: 1.1rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #333333;
  background-color: #F2F5F8;
  border-top: #ffffff 3px solid;
}
table.timetable tr td i {
  font-size: 4vw;
  color: #F098BE;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
  color: #333333;
}
table.timetable tr:first-child th:first-child {
  border-top-left-radius: 0.8rem;
}
table.timetable tr:first-child th:last-child {
  border-top-right-radius: 0.8rem;
}
table.timetable tr:last-child td:first-child {
  border-bottom-left-radius: 0.8rem;
}
table.timetable tr:last-child td:last-child {
  border-bottom-right-radius: 0.8rem;
}
table.timetable caption {
  caption-side: bottom;
  font-family: "ibmplexsansjp_medium";
  font-size: 1.2rem;
  margin: 0.6rem 0 0 0;
  width: 100%;
  color: #333333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
table.timetable caption span {
  background-color: #E87D9A;
  color: #ffffff;
  padding: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 100%;
  display: inline-block;
  border-radius: 0.3rem;
  margin: 0 0.5rem 0.5rem 0;
}

@media screen and (min-width: 768px), print {
  table.timetable {
    padding: 0;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 140%;
  }
  table.timetable tr th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 1.6rem;
    padding: 0;
    vertical-align: middle;
    color: #ffffff;
    background-color: #81B9E5;
    width: 10%;
    height: 65px;
    box-sizing: border-box;
  }
  table.timetable tr th.time {
    width: 25%;
    letter-spacing: 0.1em;
  }
  table.timetable tr td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "robotocondensed_regular";
    font-weight: normal;
    font-size: 1.8rem;
    padding: 0;
    vertical-align: middle;
    color: #333333;
    height: 58px;
    box-sizing: border-box;
    background-color: #F2F5F8;
    border-top: #ffffff 3px solid;
  }
  table.timetable tr td i {
    font-size: 1.8rem;
    color: #F098BE;
  }
  table.timetable tr td.time {
    width: 25%;
    text-align: center;
    color: #333333;
    font-family: "robotocondensed_regular";
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    padding: 0 0 0 8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  table.timetable tr:first-child th:first-child {
    border-top-left-radius: 20px;
  }
  table.timetable tr:first-child th:last-child {
    border-top-right-radius: 20px;
  }
  table.timetable tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
  }
  table.timetable tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
  }
  table.timetable caption {
    caption-side: bottom;
    font-size: 1.8rem;
    margin: 10px 0 0 0;
    width: 100%;
    color: #333333;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 160%;
    text-align: left;
  }
  table.timetable caption span {
    background-color: #E87D9A;
    color: #ffffff;
    padding: 10px 12px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 100%;
    display: inline-block;
    border-radius: 5px;
    margin: 0 9px 5px 0;
  }
}
/*テーブル*/
/* Scss Document */
/* =======================================================================

 共通項目

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

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

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

@media screen and (min-width: 768px), print {
  table.low_table_slide {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  table.low_table_slide caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_slide tr th {
    width: 40%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
    border: #AAAAAA 1px solid;
    background-color: #E5F4FF;
  }
  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: #AAAAAA 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: #E5F4FF;
  border-bottom: #AAAAAA 1px solid;
  border-left: #AAAAAA 1px solid;
  border-right: #AAAAAA 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: #AAAAAA 1px solid;
  border-left: #AAAAAA 1px solid;
  border-right: #AAAAAA 1px solid;
}
table.low_table_spblock tr td span {
  color: #488DC4;
  font-weight: bold;
}
table.low_table_spblock tr td span a {
  color: #488DC4;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock tr:first-child th {
  border-top: #AAAAAA 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: #E5F4FF;
    border-bottom: #AAAAAA 1px solid;
    border-left: #AAAAAA 1px solid;
    border-right: #AAAAAA 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: #AAAAAA 1px solid;
    border-left: #AAAAAA 1px solid;
    border-right: #AAAAAA 1px solid;
  }
  table.low_table_spblock tr td span {
    color: #488DC4;
    font-weight: bold;
  }
  table.low_table_spblock tr td span a {
    color: #488DC4;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock tr:first-child th {
    border-top: #AAAAAA 1px solid;
  }
  table.low_table_spblock tr:first-child td {
    border-top: #AAAAAA 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: #AAAAAA 1px solid;
  background-color: #E5F4FF;
}
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: #AAAAAA 1px solid;
  background-color: #ffffff;
}
table.low_table2 tr:first-child th {
  border-top: #AAAAAA 1px solid;
}
table.low_table2 tr:first-child td {
  border-top: #AAAAAA 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: #AAAAAA 1px solid;
    background-color: #E5F4FF;
  }
  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: #AAAAAA 1px solid;
    background-color: #ffffff;
  }
  table.low_table2 tr:first-child th {
    border-top: #AAAAAA 1px solid;
  }
  table.low_table2 tr:first-child td {
    border-top: #AAAAAA 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: #AAAAAA 1px solid;
  background-color: #E5F4FF;
}
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: #AAAAAA 1px solid;
  background-color: #ffffff;
}
table.low_table_slide2 tr:first-child th {
  border-top: #AAAAAA 1px solid;
}
table.low_table_slide2 tr:first-child td {
  border-top: #AAAAAA 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: #AAAAAA 1px solid;
    background-color: #E5F4FF;
  }
  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: #AAAAAA 1px solid;
    background-color: #ffffff;
  }
  table.low_table_slide2 tr:first-child th {
    border-top: #AAAAAA 1px solid;
  }
  table.low_table_slide2 tr:first-child td {
    border-top: #AAAAAA 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: #E5F4FF;
  border-bottom: #AAAAAA 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: #AAAAAA 1px solid;
}
table.low_table_spblock2 tr td span {
  color: #488DC4;
  font-weight: bold;
}
table.low_table_spblock2 tr td span a {
  color: #488DC4;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock2 tr:first-child th {
  border-top: #AAAAAA 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: #E5F4FF;
    border-bottom: #AAAAAA 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: #AAAAAA 1px solid;
  }
  table.low_table_spblock2 tr td span {
    color: #488DC4;
    font-weight: bold;
  }
  table.low_table_spblock2 tr td span a {
    color: #488DC4;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock2 tr:first-child th {
    border-top: #AAAAAA 1px solid;
  }
  table.low_table_spblock2 tr:first-child td {
    border-top: #AAAAAA 1px solid;
  }
}
/*テーブル丸角*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #333333;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #AAAAAA 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: #AAAAAA 1px solid;
  border-left: #AAAAAA 1px solid;
  border-right: #AAAAAA 1px solid;
  background-color: #E5F4FF;
  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: #AAAAAA 1px solid;
  border-right: #AAAAAA 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: #AAAAAA 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: #333333;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #AAAAAA 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: #AAAAAA 1px solid;
    border-left: #AAAAAA 1px solid;
    border-right: #AAAAAA 1px solid;
    background-color: #E5F4FF;
    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: #AAAAAA 1px solid;
    border-right: #AAAAAA 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: #AAAAAA 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: #333333;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #AAAAAA 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: #AAAAAA 1px solid;
  border-left: #AAAAAA 1px solid;
  border-right: #AAAAAA 1px solid;
  background-color: #5891BC;
  -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: #81B9E5;
  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: #FFF1F7;
  color: #333333;
  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: #AAAAAA 1px solid;
  border-left: #AAAAAA 1px solid;
  border-right: #AAAAAA 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: #333333;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #AAAAAA 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: #AAAAAA 1px solid;
    border-left: #AAAAAA 1px solid;
    border-right: #AAAAAA 1px solid;
    background-color: #E5F4FF;
    -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: #81B9E5;
    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: #FFF1F7;
    color: #333333;
    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: #AAAAAA 1px solid;
    border-left: #AAAAAA 1px solid;
    border-right: #AAAAAA 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: #333333;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0 0 0 0;
  line-height: 140%;
  border-radius: 1rem;
}
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-right: #ffffff 1px solid;
  background-color: #F098BE;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table_slide3 tr th:first-child {
  border-top-left-radius: 1rem;
}
table.low_table_slide3 tr th:last-child {
  border-top-right-radius: 1rem;
  border-right: none;
}
table.low_table_slide3 tr td {
  width: auto;
  padding: 1rem;
  border-bottom: #AAAAAA 1px solid;
  border-right: #AAAAAA 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 td.sub_color {
  background-color: #FFF1F7;
}
table.low_table_slide3 tr td:last-child {
  border-right: none;
}
table.low_table_slide3.equal_table tr th {
  width: 33%;
}
table.low_table_slide3.equal_table tr td {
  width: 33%;
}

/*横スライドテーブル用*/
.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: #333333;
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0 0 0 0;
    line-height: 160%;
    border-radius: 20px;
  }
  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-right: #ffffff 1px solid;
    background-color: #F098BE;
    color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table_slide3 tr th:first-child {
    border-top-left-radius: 20px;
  }
  table.low_table_slide3 tr th:last-child {
    border-top-right-radius: 20px;
    border-right: none;
  }
  table.low_table_slide3 tr td {
    width: auto;
    padding: 20px;
    border-bottom: #AAAAAA 1px solid;
    border-right: #AAAAAA 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 td.sub_color {
    background-color: #FFF1F7;
  }
  table.low_table_slide3 tr td:last-child {
    border-right: none;
  }
  table.low_table_slide3.equal_table tr th {
    width: 33%;
  }
  table.low_table_slide3.equal_table tr td {
    width: 33%;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #333333;
  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: #AAAAAA 1px solid;
  border-left: #AAAAAA 1px solid;
  border-right: #AAAAAA 1px solid;
  background-color: #E5F4FF;
  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: #81B9E5 1px solid;
  border-left: #AAAAAA 1px solid;
  border-right: #AAAAAA 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: #488DC4;
  font-size: 2.2rem;
  font-weight: bold;
}
table.low_table_spblock3 tr td span a {
  color: #488DC4;
  text-decoration: none;
}
table.low_table_spblock3 tr:first-child th {
  border-top: #AAAAAA 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: #333333;
    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: #AAAAAA 1px solid;
    border-left: #AAAAAA 1px solid;
    border-right: none;
    background-color: #E5F4FF;
    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: #AAAAAA 1px solid;
    border-left: #AAAAAA 1px solid;
    border-right: #AAAAAA 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: #81B9E5;
    font-size: 3rem;
    font-weight: bold;
  }
  table.low_table_spblock3 tr td span a {
    color: #81B9E5;
    text-decoration: none;
  }
  table.low_table_spblock3 tr:first-child th {
    border-top: #AAAAAA 1px solid;
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
  }
  table.low_table_spblock3 tr:first-child td {
    border-top: #AAAAAA 1px solid;
    border-top-right-radius: 10px;
  }
  table.low_table_spblock3 tr:last-child th {
    border-bottom-left-radius: 10px;
    border-bottom: #AAAAAA 1px solid;
  }
  table.low_table_spblock3 tr:last-child td {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 10px;
  }
}
/*画像*/
/* Scss Document */
/* =======================================================================

 共通項目

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

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

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

 共通項目

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

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

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

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

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

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

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

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

@media screen and (min-width: 768px), print {
  ul.list_normal {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.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 4px;
    background-size: 12px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準2列 maru*/
  ul.list_maru_two {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_two li {
    width: 45%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 4px;
    background-size: 12px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準3列 maru*/
  ul.list_maru_three {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: 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_three li {
    width: 30%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 4px;
    background-size: 12px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準4列 maru*/
  ul.list_maru_four {
    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_four li {
    width: 20%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 4px;
    background-size: 12px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準3列 maru*/
  ul.list_maru_beside {
    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_beside li {
    width: auto;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 4px;
    background-size: 12px;
    margin: 0 30px 10px 0;
    padding: 0 0 0 25px;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/*略歴*/
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: 20%;
  margin: 0 0 0.5rem 0;
}
dl.bio_list dd {
  width: 80%;
  margin: 0 0 0.5rem 0;
}

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

/*記号*/
dl.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 16px 0;
  line-height: 160%;
}
dl.title_box dt {
  width: 100%;
  margin: 0;
  background-color: #E5F4FF;
  color: #333333;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #AAAAAA 1px solid;
  border-right: #AAAAAA 1px solid;
  border-bottom: #AAAAAA 1px solid;
}
dl.title_box dt:first-child {
  border-top: #AAAAAA 1px solid;
}
dl.title_box dd {
  width: 100%;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #AAAAAA 1px solid;
  border-right: #AAAAAA 1px solid;
  border-bottom: #AAAAAA 1px solid;
}
dl.title_box dd ul.mb_none {
  margin: 0;
}

@media screen and (min-width: 768px), print {
  /*略歴*/
  dl.bio_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.bio_list dt {
    width: 60px;
    margin: 0 0 8px 0;
  }
  dl.bio_list dd {
    width: 1140px;
    margin: 0 0 8px 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 1rem 0;
  }
  dl.num_list dd {
    width: 1180px;
    margin: 0 0 1rem 0;
  }
  /*記号*/
  dl.symbol_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.symbol_list dt {
    width: 20px;
    margin: 0 0 1rem 0;
  }
  dl.symbol_list dd {
    width: 1180px;
    margin: 0 0 1rem 0;
  }
  /*タイトルボックス*/
  dl.title_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  dl.title_box dt {
    width: 100%;
    margin: 0;
    background-color: #E5F4FF;
    color: #333333;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #AAAAAA 1px solid;
    border-right: #AAAAAA 1px solid;
    border-bottom: #AAAAAA 1px solid;
  }
  dl.title_box dt:first-child {
    border-top: #AAAAAA 1px solid;
  }
  dl.title_box dd {
    width: 100%;
    margin: 0;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #AAAAAA 1px solid;
    border-right: #AAAAAA 1px solid;
    border-bottom: #AAAAAA 1px solid;
  }
  dl.title_box dd ul.mb_none {
    margin: 0;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

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

/*強調*/
.emphasis {
  background-color: #FFF1F7;
  border-radius: 1rem;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.emphasis p.mb_none {
  margin: 0;
}
.emphasis ul.mb_none {
  margin: 0;
}
.emphasis .sub_title {
  color: #333333;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  margin: 0 0 1.3rem 0;
  padding: 0 0 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 120%;
  position: relative;
  text-align: justify;
}
.emphasis .sub_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 20%;
  height: 2px;
  border-bottom: #F098BE 3px solid;
}
.emphasis .sub_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  border-bottom: #8DBFE7 3px solid;
}
.emphasis .sub_title.ajs {
  margin: 2.6rem 0 1.3rem 0;
}

/*二列*/
/*下層電話*/
.low_tel {
  margin: 0 0 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
}
.low_tel i {
  font-size: 1.4rem;
  background-color: #81B9E5;
  color: #ffffff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.5rem 0 0;
}
.low_tel span {
  font-size: 2rem;
  font-weight: bold;
}
.low_tel span a {
  color: #333333;
  text-decoration: none;
}

.text_tel span {
  color: #488DC4;
}
.text_tel span a {
  color: #488DC4;
}

@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 #81B9E5;
    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: #FFF1F7;
    border-radius: 20px;
    padding: 30px;
    -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 .sub_title {
    color: #333333;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 2.4rem;
    margin: 0 0 20px 0;
    padding: 0 0 9px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 120%;
    position: relative;
  }
  .emphasis .sub_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 76px;
    height: 2px;
    border-bottom: #F098BE 3px solid;
  }
  .emphasis .sub_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 2px;
    border-bottom: #8DBFE7 3px solid;
  }
  .emphasis .sub_title.ajs {
    margin: 40px 0 20px 0;
  }
  /*下層電話*/
  .low_tel {
    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-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;
    white-space: nowrap;
  }
  .low_tel i {
    font-size: 4rem;
    background-color: #81B9E5;
    color: #ffffff;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0.5rem 0 0;
  }
  .low_tel span {
    font-size: 4rem;
    font-weight: bold;
  }
  .low_tel span a {
    color: #333333;
    text-decoration: none;
  }
  .text_tel span {
    color: #488DC4;
  }
  .text_tel span a {
    color: #488DC4;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
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 {
  font-family: "fontello";
  content: "\e809";
  font-size: 1.4rem;
  color: #81B9E5;
  margin: 0 0.5rem;
}
ul.pankuzu_list li a {
  font-size: 1.4rem;
  color: #333333;
  text-decoration: none;
}
ul.pankuzu_list li:last-child:after {
  content: "";
  margin: 0;
}

@media screen and (min-width: 768px), print {
  ul.pankuzu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    width: 1200px;
    margin: 20px auto 0 auto;
  }
  ul.pankuzu_list li::after {
    font-family: "fontello";
    content: "\e809";
    font-size: 1.6rem;
    color: #81B9E5;
    margin: 0 10px;
  }
  ul.pankuzu_list li a {
    font-size: 1.6rem;
    color: #333333;
    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: #333333;
  font-size: 1.4rem;
  margin: 1.5rem 0 0 0;
  font-weight: bold;
}

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

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

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

.low_button {
  background-color: #F098BE;
  width: auto;
  height: auto;
  margin: 0 0 2rem 0;
  text-align: left;
  text-decoration: none;
  padding: 1.2rem 2.5rem 1rem 2.5rem;
  border-radius: 3rem;
  line-height: 100%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  font-family: "ibmplexsansjp_medium";
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (min-width: 768px), print {
  .low_link_text {
    color: #488DC4;
  }
  .low_link_text:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button {
    background-color: #F098BE;
    width: auto;
    height: auto;
    margin: 0 0 16px 0;
    text-align: left;
    text-decoration: none;
    padding: 25px 80px 20px 80px;
    line-height: 100%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff;
    font-family: "ibmplexsansjp_medium";
    font-size: 2rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button:hover {
    background-color: #497bc1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/*下層*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.doctor_name {
  text-align: right;
}

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

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

/*スライダー*/
.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;
  }
}
/* -----------------------------------------------------------
　初めての方へ
----------------------------------------------------------- */
dl.flow_box {
  border: #488DC4 1px solid;
  padding: 1rem 1rem 1.5rem 1rem;
  border-radius: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.flow_box dt {
  color: #333333;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.5rem;
  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: #81B9E5;
  color: #FFFFFF;
  width: 3.8rem;
  height: 3.8rem;
  font-family: "robotocondensed_regular";
  font-weight: normal;
  font-size: 2rem;
  margin: 0 1rem 0 0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: 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 dd {
  color: #333333;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 140%;
  padding: 0 0 0 4.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.flow_box dd.ajs {
  padding: 0;
}
dl.flow_box dd .sub_title {
  color: #333333;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  margin: 0 0 1.3rem 0;
  padding: 0 0 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 120%;
  position: relative;
  text-align: justify;
}
dl.flow_box dd .sub_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 20%;
  height: 2px;
  border-bottom: #F098BE 3px solid;
}
dl.flow_box dd .sub_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  border-bottom: #8DBFE7 3px solid;
}
@media screen and (min-width: 768px), print {
  dl.flow_box {
    border: #488DC4 1px solid;
    padding: 20px;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.flow_box dt {
    color: #333333;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 3rem;
    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: #81B9E5;
    color: #FFFFFF;
    width: 70px;
    height: 70px;
    font-family: "robotocondensed_regular";
    font-weight: normal;
    font-size: 3.6rem;
    margin: 0 26px 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 dd {
    color: #333333;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 180%;
    padding: 10px 0 0 95px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.flow_box dd.ajs {
    padding: 0;
  }
  dl.flow_box dd .sub_title {
    color: #333333;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 2.4rem;
    margin: 0 0 20px 0;
    padding: 0 0 9px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 120%;
    position: relative;
  }
  dl.flow_box dd .sub_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 76px;
    height: 2px;
    border-bottom: #F098BE 3px solid;
  }
  dl.flow_box dd .sub_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 2px;
    border-bottom: #8DBFE7 3px solid;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
.access_box .access_map .access_img_map {
  width: 100%;
  height: auto;
  display: block;
  border: #F098BE 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.access_box .access_map iframe.access_gmap {
  width: 100%;
  height: 100vw;
  display: block;
  margin: 0;
}
.access_box .access_map .access_gmap_link {
  background-color: #F098BE;
  width: 70%;
  height: auto;
  margin: 2rem auto 0 auto;
  text-align: center;
  text-decoration: none;
  padding: 1.2rem 2.5rem 1rem 2.5rem;
  border-radius: 3rem;
  line-height: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  font-family: "ibmplexsansjp_medium";
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (min-width: 768px), print {
  .access_box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
  }
  .access_box .access_info {
    width: 48%;
  }
  .access_box .access_map {
    width: 48%;
  }
  .access_box .access_map .access_img_map {
    width: 100%;
    height: auto;
    display: block;
    border: #F098BE 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 2rem 0;
  }
  .access_box .access_map iframe.access_gmap {
    width: 100%;
    height: 600px;
    display: block;
    margin: 0;
  }
  .access_box .access_map .access_gmap_link {
    background-color: #F098BE;
    width: 400px;
    height: auto;
    margin: 2rem auto 0 auto;
    text-align: center;
    text-decoration: none;
    padding: 25px 80px 20px 80px;
    border-radius: 4rem;
    line-height: 100%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff;
    font-family: "ibmplexsansjp_medium";
    font-size: 2rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .access_box .access_map .access_gmap_link:hover {
    background-color: #497bc1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/*メールフォームプロ用*/
/* 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: #E3E3E3;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  border-top: #628FB2 1px solid;
  border-left: #628FB2 1px solid;
  border-right: #628FB2 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: #628FB2 1px solid;
  border-left: #628FB2 1px solid;
  border-right: #628FB2 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: #628FB2 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: #E3E3E3;
    padding: 1.5rem 1rem 1.5rem 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #628FB2 1px solid;
    border-left: #628FB2 1px solid;
    border-right: #628FB2 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: #628FB2 1px solid;
    border-left: #628FB2 1px solid;
    border-right: #628FB2 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: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  padding: 0 0 13vw 0;
  /*ページ内リンク用*/
  /*scroll-behavior: smooth;*/
}

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

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

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

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.pc_none_span {
  display: inline;
}

.sp_none_span {
  display: none;
}

.first_box {
  margin: 2rem 0 0 0;
}

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

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

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

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

@media screen and (min-width: 768px), print {
  .wrapper {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .wrapper_low {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .main {
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    padding: 0;
  }
  .main_low {
    width: 1200px;
    height: auto;
    margin: 40px 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: 9999999;
}
header.header .header_box {
  /*ロゴとハンバーガー*/
}
header.header .header_box .header_top {
  width: 100%;
  height: 14vw;
  margin: 0;
  position: relative;
  z-index: 9999999;
  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: 70%;
  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: 100%;
  height: auto;
}
header.header .header_box {
  /*ヘッダー情報*/
}
header.header .header_box .header_info {
  display: none;
}

.side_web_link {
  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: 999999999;
    width: 100%;
    height: 160px;
  }
  header.header .header_box {
    width: 1200px;
    height: 160px;
    margin: 0 auto;
    position: relative;
    /*ロゴとハンバーガー*/
  }
  header.header .header_box .header_top {
    width: 443px;
    height: 86px;
    margin: 0;
    position: absolute;
    top: 35px;
    left: 10px;
    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: 443px;
    margin: 0;
  }
  header.header .header_box .header_top .head_logo a {
    display: block;
    width: 443px;
    text-decoration: none;
  }
  header.header .header_box .header_top .head_logo a img {
    width: 443px;
    height: auto;
  }
  header.header .header_box {
    /*ヘッダー情報*/
  }
  header.header .header_box .header_info {
    display: block;
    margin: 0;
    width: 700px;
    height: 40px;
    position: absolute;
    top: 35px;
    right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    /*住所*/
  }
  header.header .header_box .header_info .header_address {
    margin: 0 18px 0 0;
    text-align: right;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 100%;
    letter-spacing: 0.1em;
  }
  header.header .header_box .header_info .header_address i {
    color: #81B9E5;
  }
  header.header .header_box .header_info {
    /*電話番号*/
  }
  header.header .header_box .header_info .header_tel {
    margin: 0;
  }
  header.header .header_box .header_info .header_tel span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    font-family: "robotocondensed_regular";
    font-weight: normal;
    font-size: 3.6rem;
    color: #333333;
    letter-spacing: 0.1em;
  }
  header.header .header_box .header_info .header_tel span i {
    font-size: 2.6rem;
    background-color: #81B9E5;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 7px 0 0;
  }
  header.header .header_box .header_info .header_tel span a {
    text-decoration: none;
    color: #333333;
  }
  .side_web_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 60px;
    height: 166px;
    text-decoration: none;
    color: #ffffff;
    background-color: #F098BE;
    font-family: "ibmplexsansjp_medium";
    font-size: 1.8rem;
    font-weight: normal;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.1em;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    position: fixed;
    top: 213px;
    right: 0;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_web_link span {
    white-space: pre;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    display: inline-block;
  }
  .side_web_link span i {
    font-size: 3.5rem;
    margin: 0 0 8px 0;
  }
  .side_web_link:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　グローバルナビ
----------------------------------------------------------- */
nav.main_nav_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  nav.main_nav_pc {
    display: block;
    /*width: 710px;*/
    width: 730px;
    height: 30px;
    margin: 0;
    position: absolute;
    top: auto;
    bottom: 39px;
    right: 0;
  }
  nav.main_nav_pc ul {
    width: auto;
    height: 30px;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  nav.main_nav_pc ul li {
    display: block;
    width: auto;
    height: 30px;
    margin: 0;
    padding: 0 5px;
    border-right: #E3E3E3 1px solid;
    height: 18px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc ul li.treatment {
    width: 110px;
  }
  nav.main_nav_pc ul li.treatment a::after {
    content: "\e805";
    font-family: "fontello";
    font-size: 1rem;
    margin: 0 0 0 3px;
    display: inline-block;
    color: #81B9E5;
  }
  nav.main_nav_pc ul li.treatment ul li a::after {
    content: "";
    margin: 0;
  }
  nav.main_nav_pc ul li.treatment:hover {
    cursor: pointer;
    cursor: hand;
  }
  nav.main_nav_pc ul li.open_treatment a::after {
    content: "\e805";
    font-family: "fontello";
    font-size: 1rem;
    margin: 0 0 0 3px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    display: inline-block;
    color: #81B9E5;
  }
  nav.main_nav_pc ul li:last-child {
    border-right: none;
  }
  nav.main_nav_pc ul li a {
    width: 100%;
    height: 18px;
    text-decoration: none;
    text-align: center;
    color: #333333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
    font-family: "ibmplexsansjp_medium";
    font-size: 1.6rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    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 ul li a:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li .sub_nav_box {
    display: none;
    width: 538px;
    background-color: #ffffff;
    margin: 6px 0 0 -220px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    -webkit-box-shadow: 0 10px 20px rgba(51, 51, 51, 0.15);
            box-shadow: 0 10px 20px rgba(51, 51, 51, 0.15);
    padding: 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc ul li .sub_nav_box ul {
    width: 498px;
    height: auto;
    margin: 0 auto 0 auto;
    padding: 0;
    position: relative;
    z-index: 9999;
    background-color: #ffffff;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -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;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li {
    all: initial;
    display: block;
    width: 156px;
    height: auto;
    margin: 0 0 10px 0;
    padding: 0;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a {
    all: initial;
    width: 156px;
    height: 46px;
    color: #333333;
    font-size: 1.6rem;
    text-decoration: none;
    background-color: #ffffff;
    padding: 0 0 0 17px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a::before {
    font-family: "fontello";
    font-size: 1rem;
    content: "\e804";
    margin: 0 6px 0 0;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a:hover {
    cursor: pointer;
    cursor: hand;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #81B9E5;
    color: #ffffff;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a:hover::before {
    color: #ffffff;
  }
  .nav_add {
    position: fixed !important;
    top: 0 !important;
    z-index: 9999999999 !important;
    width: 100% !important;
    height: 50px !important;
    margin: 0 auto !important;
    background-color: #ffffff;
  }
  .nav_add ul {
    width: 770px !important;
    margin: 10px auto 0 auto !important;
  }
  .nav_add ul .sub_nav_box ul {
    width: 498px !important;
  }
}
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
/*トップキービジュアル*/
.key_visual {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 74vw;
}
.key_visual .key {
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
  /*大枠*/
}
.key_visual .key .key_bg {
  width: 100%;
  height: 60vw;
}
.key_visual .key .key_01 {
  background: url("../img/key_visual_01.webp") no-repeat;
  background-size: 130%;
  background-position: left -13% top;
}
.key_visual .key_contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 74vw;
}
.key_visual .key_contents .key_text {
  background: url("../img/index_key_heart.svg") no-repeat;
  background-size: 35%;
  background-position: left center;
  font-family: "ibmplexsansjp_medium";
  font-size: 1.1rem;
  text-align: left;
  color: #ffffff;
  text-shadow: 0 0 20px #628FB2;
  width: 80%;
  height: 25vw;
  margin: 0 0 0 0;
  position: absolute;
  bottom: 16vw;
  left: 2rem;
  right: 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;
}
.key_visual .key_contents .key_open {
  position: absolute;
  bottom: 18vw;
  right: 5%;
  width: 90%;
  height: 15vw;
  background: url("../img/index_key_blue_sp.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 0 0.2rem 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.key_visual .key_contents .key_open p {
  font-family: "robotocondensed_regular";
  font-weight: normal;
  font-size: 1.3rem;
  text-align: center;
  margin: 0;
  color: #ffffff;
  line-height: 130%;
}
.key_visual .key_contents .key_open p span {
  font-family: "ibmplexsansjp_medium";
  font-size: 1rem;
}
.key_visual .key_contents .key_open p.text {
  font-family: "ibmplexsansjp_medium";
  font-size: 1.4rem;
  margin: 0 0 0 0.5rem;
}
.key_visual .key_contents .key_event {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 90%;
  height: 15vw;
  background: url("../img/index_key_pink_sp.svg") no-repeat;
  background-size: contain;
  padding: 0 0.5rem 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.key_visual .key_contents .key_event p {
  font-family: "robotocondensed_regular";
  font-weight: normal;
  font-size: 1.6rem;
  text-align: center;
  margin: 0;
  color: #ffffff;
  line-height: 130%;
}
.key_visual .key_contents .key_event p span {
  font-family: "ibmplexsansjp_medium";
  font-size: 1.1rem;
}
.key_visual .key_contents .key_event p.small {
  font-family: "ibmplexsansjp_medium";
  font-size: 1.8rem;
  margin: 0 0 0 1rem;
}

/*下層キービジュアル*/
.key_visual_low_bg {
  position: relative;
  z-index: 1;
  height: 35vw;
}
.key_visual_low_bg .key_visual_low {
  width: 100%;
  height: 30vw;
  background: url("../img/key_visual_low.webp") no-repeat;
  background-size: 130%;
  background-position: left -13% top;
  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;
  position: relative;
  z-index: 2;
}
.key_visual_low_bg .key_visual_low h1 {
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 2.2rem;
  text-align: center;
  color: #ffffff;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px #628FB2, 0 0 20px #628FB2;
  position: relative;
  z-index: 3;
}
.key_visual_low_bg::after {
  content: "";
  display: block;
  width: 96%;
  height: 20vw;
  background: linear-gradient(135deg, rgb(199, 229, 252) 0%, rgb(254, 230, 240) 100%);
  margin: 0 0 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 0 0 0 0;
  border-bottom-right-radius: 2rem;
}

@media screen and (min-width: 768px), print {
  /*トップキービジュアル*/
  .key_visual {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 780px;
  }
  .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100% !important;
    height: 780px;
    margin: 0 auto;
    overflow: hidden;
    /*大枠*/
  }
  .key_visual .key .key_bg {
    width: 100%;
    height: 780px;
  }
  .key_visual .key .key_01 {
    background: url("../img/key_visual_01.webp") no-repeat;
    background-size: 1835px;
    background-position: right top;
  }
  .key_visual .key_contents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    width: 1180px;
    height: 780px;
    margin: 0 auto;
  }
  .key_visual .key_contents .key_text {
    background: url("../img/index_key_heart.svg") no-repeat;
    background-size: 363px;
    background-position: left center;
    font-family: "ibmplexsansjp_medium";
    font-size: 3rem;
    text-align: left;
    color: #ffffff;
    text-shadow: 0 0 20px #628FB2;
    line-height: 210%;
    width: 746px;
    height: 312px;
    margin: 0;
    position: absolute;
    bottom: -54px;
    left: -73px;
    right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .key_visual .key_contents .key_open {
    position: absolute;
    bottom: -17px;
    right: 230px;
    width: 216px;
    height: 215px;
    background: url("../img/index_key_blue.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    padding: 0 8px 18px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .key_visual .key_contents .key_open p {
    font-family: "robotocondensed_regular";
    font-weight: normal;
    font-size: 3rem;
    text-align: center;
    margin: 0 0 5px 0;
    color: #ffffff;
    line-height: 100%;
  }
  .key_visual .key_contents .key_open p span {
    font-family: "ibmplexsansjp_medium";
    font-size: 1.8rem;
  }
  .key_visual .key_contents .key_open p.text {
    margin: 5px 0 0 0;
    font-family: "ibmplexsansjp_medium";
    font-size: 2.6rem;
  }
  .key_visual .key_contents .key_event {
    position: absolute;
    bottom: -17px;
    right: 0;
    width: 216px;
    height: 215px;
    background: url("../img/index_key_pink.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    padding: 0 8px 2px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .key_visual .key_contents .key_event p {
    font-family: "robotocondensed_regular";
    font-weight: normal;
    font-size: 3rem;
    text-align: center;
    margin: 0 0 5px 0;
    color: #ffffff;
    line-height: 100%;
  }
  .key_visual .key_contents .key_event p span {
    font-family: "ibmplexsansjp_medium";
    font-size: 1.8rem;
  }
  .key_visual .key_contents .key_event p.small {
    margin: 5px 0 -10px 0;
    font-family: "ibmplexsansjp_medium";
    font-size: 2.6rem;
  }
  /*下層キービジュアル*/
  .key_visual_low_bg {
    position: relative;
    z-index: 1;
    height: 489px;
  }
  .key_visual_low_bg .key_visual_low {
    width: 100%;
    height: 400px;
    background: url("../img/key_visual_low.webp") no-repeat;
    background-size: 1835px;
    background-position: right top;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .key_visual_low_bg .key_visual_low h1 {
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 4rem;
    text-align: center;
    color: #ffffff;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px #628FB2, 0 0 20px #628FB2;
  }
  .key_visual_low_bg::after {
    content: "";
    display: block;
    width: calc(50% + 756px);
    height: 291px;
    background: linear-gradient(135deg, rgb(199, 229, 252) 0%, rgb(254, 230, 240) 100%);
    margin: 0 0 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 0 0 0 0;
    border-bottom-right-radius: 100px;
  }
}
/* -----------------------------------------------------------
　お知らせ矢印画像
----------------------------------------------------------- */
.notice_bg {
  width: 100%;
  position: relative;
  overflow: visible;
}
.notice_bg::after {
  content: "";
  display: block;
  width: 96%;
  height: 100%;
  background: linear-gradient(135deg, rgb(199, 229, 252) 0%, rgb(254, 230, 240) 100%);
  margin: 0 0 0 0;
  position: absolute;
  top: -68vw;
  left: 0;
  z-index: 2;
  padding: 68vw 0 4rem 0;
  border-bottom-right-radius: 2rem;
}
.notice_bg .notice_frame {
  width: 85%;
  height: auto;
  margin: 4rem auto 2.7rem auto;
  position: relative;
  z-index: 3;
  background-color: #ffffff;
  border-radius: 1.5rem;
  overflow: visible;
}
.notice_bg .notice_frame h2.top_title {
  margin: 0 0 0 0;
  position: relative;
  top: -2rem;
  z-index: 3;
}
.notice_bg .notice_frame .notice_box {
  width: 98%;
  height: auto;
  margin: -3rem auto 0 auto;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 3;
}
.notice_bg .notice_frame .notice_box dl {
  height: auto;
  margin: 0 auto 0 auto;
  width: 96%;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding: 0 0 1.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: #DDDDDD 1px solid;
}
.notice_bg .notice_frame .notice_box dl dt {
  color: #333333;
  margin: 1rem 0 0 0;
  padding: 2rem 0 1rem 2rem;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.5rem;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
  line-height: 120%;
  position: relative;
  border-top: #DDDDDD 1px solid;
}
.notice_bg .notice_frame .notice_box dl dt::before {
  display: block;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/icon_arrow-up-line.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 2.2rem;
}
.notice_bg .notice_frame .notice_box dl dt.open::before {
  content: "";
}
.notice_bg .notice_frame .notice_box dl dt.close::before {
  content: "";
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.notice_bg .notice_frame .notice_box dl dt:first-child {
  border-top: none;
}
.notice_bg .notice_frame .notice_box dl dd {
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
  color: #333333;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  text-align: justify;
  line-height: 120%;
  display: none;
}
.notice_bg .notice_frame .notice_box dl dd.open {
  display: block;
}
.notice_bg .notice_frame .notice_box dl dd p {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
}
.notice_bg .notice_frame .notice_box dl dd p a {
  color: #488DC4;
}

@media screen and (min-width: 768px), print {
  .notice_bg {
    width: 100%;
    position: relative;
    overflow: visible;
  }
  .notice_bg::after {
    content: "";
    display: block;
    width: calc(50% + 756px);
    height: 100%;
    background: linear-gradient(135deg, rgb(199, 229, 252) 0%, rgb(254, 230, 240) 100%);
    margin: 0 0 0 0;
    position: absolute;
    top: -670px;
    left: 0;
    z-index: 2;
    padding: 670px 0 123px 0;
    border-bottom-right-radius: 100px;
  }
  .notice_bg .notice_frame {
    width: 1180px;
    height: auto;
    margin: 122px auto 0 auto;
    padding: 0 0 73px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: visible;
    position: relative;
    z-index: 3;
    background-color: #ffffff;
    border-radius: 50px;
    overflow: visible;
  }
  .notice_bg .notice_frame h2.top_title {
    margin: 0 0 0 0;
    position: relative;
    top: -32px;
    z-index: 3;
  }
  .notice_bg .notice_frame .notice_box {
    width: 900px;
    height: auto;
    margin: 8px auto 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_bg .notice_frame .notice_box dl {
    height: auto;
    margin: 0;
    width: 900px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    padding: 0 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: #DDDDDD 1px solid;
  }
  .notice_bg .notice_frame .notice_box dl dt {
    color: #333333;
    margin: 0 0 14px 0;
    padding: 30px 0 0 34px;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 2.2rem;
    text-align: justify;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    letter-spacing: 0.1em;
    line-height: 130%;
    position: relative;
    border-top: #DDDDDD 1px solid;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_bg .notice_frame .notice_box dl dt::before {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background: url("../img/icon_arrow-up-line.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 30px;
  }
  .notice_bg .notice_frame .notice_box dl dt.open::before {
    content: "";
  }
  .notice_bg .notice_frame .notice_box dl dt.close::before {
    content: "";
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  .notice_bg .notice_frame .notice_box dl dt:first-child {
    border-top: none;
    padding: 0 0 0 34px;
  }
  .notice_bg .notice_frame .notice_box dl dt:first-child::before {
    top: 0px;
  }
  .notice_bg .notice_frame .notice_box dl dt:hover {
    cursor: pointer;
    cursor: hand;
    color: #F098BE;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_bg .notice_frame .notice_box dl dd {
    margin: 0 0 24px 0;
    padding: 0 0 0 0;
    color: #333333;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-weight: normal;
    font-size: 1.8rem;
    text-align: justify;
    line-height: 200%;
    display: none;
  }
  .notice_bg .notice_frame .notice_box dl dd.open {
    display: block;
  }
  .notice_bg .notice_frame .notice_box dl dd p {
    font-size: 1.8rem;
    line-height: 200%;
    margin: 0 0 10px 0;
  }
  .notice_bg .notice_frame .notice_box dl dd p a {
    color: #488DC4;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
.features_frame {
  width: 96%;
  margin: 7.5rem auto 0 auto;
}
.features_frame h2.top_title {
  margin: 0 0 3rem 0;
}
.features_frame .features_box {
  margin: 0 0 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.features_frame .features_box section {
  width: 96%;
  position: relative;
  padding: 5rem 0 0 3.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: -10vw auto 0 auto;
}
.features_frame .features_box section h3.features_title {
  margin: 0 0 2rem 0;
}
.features_frame .features_box section h3.features_title span {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.features_frame .features_box section h3.features_title span::before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 100%;
  height: 0.6rem;
  background: linear-gradient(135deg, rgb(199, 229, 252) 0%, rgb(254, 230, 240) 100%);
}
.features_frame .features_box section h3.features_title span span {
  all: initial;
  position: relative;
  z-index: 3;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 160%;
}
.features_frame .features_box section h3.features_title span span::before {
  all: initial;
  content: "";
  display: none;
}
.features_frame .features_box section .features_no {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 6rem;
  height: 6rem;
  background: url("../img/index_feature_title.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #ffffff;
  border-radius: 50%;
  font-family: "robotocondensed_regular";
  font-weight: normal;
  font-size: 1.8rem;
  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: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.features_frame .features_box section .features_no span {
  font-size: 0.8rem;
}
.features_frame .features_box section .features_text {
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 140%;
}
.features_frame .features_box figure {
  width: 96%;
  margin: 0 auto 0 auto;
}
.features_frame .features_box figure img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px), print {
  .features_frame {
    width: 1270px;
    margin: 212px auto 0 auto;
  }
  .features_frame h2.top_title {
    margin: 0 0 94px 0;
  }
  .features_frame .features_box {
    width: 1270px;
    margin: 0 0 92px 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;
  }
  .features_frame .features_box section {
    width: 590px;
    position: relative;
    padding: 114px 0 0 88px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 45px;
  }
  .features_frame .features_box section h3.features_title {
    margin: 0 0 28px 0;
  }
  .features_frame .features_box section h3.features_title span {
    position: relative;
    z-index: 2;
    display: inline-block;
  }
  .features_frame .features_box section h3.features_title span::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 100%;
    height: 13px;
    background: linear-gradient(135deg, rgb(199, 229, 252) 0%, rgb(254, 230, 240) 100%);
  }
  .features_frame .features_box section h3.features_title span span {
    all: initial;
    position: relative;
    z-index: 3;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 3.6rem;
    line-height: 160%;
    letter-spacing: 0.12em;
  }
  .features_frame .features_box section h3.features_title span span::before {
    all: initial;
    content: "";
    display: none;
  }
  .features_frame .features_box section .features_no {
    position: absolute;
    top: 0;
    left: 0;
    width: 148px;
    height: 147.573px;
    background: url("../img/index_feature_title.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    background-color: #ffffff;
    border-radius: 50%;
    font-family: "robotocondensed_regular";
    font-weight: normal;
    font-size: 4rem;
    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: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .features_frame .features_box section .features_no span {
    font-size: 1.4rem;
  }
  .features_frame .features_box section .features_text {
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 205%;
    width: 425px;
  }
  .features_frame .features_box figure {
    width: 615px;
    margin: 0 0 0 0;
  }
  .features_frame .features_box figure img {
    width: 615px;
    height: auto;
    display: block;
  }
  .features_frame .features_box.fb_left section {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .features_frame .features_box.fb_left figure {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .features_frame .features_box.fb_right section {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .features_frame .features_box.fb_right figure {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .features_frame .features_box.fb01 section {
    margin: 10px 0 0 45px;
  }
  .features_frame .features_box.fb02 section {
    margin: 54px 0 0 45px;
  }
  .features_frame .features_box.fb03 section {
    margin: 47px 0 0 45px;
  }
  .features_frame .features_box.fb04 section {
    margin: 49px 0 0 45px;
  }
  .features_frame .features_box.fb05 section {
    margin: 10px 0 0 45px;
  }
  .features_frame .features_box.fb06 section {
    margin: 70px 0 0 45px;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.treatment_frame {
  width: 100%;
  margin: 0 0 8rem 0;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: visible;
}
.treatment_frame::after {
  content: "";
  display: block;
  width: 96%;
  height: calc(100% - 2rem);
  background: url("../img/index_medical_bg.png") no-repeat;
  background-size: cover;
  margin: 0 0 0 0;
  position: absolute;
  top: 2rem;
  left: 0;
  z-index: 2;
  padding: 68vw 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top-right-radius: 4rem;
  border-bottom-right-radius: 4rem;
}
.treatment_frame::before {
  content: "";
  display: block;
  width: 96%;
  height: calc(100% - 4rem);
  background: url("../img/index_medical_bg2.png") no-repeat;
  background-size: cover;
  margin: 0 0 0 0;
  position: absolute;
  top: 8rem;
  right: 0;
  z-index: 2;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
}
.treatment_frame h2.top_title {
  position: relative;
  z-index: 3;
}
.treatment_frame ul.treatment_list {
  width: 90%;
  margin: 2rem auto 0 auto;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.treatment_frame ul.treatment_list li {
  width: 48%;
  margin: 0 0 3rem 0;
  text-align: center;
}
.treatment_frame ul.treatment_list li a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333333;
  font-family: "ibmplexsansjp_medium";
  font-size: 1.4rem;
  font-weight: normal;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.treatment_frame ul.treatment_list li a::before {
  content: "";
  display: block;
  margin: 0 auto 1.5rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}
.treatment_frame ul.treatment_list li a span {
  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;
}
.treatment_frame ul.treatment_list li a span::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/icon_arrow-r-line.svg") no-repeat;
  background-size: contain;
  display: inline-block;
  margin: -0.1rem 0.5rem 0 0;
}
.treatment_frame ul.treatment_list li.treatment_01 a::before {
  background: url("../img/index_icon_01_internal_medicine.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_02 a::before {
  background: url("../img/index_icon_02_cardiology.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_03 a::before {
  background: url("../img/index_icon_03_visit.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_04 a::before {
  background: url("../img/index_icon_04_check.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_05 a::before {
  background: url("../img/index_icon_05_vaccination.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_06 a::before {
  background: url("../img/index_icon_06_arrhythmia.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_07 a::before {
  background: url("../img/index_icon_07_heart_failure.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_08 a::before {
  background: url("../img/index_icon_08_angina.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_09 a::before {
  background: url("../img/index_icon_09_hypertension.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_10 a::before {
  background: url("../img/index_icon_10_diabetes.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_11 a::before {
  background: url("../img/index_icon_11_dyslipemia.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}
.treatment_frame ul.treatment_list li.treatment_12 a::before {
  background: url("../img/index_icon_12_hyperuricemia.svg") no-repeat;
  background-size: 70%;
  background-position: center center;
  background-color: #ffffff;
}

@media screen and (min-width: 768px), print {
  .treatment_frame {
    width: 100%;
    margin: 30px 0 234px 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .treatment_frame::after {
    content: "";
    display: block;
    width: 1784px;
    height: 787px;
    background: url("../img/index_medical_bg.png") no-repeat;
    background-size: cover;
    margin: 0 0 0 0;
    position: absolute;
    top: 36px;
    left: 0;
    z-index: 2;
    padding: 0 0 0 0;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
  }
  .treatment_frame::before {
    content: "";
    display: block;
    width: 1770px;
    height: 768px;
    background: url("../img/index_medical_bg2.png") no-repeat;
    background-size: cover;
    margin: 0 0 0 0;
    position: absolute;
    top: 154px;
    right: 0;
    z-index: 2;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
  }
  .treatment_frame h2.top_title {
    position: relative;
    z-index: 3;
  }
  .treatment_frame ul.treatment_list {
    width: 1200px;
    margin: 69px auto 0 auto;
    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;
    position: relative;
    z-index: 3;
  }
  .treatment_frame ul.treatment_list li {
    width: 175px;
    margin: 0 0 70px 0;
    text-align: center;
  }
  .treatment_frame ul.treatment_list li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #333333;
    font-family: "ibmplexsansjp_medium";
    font-size: 2rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame ul.treatment_list li a::before {
    content: "";
    display: block;
    margin: 0 auto 18px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  }
  .treatment_frame ul.treatment_list li a span {
    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;
  }
  .treatment_frame ul.treatment_list li a span::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url("../img/icon_arrow-r-line.svg") no-repeat;
    background-size: contain;
    display: inline-block;
    margin: -2px 10px 0 0;
  }
  .treatment_frame ul.treatment_list li a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .treatment_frame ul.treatment_list li.treatment_01 a::before {
    background: url("../img/index_icon_01_internal_medicine.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_02 a::before {
    background: url("../img/index_icon_02_cardiology.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_03 a::before {
    background: url("../img/index_icon_03_visit.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_04 a::before {
    background: url("../img/index_icon_04_check.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_05 a::before {
    background: url("../img/index_icon_05_vaccination.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_06 a::before {
    background: url("../img/index_icon_06_arrhythmia.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_07 a::before {
    background: url("../img/index_icon_07_heart_failure.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_08 a::before {
    background: url("../img/index_icon_08_angina.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_09 a::before {
    background: url("../img/index_icon_09_hypertension.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_10 a::before {
    background: url("../img/index_icon_10_diabetes.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_11 a::before {
    background: url("../img/index_icon_11_dyslipemia.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
  .treatment_frame ul.treatment_list li.treatment_12 a::before {
    background: url("../img/index_icon_12_hyperuricemia.svg") no-repeat;
    background-size: 100px;
    background-position: center center;
    background-color: #ffffff;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  background: linear-gradient(135deg, rgb(199, 229, 252) 0%, rgb(254, 230, 240) 100%);
  padding: 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.overview .overview_box {
  width: 96%;
  margin: 0 auto;
  padding: 2rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 2rem;
}
.overview .overview_box .overview_logo {
  width: 70%;
  margin: 0 auto 2rem auto;
  display: block;
}
.overview .overview_box .overview_logo img {
  width: 100%;
}
.overview .overview_box .overview_info_box_top .overview_address {
  margin: 0 0 1rem 0;
  text-align: center;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 140%;
  letter-spacing: 0.1em;
}
.overview .overview_box .overview_info_box_top .overview_address i {
  color: #81B9E5;
}
.overview .overview_box .overview_info_box_top .overview_tel {
  margin: 0;
}
.overview .overview_box .overview_info_box_top .overview_tel span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  font-family: "robotocondensed_regular";
  font-weight: normal;
  font-size: 2.4rem;
  color: #333333;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.overview .overview_box .overview_info_box_top .overview_tel span i {
  font-size: 2rem;
  background-color: #81B9E5;
  color: #ffffff;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.5rem 0 0;
}
.overview .overview_box .overview_info_box_top .overview_tel span a {
  text-decoration: none;
  color: #333333;
  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;
  white-space: nowrap;
}
.overview .overview_box .overview_info_box {
  /*左側*/
}
.overview .overview_box .overview_info_box .overview_info_box_left {
  width: 100%;
}
.overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list {
  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-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 160%;
}
.overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list dt {
  width: 30%;
  margin: 0 0 1rem 0;
  padding: 0.5rem 0;
  color: #5891BC;
  background-color: #D9EBF9;
  border-radius: 0.3rem;
  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 .overview_info_box_left dl.overview_list dd {
  width: 68%;
  margin: 0 0 1rem 0;
  padding: 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
}
.overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list dd a {
  color: #488DC4;
  text-decoration: none;
}
.overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list dd img {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.2rem 0.5rem 0 0;
}
.overview .overview_box .overview_info_box {
  /*右側*/
}
.overview .overview_box .overview_info_box .overview_info_box_right {
  margin: 2rem 0 0 0;
}
.overview .overview_box .overview_info_box .overview_info_box_right .overview_timetable {
  width: 96%;
  margin: 0 auto;
}
.overview .overview_box iframe.googlemap {
  width: 96%;
  height: 100vw;
  display: block;
  margin: 2rem auto 0 auto;
  border-radius: 2rem;
}
.overview .overview_box .overview_map_link {
  width: 60%;
  height: 14vw;
  margin: 2rem auto 0 auto;
  background: url("../img/btn_line.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 100%;
  color: #333333;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    background: linear-gradient(135deg, rgb(199, 229, 252) 0%, rgb(254, 230, 240) 100%);
    padding: 80px 0 80px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .overview .overview_box {
    width: 1180px;
    margin: 0 auto;
    padding: 46px 0 46px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 2rem;
    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_logo {
    width: 561px;
    margin: 0 auto 45px auto;
    display: block;
    text-align: center;
  }
  .overview .overview_box .overview_logo img {
    width: 561px;
    display: block;
    margin: 0 auto;
  }
  .overview .overview_box .overview_info_box_top {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .overview .overview_box .overview_info_box_top .overview_address {
    margin: 0 54px 0 0;
    text-align: right;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: 0.1em;
  }
  .overview .overview_box .overview_info_box_top .overview_address i {
    color: #81B9E5;
  }
  .overview .overview_box .overview_info_box_top .overview_tel {
    margin: 0;
  }
  .overview .overview_box .overview_info_box_top .overview_tel span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    font-family: "robotocondensed_regular";
    font-weight: normal;
    font-size: 3.6rem;
    color: #333333;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .overview .overview_box .overview_info_box_top .overview_tel span i {
    font-size: 2.6rem;
    background-color: #81B9E5;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 7px 0 0;
  }
  .overview .overview_box .overview_info_box_top .overview_tel span a {
    text-decoration: none;
    color: #333333;
    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;
    white-space: nowrap;
  }
  .overview .overview_box .overview_info_box {
    width: 1000px;
    margin: 66px auto 100px 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;
    /*左側*/
  }
  .overview .overview_box .overview_info_box .overview_info_box_left {
    width: 500px;
  }
  .overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list {
    width: 457px;
    margin: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 160%;
  }
  .overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list dt {
    width: 133px;
    height: 59px;
    margin: 0 0 14px 0;
    padding: 0;
    color: #5891BC;
    background-color: #D9EBF9;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list dt.long {
    height: 159px;
  }
  .overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list dd {
    width: 309px;
    margin: 0 0 1rem 0;
    height: 59px;
    margin: 0 0 14px 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #333333;
    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;
  }
  .overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list dd a {
    color: #488DC4;
    text-decoration: none;
  }
  .overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list dd img {
    width: 18.333px;
    height: 18.333px;
    margin: -4px 8px 0 0;
  }
  .overview .overview_box .overview_info_box .overview_info_box_left dl.overview_list dd.long {
    height: 159px;
  }
  .overview .overview_box .overview_info_box {
    /*右側*/
  }
  .overview .overview_box .overview_info_box .overview_info_box_right {
    width: 500px;
    margin: 0 0 0 0;
  }
  .overview .overview_box .overview_info_box .overview_info_box_right .overview_timetable {
    width: 100%;
    margin: 0;
  }
  .overview .overview_box iframe.googlemap {
    width: 1000px;
    height: 300px;
    display: block;
    margin: 20px auto 0 auto;
    border-radius: 40px;
  }
  .overview .overview_box .overview_map_link {
    width: 263px;
    height: 71px;
    margin: 28px auto 0 auto;
    background: url("../img/btn_line.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    text-decoration: none;
    line-height: 100%;
    color: #333333;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .overview .overview_box .overview_map_link:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .overview iframe.googlemap {
    width: 100%;
    height: 500px;
    display: block;
    margin: 0;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer .footer_frame {
  display: none;
}
footer .copyright {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.05em;
  background-color: #81B9E5;
}
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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: #ffffff 1px solid;
}
.footer_link a.footer_tel {
  width: 45%;
  margin: 0;
  color: #ffffff;
  background-color: #81B9E5;
  text-align: center;
  font-family: "robotocondensed_regular";
  font-weight: normal;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  border-right: #ffffff 1px solid;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_link a.footer_reserve {
  width: 40%;
  margin: 0;
  color: #ffffff;
  background-color: #F098BE;
  text-align: center;
  font-family: "ibmplexsansjp_medium";
  font-weight: normal;
  font-size: 1.6rem;
  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: #81B9E5;
  width: 15%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_link .smoothScrolls a {
  width: 100%;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0 0 0 0;
    padding: 53px 0 0 0;
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 257px;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    display: block;
    width: 1200px;
    margin: 0 auto 0 auto;
  }
  footer .footer_frame ul.footer_list {
    line-height: 130%;
    font-size: 1.6rem;
    margin: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer_frame ul.footer_list li {
    width: auto;
    height: 16px;
    margin: 0 10px 22px 0;
    padding: 0 10px 0 0;
    list-style-type: none;
    position: relative;
    border-right: #333333 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .footer_frame ul.footer_list li a {
    color: #333333;
    text-decoration: none;
    font-family: "ibmplexsansjp_medium";
    font-weight: normal;
    font-size: 1.6rem;
    position: relative;
  }
  footer .footer_frame ul.footer_list li a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 2px solid #333333;
  }
  footer .footer_frame ul.footer_list li a:hover::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    top: 0;
    bottom: -3px;
  }
  footer .footer_frame ul.footer_list li.treatment {
    display: none;
  }
  footer .footer_frame ul.footer_list li:last-child {
    border-right: none;
  }
  footer .footer_frame .subtitle {
    display: none;
  }
  footer .copyright {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ffffff;
    font-family: "ibmplexsansjp_medium";
    font-size: 1.6rem;
    height: 60px;
    width: 100%;
    letter-spacing: 0.05em;
    background-color: #81B9E5;
    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: 75px;
    height: 75px;
  }
  #pagetop_position #linkpagetop a img {
    width: 75px;
    height: 75px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #pagetop_position #linkpagetop a:hover img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  #pagetop {
    position: fixed;
    bottom: 120px;
    right: 10%;
    z-index: 999999;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 78px;
    height: 78px;
  }
  #pagetop_position #linkpagetop a img {
    width: 78px;
    height: 78px;
  }
  #pagetop {
    position: fixed;
    bottom: 110px;
    right: 2%;
    z-index: 999999;
  }
}