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

 共通項目

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

/*◇◆◇◆◇◆基本色◇◆◇◆◇◆*/
/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*◇◆◇◆◇◆ハンバーガー色◇◆◇◆◇◆*/
/*ハンバーガー棒と文字*/
/*ハンバーガー背景*/
/*ハンバーガーdrawr背景*/
/*ハンバーガーdrawrテキスト*/
/*ハンバーガーdrawrサブ背景*/
/*ハンバーガーdrawrボーダー*/
/*SPLINK*/
/*◇◆◇◆◇◆お知らせ色◇◆◇◆◇◆*/
/*お知らせタイトル*/
/*お知らせ文字*/
/*お知らせボーダー*/
/*◇◆◇◆◇◆フッターPC◇◆◇◆◇◆*/
/*フッター背景色*/
/*フッターテキスト*/
/*フッターボーダー*/
/*◇◆◇◆◇◆フッターリンクSP◇◆◇◆◇◆*/
/*フッターリンク背景色*/
/*フッターリンクテキスト*/
/*フッターリンクボーダー*/
/*◇◆◇◆◇◆コピーライト◇◆◇◆◇◆*/
/*コピーライト背景色*/
/*コピーライトテキスト*/
/*◇◆◇◆◇◆リンク系◇◆◇◆◇◆*/
/*リンクカラー*/
/*リンクカラーホバー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆診療時間テーブル◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*tdボーダー*/
/*tdアイコン*/
/*◇◆◇◆◇◆汎用テーブル系◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*tdボーダー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆影◇◆◇◆◇◆*/
/*◇◆◇◆◇◆透過◇◆◇◆◇◆*/
/*◇◆◇◆◇◆汎用◇◆◇◆◇◆*/
/*紺色*/
/*黄土色*/
/*紺色*/
/*薄い灰色*/
/*黄土色*/
/*黒*/
/*薄い紫*/
/*青*/
/*薄紫*/
/*灰色*/
/*黒*/
/*薄い緑*/
/*薄い茶色*/
/*ピンク*/
/*薄い緑*/
/*灰色*/
/*灰色*/
/*黒色*/
/*黄色*/
/*茶色*/
/*薄茶色*/
/*灰色*/
/*仕様変更後のカラー*/
/*薄紫色*/
/*茶色*/
/*茶色*/
/*見出しサンプル用*/
/*見出しサンプル用*/
/*見出しサンプル用*/
/*見出しサンプル用*/
/*見出しサンプル用*/
/*見出しサンプル用*/
/*見出しサンプル用*/
/*見出しサンプル用*/
/*見出しサンプル用*/
/*見出しサンプル用*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@font-face {
  font-family: "zenmarugothic_regular";
  src: url(../font/ZenMaruGothic-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenmarugothic_medium";
  src: url(../font/ZenMaruGothic-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenmarugothic_bold";
  src: url(../font/ZenMaruGothic-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "zenoldmincho_regular";
  src: url(../font/ZenOldMincho-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenoldmincho_medium";
  src: url(../font/ZenOldMincho-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenoldmincho_bold";
  src: url(../font/ZenOldMincho-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
/*共通モジュール*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.cf::after {
  clear: both;
}

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

.fl_r {
  float: right;
}

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

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

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

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

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

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

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.main_nav_sp {
  width: 100%;
  position: fixed;
  right: 0;
}
.main_nav_sp .drawr {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: calc(100% - 16vw); /*100%からフッター固定の高さを引く*/
  padding: 0 0 0 0;
  margin: 16vw 0 0 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
  transition: 0.3s;
}
.main_nav_sp .drawr ul.hbg {
  list-style-type: none;
  border-top: #4E5157 1px solid;
  background-color: #ffffff;
  margin: 0;
}
.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: #4E5157;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 1rem;
  border-bottom: #cccccc 1px solid;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  line-height: 140%;
}
.main_nav_sp .drawr ul.hbg li a span {
  display: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub {
  display: none;
  width: 100%;
  list-style-type: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub.open_nav {
  display: block;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a {
  background-color: #FFFFFF;
  color: #474A5B;
  border-bottom: none;
  text-align: center;
  border-bottom: #cccccc 1px solid;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a::after {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li.treatment_hbg a::after {
  font-family: "fontello";
  content: "\e80a";
  color: #172D56;
  margin: 0 0 0 0.5rem;
  transition: 0.5s;
  transform: rotate(180deg);
}
.main_nav_sp .drawr ul.hbg li.open_treatment a::after {
  transform: rotate(0deg);
  transition: 0.5s;
}
.main_nav_sp .openNav {
  display: block;
}

@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;
  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: "";
  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";
  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";
  transition: all 500ms ease-in-out;
  visibility: hidden;
  opacity: 0;
  font-size: 1rem;
}

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

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

.toggle-label .toggle-icon:after {
  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 {
  transform: translateX(-50%) rotate(45deg);
  top: 1.5px;
}

.toggle:checked ~ .toggle-label .toggle-icon:after {
  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;
}

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

 共通項目

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

h2.top_title {
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 2rem;
  color: #043E7D;
  background: url("../img/h2.svg") repeat-x;
  background-position: left center;
  margin: 0 0 0 0;
}
h2.top_title span {
  background-color: #ffffff;
  padding: 0 1rem 0 0;
  box-sizing: border-box;
}
h2.low {
  color: #043E7D;
  font-size: 2rem;
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 120%;
  padding: 0 0 2rem 0;
  margin: 4rem 0 2rem 0;
  box-sizing: border-box;
  position: relative;
}
h2.low::after {
  position: absolute;
  bottom: 0.7rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  content: "";
  display: block;
  width: 30%;
  height: 5px;
  background: url("../img/h2.svg") no-repeat;
  background-size: contain;
  background-position: center center;
}
h2.first {
  margin: 0 0 1.2rem 0;
}

h3.low {
  color: #043E7D;
  background: url("../img/h3.svg") no-repeat;
  background-size: 18%;
  background-position: left top;
  background-color: #ffffff;
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.9rem;
  padding: 1.3rem 1rem 0.8rem 1.5rem;
  box-sizing: border-box;
  margin: 3rem 0 1.2rem 0;
  line-height: 120%;
}
h3.first {
  margin: 0 0 1.2rem 0;
}

h4.low {
  color: #043E7D;
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 120%;
  border-bottom: #CC9735 1px solid;
  padding: 0 0 0.5rem 0;
  box-sizing: border-box;
  margin: 2.5em 0 1.2rem 0;
}
h4.first {
  margin: 0 0 1.2rem 0;
}

h5.low {
  color: #043E7D;
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.7rem;
  background-color: #EBEFF4;
  border-top: #043E7D 1px solid;
  border-bottom: #043E7D 1px solid;
  padding: 0.8rem;
  box-sizing: border-box;
  margin: 2rem 0 1.2rem 0;
}
h5.first {
  margin: 0 0 1.2rem 0;
}

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

.privacy_policy_box h2.low {
  color: #043E7D;
  font-size: 2rem;
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 100%;
  padding: 0 0 1.5rem 0;
  margin: 3rem 0 1.5rem 0;
  box-sizing: border-box;
  position: relative;
}
.privacy_policy_box h2.low::after {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  content: "";
  display: block;
  width: 30%;
  height: 5px;
  background: url("../img/h2.svg") no-repeat;
  background-size: contain;
  background-position: center center;
}
.privacy_policy_box h2.first {
  margin: 0 0 1.2rem 0;
}
.privacy_policy_box h3.low {
  color: #043E7D;
  background: url("../img/h3.svg") no-repeat;
  background-size: 15%;
  background-position: left top;
  background-color: #ffffff;
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.4rem;
  padding: 1.3rem 0.8rem 0.8rem 1.3rem;
  box-sizing: border-box;
  margin: 1rem 0 0.6rem 0;
  line-height: 120%;
}
.privacy_policy_box h3.first {
  margin: 0 0 0.6rem 0;
}
.privacy_policy_box h4.low {
  color: #043E7D;
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 120%;
  border-bottom: #CC9735 1px solid;
  padding: 0 0 0.2rem 0;
  box-sizing: border-box;
  margin: 1rem 0 0.5rem 0;
}
.privacy_policy_box h4.first {
  margin: 0 0 0.5rem 0;
}
.privacy_policy_box p {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  line-height: 120%;
  letter-spacing: 0.05em;
}
.privacy_policy_box p.ajsmb {
  margin: 0 0 0.2rem 0;
}
.privacy_policy_box ul.list_maru {
  list-style-type: none;
  line-height: 100%;
  letter-spacing: 0.05em;
  font-size: 1rem;
  margin: 0 0 1rem 0;
}
.privacy_policy_box ul.list_maru li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.5rem;
  background-size: 0.6rem;
  margin: 0 0 0 0;
  padding: 0 0 0 1.8rem;
}
.privacy_policy_box dl.num_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1rem;
  box-sizing: border-box;
  margin: 0 0 1rem 0;
  line-height: 160%;
  width: 100%;
}
.privacy_policy_box dl.num_list dt {
  width: 5%;
  margin: 0 0 0.5rem 0;
}
.privacy_policy_box dl.num_list dd {
  width: 95%;
  margin: 0 0 0.5rem 0;
}

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title {
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 4.4rem;
    color: #043E7D;
    background: url("../img/top_h2.svg") repeat-x;
    background-position: left center;
    margin: 0 0 0 0;
  }
  h2.top_title span {
    background-color: #ffffff;
    padding: 0 40px 0 0;
    box-sizing: border-box;
  }
  h2.low {
    color: #043E7D;
    font-size: 3.6rem;
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 120%;
    padding: 0 0 25px 0;
    margin: 90px 0 35px 0;
    box-sizing: border-box;
    position: relative;
  }
  h2.low::after {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    background: url("../img/h2.svg") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  h2.first {
    margin: 0 0 30px 0;
  }
  h3.low {
    color: #043E7D;
    background: url("../img/h3.svg") no-repeat;
    background-size: 50px;
    background-position: left top;
    background-color: #ffffff;
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 2.8rem;
    padding: 15px 10px 10px 20px;
    box-sizing: border-box;
    margin: 70px 0 20px 0;
    line-height: 120%;
  }
  h3.first {
    margin: 0 0 20px 0;
  }
  h4.low {
    color: #043E7D;
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 120%;
    border-bottom: #CC9735 1px solid;
    padding: 0 0 10px 0;
    box-sizing: border-box;
    margin: 65px 0 15px 0;
  }
  h4.first {
    margin: 0 0 15px 0;
  }
  h5.low {
    color: #043E7D;
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 2rem;
    background-color: #EBEFF4;
    border-top: #043E7D 1px solid;
    border-bottom: #043E7D 1px solid;
    padding: 9px;
    box-sizing: border-box;
    margin: 55px 0 15px 0;
  }
  h5.first {
    margin: 0 0 15px 0;
  }
  p {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
    line-height: 140%;
    letter-spacing: 0.05em;
  }
  p.ajsmb {
    margin: 0 0 15px 0;
  }
  .privacy_policy_box h2.low {
    color: #043E7D;
    font-size: 2.6rem;
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 120%;
    padding: 0 0 15px 0;
    margin: 90px 0 15px 0;
    box-sizing: border-box;
    position: relative;
  }
  .privacy_policy_box h2.low::after {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    background: url("../img/h2.svg") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .privacy_policy_box h2.first {
    margin: 0 0 15px 0;
  }
  .privacy_policy_box h3.low {
    color: #043E7D;
    background: url("../img/h3.svg") no-repeat;
    background-size: 40px;
    background-position: left top;
    background-color: #ffffff;
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 2rem;
    padding: 10px 10px 10px 15px;
    box-sizing: border-box;
    margin: 20px 0 10px 0;
    line-height: 120%;
  }
  .privacy_policy_box h3.first {
    margin: 0 0 10px 0;
  }
  .privacy_policy_box h4.low {
    color: #043E7D;
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 2rem;
    line-height: 120%;
    border-bottom: #CC9735 1px solid;
    padding: 0 0 6px 0;
    box-sizing: border-box;
    margin: 15px 0 10px 0;
  }
  .privacy_policy_box h4.first {
    margin: 0 0 10px 0;
  }
  .privacy_policy_box {
    /*標準 maru*/
  }
  .privacy_policy_box ul.list_maru {
    list-style-type: none;
    line-height: 120%;
    letter-spacing: 0.05em;
    font-size: 1.4rem;
    margin: 0 0 10px 0;
  }
  .privacy_policy_box ul.list_maru li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 5px top 8px;
    background-size: 8px;
    margin: 0 0 0 0;
    padding: 0 0 0 20px;
  }
  .privacy_policy_box {
    /*数字*/
  }
  .privacy_policy_box dl.num_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.4rem;
    box-sizing: border-box;
    margin: 0 0 10px 0;
    line-height: 120%;
    width: 900px;
  }
  .privacy_policy_box dl.num_list dt {
    width: 18px;
    margin: 0 0 0 0;
  }
  .privacy_policy_box dl.num_list dd {
    width: 882px;
    margin: 0 0 0 0;
  }
  .privacy_policy_box p {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    line-height: 120%;
    letter-spacing: 0.05em;
  }
  .privacy_policy_box p.ajsmb {
    margin: 0 0 10px 0;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
table.timetable {
  padding: 0;
  margin: 0 auto;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  box-sizing: border-box;
  line-height: 140%;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
}
table.timetable tr th {
  box-sizing: border-box;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 1.2rem 0;
  vertical-align: middle;
  color: #043E7D;
  background-color: #EBEFF4;
  border-top: #043E7D 1px solid;
  border-bottom: #043E7D 1px solid;
  width: 10%;
}
table.timetable tr th.time {
  letter-spacing: 0.1em;
}
table.timetable tr td {
  box-sizing: border-box;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 1.2rem 0;
  vertical-align: middle;
  color: #4E5157;
  border-bottom: #CC9735 1px solid;
  background-color: color_time_td_bg;
}
table.timetable tr td i {
  font-size: 1.2rem;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
}

dl.timetable_notice {
  width: 100%;
  margin: 0 auto 0 auto;
  font-family: "zenmarugothic_regular";
  font-weight: normal;
  font-size: 1.1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
dl.timetable_notice dt {
  width: 25%;
  text-align: center;
  color: #043E7D;
  border-left: #043E7D 1px solid;
  border-right: #043E7D 1px solid;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  margin: 1rem 0 0 0;
}
dl.timetable_notice dd {
  width: 75%;
  text-align: left;
  color: #4E5157;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  margin: 1rem 0 0 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;
    box-sizing: border-box;
    line-height: 140%;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
  }
  table.timetable tr th {
    box-sizing: border-box;
    font-weight: normal;
    font-size: 1.8rem;
    padding: 0;
    vertical-align: middle;
    color: #043E7D;
    background-color: #EBEFF4;
    border-top: #043E7D 1px solid;
    border-bottom: #043E7D 1px solid;
    width: 10%;
    height: 60px;
    box-sizing: border-box;
  }
  table.timetable tr th.time {
    width: 30%;
    letter-spacing: 0.1em;
  }
  table.timetable tr td {
    box-sizing: border-box;
    font-weight: normal;
    font-size: 1.6rem;
    padding: 0;
    vertical-align: middle;
    color: #4E5157;
    height: 70px;
    box-sizing: border-box;
    border-bottom: #CC9735 1px solid;
    background-color: color_time_td_bg;
  }
  table.timetable tr td i {
    font-size: 1.6rem;
  }
  table.timetable tr td.time {
    width: 30%;
    text-align: center;
  }
  dl.timetable_notice {
    width: 100%;
    margin: 0 auto 0 auto;
    font-family: "zenmarugothic_regular";
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  dl.timetable_notice dt {
    width: 100px;
    text-align: center;
    color: #043E7D;
    border-left: #043E7D 1px solid;
    border-right: #043E7D 1px solid;
    padding: 5px 16px;
    box-sizing: border-box;
    margin: 16px 0 0 0;
  }
  dl.timetable_notice dd {
    width: calc(100% - 100px);
    text-align: left;
    color: #4E5157;
    padding: 5px 16px;
    box-sizing: border-box;
    margin: 16px 0 0 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;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #FFFFFF;
  border: #CCCCCC 1px solid;
  background-color: #043E7D;
}
table.low_table tr td {
  width: 60%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #333333;
  border: #CCCCCC 1px solid;
  background-color: #ffffff;
}

@media screen and (min-width: 768px), print {
  table.low_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  table.low_table caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table tr th {
    width: 40%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #FFFFFF;
    border: #CCCCCC 1px solid;
    background-color: #043E7D;
  }
  table.low_table tr td {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
    border: #CCCCCC 1px solid;
    background-color: #ffffff;
  }
}
/* -----------------------------------------------------------
　料金テーブル
----------------------------------------------------------- */
table.low_table_price {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  margin: 0 0 2rem 0;
}
table.low_table_price caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_price tr th {
  width: 70%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #333333;
  border-left: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}
table.low_table_price tr td {
  width: 30%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: right;
  vertical-align: middle;
  font-weight: normal;
  color: #333333;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  background-color: #ffffff;
}
table.low_table_price tr:first-child th {
  border-top: #CCCCCC 1px solid;
}
table.low_table_price tr:first-child td {
  border-top: #CCCCCC 1px solid;
}
table.low_table_price tr:last-child td {
  border-bottom: #CCCCCC 1px solid;
}
table.low_table_price.ajs1 th {
  width: 33%;
}
table.low_table_price.ajs1 th.title {
  width: 20%;
}
table.low_table_price.ajs1 td {
  width: 33%;
}
table.low_table_price.ajs1 td.sub {
  width: 47%;
  border-right: none;
  text-align: left;
}

@media screen and (min-width: 768px), print {
  table.low_table_price {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  table.low_table_price caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_price tr th {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
    border-left: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
  table.low_table_price tr td {
    width: 30%;
    padding: 20px;
    box-sizing: border-box;
    text-align: right;
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    background-color: #ffffff;
  }
  table.low_table_price tr:first-child th {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table_price tr:first-child td {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table_price tr:last-child th {
    border-bottom: #CCCCCC 1px solid;
  }
  table.low_table_price tr:last-child td {
    border-bottom: #CCCCCC 1px solid;
  }
  table.low_table_price.ajs1 th {
    width: 33%;
  }
  table.low_table_price.ajs1 th.title {
    width: 13%;
  }
  table.low_table_price.ajs1 td {
    width: 30%;
  }
  table.low_table_price.ajs1 td.sub {
    width: 57%;
    border-right: none;
    text-align: left;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
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;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #FFFFFF;
  border: #CCCCCC 1px solid;
  background-color: #043E7D;
}
table.low_table_slide tr td {
  width: 60%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #333333;
  border: #CCCCCC 1px solid;
  background-color: #ffffff;
}

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

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

@media screen and (min-width: 768px), print {
  table.low_table_spblock {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    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;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #FFFFFF;
    background-color: #043E7D;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr td {
    width: 70%;
    padding: 20px;
    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: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr td span {
    color: #CC9735;
    font-weight: bold;
  }
  table.low_table_spblock tr td span a {
    color: #CC9735;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock tr:first-child th {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr:first-child td {
    border-top: #CCCCCC 1px solid;
  }
}
/*画像*/
/* Scss Document */
/* =======================================================================

 共通項目

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

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

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

 共通項目

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

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

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

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

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

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

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

@media screen and (min-width: 768px), print {
  ul.list_normal {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  ul.list_normal li {
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準2列 disc*/
  ul.list_normal_two {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.list_normal_two li {
    width: 45%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準3列 disc*/
  ul.list_normal_three {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.list_normal_three li {
    width: 30%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準 maru*/
  ul.list_maru {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  ul.list_maru li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 5px top 9px;
    background-size: 10px;
    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.8rem;
    margin: 0 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.list_maru_two li {
    width: 45%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 5px top 9px;
    background-size: 10px;
    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.8rem;
    margin: 0 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.list_maru_three li {
    width: 30%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 5px top 9px;
    background-size: 10px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準 disc*/
  ul.list_decimal {
    list-style-type: decimal;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  ul.list_decimal li {
    margin: 0 0 10px 20px;
    padding: 0;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/*略歴*/
dl.bio_list {
  font-size: 1.4rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.bio_list dt {
  width: 100%;
  margin: 0 0 0.5 0;
  font-weight: bold;
  font-size: 1.6rem;
}
dl.bio_list dd {
  width: 100%;
  margin: 0 0 2rem 0;
}

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

/*記号*/
dl.symbol_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 120%;
  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-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
}
dl.title_box dt {
  width: 100%;
  margin: 0;
  background-color: #172D56;
  color: #ffffff;
  padding: 1rem;
  box-sizing: border-box;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}
dl.title_box dt:first-child {
  border-top: #CCCCCC 1px solid;
}
dl.title_box dd {
  width: 100%;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}

@media screen and (min-width: 768px), print {
  /*略歴*/
  dl.bio_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.8rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 870px;
  }
  dl.bio_list dt {
    width: 170px;
    margin: 0 0 1rem 0;
    font-weight: normal;
    font-size: 1.8rem;
  }
  dl.bio_list dd {
    width: 700px;
    margin: 0 0 1rem 0;
  }
  /*数字*/
  dl.num_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.8rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 900px;
  }
  dl.num_list dt {
    width: 25px;
    margin: 0 0 1rem 0;
  }
  dl.num_list dd {
    width: 875px;
    margin: 0 0 1rem 0;
  }
  /*記号*/
  dl.symbol_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.8rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 900px;
  }
  dl.symbol_list dt {
    width: 25px;
    margin: 0 0 10px 0;
  }
  dl.symbol_list dd {
    width: 875px;
    margin: 0 0 10px 0;
  }
  /*タイトルボックス*/
  dl.title_box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.8rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  dl.title_box dt {
    width: 100%;
    margin: 0;
    background-color: #172D56;
    color: #ffffff;
    padding: 15px;
    box-sizing: border-box;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
  dl.title_box dt:first-child {
    border-top: #CCCCCC 1px solid;
  }
  dl.title_box dd {
    width: 100%;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用
----------------------------------------------------------- */
/*矢印*/
.arrow {
  width: 0;
  height: 0;
  border: none;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 30px solid #CAB42A;
  text-align: center;
  display: block;
  margin: 30px auto;
}

/*強調*/
.emphasis {
  background-color: #EBEFF4;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 1rem 0;
}
.emphasis p.mb_none {
  margin: 0;
}
.emphasis p.sub_title {
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
.emphasis ul.mb_none {
  margin: 0;
}
.emphasis dl.mb_none {
  margin: 0;
}

/*二列*/
/*下層電話*/
.low_tel i {
  font-size: 2rem;
}
.low_tel span {
  color: #4E5157;
  font-family: "zenmarugothic_medium";
  font-size: 2rem;
  font-weight: normal;
}
.low_tel span a {
  color: #4E5157;
  font-family: "zenmarugothic_medium";
  font-size: 2rem;
  font-weight: normal;
  text-decoration: none;
}

.text_bold {
  font-weight: bold;
}

.text_underline {
  text-decoration: underline;
}

.text_right {
  text-align: right;
}

@media screen and (min-width: 768px), print {
  /*矢印*/
  .arrow {
    width: 0;
    height: 0;
    border: none;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 30px solid #CAB42A;
    text-align: center;
    display: block;
    margin: 30px auto;
  }
  /*二列*/
  .two_box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 900px;
  }
  .two_box section {
    width: 48%;
  }
  /*強調*/
  .emphasis {
    background-color: #EBEFF4;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .emphasis p.mb_none {
    margin: 0;
  }
  .emphasis p.sub_title {
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 2.2rem;
    text-align: center;
  }
  .emphasis ul.mb_none {
    margin: 0;
  }
  .emphasis.ajs {
    width: 500px;
  }
  .emphasis dl.mb_none {
    margin: 0;
  }
  /*下層電話*/
  .low_tel i {
    font-size: 2rem;
  }
  .low_tel span {
    color: #4E5157;
    font-family: "zenmarugothic_medium";
    font-size: 2rem;
    font-weight: normal;
  }
  .low_tel span a {
    color: #4E5157;
    font-family: "zenmarugothic_medium";
    font-size: 2rem;
    font-weight: normal;
    text-decoration: none;
  }
  .text_bold {
    font-weight: bold;
  }
  .text_underline {
    text-decoration: underline;
  }
  .text_right {
    text-align: right;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
ul.pankuzu_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  width: 96%;
  margin: 2rem auto 1rem auto;
}
ul.pankuzu_list li::after {
  content: "＞";
  font-size: 1.4rem;
  color: #4E5157;
  margin: 0 0.5rem;
}
ul.pankuzu_list li a {
  font-size: 1.4rem;
  color: #4E5157;
  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-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
    width: 870px;
    margin: 20px auto 0 auto;
  }
  ul.pankuzu_list li::after {
    content: "＞";
    font-size: 1.8rem;
    color: #4E5157;
    margin: 0 10px;
  }
  ul.pankuzu_list li a {
    font-size: 1.8rem;
    color: #4E5157;
    text-decoration: none;
  }
  ul.pankuzu_list li:last-child:after {
    content: "";
    margin: 0;
  }
}
/* -----------------------------------------------------------
　ライトボックス
----------------------------------------------------------- */
.lightbox {
  z-index: 9999999 !important;
}

.lightbox_frame {
  width: 100%;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lightbox_frame .img_box {
  width: 48%;
  margin: 0 0 2rem 0;
  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: #4E5157;
  font-size: 1.4rem;
  margin: 1.5rem 0 0 0;
  font-weight: bold;
}

.lightbox_frame2 {
  width: 100%;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lightbox_frame2 .img_box {
  width: 48%;
  margin: 0 0 2rem 0;
  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%;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lightbox_frame .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    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: #4E5157;
    font-size: 2rem;
    margin: 30px 0 0 0;
    font-weight: bold;
  }
  .lightbox_frame2 {
    width: 100%;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lightbox_frame2 .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    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: #172D56 2px solid;
  border-radius: 1rem;
  box-sizing: border-box;
  display: block;
  background-color: #CAB42A;
  padding: 1rem;
  text-decoration: none;
  color: #4E5157;
}
.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: #4E5157;
  margin: 0 0 1rem 0;
}
.banner_01 .banner_text {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  font-weight: normal;
  color: #4E5157;
  margin: 0 0 1rem 0;
  line-height: 140%;
}
.banner_01 ul {
  color: #4E5157;
}

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

.low_button {
  display: inline-block;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: left;
  text-decoration: none;
  color: #043E7D;
  width: auto;
  margin: 0 0 0 0;
  padding: 1rem 0 1.5rem 1rem;
  line-height: 100%;
  box-sizing: border-box;
}
.low_button::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 0.5rem;
  margin: 0 0 0 1rem;
}
.low_button {
  border-bottom: #043E7D 1px solid;
}

ul.link_list {
  list-style-type: none;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 1rem 0;
}
ul.link_list li {
  margin: 0 0 1rem 0;
}
ul.link_list li.link_reserve {
  width: 49%;
}
ul.link_list li.link_rlink_intervieweserve {
  width: 100%;
}
ul.link_list li a.low_button {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.link_list li a.low_button::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 0.5rem;
  margin: 0 0 0 1rem;
}
ul.link_list li.link_tel {
  width: 49%;
}
ul.link_list li.link_tel a {
  font-size: 1.6rem;
}
ul.link_list li.link_tel a::after {
  content: "";
  display: none;
}
ul.link_list li.link_tel a::before {
  font-family: "fontello";
  content: "\e80e";
  font-size: 1.4rem;
  margin: 0.1rem 0.3rem 0 0;
}

.qr_text {
  margin: 0;
  text-align: center;
}

.qrlink {
  display: block;
  text-decoration: none;
  width: 70%;
  margin: 0 auto 0 auto;
}
.qrlink img {
  width: 100%;
  height: auto;
}

.mail_link {
  width: 80%;
  margin: 0 auto 1rem auto;
}
.mail_link a {
  display: block;
  width: 100%;
}
.mail_link a img {
  width: 100%;
  height: auto;
}

.mail_text {
  text-align: center;
}

ul.page_link {
  list-style-type: none;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 1rem 0;
}
ul.page_link li {
  width: 49%;
  margin: 0 0 1rem 0;
}
ul.page_link li a {
  text-align: left;
  text-decoration: none;
  color: #043E7D;
  border: #043E7D 1px solid;
  padding: 1rem 0.5rem 1rem 2rem;
  box-sizing: border-box;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
ul.page_link li a::before {
  position: absolute;
  top: calc(50% - 0.7rem);
  left: 0.5rem;
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (min-width: 768px), print {
  .link_text {
    color: #CC9735;
    transition: 0.5s;
  }
  .link_text:hover {
    text-decoration: none;
    transition: 0.5s;
  }
  .low_button {
    display: inline-block;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    color: #043E7D;
    width: auto;
    margin: 0 0 0 0;
    padding: 0 0 22px 0;
    line-height: 100%;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
  }
  .low_button::after {
    font-family: "fontello";
    content: "\e80b";
    font-size: 0.5rem;
    margin: 0 0 0 1rem;
  }
  .low_button {
    transition: 0.5s;
    border-bottom: #043E7D 1px solid;
  }
  .low_button:hover {
    transition: 0.5s;
    border-bottom: #CC9735 1px solid;
  }
  ul.link_list {
    list-style-type: none;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 16px 0;
  }
  ul.link_list li {
    margin: 0 0 1rem 0;
  }
  ul.link_list li.link_reserve {
    width: 49%;
  }
  ul.link_list li.link_rlink_intervieweserve {
    width: 100%;
  }
  ul.link_list li a.low_button {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: cente;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 22px 0 22px 0;
  }
  ul.link_list li a.low_button::after {
    font-family: "fontello";
    content: "\e80b";
    font-size: 0.5rem;
    margin: 2px 0 0 10px;
  }
  ul.link_list li.link_tel {
    width: 49%;
  }
  ul.link_list li.link_tel a {
    pointer-events: none;
    font-size: 2rem;
  }
  ul.link_list li.link_tel a::after {
    content: "";
    display: none;
  }
  ul.link_list li.link_tel a::before {
    font-family: "fontello";
    content: "\e80e";
    font-size: 2rem;
    margin: 2px 10px 0 0;
  }
  .qr_text {
    margin: 0;
    text-align: left;
  }
  .qrlink {
    display: block;
    text-decoration: none;
    width: 185px;
    margin: 0 0 0 0;
  }
  .qrlink img {
    width: 185px;
    height: auto;
  }
  .mail_link {
    width: 309px;
    margin: 0 0 16px 0;
  }
  .mail_link a {
    display: block;
    width: 100%;
  }
  .mail_link a img {
    width: 100%;
    height: auto;
  }
  .mail_text {
    text-align: left;
  }
  ul.page_link {
    list-style-type: none;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 0;
  }
  ul.page_link li {
    width: 270px;
    margin: 0 0 20px 0;
  }
  ul.page_link li a {
    text-align: left;
    text-decoration: none;
    color: #043E7D;
    border: #043E7D 1px solid;
    padding: 20px 15px 20px 35px;
    box-sizing: border-box;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
  }
  ul.page_link li a::before {
    position: absolute;
    top: calc(50% - 0.7rem);
    left: 14px;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../img/icon_arrow.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  ul.page_link li a {
    transition: 0.5s;
  }
  ul.page_link li a:hover {
    transition: 0.5s;
    border: #CC9735 1px solid;
  }
}
/*下層*/
/* 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 {
    margin: 0 0 20px 20px;
    text-align: right;
  }
  .img_doctor img {
    width: 400px;
    height: auto;
  }
  .doctor_name {
    text-align: right;
  }
}
/* -----------------------------------------------------------
　医院紹介
----------------------------------------------------------- */
.machine_box {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.machine_box figure {
  width: 100%;
  margin: 0 0 4rem 0;
}
.machine_box figure figcaption {
  text-align: center;
  font-weight: normal;
  margin: 0 0 0.5rem 0;
  font-size: 1.6rem;
}
.machine_box figure img {
  width: 100%;
  height: auto;
  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: 0 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .machine_box figure {
    width: 48%;
    margin: 0 0 60px 0;
  }
  .machine_box figure figcaption {
    text-align: center;
    font-weight: normal;
    margin: 0 0 0 0;
    font-size: 2.2rem;
  }
  .machine_box figure img {
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
  }
  /*スライダー*/
  .slider-pro {
    margin: 0 auto 30px auto !important;
  }
  .slider-pro p.sp-layer {
    font-size: 2rem !important;
  }
}
/* -----------------------------------------------------------
　初めての方へ
----------------------------------------------------------- */
.flow_box {
  border: #172D56 1px solid;
  border-radius: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.flow_box h3 {
  margin: 0 0 1rem 0;
}
.flow_box p.mb_none {
  margin: 0;
}

@media screen and (min-width: 768px), print {
  .flow_box {
    border: #172D56 1px solid;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .flow_box h3 {
    margin: 0 0 20px 0;
  }
  .flow_box p.mb_none {
    margin: 0;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
.access_box {
  margin: 4rem 0 0 0;
}
.access_box .access_map {
  margin: 2rem 0 0 0;
}
.access_box .access_map .access_map {
  width: 100%;
  height: auto;
  display: block;
}
.access_box .access_map .access_map_link {
  display: block;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none;
  color: #043E7D;
  width: 70%;
  margin: 3rem auto 0 auto;
  padding: 0 0 1.5rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 100%;
}
.access_box .access_map .access_map_link::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 0.5rem;
  margin: 0 0 0 1rem;
}
.access_box .access_map .access_map_link {
  border-bottom: #043E7D 1px solid;
}

@media screen and (min-width: 768px), print {
  .access_box {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 60px 0 0 0;
  }
  .access_box .access_info {
    width: 470px;
  }
  .access_box .access_map {
    width: 350px;
  }
  .access_box .access_map .access_map {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
  }
  .access_box .access_map .access_map_link {
    display: block;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    color: #043E7D;
    width: 252px;
    margin: 35px auto 0 auto;
    padding: 0 0 22px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 100%;
    position: relative;
    z-index: 3;
  }
  .access_box .access_map .access_map_link::after {
    font-family: "fontello";
    content: "\e80b";
    font-size: 0.5rem;
    margin: 0 0 0 1rem;
  }
  .access_box .access_map .access_map_link {
    transition: 0.5s;
    border-bottom: #043E7D 1px solid;
  }
  .access_box .access_map .access_map_link:hover {
    transition: 0.5s;
    border-bottom: #CC9735 1px solid;
  }
}
/*メールフォームプロ用*/
/* 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: #043E7D;
  padding: 1rem 1rem 1rem 1rem;
  box-sizing: border-box;
  color: #4E5157;
  border-top: #172D56 1px solid;
  border-left: #172D56 1px solid;
  border-right: #172D56 1px solid;
}
#mailformpro table tr th span {
  color: #E34A4A;
  display: inline-block;
  padding: 0 0.2rem;
  box-sizing: border-box;
  margin: 0 0 0 0.6rem;
}
#mailformpro table tr td {
  display: block;
  text-align: left;
  border-top: #172D56 1px solid;
  border-left: #172D56 1px solid;
  border-right: #172D56 1px solid;
  padding: 1rem;
  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: #172D56 1px solid;
}

@media screen and (min-width: 768px), print {
  #mailformpro table {
    font-size: 1.8rem;
    line-height: 140%;
    width: 1200px;
  }
  #mailformpro table tr th {
    width: 400px;
    display: table-cell;
    text-align: left;
    font-weight: normal;
    background-color: #043E7D;
    padding: 1.5rem 1rem 1.5rem 1rem;
    box-sizing: border-box;
    border-top: #172D56 1px solid;
    border-left: #172D56 1px solid;
    border-right: #172D56 1px solid;
    vertical-align: middle;
  }
  #mailformpro table tr th span {
    color: #E34A4A;
    display: inline-block;
    padding: 0 0.2rem;
    box-sizing: border-box;
    margin: 0 0 0 1rem;
  }
  #mailformpro table tr td {
    width: 800px;
    display: table-cell;
    text-align: left;
    border-top: #172D56 1px solid;
    border-left: #172D56 1px solid;
    border-right: #172D56 1px solid;
    padding: 1.5rem 3rem 1.5rem 3rem;
    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: "zenmarugothic_regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #4E5157;
  background-color: #ffffff;
  padding: 0 0 0 0;
  /*ページ内リンク用*/
  scroll-behavior: smooth;
  /*スクロール後の余白設定*/
  scroll-padding-top: 16vw;
}
html.calender {
  padding: 0;
}

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

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

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

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.pc_none_span {
  display: inline;
}

.sp_none_span {
  display: none;
}

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

.wrapper_low {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}
.wrapper_low .main_low {
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.wrapper_low .main_low .main_content {
  width: 96%;
  height: auto;
  margin: 2rem auto 2rem auto;
}
.wrapper_low .main_low .main_content p, .wrapper_low .main_low .main_content ul, .wrapper_low .main_low .main_content dl {
  line-height: 170%;
}

@media screen and (min-width: 768px), print {
  .wrapper {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .wrapper .main {
    height: auto;
    width: 1200px;
    width: calc(100% - 240px);
    margin: 0 0 100px 240px;
    padding: 0;
  }
  .wrapper .main .main_content {
    width: calc(120% - 160px);
    width: 100%;
    height: auto;
    margin: 60px 0 80px 0;
    padding: 0 calc((100% - 870px) / 2) 0 calc((100% - 870px) / 2);
    box-sizing: border-box;
  }
  .wrapper_low {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .wrapper_low .main_low {
    height: auto;
    width: 1200px;
    width: calc(100% - 240px);
    margin: 0 0 100px 240px;
    padding: 0;
  }
  .wrapper_low .main_low .main_content {
    width: calc(120% - 160px);
    width: 100%;
    height: auto;
    margin: 60px 0 80px 0;
    padding: 0 calc((100% - 870px) / 2) 0 calc((100% - 870px) / 2);
    box-sizing: border-box;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .wrapper {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .wrapper .main {
    height: auto;
    width: calc(100% - 240px);
    margin: 0 0 100px 240px;
    padding: 0;
  }
  .wrapper .main .main_content {
    width: calc(120% - 160px);
    width: 100%;
    height: auto;
    margin: 60px 0 80px 0;
    padding: 0 calc((100% - 870px) / 2) 0 calc((100% - 870px) / 2);
    box-sizing: border-box;
  }
  .wrapper_low {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .wrapper_low .main_low {
    height: auto;
    width: calc(100% - 240px);
    margin: 0 0 100px 240px;
    padding: 0;
  }
  .wrapper_low .main_low .main_content {
    width: calc(120% - 160px);
    width: 100%;
    height: auto;
    margin: 60px 0 80px 0;
    padding: 0 calc((100% - 870px) / 2) 0 calc((100% - 870px) / 2);
    box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
　ヘッダー
----------------------------------------------------------- */
header.header {
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  font-family: "zenmarugothic_regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
}
header.header .header_box {
  /*
  width: 100%;
  height: 22vw;
  margin: 0;    
  .head_logo{
    display: block;
    width: 60%;
    margin: 0 auto 0 auto;
    a{
      display: block;
      width: 100%;
      text-decoration: none;
      img{
        width: 100%;
        height: auto;
      }
    }
  } 
  .header_info{
    display: none;
  }
  */
  display: none;
}
header.header .header_box_sp {
  width: 100%;
  /*height: 22vw;*/
  background-color: #ffffff;
  transition: 0.5s;
  position: relative;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
}
header.header .header_box_sp .head_logo {
  width: 100%;
  order: 2;
  margin: 2vw 0;
  /*height: 22vw;*/
}
header.header .header_box_sp .head_logo a {
  width: 100%;
  display: block;
  text-align: center;
}
header.header .header_box_sp .head_logo a img {
  width: 55%;
  height: auto;
  /*margin: 10vw 0 0 0;*/
}
header.header .header_box_sp ul.main_nav_sp {
  order: 1;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: flex-end;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
}
header.header .header_box_sp ul.main_nav_sp li {
  position: relative;
}
header.header .header_box_sp ul.main_nav_sp li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  text-decoration: none;
  width: 100%;
  height: 16vw;
  color: #ffffff;
}
header.header .header_box_sp ul.main_nav_sp li a.hbg_btn {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
header.header .header_box_sp ul.main_nav_sp li a.hbg_btn::before {
  font-family: "fontello";
  content: "\e802";
  font-size: 2.2rem;
}
header.header .header_box_sp ul.main_nav_sp li a.hbg_btn:hover {
  cursor: pointer;
}
header.header .header_box_sp ul.main_nav_sp li a.open_drawr::before {
  font-family: "fontello";
  content: "\e806";
  font-size: 2.2rem;
}
header.header .header_box_sp ul.main_nav_sp li::after {
  content: "";
  width: 1px;
  height: 6vw;
  border-right: #CAB42A 1px solid;
  position: absolute;
  top: 5vw;
  right: 0;
}
header.header .header_box_sp ul.main_nav_sp li:last-child::after {
  width: 0;
  height: 0;
}
header.header .header_box_sp ul.main_nav_sp li.sp_tel {
  width: 55%;
}
header.header .header_box_sp ul.main_nav_sp li.sp_tel span {
  font-size: 1.8rem;
  line-height: 100%;
}
header.header .header_box_sp ul.main_nav_sp li.sp_tel span::before {
  content: "\e80e";
  font-family: "fontello";
  font-size: 1.8rem;
  margin: 0 0.5rem 0 0;
}
header.header .header_box_sp ul.main_nav_sp li.sp_tel span ruby {
  line-height: 100%;
}
header.header .header_box_sp ul.main_nav_sp li.sp_tel span ruby rt {
  font-size: 1rem;
  margin: 0 0 0 0;
}
header.header .header_box_sp ul.main_nav_sp li.sp_web_reserve {
  width: 25%;
}
header.header .header_box_sp ul.main_nav_sp li.sp_web_reserve span {
  font-size: 1.4rem;
  display: block;
}
header.header .header_box_sp ul.main_nav_sp li.hbg {
  width: 5rem;
  background-color: #172D56;
}
header.header .header_box_sp .nav_add_sp {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999999999;
  margin: 0 !important;
}
header.header .header_box_sp_top {
  position: fixed;
  /*top: 2vw !important;*/
  z-index: 999999999999;
}
header.header .header_box_sp_top ul.main_nav_sp {
  position: relative;
  z-index: 999999999999;
  top: 0;
  border-bottom: #ffffff 1px solid;
  box-sizing: border-box;
}

/*
.index{
  header.header{
    .header_box_sp{
      .head_logo{
        a{
          img{
            margin: 16vw 0 0 0;
          }
        }
      }
    }
  }
}
*/
@media screen and (min-width: 768px), print {
  header.header {
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 175px;
  }
  header.header .header_box {
    display: block;
    width: 900px;
    height: 175px;
    margin: 0 auto;
    position: relative;
    /*ロゴ*/
  }
  header.header .header_box .head_logo {
    position: absolute;
    top: 20px;
    left: 24px;
    display: block;
    width: 364px;
    margin: 0 0 0 0;
  }
  header.header .header_box .head_logo a {
    display: block;
    width: 100%;
    text-decoration: none;
  }
  header.header .header_box .head_logo a img {
    width: 100%;
    height: auto;
    margin: 0;
  }
  header.header .header_box {
    /*ヘッダー情報*/
  }
  header.header .header_box .header_info {
    display: block;
    position: absolute;
    top: 14px;
    left: auto;
    right: 20px;
    width: 480px;
  }
  header.header .header_box .header_info .header_address {
    font-size: 1.6rem;
    line-height: 150%;
    text-align: right;
  }
  header.header .header_box .header_info .header_tel {
    position: absolute;
    top: 82px;
    right: 242px;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.8rem;
    text-align: center;
    color: color1;
    border-bottom: #CAB42A 1px solid;
    padding: 0 0 5px 0;
    width: 230px;
    margin: 0 auto 20px auto;
  }
  header.header .header_box .header_info .header_tel::before {
    content: "\e80e";
    font-family: "fontello";
    font-size: 3.6rem;
    margin: 0 5px 0 0;
    color: #172D56;
  }
  header.header .header_box .header_info .header_web_reserve {
    position: absolute;
    top: 70px;
    right: 0;
    text-decoration: none;
    width: 230px;
    height: 70px;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2rem;
    line-height: 100%;
    color: #ffffff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: url("../img/btn_bg.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    margin: 0;
    transition: 0.5s;
  }
  header.header .header_box .header_info .header_web_reserve:hover {
    opacity: 0.6;
    transition: 0.5s;
  }
  header.header .header_box_sp {
    display: none;
  }
  .index header.header .header_box_sp .head_logo a img {
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  header.header {
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 175px;
  }
  header.header .header_box {
    width: 900px;
    height: 175px;
    margin: 0 auto 0 auto;
    position: relative;
    /*ロゴ*/
  }
  header.header .header_box .head_logo {
    position: absolute;
    top: 20px;
    left: 0;
    display: block;
    width: 364px;
    margin: 0 0 0 0;
  }
  header.header .header_box .head_logo a {
    display: block;
    width: 100%;
    text-decoration: none;
  }
  header.header .header_box .head_logo a img {
    width: 100%;
    height: auto;
  }
  header.header .header_box {
    /*ヘッダー情報*/
  }
  header.header .header_box .header_info {
    display: block;
    position: absolute;
    top: 14px;
    left: auto;
    right: 20px;
    width: 520px;
  }
  header.header .header_box .header_info .header_address {
    font-size: 1.6rem;
    line-height: 150%;
    text-align: right;
  }
  header.header .header_box .header_info .header_tel {
    position: absolute;
    top: 82px;
    right: 242px;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.8rem;
    text-align: center;
    color: color1;
    border-bottom: #CAB42A 1px solid;
    padding: 0 0 5px 0;
    width: 250px;
    margin: 0 auto 20px auto;
  }
  header.header .header_box .header_info .header_tel::before {
    content: "\e80e";
    font-family: "fontello";
    font-size: 3.6rem;
    margin: 0 5px 0 0;
    color: #172D56;
  }
  header.header .header_box .header_info .header_web_reserve {
    position: absolute;
    top: 70px;
    right: 0;
    text-decoration: none;
    width: 230px;
    height: 70px;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2rem;
    line-height: 100%;
    color: #ffffff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: url("../img/btn_bg.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    margin: 0;
    transition: 0.5s;
  }
  header.header .header_box .header_info .header_web_reserve:hover {
    opacity: 0.6;
    transition: 0.5s;
  }
  header.header .header_box_sp {
    display: none;
  }
}
/* -----------------------------------------------------------
　アサイド
----------------------------------------------------------- */
aside.aside {
  display: none;
}

/*ハンバーガー*/
.container {
  width: 15%;
}

@media screen and (min-width: 768px), print {
  aside.aside {
    display: block;
    width: 240px;
    height: 100%;
    padding: 0 0 70px 0;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    background-color: #ffffff;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.16);
  }
  aside.aside .aside_info {
    width: 240px;
    height: 180px;
    padding: 10px 0 0 0;
    box-sizing: border-box;
  }
  aside.aside .aside_info .aside_tel {
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.8rem;
    text-align: center;
    color: #172D56;
    border-bottom: #CAB42A 1px solid;
    padding: 0 0 5px 0;
    width: 230px;
    margin: 0 auto 18px auto;
    letter-spacing: 0.03em;
  }
  aside.aside .aside_info .aside_tel::before {
    content: "\e80e";
    font-family: "fontello";
    font-size: 3.6rem;
    margin: 0 10px 0 0;
    color: #172D56;
  }
  aside.aside .aside_info .aside_tel ruby rt {
    margin: 0 0 2px 0;
  }
  aside.aside .aside_info .aside_web_reserve {
    text-decoration: none;
    width: 85%;
    height: 70px;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2rem;
    line-height: 100%;
    color: #ffffff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: url("../img/btn_bg.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    margin: 0 auto 30px auto;
    transition: 0.5s;
  }
  aside.aside .aside_info .aside_web_reserve:hover {
    opacity: 0.6;
    transition: 0.5s;
  }
  aside.aside nav.main_nav_pc {
    display: block;
    /*overflow-y: scroll;*/
    margin: 0 0 0 0;
    width: 100%;
    height: 100%;
    max-height: 65%;
  }
  aside.aside nav.main_nav_pc ul {
    list-style-type: none;
    border-top: #CCCCCC 1px solid;
    box-sizing: border-box;
    margin: 0;
  }
  aside.aside nav.main_nav_pc ul li {
    border-bottom: #CCCCCC 1px solid;
    box-sizing: border-box;
  }
  aside.aside nav.main_nav_pc ul li a {
    text-decoration: none;
    width: 100%;
    min-height: 40px;
    height: 7vh;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.9rem;
    color: #043E7D;
    padding: 0 0 0 0;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    background: url("../img/menu-bg.svg") no-repeat;
    background-size: 20px;
    background-position: right center;
    transition: 0.5s;
  }
  aside.aside nav.main_nav_pc ul li a:hover {
    background: url("../img/menu-bg-hover.svg") no-repeat;
    background-size: 20px;
    background-position: right center;
    transition: 0.5s;
  }
  aside.aside nav.main_nav_pc ul li .sub_nav_box {
    display: none;
    position: absolute;
    left: 240px;
    z-index: 9;
    width: 270px;
    height: 320px;
    padding: 0;
    margin: -190px 0 0 0;
    box-sizing: border-box;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.95);
  }
  aside.aside nav.main_nav_pc ul li .sub_nav_box ul {
    all: initial;
    width: 270px;
    /*height: 320px;*/
    height: 280px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  aside.aside nav.main_nav_pc ul li .sub_nav_box ul li {
    all: initial;
    margin: 0 0 0 0;
    height: 53.3333333333px;
  }
  aside.aside nav.main_nav_pc ul li .sub_nav_box ul li a {
    all: initial;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: left;
    width: 270px;
    height: 100%;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    transition: 0.5s;
    margin: 0 0 0 0;
    padding: 0 0 0 20px;
    box-sizing: border-box;
  }
  aside.aside nav.main_nav_pc ul li .sub_nav_box ul li a::before {
    font-family: "fontello";
    content: "\e80d";
    margin: 0 15px 0 0;
  }
  aside.aside nav.main_nav_pc ul li .sub_nav_box ul li a:hover {
    transition: 0.5s;
    color: #CC9735;
    cursor: pointer;
    cursor: hand;
  }
  aside.aside nav.main_nav_pc ul li.no_link a {
    pointer-events: none !important;
  }
  aside.aside .aside_info2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9999;
    width: 240px;
    height: 110px;
    padding: 0 0 0 0;
    box-sizing: border-box;
    background-color: #ffffff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  aside.aside .aside_info2 .aside_address {
    font-family: "zenmarugothic_regular";
    font-weight: normal;
    font-size: 1.5rem;
    text-align: center;
    line-height: 120%;
    margin: 0 0 5px 0;
  }
  aside.aside .aside_info2 .aside_access {
    font-family: "zenmarugothic_regular";
    font-weight: normal;
    font-size: 2rem;
    text-align: center;
    line-height: 120%;
    margin: 0;
  }
  /*ハンバーガー*/
  .container {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  aside.aside .aside_info .aside_tel {
    letter-spacing: 0;
  }
}
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
/*トップキービジュアル*/
.key_visual {
  position: relative;
  width: 100%;
  height: 80vw;
  margin: 0;
}
.key_visual .key {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  /*大枠*/
}
.key_visual .key .key_bg {
  width: 100%;
  height: 80vw;
}
.key_visual .key .key_01 {
  background: url("../img/key_visual_01.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_02 {
  background: url("../img/key_visual_02.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_03 {
  background: url("../img/key_visual_03.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_04 {
  background: url("../img/key_visual_04.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key_contents {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 80vw;
  box-sizing: border-box;
}
.key_visual .key_contents .key_text {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  text-shadow: 0 0 10px rgb(0, 0, 44);
  color: #ffffff;
  margin: 0 0 0 0;
  line-height: 100%;
  padding: 0.7rem 0;
  box-sizing: border-box;
}
.key_visual .key_contents .key_text::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgb(0, 0, 44);
}
.key_visual .key_contents .key_text::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgb(0, 0, 44);
}
.key_visual .key_contents .key_text2 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  text-shadow: 0 0 10px rgb(0, 0, 44);
  color: #ffffff;
  margin: 0 0 0 0;
  line-height: 120%;
  padding: 0.6rem 0;
  box-sizing: border-box;
}
.key_visual .key_contents .key_text2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgb(0, 0, 44);
}
.key_visual .key_contents .key_text2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgb(0, 0, 44);
}

/*下層キービジュアル*/
.key_visual_low {
  width: 100%;
  height: 15vw;
  background: url("../img/key_visual_low.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
}
.key_visual_low h1 {
  font-family: "zenoldmincho_bold";
  font-size: 2rem;
  text-align: center;
  color: #ffffff;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-shadow: rgb(0, 0, 44) 0 0 1rem;
}

@media screen and (min-width: 768px), print {
  /*トップキービジュアル*/
  .key_visual {
    position: relative;
    width: 100%;
    height: 740px;
    margin: 0;
  }
  .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100% !important;
    height: 740px;
    margin: 0;
    overflow: hidden;
    /*大枠*/
  }
  .key_visual .key .key_bg {
    width: 100%;
    height: 740px;
  }
  .key_visual .key .key_01 {
    background: url("../img/key_visual_01.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_02 {
    background: url("../img/key_visual_02.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_03 {
    background: url("../img/key_visual_03.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_04 {
    background: url("../img/key_visual_04.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key_contents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 740px;
    box-sizing: border-box;
  }
  .key_visual .key_contents .key_text {
    position: absolute;
    bottom: 60px;
    left: 40px;
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 4rem;
    text-align: center;
    text-shadow: 0 0 10px rgb(0, 0, 44);
    color: #ffffff;
    margin: 0 0 0 0;
    line-height: 100%;
    padding: 30px 0;
    box-sizing: border-box;
    width: 570px;
  }
  .key_visual .key_contents .key_text::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(0, 0, 44);
  }
  .key_visual .key_contents .key_text::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(0, 0, 44);
  }
  .key_visual .key_contents .key_text2 {
    position: absolute;
    bottom: 60px;
    left: 40px;
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 4rem;
    text-align: center;
    text-shadow: 0 0 10px rgb(0, 0, 44);
    color: #ffffff;
    margin: 0 0 0 0;
    line-height: 140%;
    padding: 20px 0;
    box-sizing: border-box;
    width: 600px;
  }
  .key_visual .key_contents .key_text2::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(0, 0, 44);
  }
  .key_visual .key_contents .key_text2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(0, 0, 44);
  }
  /*下層キービジュアル*/
  .key_visual_low {
    width: 100%;
    height: 100px;
    background: url("../img/key_visual_low.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 0;
  }
  .key_visual_low h1 {
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 4.4rem;
    text-align: center;
    color: #ffffff;
    line-height: 160%;
    letter-spacing: 0.2em;
    text-shadow: rgb(0, 0, 44) 0 0 10px;
    width: calc(120% - 160px);
    width: 100%;
    padding: 0 calc((100% - 870px) / 2) 0 calc((100% - 870px) / 2);
    box-sizing: border-box;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .key_visual {
    width: 100%;
    margin: 0;
  }
  .key_visual .key_contents .key_text {
    position: absolute;
    bottom: 60px;
    left: 300px;
  }
  .key_visual_low {
    width: 100%;
    height: 100px;
    background: url("../img/key_visual_low.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 0;
  }
  .key_visual_low h1 {
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 4.4rem;
    text-align: center;
    color: #ffffff;
    line-height: 160%;
    letter-spacing: 0.2em;
    text-shadow: rgb(0, 0, 44) 0 0 10px;
  }
}
/* -----------------------------------------------------------
　診療時間と本日の診療
----------------------------------------------------------- */
.time_info_frame {
  width: 100%;
  background: url("../img/time_info_bg.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 2rem 0 4rem 0;
  box-sizing: border-box;
}
.time_info_frame .time_info_box {
  width: 96%;
  margin: 0 auto 0 auto;
}
.time_info_frame .time_info_box .timetable_box {
  width: 100%;
  height: 67vw;
  background: url("../img/frame_time.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin: 0 0 2rem 0;
}
.time_info_frame .time_info_box .timetable_box table.timetable {
  width: 90%;
  margin: 0 auto 0 auto;
}
.time_info_frame .time_info_box .timetable_box dl.timetable_notice {
  width: 90%;
  margin: 1rem auto 0 auto;
}
.time_info_frame .time_info_box .today_info_box {
  width: 100%;
  height: 74vw;
  background: url("../img/frame_today.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0 0;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0 2rem;
  box-sizing: border-box;
}
.time_info_frame .time_info_box .today_info_box .today_title {
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 2rem;
  color: #043E7D;
  text-align: left;
  margin: 0 0 1.5rem 0;
}
.time_info_frame .time_info_box .today_info_box dl.today_box {
  width: 100%;
}
.time_info_frame .time_info_box .today_info_box dl.today_box dt {
  padding: 1rem;
  box-sizing: border-box;
  border-top: #043E7D 1px solid;
  border-bottom: #CC9735 1px solid;
}
.time_info_frame .time_info_box .today_info_box dl.today_box dt p {
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.8rem;
  color: #043E7D;
  margin: 0;
}
.time_info_frame .time_info_box .today_info_box dl.today_box dt.news_title {
  display: none;
}
.time_info_frame .time_info_box .today_info_box dl.today_box dd {
  padding: 0 1rem 1rem 1rem;
  box-sizing: border-box;
  font-family: "zenmarugothic_regular";
  font-weight: normal;
  font-size: 1.7rem;
  color: #4E5157;
  margin: 1.5rem 0 0 0;
}
.time_info_frame .time_info_box .today_info_box dl.today_box dd p {
  font-family: "zenmarugothic_regular";
  font-weight: normal;
  font-size: 1.8rem;
  color: #4E5157;
  margin: 0 0 0 0;
}
.time_info_frame .time_info_link {
  display: block;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none;
  color: #043E7D;
  width: 70%;
  margin: 3rem auto 0 auto;
  padding: 0 0 1.5rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 100%;
}
.time_info_frame .time_info_link::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 0.5rem;
  margin: 0 0 0 1rem;
}
.time_info_frame .time_info_link {
  transition: 0.5s;
  border-bottom: #043E7D 1px solid;
}
.time_info_frame .time_info_link:hover {
  transition: 0.5s;
  border-bottom: #CC9735 1px solid;
}

@media screen and (min-width: 768px), print {
  .time_info_frame {
    width: 100%;
    background: none;
    background-position: top center;
    background-size: cover;
    padding: 40px 0 0 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: visible;
  }
  .time_info_frame::after {
    content: "";
    width: 1740px;
    height: 490px;
    background: url("../img/time_info_bg.jpg") no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: -50%;
    z-index: 2;
  }
  .time_info_frame .time_info_box {
    width: 900px;
    margin: 0 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
  }
  .time_info_frame .time_info_box .timetable_box {
    /*width: 450px;*/
    width: 900px;
    height: 325px;
    background: url("../img/frame_time_pc.svg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 0 0 2rem 0;
  }
  .time_info_frame .time_info_box .timetable_box table.timetable {
    /*width: 410px;*/
    width: 860px;
    margin: 0 auto 0 auto;
  }
  .time_info_frame .time_info_box .timetable_box dl.timetable_notice {
    /*width: 410px;*/
    width: 860px;
    margin: 0 auto 0 auto;
  }
  .time_info_frame .time_info_box .today_info_box {
    width: 410px;
    height: 325px;
    background: url("../img/frame_today.svg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0 30px;
    box-sizing: border-box;
    margin: 0 0 0 0;
  }
  .time_info_frame .time_info_box .today_info_box .today_title {
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 3.6rem;
    color: #043E7D;
    text-align: left;
    margin: -15px 0 32px 0;
  }
  .time_info_frame .time_info_box .today_info_box dl.today_box {
    width: 100%;
  }
  .time_info_frame .time_info_box .today_info_box dl.today_box dt {
    padding: 12px 21px;
    box-sizing: border-box;
    border-top: #043E7D 1px solid;
    border-bottom: #CC9735 1px solid;
  }
  .time_info_frame .time_info_box .today_info_box dl.today_box dt p {
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.4rem;
    color: #043E7D;
    margin: 0;
  }
  .time_info_frame .time_info_box .today_info_box dl.today_box dt.news_title {
    display: none;
  }
  .time_info_frame .time_info_box .today_info_box dl.today_box dd {
    padding: 0 22px 0 22px;
    box-sizing: border-box;
    font-family: "zenmarugothic_regular";
    font-weight: normal;
    font-size: 2.2rem;
    color: #4E5157;
    line-height: 190%;
    margin: 15px 0 0 0;
  }
  .time_info_frame .time_info_box .today_info_box dl.today_box dd p {
    font-family: "zenmarugothic_regular";
    font-weight: normal;
    font-size: 2.2rem;
    color: #4E5157;
    line-height: 190%;
    margin: 0 0 0 0;
  }
  .time_info_frame .time_info_link {
    display: block;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    color: #043E7D;
    width: 267px;
    margin: 25px auto 0 auto;
    padding: 0 0 22px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 100%;
    position: relative;
    z-index: 3;
  }
  .time_info_frame .time_info_link::after {
    font-family: "fontello";
    content: "\e80b";
    font-size: 0.5rem;
    margin: 0 0 0 1rem;
  }
  .time_info_frame .time_info_link {
    border-bottom: #043E7D 1px solid;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
.features_frame_bg {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.features_frame_bg .features_frame h2.top_title {
  margin: 0 0 2rem 0;
}
.features_frame_bg .features_frame section h3.features_sub_title {
  font-family: "zenoldmincho_bold";
  font-weight: bold;
  font-size: 1.7rem;
  color: #043E7D;
  line-height: 120%;
  border-bottom: #CC9735 2px solid;
  box-sizing: border-box;
  padding: 0 0 1.5rem 0;
  margin: 2rem 0 1rem 0;
}
.features_frame_bg .features_frame section h3.features_sub_title span {
  width: 2rem;
  display: inline-block;
}
.features_frame_bg .features_frame section p {
  padding: 0 0 0 2rem;
  box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .features_frame_bg {
    width: 100%;
    margin: 130px auto 0 auto;
  }
  .features_frame_bg .features_frame h2.top_title {
    margin: 0 0 30px 0;
  }
  .features_frame_bg .features_frame section h3.features_sub_title {
    font-family: "zenoldmincho_bold";
    font-weight: bold;
    font-size: 2.8rem;
    color: #043E7D;
    line-height: 120%;
    border-bottom: #CC9735 2px solid;
    box-sizing: border-box;
    padding: 0 0 22px 0;
    margin: 33px 0 20px 0;
  }
  .features_frame_bg .features_frame section h3.features_sub_title span {
    width: 50px;
    display: inline-block;
  }
  .features_frame_bg .features_frame section p {
    padding: 0 0 0 50px;
    box-sizing: border-box;
    font-size: 1.8rem;
    line-height: 166%;
    margin: 0 0 10px 0;
  }
}
/* -----------------------------------------------------------
　お知らせ矢印画像
----------------------------------------------------------- */
/*
.notice_frame{  
  width: 96%;
  margin: 3rem auto 2rem auto;
  background: url("../img/index_notice_bg.svg") no-repeat;
  background-position: left top;
  background-size: 30%;
  h2.notice_title{
    font-family: 'zenoldmincho_medium';
    font-weight: normal;
    font-size: 2.2rem;   
    color: $color3;
    letter-spacing: 0.1em;
    margin: 3rem 0 4rem 2rem;
  }

  .notice_box_line{
    width: 98%;
    height: 120vw;    
    margin: 2rem auto 0 auto;    
    position: relative;
    &::before{
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 96%;
      height: 1px;
      border-top: $color3 1px solid; 
      z-index: 2;
    }
    &::after{
      position: absolute;
      bottom: 0;
      left: 0;      
      content: "";
      display: block;
      width: 96%;
      height: 1px;
      border-top: $color3 1px solid; 
      z-index: 2;
    }    
    .notice_box{
      width: 100%;
      height: auto;    
      margin: 2rem 0 0 0;   
      padding:0 0 2rem 0;
      box-sizing: border-box;
      height: 120vw;   
      overflow-y: scroll;
      &::-webkit-scrollbar {
        width: 0.6rem; 
      }
      &::-webkit-scrollbar-thumb {
        background: $color3;
      }
      &::-webkit-scrollbar-track {
        background: $color7;
      }
      dl{
        height: auto;            
        margin: 0 0 0 0;
        width: 96%;
        overflow-x: hidden;      
        overflow-wrap: break-word;
        padding: 0 0 0.5rem 0;
        box-sizing: border-box;
        position: relative;
        z-index: 1;
        dt{
          color: $color_notice_title;
          margin: 0 0 0 0;
          padding: 1rem 0 1rem 2rem;  
          font-family: 'zenmarugothic_medium';     
          font-weight: normal;        
          font-size: 1.5rem;
          box-sizing: border-box;
          letter-spacing: 0.1em;
          line-height: 120%;
          position:relative;
          border-top: $color_notice_border 1px solid;
          &::before{
            display:block;            
            content: "";
            width: 1.6rem;
            height: 1.6rem;
            background: url("../img/icon_arrow_notice.svg") no-repeat;
            background-size: contain;
            background-position: center center;
            position:absolute;
            left:0;
            top:1.2rem; 
          }
          &.open{
            &::before{
              content: "";
            }                
          }
          &.close{
            &::before{
              content: "";
              transform:rotateX( 180deg );
            }
          }
          &:first-child{
            border-top:none;
          }
        }
        dd{
          margin: 0 0 1rem 0;
          padding: 0 0.5rem 0 2rem;
          color: $color_notice_text;
          font-family: 'zenmarugothic_regular'; 
          font-weight: normal;
          font-size: 1.4rem;
          line-height: 120%; 
          box-sizing: border-box;
          display: none;        
           &.open{
            display: block;
          }    
          p{
            font-family: 'zenmarugothic_regular'; 
            font-weight: normal;  
            font-size: 1.4rem;          
            a{
              color: $color_notice_text;
            }
          }
        }
      }      
    }  
  }
}

@media screen and (min-width: $breakpoint) , print {
.notice_frame{
  width:900px;
  margin: 130px auto 0 auto; 
  background: url("../img/index_notice_bg.svg") no-repeat;
  background-position: left top;
  background-size: 120px;

  h2.notice_title{
    font-family: 'zenoldmincho_medium';
    font-weight: normal;
    font-size: 4rem;   
    color: $color3;
    letter-spacing: 0.15em;
    margin: 48px 0 48px 54px;
  }  

  .notice_box_line{
    width: 850px;
    height: 620px;    
    margin: 2rem auto 0 auto;    
    position: relative;

    &::before{
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 830px;
      height: 1px;
      border-top: $color3 1px solid; 
      z-index: 2;
    }
    &::after{
      position: absolute;
      bottom: -1px;
      left: 0;      
      content: "";
      display: block;
      width: 830px;
      height: 1px;
      border-top: $color3 1px solid; 
      z-index: 2;
    }    
    .notice_box{
      width: 850px;
      height: 620px;    
      margin:0 0 0 0;
      padding:0;      
      box-sizing: border-box;       
      overflow-y: scroll;   
      &::-webkit-scrollbar {
        width: 8px;
      }
      &::-webkit-scrollbar-thumb {
        background: $color3;
      }
      &::-webkit-scrollbar-track {
        background: $color7;
      }
      dl{
        height: auto;            
        margin: 0;
        width: 830px;
        overflow-x: hidden;
        overflow-wrap: break-word;
        padding: 0 0 20px 0;
        box-sizing: border-box;
        dt{
          color: $color_notice_title;
          margin: 0 0 14px 0;
          padding: 20px 0 0 45px;      
          font-family: 'zenmarugothic_medium';  
          font-weight: normal;            
          font-size: 2.2rem;
          box-sizing: border-box;
          letter-spacing: 0.1em;
          line-height: 130%;
          position:relative;
          border-top: $color_notice_border 1px solid;
          transition: 0.5s;        
          &::before{
            display:block;            
            content: "";
            width: 24px;
            height: 24px;
            background: url("../img/icon_arrow_notice.svg") no-repeat;
            background-size: contain;
            background-position: center center;
            position:absolute;
            left:0;
            top:24px; 
          }
          &.open{
            &::before{
              content: "";
            }                
          }
          &.close{
            &::before{
              content: "";
              transform:rotateX( 180deg );
            }
          }
          &:first-child{
            border-top:none;                 
          }
          &:hover{
            cursor: pointer;
            cursor: hand;
            opacity: 0.6;
            transition: $hover_speed;
          } 
        }
        dd{
          margin: 0 0 19px 0;
          padding: 0 0 0 45px;
          color: $color_notice_text;
          font-family: 'zenmarugothic_regular'; 
          font-weight: normal;         
          font-size: 1.8rem;
          line-height: 130%; 
          display: none;         
           &.open{
            display: block;
          }    
          p{
            font-family: 'zenmarugothic_regular'; 
            font-weight: normal;      
            font-size: 1.8rem;
            margin: 0 0 10px 0;
            a{
              color: $color_notice_text;
            }          
          }
        }
      }       
    }
  }  
}
}

*/
/* -----------------------------------------------------------
　お知らせ矢印画像
----------------------------------------------------------- */
.notice_frame {
  width: 96%;
  margin: 3rem auto 2rem auto;
  background: url("../img/index_notice_bg.svg") no-repeat;
  background-position: left top;
  background-size: 30%;
  position: relative;
  z-index: 2;
}
.notice_frame h2.notice_title {
  font-family: "zenoldmincho_medium";
  font-weight: normal;
  font-size: 2.2rem;
  color: #043E7D;
  letter-spacing: 0.1em;
  margin: 3rem 0 4rem 2rem;
}
.notice_frame .notice_box_line {
  width: 100%;
  height: 100vw;
  margin: 2rem 0 0 0;
  position: relative;
}
.notice_frame .notice_box_line::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 96%;
  height: 1px;
  border-top: #043E7D 1px solid;
  z-index: 2;
}
.notice_frame .notice_box_line::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 96%;
  height: 1px;
  border-top: #043E7D 1px solid;
  z-index: 2;
}
.notice_frame .notice_box_line .notice_box {
  width: 98%;
  height: auto;
  margin: 0 auto 0 auto;
  padding: 0 0 4rem 0;
  box-sizing: border-box;
}
.notice_frame .notice_box_line .notice_box .medico-info-list {
  margin: 0 0 0 0;
  width: 100%;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding: 0 0 0 0;
  box-sizing: border-box;
  height: 120vw;
  overflow-y: scroll;
}
.notice_frame .notice_box_line .notice_box .medico-info-list::-webkit-scrollbar {
  width: 0.6rem;
}
.notice_frame .notice_box_line .notice_box .medico-info-list::-webkit-scrollbar-thumb {
  background: #043E7D;
}
.notice_frame .notice_box_line .notice_box .medico-info-list::-webkit-scrollbar-track {
  background: #C4D0DF;
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header {
  color: #043E7D;
  margin: 0 0 0 0;
  padding: 1rem 1rem 1rem 2rem;
  box-sizing: border-box;
  font-family: "zenmarugothic_medium";
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 120%;
  text-align: justify;
  position: relative;
  border-top: #CCCCCC 1px solid;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header::marker {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  color: #ffffff;
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header::before {
  display: block;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/icon_arrow_notice.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 1.2rem;
  transform: rotateX(180deg);
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header.open::before {
  content: "";
  transform: rotateX(0deg);
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header .accordion-date {
  color: #4E5157;
  font-family: "mplusrounded1c_regular";
  font-weight: normal;
  font-size: 1rem;
  order: 2;
  margin: 0 0 0 0;
  display: block;
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header .accordion-title {
  order: 1;
  display: inline;
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item:first-of-type .accordion-header {
  border-top: none;
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content {
  padding: 0 0 2rem 0;
  box-sizing: border-box;
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p {
  margin: 0 0 0 0;
  padding: 0 1rem 0 1.6rem;
  color: #4E5157;
  font-family: "zenmarugothic_regular";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 130%;
  text-align: justify;
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p a {
  color: #4E5157;
  font-size: 1.4rem;
}
.notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item.open .accordion-header::before {
  content: "";
  transform: rotateX(0deg);
}

@media screen and (min-width: 768px), print {
  .notice_frame {
    width: 900px;
    margin: 130px auto 0 auto;
    background: url("../img/index_notice_bg.svg") no-repeat;
    background-position: left top;
    background-size: 120px;
  }
  .notice_frame h2.notice_title {
    font-family: "zenoldmincho_medium";
    font-weight: normal;
    font-size: 4rem;
    color: #043E7D;
    letter-spacing: 0.15em;
    margin: 48px 0 48px 54px;
  }
  .notice_frame .notice_box_line {
    width: 850px;
    height: 450px;
    margin: 2rem auto 0 auto;
    position: relative;
  }
  .notice_frame .notice_box_line::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 830px;
    height: 1px;
    border-top: #043E7D 1px solid;
    z-index: 2;
  }
  .notice_frame .notice_box_line::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: "";
    display: block;
    width: 830px;
    height: 1px;
    border-top: #043E7D 1px solid;
    z-index: 2;
  }
  .notice_frame .notice_box_line .notice_box {
    width: 850px;
    height: 450px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    box-sizing: border-box;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list {
    margin: 0 0 0 0;
    width: 100%;
    overflow-x: hidden;
    overflow-wrap: break-word;
    padding: 0 0 0 0;
    box-sizing: border-box;
    height: 445px;
    overflow-y: scroll;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list::-webkit-scrollbar {
    width: 8px;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list::-webkit-scrollbar-thumb {
    background: #043E7D;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list::-webkit-scrollbar-track {
    background: #C4D0DF;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header {
    color: #043E7D;
    margin: 0 0 14px 0;
    padding: 20px 20px 0 45px;
    box-sizing: border-box;
    font-family: "zenmarugothic_medium";
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    line-height: 130%;
    text-align: justify;
    position: relative;
    border-top: #CCCCCC 1px solid;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header::marker {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    color: #ffffff;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header::before {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background: url("../img/icon_arrow_notice.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 24px;
    transform: rotateX(180deg);
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header.open::before {
    content: "";
    transform: rotateX(0deg);
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header .accordion-date {
    color: #4E5157;
    font-family: "mplusrounded1c_regular";
    font-weight: normal;
    font-size: 1.8rem;
    order: 2;
    margin: 0 0 0 0;
    display: block;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-header .accordion-title {
    order: 1;
    display: inline;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item:first-of-type .accordion-header {
    border-top: none;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content {
    padding: 0 0 19px 0;
    box-sizing: border-box;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p {
    margin: 0 0 19px 0;
    padding: 0 20px 0 45px;
    color: #4E5157;
    font-family: "zenmarugothic_regular";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 130%;
    text-align: justify;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item .accordion-content .content-inner p a {
    color: #4E5157;
    font-size: 1.8rem;
  }
  .notice_frame .notice_box_line .notice_box .medico-info-list .accordion-container .accordion-item.open .accordion-header::before {
    content: "";
    transform: rotateX(0deg);
  }
}
/* -----------------------------------------------------------
　トピックス
----------------------------------------------------------- */
.topics_frame {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.topics_frame h2.top_title {
  margin: 0 0 2rem 0;
}
.topics_frame ul.topics_list {
  width: 96%;
  margin: 0 auto 0 auto;
  list-style-type: none;
}
.topics_frame ul.topics_list li {
  margin: 0 0 2rem 0;
}
.topics_frame ul.topics_list li.topics_list_01 {
  background: url("../img/index_topics_01.jpg") no-repeat;
  background-size: contain;
  background-position: center top;
}
.topics_frame ul.topics_list li.topics_list_02 {
  background: url("../img/index_topics_02.jpg") no-repeat;
  background-size: contain;
  background-position: center top;
}
.topics_frame ul.topics_list li.topics_list_03 {
  background: url("../img/index_topics_03.jpg") no-repeat;
  background-size: contain;
  background-position: center top;
}
.topics_frame ul.topics_list li.topics_list_04 {
  background: url("../img/index_topics_04.jpg") no-repeat;
  background-size: contain;
  background-position: center top;
}
.topics_frame ul.topics_list li.topics_list_05 {
  background: url("../img/index_topics_05.jpg") no-repeat;
  background-size: contain;
  background-position: center top;
}
.topics_frame ul.topics_list li a {
  width: 100%;
  height: 58vw;
  border: #CC9735 1px solid;
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
  margin: 0;
  display: block;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  box-sizing: border-box;
}
.topics_frame ul.topics_list li a span {
  margin: 0;
  display: inline-block;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  box-sizing: border-box;
}
.topics_frame ul.topics_list li a span.topics_title {
  padding: 1rem;
  background-color: #043E7D;
  color: #ffffff;
  font-size: 1.4rem;
  position: absolute;
  bottom: 4.7rem;
  left: 0;
}
.topics_frame ul.topics_list li a span.topics_title.ajs {
  bottom: 3rem;
}
.topics_frame ul.topics_list li a span.topics_text {
  padding: 1rem;
  background-color: #ffffff;
  color: #172D56;
  font-size: 1.2rem;
  position: absolute;
  bottom: 1rem;
  left: 0;
}

@media screen and (min-width: 768px), print {
  .topics_frame {
    width: 900px;
    margin: 89px auto 0 auto;
  }
  .topics_frame h2.top_title {
    margin: 0 0 30px 0;
  }
  .topics_frame ul.topics_list {
    width: 820px;
    margin: 50px auto 0 auto;
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .topics_frame ul.topics_list li {
    margin: 0 0 40px 0;
    width: 370px;
  }
  .topics_frame ul.topics_list li.topics_list_01 {
    background: url("../img/index_topics_01.jpg") no-repeat;
    background-size: contain;
    background-position: center top;
  }
  .topics_frame ul.topics_list li.topics_list_02 {
    background: url("../img/index_topics_02.jpg") no-repeat;
    background-size: contain;
    background-position: center top;
  }
  .topics_frame ul.topics_list li.topics_list_03 {
    background: url("../img/index_topics_03.jpg") no-repeat;
    background-size: contain;
    background-position: center top;
  }
  .topics_frame ul.topics_list li.topics_list_04 {
    background: url("../img/index_topics_04.jpg") no-repeat;
    background-size: contain;
    background-position: center top;
  }
  .topics_frame ul.topics_list li.topics_list_05 {
    background: url("../img/index_topics_05.jpg") no-repeat;
    background-size: contain;
    background-position: center top;
    margin: 0 0 0 225px;
  }
  .topics_frame ul.topics_list li a {
    width: 100%;
    height: 240px;
    border: #CC9735 1px solid;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
    margin: 0;
    display: block;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    box-sizing: border-box;
    line-height: 100%;
    transition: 0.5s;
  }
  .topics_frame ul.topics_list li a span {
    margin: 0;
    display: inline-block;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    box-sizing: border-box;
    line-height: 100%;
  }
  .topics_frame ul.topics_list li a span.topics_title {
    padding: 14px;
    background-color: #043E7D;
    color: #ffffff;
    font-size: 2.4rem;
    position: absolute;
    bottom: 62px;
    left: 0;
  }
  .topics_frame ul.topics_list li a span.topics_title.ajs {
    bottom: 40px;
  }
  .topics_frame ul.topics_list li a span.topics_text {
    padding: 12px;
    background-color: #ffffff;
    color: #172D56;
    font-size: 1.8rem;
    position: absolute;
    bottom: 20px;
    left: 0;
  }
  .topics_frame ul.topics_list li a:hover {
    opacity: 0.6;
    transition: 0.5s;
  }
  .topics_frame ul.topics_list li a.nolink:hover {
    opacity: 1;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.treatment_frame_bg {
  width: 100%;
  margin: 3rem 0 0 0;
  background: url("../img/treatment_bg.jpg") no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 4rem 0 3rem 0;
  box-sizing: border-box;
}
.treatment_frame_bg .treatment_box {
  width: 96%;
  margin: 0 auto 0 auto;
}
.treatment_frame_bg .treatment_box .treatment_frame h2.top_title {
  margin: 0 0 2rem 0;
}
.treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list {
  list-style-type: none;
  width: 100%;
}
.treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list li {
  margin: 0 0 1rem 0;
}
.treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list li a {
  text-decoration: none;
  background-color: #89A2C0;
  color: #ffffff;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.4rem;
  display: block;
  padding: 1.5rem;
  box-sizing: border-box;
  position: relative;
}
.treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list li a::before {
  position: absolute;
  top: calc(50% - 0.25rem);
  right: 1rem;
  content: "";
  display: block;
  width: 2rem;
  height: 0.5rem;
  background: url("../img/icon-arrow.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list li.cosmetics {
  display: none;
}

@media screen and (min-width: 768px), print {
  .treatment_frame_bg {
    width: 900px;
    height: 655px;
    margin: 80px auto 0 auto;
    background: none;
    background-position: top center;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: visible;
    padding: 70px 0 0 0;
    box-sizing: border-box;
  }
  .treatment_frame_bg::after {
    content: "";
    width: 1740px;
    height: 655px;
    background: url("../img/treatment_bg.jpg") no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: -50%;
    z-index: 2;
  }
  .treatment_frame_bg .treatment_box {
    width: 100%;
    margin: 0 0 0 0;
    position: relative;
    z-index: 3;
  }
  .treatment_frame_bg .treatment_box .treatment_frame h2.top_title {
    margin: 0 0 50px 0;
  }
  .treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list {
    list-style-type: none;
    width: 100%;
  }
  .treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list li {
    margin: 0 0 20px 0;
  }
  .treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list li a {
    text-decoration: none;
    background-color: #89A2C0;
    color: #ffffff;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.2rem;
    display: block;
    padding: 24px 30px;
    box-sizing: border-box;
    position: relative;
    transition: 0.5s;
  }
  .treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list li a::before {
    position: absolute;
    top: calc(50% - 3px);
    right: 30px;
    content: "";
    display: block;
    width: 26px;
    height: 6px;
    background: url("../img/icon-arrow.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list li a:hover {
    opacity: 0.6;
    transition: 0.5s;
  }
  .treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list li.cosmetics {
    display: none;
  }
  .treatment_frame_bg .treatment_box .treatment_frame ul.treatment_list li.no_link a {
    pointer-events: none;
  }
}
/* -----------------------------------------------------------
　ごあいさつ
----------------------------------------------------------- */
.greeting_frame {
  width: 96%;
  margin: 4rem auto 0 auto;
  padding: 0 0 4rem 0;
  box-sizing: border-box;
}
.greeting_frame h2.top_title {
  margin: 0 0 2rem 0;
}
.greeting_frame .greeting_box {
  width: 96%;
  margin: 0 auto 0 auto;
}
.greeting_frame .greeting_box .greeting_text {
  font-size: 1.6rem;
  line-height: 160%;
}
.greeting_frame .greeting_box .doctor_name {
  margin: 2rem 0 0 0;
  text-align: right;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.6rem;
  color: #043E7D;
}
.greeting_frame .greeting_box .doctor_name span {
  font-size: 1.9rem;
  margin: 0 0 0 0.5rem;
}

@media screen and (min-width: 768px), print {
  .greeting_frame {
    width: 900px;
    margin: 90px 0 0 0;
    padding: 0 0 84px 0;
    box-sizing: border-box;
  }
  .greeting_frame h2.top_title {
    margin: 0 0 78px 0;
  }
  .greeting_frame .greeting_box {
    width: 860px;
    margin: 0 auto 0 auto;
  }
  .greeting_frame .greeting_box .greeting_text {
    font-size: 1.8rem;
    line-height: 170%;
    margin: 0 0 22px 0;
  }
  .greeting_frame .greeting_box .doctor_name {
    margin: 0 0 0 0;
    text-align: right;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.4rem;
    color: #043E7D;
  }
  .greeting_frame .greeting_box .doctor_name span {
    font-size: 3.2rem;
    margin: 0 0 0 10px;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  background: url("../img/overview_bg.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 4rem 0 2rem 0;
  box-sizing: border-box;
}
.overview .overview_logo {
  width: 80%;
  margin: 0 auto;
  display: block;
}
.overview .overview_logo img {
  width: 100%;
}
.overview .overview_box {
  width: 96%;
  margin: 0 auto;
  padding: 1rem 0 2rem 0;
  box-sizing: border-box;
  /*左側*/
}
.overview .overview_box .overview_info_box_left {
  width: 100%;
}
.overview .overview_box .overview_info_box_left dl.overview_list {
  width: 96%;
  margin: 2rem auto 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 160%;
}
.overview .overview_box .overview_info_box_left dl.overview_list dt {
  width: 30%;
  margin: 0 0 1rem 0;
  color: #043E7D;
  text-align: left;
  border-left: #CC9735 1px solid;
  box-sizing: border-box;
  padding: 0.5rem 0 0.5rem 0.5rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd {
  width: 70%;
  margin: 0 0 1rem 0;
  padding: 0.5rem 0 0.5rem 0.5rem;
  box-sizing: border-box;
  color: #4E5157;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd a {
  color: #4E5157;
  text-decoration: none;
}
.overview .overview_box .overview_info_box_left .overview_timetable {
  width: 96%;
  margin: 0 auto;
}
.overview .overview_box {
  /*右側*/
}
.overview .overview_box .overview_info_box_right {
  margin: 2rem 0 0 0;
}
.overview .overview_box .overview_info_box_right .overview_map {
  width: 100%;
  height: auto;
  display: block;
}
.overview .overview_box .overview_info_box_right .overview_map_link {
  display: block;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none;
  color: #043E7D;
  width: 70%;
  margin: 3rem auto 0 auto;
  padding: 0 0 1.5rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 100%;
}
.overview .overview_box .overview_info_box_right .overview_map_link::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 0.5rem;
  margin: 0 0 0 1rem;
}
.overview .overview_box .overview_info_box_right .overview_map_link {
  border-bottom: #043E7D 1px solid;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    background: url("../img/overview_bg.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 60px 0 60px 27px;
    box-sizing: border-box;
    margin: 0 0 0 0;
  }
  .overview .overview_logo {
    width: 442px;
    margin: 0 auto;
    display: block;
  }
  .overview .overview_logo img {
    width: 100%;
  }
  .overview .overview_box {
    width: 900px;
    margin: 55px auto 0 auto;
    padding: 0 0 0 0;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    /*左側*/
  }
  .overview .overview_box .overview_info_box_left {
    width: 470px;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list {
    width: 470px;
    margin: 0 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.8rem;
    line-height: 140%;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt {
    width: 160px;
    margin: 0 0 20px 0;
    color: #043E7D;
    text-align: left;
    border-left: #CC9735 1px solid;
    box-sizing: border-box;
    padding: 3px 0 3px 21px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd {
    width: 310px;
    margin: 0 0 20px 0;
    padding: 3px 0 3px 21px;
    box-sizing: border-box;
    color: #4E5157;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd a {
    color: #4E5157;
    text-decoration: none;
  }
  .overview .overview_box .overview_info_box_left .overview_timetable {
    width: 470px;
    margin: 18px 0 0 0;
  }
  .overview .overview_box {
    /*右側*/
  }
  .overview .overview_box .overview_info_box_right {
    margin: 0 0 0 0;
    width: 350px;
  }
  .overview .overview_box .overview_info_box_right .overview_map {
    width: 100%;
    height: auto;
    display: block;
  }
  .overview .overview_box .overview_info_box_right .overview_map_link {
    display: block;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    color: #043E7D;
    width: 252px;
    margin: 35px auto 0 auto;
    padding: 0 0 22px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 100%;
    position: relative;
    z-index: 3;
  }
  .overview .overview_box .overview_info_box_right .overview_map_link::after {
    font-family: "fontello";
    content: "\e80b";
    font-size: 0.5rem;
    margin: 0 0 0 1rem;
  }
  .overview .overview_box .overview_info_box_right .overview_map_link {
    transition: 0.5s;
    border-bottom: #043E7D 1px solid;
  }
  .overview .overview_box .overview_info_box_right .overview_map_link:hover {
    transition: 0.5s;
    border-bottom: #CC9735 1px solid;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .overview {
    margin: 0 0 0 0;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer {
  margin: 0;
  width: 100%;
}
footer .footre_box .footer_frame {
  display: none;
}
footer .copyright {
  margin: 0;
  padding: 1rem 0 5rem;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.05em;
  background-color: #043E7D;
  border-top: #CC9735 0.3rem solid;
  box-sizing: border-box;
}
footer .copyright a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer_link {
  position: fixed;
  bottom: 0;
  width: 82%;
  height: 13vw;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-direction: row;
  flex-direction: row;
  z-index: 999999;
}
.footer_link a.footer_tel {
  width: 50%;
  height: 13vw;
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: normal;
  font-family: "notosansjp_bold";
  letter-spacing: 0.1em;
  display: block;
  text-decoration: none;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 1.4rem;
}
.footer_link a.footer_tel i {
  color: #ffffff;
  font-size: 1rem;
}
.footer_link .aside_web_reserve {
  text-decoration: none;
  width: 50%;
  height: 13vw;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 100%;
  color: #ffffff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background: url("../img/btn_bg.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  margin-left: 0.2rem;
  transition: 0.5s;
}
.footer_link .smoothScrolls {
  background-color: #172D56;
  width: 25%;
  height: 13vw;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer_link .smoothScrolls a {
  width: 100%;
  height: 13vw;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.6rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0 0 0 0;
    padding: 45px 0 0 0;
    background-color: #ffffff;
    box-sizing: border-box;
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  footer .footre_box {
    width: 900px;
    height: 145px;
    margin: 0 auto 0 auto;
  }
  footer .footre_box .footer_frame {
    display: block;
  }
  footer .footre_box .footer_frame ul.footer_list {
    line-height: 130%;
    font-size: 1.8rem;
    margin: 0 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .footre_box .footer_frame ul.footer_list li {
    width: auto;
    margin: 0 9px 19px 0;
    padding: 0 9px 0 0;
    list-style-type: none;
    position: relative;
    border-right: #707070 1px solid;
    height: 17px;
    line-height: 80%;
  }
  footer .footre_box .footer_frame ul.footer_list li a {
    color: #4E5157;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.8rem;
    position: relative;
    letter-spacing: 0;
  }
  footer .footre_box .footer_frame ul.footer_list li a::before {
    position: absolute;
    content: "";
    transition: 0.3s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: #707070 1px solid;
  }
  footer .footre_box .footer_frame ul.footer_list li a:hover::before {
    transition: 0.3s;
    opacity: 1;
    top: 0;
    bottom: -2px;
  }
  footer .footre_box .footer_frame ul.footer_list li.treatment {
    display: none;
  }
  footer .footre_box .footer_frame ul.footer_list li:last-child {
    border-right: none;
  }
  footer .copyright {
    margin: 0;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 1.6rem;
    height: 55px;
    width: 100%;
    letter-spacing: 0.05em;
    background-color: #043E7D;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: #CC9735 3px solid;
    box-sizing: border-box;
    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: "";
    transition: 0.3s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: #ffffff 1px solid;
  }
  footer .copyright a:hover::before {
    transition: 0.3s;
    opacity: 1;
    top: 0;
    bottom: -2px;
  }
  .footer_link {
    display: none;
  }
}
/* -----------------------------------------------------------
　ページトップへ
----------------------------------------------------------- */
#pagetop_position {
  display: block;
  margin: 0;
  padding: 0;
}
#pagetop_position #linkpagetop a {
  display: block;
  width: 4rem;
  height: 4rem;
  background: url("../img/pagetop_arrow.svg") no-repeat;
  background-size: 10%;
  background-position: center center;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
#pagetop_position #linkpagetop a:hover {
  transform: translateY(-10px);
  transition: 0.5s;
}

#pagetop {
  position: fixed;
  bottom: 0.5rem;
  right: 1rem;
  z-index: 999999;
}

@media screen and (min-width: 768px), print {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    display: block;
    width: 60px;
    height: 60px;
    background: url("../img/pagetop_arrow.svg") no-repeat;
    background-size: 4px;
    background-position: center center;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
  }
  #pagetop_position #linkpagetop a:hover {
    transform: translateY(-10px);
    transition: 0.5s;
  }
  #pagetop {
    position: fixed;
    bottom: 94px;
    right: 20%;
    z-index: 999999;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    display: block;
    width: 60px;
    height: 60px;
    background: url("../img/pagetop_arrow.svg") no-repeat;
    background-size: 4px;
    background-position: center center;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
  }
  #pagetop_position #linkpagetop a:hover {
    transform: translateY(-10px);
    transition: 0.5s;
  }
  #pagetop {
    position: fixed;
    bottom: 94px;
    right: 2%;
    z-index: 999999;
  }
}/*# sourceMappingURL=style.css.map */