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

 共通項目

======================================================================= */
/*関数*/
/* -----------------------------------------------------------
 関数
----------------------------------------------------------- */
/*サイトの横幅*/
/*media screen*/
/*文字SP*/
/*文字PC*/
/*基本フォント*/
/*游明朝*/
/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*ハンバーガー棒と文字*/
/*ハンバーガー背景*/
/*青*/
/*ピンク透過*/
/*ピンク*/
/*青*/
/*影*/
/*LINE緑*/
/*水色*/
/*青*/
/*青ホバー*/
/*灰色*/
/*灰色*/
/*白透過*/
/*灰色*/
/*水色*/
/*青*/
/*水色*/
/*ピンク*/
/*黄色*/
/*黄色*/
/*ピンク透過*/
/*ピンク*/
/*灰色*/
/*茶色*/
/*青*/
/*黄色*/
/*青*/
/*黒透過*/
/*ピンク透過*/
/*紫*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@font-face {
  font-family: "zen_maru_gothic_regular";
  src: url(../font/ZenMaruGothic-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zen_maru_gothic_bold";
  src: url(../font/ZenMaruGothic-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "zen_maru_gothic_Medium";
  src: url(../font/ZenMaruGothic-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
/*共通モジュール*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.cf::after {
  clear: both;
}

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

.fl_r {
  float: right;
}

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

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.small {
  font-size: smaller;
}

.no_style {
  list-style-type: none;
}

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

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

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

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

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.main_nav_sp {
  width: 100%;
}
.main_nav_sp .drawr {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 0 2rem 0;
  margin: 0 0 0 0;
  z-index: 9999999999999;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow: auto;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.main_nav_sp .drawr::-webkit-scrollbar {
  display: none;
}
.main_nav_sp .drawr ul.hbg {
  list-style-type: none;
  border-bottom: #242424 1px solid;
  width: 90%;
  margin: 20vw auto 20vw auto;
}
.main_nav_sp .drawr ul.hbg li {
  width: 100%;
  text-align: center;
}
.main_nav_sp .drawr ul.hbg li.treatment:hover {
  cursor: pointer;
  cursor: hand;
}
.main_nav_sp .drawr ul.hbg li.none {
  display: none;
}
.main_nav_sp .drawr ul.hbg li a {
  color: #242424;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 1rem;
  border-top: #242424 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  line-height: 140%;
}
.main_nav_sp .drawr ul.hbg li a span {
  display: none;
}
.main_nav_sp .drawr ul.hbg li .sub_nav_box {
  display: none;
  width: 100%;
}
.main_nav_sp .drawr ul.hbg li .sub_nav_box ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.main_nav_sp .drawr ul.hbg li .sub_nav_box ul.open_nav {
  display: block;
}
.main_nav_sp .drawr ul.hbg li .sub_nav_box ul li {
  width: 50%;
}
.main_nav_sp .drawr ul.hbg li .sub_nav_box ul li a {
  background-color: #1258A5;
  color: #ffffff;
  border-bottom: none;
  text-align: center;
  border-bottom: #ffffff 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main_nav_sp .drawr ul.hbg li .sub_nav_box ul li a::after {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li .sub_nav_box ul li:nth-child(odd) a {
  border-right: #ffffff 1px solid;
}
.main_nav_sp .drawr ul.hbg li .sub_nav_box ul li.self a {
  border-bottom: none;
}
.main_nav_sp .drawr ul.hbg li.treatment a::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.open_treatment a::after {
  font-family: "fontello";
  content: "\e809";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}

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

.toggle-label {
  cursor: pointer;
  display: block;
  width: 14%;
  height: 10vw;
  padding: 0 0 0.5vw 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.toggle-label:active {
  -webkit-tap-highlight-color: transparent;
}

.toggle-label {
  cursor: pointer;
  width: 100%;
}

.toggle-label .toggle-icon,
.toggle-label .toggle-icon:before,
.toggle-label .toggle-icon:after {
  position: relative;
  display: block;
  top: 50%;
  left: 50%;
  height: 3px;
  width: 28px;
  background: #ffffff;
  content: "";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.toggle-label .toggle-text {
  position: relative;
  display: block;
  top: calc(100% - 10px);
  height: 14px;
  color: #ffffff;
  text-align: center;
}

.toggle-label .toggle-text:before {
  position: absolute;
  width: 100%;
  left: 0;
  content: "MENU";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  visibility: visible;
  opacity: 1;
  font-size: 1rem;
}

.toggle-label .toggle-text:after {
  position: absolute;
  width: 100%;
  left: 0;
  content: "CLOSE";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  visibility: hidden;
  opacity: 0;
  font-size: 1rem;
}

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

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

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

.toggle:checked ~ .toggle-label .toggle-icon {
  background-color: transparent;
}

.toggle:checked ~ .toggle-label .toggle-icon:before,
.toggle:checked ~ .toggle-label .toggle-icon:after {
  top: 0;
}

.toggle:checked ~ .toggle-label .toggle-icon:before {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 1.5px;
}

.toggle:checked ~ .toggle-label .toggle-icon:after {
  -webkit-transform: translateX(-50%) translateY(-10px) rotate(-45deg);
          transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  top: 8.5px;
}

.toggle:checked ~ .toggle-label .toggle-text:before {
  visibility: hidden;
  opacity: 0;
}

.toggle:checked ~ .toggle-label .toggle-text:after {
  visibility: visible;
  opacity: 1;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 15%;
  max-width: 15%;
  position: fixed;
  cursor: pointer;
  right: 1%;
  top: 1vw;
  z-index: 99999999999;
  padding: 0 0 0.6rem 0;
  background-color: #1258A5;
  height: 12vw;
}

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

 共通項目

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

h2.top_title_notice {
  text-align: center;
  margin: 0;
}
h2.top_title_notice span {
  font-family: "zen_maru_gothic_bold";
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 160%;
  color: #1258A5;
  padding: 0 0 0.4rem 0;
  background-image: linear-gradient(to right, #1258A5 4px, transparent 4px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
h2.top_title_features {
  text-align: center;
  margin: 0;
}
h2.top_title_features span {
  font-family: "zen_maru_gothic_bold";
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 160%;
  color: #ffffff;
  padding: 0 0 0.4rem 0;
  background-image: linear-gradient(to right, #ffffff 4px, transparent 4px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
h2.low {
  text-align: center;
  margin: 4rem 0 2rem 0;
}
h2.low span {
  font-family: "zen_maru_gothic_bold";
  font-size: 2.2rem;
  font-weight: bold;
  color: #1258A5;
  letter-spacing: 0.05em;
  line-height: 120%;
  position: relative;
  display: inline-block;
}
h2.low span::after {
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  content: "";
  display: block;
  width: auto;
  height: 4px;
  background-image: linear-gradient(to right, #1258A5 4px, transparent 4px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
  background-position: left top;
}
h2.first {
  margin: 0 0 2rem 0;
}

h3.low {
  color: #ffffff;
  font-size: 1.9rem;
  text-align: left;
  font-family: "zen_maru_gothic_bold";
  font-weight: bold;
  background: url("../img/h3_bg.svg") no-repeat;
  background-position: left 3% center;
  background-size: 9%;
  background-color: #1258A5;
  margin: 4rem 0 1rem 0;
  padding: 0.7rem 0 0.7rem 14%;
  line-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
}
h3.first {
  margin: 0 0 1.5rem 0;
}

h4.low {
  color: #1258A5;
  font-family: "zen_maru_gothic_bold";
  font-weight: bold;
  font-size: 1.8rem;
  border-top: #1258A5 2px solid;
  border-bottom: #1258A5 2px solid;
  margin: 3rem 0 1rem 0;
  padding: 0.3rem 0 0.5rem 0;
  line-height: 120%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h4.first {
  margin: 0 0 1rem 0;
}

h5.low {
  color: #E57097;
  font-family: "zen_maru_gothic_bold";
  font-weight: bold;
  font-size: 1.7rem;
  background: url("../img/h5_bg.svg") no-repeat;
  background-position: left top 0.3rem;
  background-size: 4%;
  border-bottom: #E57097 2px dotted;
  margin: 2rem 0 1rem 0;
  padding: 0 0 0.3rem 6%;
  line-height: 120%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h5.first {
  margin: 0 0 1rem 0;
}

h6.low {
  color: #E57097;
  font-family: "zen_maru_gothic_bold";
  font-weight: bold;
  font-size: 1.6rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFE5EE));
  background: linear-gradient(transparent 50%, #FFE5EE 50%);
  margin: 2rem 0 1rem 0;
  padding: 0 0 0.2rem 0;
  line-height: 120%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h6.first {
  margin: 0 0 1rem 0;
}

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

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title_notice {
    text-align: center;
    margin: 0;
  }
  h2.top_title_notice span {
    font-family: "zen_maru_gothic_bold";
    font-weight: bold;
    font-size: 3.4rem;
    line-height: 160%;
    color: #1258A5;
    padding: 0 0 8px 0;
    background-image: linear-gradient(to right, #1258A5 4px, transparent 4px);
    background-size: 12px 4px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  h2.top_title_features {
    text-align: center;
    margin: 0;
  }
  h2.top_title_features span {
    font-family: "zen_maru_gothic_bold";
    font-weight: bold;
    font-size: 3.4rem;
    line-height: 160%;
    color: #ffffff;
    padding: 0 0 8px 0;
    background-image: linear-gradient(to right, #ffffff 4px, transparent 4px);
    background-size: 12px 4px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  h2.low {
    text-align: center;
    margin: 100px 0 30px 0;
  }
  h2.low span {
    font-family: "zen_maru_gothic_bold";
    font-size: 3.4rem;
    font-weight: bold;
    color: #1258A5;
    letter-spacing: 0.05em;
    line-height: 120%;
    border-bottom: #1258A5 2px do;
    position: relative;
    display: inline-block;
  }
  h2.low span::after {
    position: absolute;
    bottom: -0.5rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    content: "";
    display: block;
    width: auto;
    height: 3px;
    background-image: linear-gradient(to right, #1258A5 3px, transparent 3px);
    background-size: 10px 3px;
    background-repeat: repeat-x;
    background-position: left top;
  }
  h2.first {
    margin: 0 0 30px 0;
  }
  h3.low {
    color: #ffffff;
    font-size: 2.8rem;
    text-align: left;
    font-family: "zen_maru_gothic_bold";
    font-weight: normal;
    background: url("../img/h3_bg.svg") no-repeat;
    background-position: left 13px center;
    background-size: 42px;
    background-color: #1258A5;
    margin: 70px 0 15px 0;
    padding: 11px 0 11px 74px;
    line-height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 20px;
  }
  h3.first {
    margin: 0 0 20px 0;
  }
  h4.low {
    color: #1258A5;
    font-family: "zen_maru_gothic_bold";
    font-weight: bold;
    font-size: 2.4rem;
    border-top: #1258A5 2px solid;
    border-bottom: #1258A5 2px solid;
    margin: 60px 0 15px 0;
    padding: 6px 0 6px 0;
    line-height: 140%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  h4.first {
    margin: 0 0 15px 0;
  }
  h5.low {
    color: #E57097;
    font-family: "zen_maru_gothic_bold";
    font-weight: bold;
    font-size: 2.2rem;
    background: url("../img/h5_bg.svg") no-repeat;
    background-position: left top 5px;
    background-size: 17px;
    border-bottom: #E57097 2px dotted;
    margin: 50px 0 15px 0;
    padding: 0 0 5px 29px;
    line-height: 140%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  h5.first {
    margin: 0 0 15px 0;
  }
  h6.low {
    color: #E57097;
    font-family: "zen_maru_gothic_bold";
    font-weight: bold;
    font-size: 2rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFE5EE));
    background: linear-gradient(transparent 50%, #FFE5EE 50%);
    margin: 50px 0 15px 0;
    padding: 0 0 5px 0;
    line-height: 140%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  h6.first {
    margin: 0 0 15px 0;
  }
  p {
    font-size: 1.6rem;
    margin: 0 0 30px 0;
    line-height: 160%;
    letter-spacing: 0.05em;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
table.timetable {
  padding: 0;
  margin: 0 auto;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  border-collapse: separate;
  border-spacing: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 140%;
}
table.timetable tr th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #ffffff;
  background-color: #458BD6;
  border: none;
  border-radius: 0.4rem;
  width: 8%;
}
table.timetable tr th.time {
  letter-spacing: 0.1em;
}
table.timetable tr td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #242424;
  background-color: #ffffff;
  border-radius: 0.4rem;
}
table.timetable tr td i {
  font-size: 1.2rem;
  color: #242424;
}
table.timetable tr td.time {
  font-size: 1.2rem;
  width: 30%;
  text-align: center;
  color: #242424;
  background-color: #BEDAF9;
}
table.timetable tr td.kome {
  color: #E32424;
}

.color_pink table.timetable tr th {
  background-color: #E57097;
}
.color_pink table.timetable tr td.time {
  background-color: #FFE5EC;
}

.color_pink table.timetable tr th {
  background-color: #E57097;
}
.color_pink table.timetable tr td.time {
  background-color: #FFE5EC;
}

.color_yellow table.timetable tr th {
  background-color: #E5CA70;
}
.color_yellow table.timetable tr td.time {
  background-color: #FFF9E5;
}

@media screen and (min-width: 768px), print {
  table.timetable {
    padding: 0;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border-collapse: separate;
    border-spacing: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 140%;
  }
  table.timetable tr th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 0;
    vertical-align: middle;
    color: #ffffff;
    background-color: #458BD6;
    border: none;
    border-radius: 10px;
    width: 8%;
    height: 50px;
  }
  table.timetable tr th.time {
    width: 317px;
    letter-spacing: 0.1em;
  }
  table.timetable tr td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: normal;
    font-size: 1.6rem;
    padding: 0;
    vertical-align: middle;
    color: #242424;
    height: 50px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 10px;
  }
  table.timetable tr td i {
    font-size: 1.8rem;
    color: #242424;
  }
  table.timetable tr td.time {
    font-size: 1.6rem;
    width: 317px;
    text-align: center;
    color: #242424;
    background-color: #BEDAF9;
  }
  table.timetable tr td.kome {
    color: #E32424;
  }
  .color_pink table.timetable tr th {
    background-color: #E57097;
  }
  .color_pink table.timetable tr td.time {
    background-color: #FFE5EC;
  }
  .color_pink table.timetable tr th {
    background-color: #E57097;
  }
  .color_pink table.timetable tr td.time {
    background-color: #FFE5EC;
  }
  .color_yellow table.timetable tr th {
    background-color: #E5CA70;
  }
  .color_yellow table.timetable tr td.time {
    background-color: #FFF9E5;
  }
}
/*テーブル*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table {
  width: 100%;
  border-collapse: collapse;
  color: #242424;
  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: 30%;
  padding: 0.5rem;
  border: #242424 1px solid;
  background-color: #E57097;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table tr td {
  width: 70%;
  padding: 0.5rem;
  border: #242424 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
}

@media screen and (min-width: 768px), print {
  table.low_table {
    width: 100%;
    border-collapse: collapse;
    color: #242424;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
  table.low_table caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table tr th {
    width: 40%;
    padding: 20px;
    border: #242424 1px solid;
    background-color: #E57097;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table tr td {
    width: 60%;
    padding: 20px;
    border: #242424 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
  }
}
/* -----------------------------------------------------------
　テーブル横幅均一
----------------------------------------------------------- */
table.low_table_fixed {
  width: 100%;
  border-collapse: collapse;
  color: #242424;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
  table-layout: fixed;
}
table.low_table_fixed caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_fixed tr th {
  width: auto;
  padding: 0.5rem;
  border: #242424 1px solid;
  background-color: #E57097;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table_fixed tr td {
  width: auto;
  padding: 0.5rem;
  border: #242424 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
}

@media screen and (min-width: 768px), print {
  table.low_table_fixed {
    width: 100%;
    border-collapse: collapse;
    color: #242424;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    table-layout: fixed;
    line-height: 160%;
  }
  table.low_table_fixed caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_fixed tr th {
    width: auto;
    padding: 20px;
    border: #242424 1px solid;
    background-color: #E57097;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table_fixed tr td {
    width: auto;
    padding: 20px;
    border: #242424 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide {
  width: 1200px;
  border-collapse: separate;
  color: #242424;
  font-size: 1.4rem;
  margin: 0 0 0 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: auto;
  padding: 1rem;
  border-bottom: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  background-color: #E5F0FC;
  color: #242424;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table_slide tr th.lt {
  border-top-left-radius: 1rem;
}
table.low_table_slide tr th:last-child {
  border-right: #CCCCCC 1px solid;
}
table.low_table_slide tr td {
  width: auto;
  padding: 1rem;
  border-bottom: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
}
table.low_table_slide tr td.rt {
  border-top-right-radius: 1rem;
}
table.low_table_slide tr td ul {
  margin: 1rem 0 2rem 0;
}
table.low_table_slide tr td:last-child {
  border-right: #CCCCCC 1px solid;
}
table.low_table_slide tr:first-child th {
  border-top: #CCCCCC 1px solid;
}
table.low_table_slide tr:first-child td {
  border-top: #CCCCCC 1px solid;
}
table.low_table_slide.td_checkup th {
  width: 20%;
}
table.low_table_slide.td_checkup td {
  width: 80%;
  text-align: left;
}
table.low_table_slide.price_table th {
  width: 30%;
  text-align: left;
}
table.low_table_slide.price_table td {
  width: 50%;
  text-align: left;
}
table.low_table_slide.price_table td.price {
  width: 20%;
  text-align: right;
}
table.low_table_slide.price_table td.price2 {
  width: 70%;
  text-align: right;
}
table.low_table_slide.equal tr th {
  width: 33%;
}
table.low_table_slide.equal tr td {
  width: 33%;
}
table.low_table_slide.list_table tr td {
  text-align: left;
  vertical-align: top;
}
table.low_table_slide.w100 {
  width: 100%;
}

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

@media screen and (min-width: 768px), print {
  table.low_table_slide {
    width: 100%;
    border-collapse: separate;
    color: #242424;
    font-size: 1.6rem;
    margin: 0 0 0 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: auto;
    padding: 20px;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    background-color: #E5F0FC;
    color: #242424;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table_slide tr th.lt {
    border-top-left-radius: 20px;
  }
  table.low_table_slide tr th:last-child {
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_slide tr td {
    width: auto;
    padding: 20px;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
  }
  table.low_table_slide tr td.rt {
    border-top-right-radius: 20px;
  }
  table.low_table_slide tr td ul {
    margin: 10px 0 20px 0;
  }
  table.low_table_slide tr td:last-child {
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_slide tr:first-child th {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table_slide tr:first-child td {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table_slide tr:last-child th {
    border-bottom: none;
  }
  table.low_table_slide.td_checkup th {
    width: 30%;
  }
  table.low_table_slide.td_checkup td {
    width: 70%;
    text-align: left;
  }
  table.low_table_slide.price_table th {
    width: 30%;
    text-align: left;
  }
  table.low_table_slide.price_table td {
    width: 50%;
    text-align: left;
  }
  table.low_table_slide.price_table td.price {
    width: 20%;
    text-align: right;
  }
  table.low_table_slide.price_table td.price2 {
    width: 70%;
    text-align: right;
  }
  table.low_table_slide.equal tr th {
    width: 33%;
  }
  table.low_table_slide.equal tr td {
    width: 33%;
  }
  table.low_table_slide.list_table tr td {
    text-align: left;
    vertical-align: top;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock {
  width: 100%;
  border-collapse: collapse;
  color: #242424;
  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;
  border-bottom: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  background-color: #E5F0FC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
}
table.low_table_spblock tr td {
  width: 100%;
  padding: 1rem 0.5rem;
  border-bottom: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  line-height: 140%;
  display: block;
}
table.low_table_spblock tr td a {
  color: #CCCCCC;
  font-weight: bold;
}
table.low_table_spblock tr td ul.list_maru {
  margin: 1rem 0 2rem 0;
}
table.low_table_spblock tr:first-child th {
  border-top: #CCCCCC 1px solid;
}
table.low_table_spblock.checkup tr th {
  text-align: center;
}
table.low_table_spblock.price_table td.price {
  text-align: right;
}
table.low_table_spblock.price_table td.price2 {
  text-align: right;
}

@media screen and (min-width: 768px), print {
  table.low_table_spblock {
    width: 100%;
    border-collapse: collapse;
    color: #242424;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  table.low_table_spblock caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_spblock tr th {
    width: 30%;
    padding: 20px;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    background-color: #E5F0FC;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
  }
  table.low_table_spblock tr td {
    width: 70%;
    padding: 20px;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    line-height: 140%;
    display: table-cell;
  }
  table.low_table_spblock tr td a {
    color: #CCCCCC;
    font-weight: bold;
  }
  table.low_table_spblock tr td ul.list_maru {
    margin: 10px 0 20px 0;
  }
  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;
  }
  table.low_table_spblock.checkup tr th {
    text-align: center;
  }
  table.low_table_spblock.price_table th {
    width: 30%;
    text-align: left;
  }
  table.low_table_spblock.price_table td {
    width: 50%;
    text-align: left;
  }
  table.low_table_spblock.price_table td.price {
    width: 20%;
    text-align: right;
  }
  table.low_table_spblock.price_table td.price2 {
    width: 70%;
    text-align: right;
  }
}
/*画像*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.img_right2 {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_right2 img {
  width: 70%;
  height: auto;
}

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

@media screen and (min-width: 768px), print {
  .img_right {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right img {
    width: 400px;
    height: auto;
  }
  .img_right2 {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right2 img {
    width: 310px;
    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;
}
ul.list_normal.-none {
  list-style-type: none;
}
ul.list_normal.-none li {
  margin: 0 0 1rem 1rem;
}

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

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

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

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

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

/*標準 maru 横並び*/
ul.list_maru_beside {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 1rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
ul.list_maru_beside li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.5rem;
  background-size: 1rem;
  margin: 0 2rem 1rem 0;
  padding: 0 0 0 1.8rem;
}

/*リンクリスト*/
ul.list_link {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_link 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.6rem;
    margin: 0 0 20px 0;
  }
  ul.list_normal li {
    margin: 0 0 10px 25px;
    padding: 0;
  }
  ul.list_normal.-none {
    list-style-type: none;
  }
  ul.list_normal.-none li {
    margin: 0 0 10px 15px;
  }
  /*標準2列 disc*/
  ul.list_normal_two {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_normal_two li {
    width: 45%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準3列 disc*/
  ul.list_normal_three {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_normal_three li {
    width: 30%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準 maru*/
  ul.list_maru {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
  ul.list_maru li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 7px;
    background-size: 12px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準2列 maru*/
  ul.list_maru_two {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_two li {
    width: 45%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 7px;
    background-size: 12px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準3列 maru*/
  ul.list_maru_three {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_three li {
    width: 30%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 7px;
    background-size: 12px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準 maru 横並び*/
  ul.list_maru_beside {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 10px 0 0 0;
  }
  ul.list_maru_beside li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 7px;
    background-size: 12px;
    margin: 0 20px 10px 0;
    padding: 0 0 0 25px;
  }
  /*リンクリスト*/
  ul.list_link {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    width: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_link li {
    width: auto;
    margin: 0 10px 0 0;
    padding: 0;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/*略歴*/
dl.bio_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.bio_list dt {
  width: 15%;
  margin: 0 0 1rem 0;
}
dl.bio_list dd {
  width: 83%;
  margin: 0 0 1rem 0;
}

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

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

/*タイトルボックス*/
dl.title_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
}
dl.title_box dt {
  width: 100%;
  margin: 0;
  background-color: #E5F0FC;
  color: #242424;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}
dl.title_box dt:first-child {
  border-top: #CCCCCC 1px solid;
}
dl.title_box dd {
  width: 100%;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}

@media screen and (min-width: 768px), print {
  /*略歴*/
  dl.bio_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.bio_list dt {
    width: 60px;
    margin: 0 0 10px 0;
  }
  dl.bio_list dd {
    width: 1140px;
    margin: 0 0 10px 0;
  }
  /*数字*/
  dl.num_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.num_list dt {
    width: 20px;
    margin: 0 0 1rem 0;
  }
  dl.num_list dd {
    width: 1180px;
    margin: 0 0 1rem 0;
  }
  /*米*/
  dl.kome_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.kome_list dt {
    width: 20px;
    margin: 0 0 1rem 0;
    padding: 0 0 0 1px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.kome_list dd {
    width: 1175px;
    margin: 0 0 1rem 0;
  }
  /*タイトルボックス*/
  dl.title_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  dl.title_box dt {
    width: 100%;
    margin: 0;
    background-color: #E5F0FC;
    color: #242424;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
  dl.title_box dt:first-child {
    border-top: #CCCCCC 1px solid;
  }
  dl.title_box dd {
    width: 100%;
    margin: 0;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用
----------------------------------------------------------- */
/*矢印*/
.arrow {
  width: 0;
  height: 0;
  border: none;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 30px solid rgba(229, 112, 151, 0.7);
  text-align: center;
  display: block;
  margin: 30px auto;
}

/*強調*/
.emphasis {
  background-color: #F2F8FF;
  border: #A3CAF5 3px solid;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
  margin: 0 0 2rem 0;
}
.emphasis p.mb_none {
  margin: 0;
}
.emphasis dl.num_list {
  width: 100%;
}
.emphasis dl.num_list.mb_none {
  margin: 0;
}

/*二列*/
/*下層電話*/
.low_tel {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  font-weight: bold;
}
.low_tel span {
  font-size: 1.4rem;
}
.low_tel span a {
  color: #242424;
  text-decoration: none;
}

.low_tel2 {
  margin: 0 0 2rem 0;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.low_tel2 span {
  font-size: 2.4rem;
}
.low_tel2 span a {
  color: #242424;
  text-decoration: none;
}

/*赤字*/
.red_text {
  color: #E32424;
}

/*太字*/
.red_text {
  font-weight: bold;
}

@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 rgba(229, 112, 151, 0.7);
    text-align: center;
    display: block;
    margin: 30px auto;
  }
  /*二列*/
  .two_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 1200px;
  }
  .two_box section {
    width: 48%;
  }
  /*強調*/
  .emphasis {
    background-color: #F2F8FF;
    border: #A3CAF5 3px solid;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 20px;
    margin: 0 0 20px 0;
  }
  .emphasis p.mb_none {
    margin: 0;
  }
  .emphasis dl.num_list {
    width: 1154px;
  }
  .emphasis dl.num_list dt {
    width: 20px;
    margin: 0 0 1rem 0;
  }
  .emphasis dl.num_list dd {
    width: 1134px;
    margin: 0 0 1rem 0;
  }
  .emphasis dl.num_list.mb_none {
    margin: 0;
  }
  /*下層電話*/
  .low_tel {
    margin: 0 0 20px 0;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .low_tel span {
    font-size: 1.6rem;
  }
  .low_tel span a {
    color: #242424;
    text-decoration: none;
  }
  .low_tel2 {
    margin: 0 0 20px 0;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
  }
  .low_tel2 span {
    font-size: 4rem;
  }
  .low_tel2 span a {
    color: #242424;
    text-decoration: none;
  }
  /*赤字*/
  .red_text {
    color: #E32424;
  }
  /*太字*/
  .red_text {
    font-weight: bold;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
ul.pankuzu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  width: 96%;
  margin: 2rem auto 1rem auto;
}
ul.pankuzu_list li::after {
  content: "＞";
  font-size: 1.4rem;
  color: #242424;
  margin: 0 0.5rem;
}
ul.pankuzu_list li a {
  font-size: 1.4rem;
  color: #242424;
  text-decoration: none;
}
ul.pankuzu_list li:last-child:after {
  content: "";
  margin: 0;
}

@media screen and (min-width: 768px), print {
  ul.pankuzu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    width: 1200px;
    margin: 20px auto 0 auto;
  }
  ul.pankuzu_list li::after {
    content: "＞";
    font-size: 1.6rem;
    color: #242424;
    margin: 0 10px;
  }
  ul.pankuzu_list li a {
    font-size: 1.4rem;
    color: #242424;
    text-decoration: none;
  }
  ul.pankuzu_list li:last-child:after {
    content: "";
    margin: 0;
  }
}
/* -----------------------------------------------------------
　ライトボックス
----------------------------------------------------------- */
.lightbox {
  z-index: 9999999 !important;
}

.lightbox_frame {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lightbox_frame .img_box {
  width: 48%;
  margin: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lightbox_frame .img_box a {
  text-decoration: none;
  width: 100%;
}
.lightbox_frame .img_box a img {
  width: 100%;
  height: auto;
}
.lightbox_frame .img_box a span {
  display: block;
  text-align: center;
  color: #242424;
  font-size: 1.4rem;
  margin: 1.5rem 0 0 0;
  font-weight: bold;
}

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

@media screen and (min-width: 768px), print {
  .lightbox {
    z-index: 9999999 !important;
  }
  .lightbox_frame {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lightbox_frame .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lightbox_frame .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame .img_box a img {
    width: 380px;
    height: auto;
  }
  .lightbox_frame .img_box a span {
    display: block;
    text-align: center;
    color: #242424;
    font-size: 2rem;
    margin: 30px 0 0 0;
    font-weight: bold;
  }
  .lightbox_frame2 {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lightbox_frame2 .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lightbox_frame2 .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame2 .img_box a img {
    width: 380px;
    height: auto;
  }
}
/* -----------------------------------------------------------
　リンク、ボタン
----------------------------------------------------------- */
.low_link_text {
  color: #242424;
  border-bottom: #E57097 1px solid;
  font-weight: bold;
  text-decoration: none;
}

.low_button {
  background: url("../img/icon_02.svg") no-repeat;
  background-position: right 1.5rem center;
  background-size: 0.8rem;
  background-color: #1258A5;
  color: #ffffff;
  width: auto;
  height: auto;
  margin: 0 0 1rem 0;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: normal;
  padding: 1rem 3.5rem 1rem 2rem;
  border-radius: 3rem;
  line-height: 120%;
  display: inline-block;
}

.two_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.two_button a {
  width: 28%;
  margin: 0 0 1rem 0;
}

@media screen and (min-width: 768px), print {
  .low_link_text {
    color: #242424;
    border-bottom: #E57097 1px solid;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .low_link_text:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .low_button {
    background: url("../img/icon_02.svg") no-repeat;
    background-position: right 24px center;
    background-size: 8px;
    background-color: #1258A5;
    color: #ffffff;
    width: auto;
    height: auto;
    margin: 0 0 18px 0;
    text-align: center;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: normal;
    padding: 10px 35px 10px 20px;
    border-radius: 40px;
    line-height: 140%;
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button:hover {
    background-color: #65A6EE;
    -webkit-box-shadow: 0 0 6px #063c75 inset;
            box-shadow: 0 0 6px #063c75 inset;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .two_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .two_button a {
    width: 200px;
    margin: 0 10px 18px 10px;
  }
}
/* -----------------------------------------------------------
ページ内リンク
----------------------------------------------------------- */
@media screen and (min-width: 768px), print {
  .shingles_vaccine {
    padding: 56px 0 0 0;
    margin: -56px 0 0 0;
  }
}
/* -----------------------------------------------------------
バナーリンク
----------------------------------------------------------- */
ul.bana_link {
  list-style-type: none;
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
}
ul.bana_link li {
  width: 100%;
  margin: 0 0 1rem 0;
}
ul.bana_link li a {
  text-decoration: none;
  display: block;
  width: 100%;
}
ul.bana_link li a img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  ul.bana_link {
    list-style-type: none;
    width: auto;
    max-width: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.bana_link li {
    width: 300px;
    margin: 0 20px 0 0;
  }
  ul.bana_link li a {
    text-decoration: none;
    display: block;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  ul.bana_link li a img {
    width: 100%;
    height: auto;
  }
  ul.bana_link li a:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
/*下層*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.text_doctor {
  text-align: right;
}
.text_doctor span {
  font-size: 1.6rem;
}

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

.machine_box2 {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.machine_box2 section {
  width: 100%;
  margin: 0 0 4rem 0;
}
.machine_box2 section h3 {
  margin: 0 0 1rem 0;
}
.machine_box2 section img {
  width: 100%;
  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: 80px 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .machine_box figure {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .machine_box figure figcaption {
    text-align: center;
    font-weight: normal;
    margin: 0 0 10px 0;
    font-size: 2.2rem;
  }
  .machine_box figure img {
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
  }
  .machine_box2 {
    width: 100%;
    margin: 80px 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .machine_box2 section {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .machine_box2 section h3 {
    margin: 0 0 20px 0;
  }
  .machine_box2 section img {
    width: 100%;
    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: #1258A5 1px solid;
  border-radius: 0.5rem;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.flow_box h3 {
  margin: 0 0 1rem 0;
}
.flow_box p.mb_none {
  margin: 0;
}

@media screen and (min-width: 768px), print {
  .flow_box {
    border: #1258A5 1px solid;
    border-radius: 15px;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .flow_box h3 {
    margin: 0 0 20px 0;
  }
  .flow_box p.mb_none {
    margin: 0;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
iframe.accessmap {
  width: 96%;
  height: 500px;
  display: block;
  margin: 0 auto 2rem auto;
}

.access_button {
  background: url("../img/icon_02.svg") no-repeat;
  background-position: right 1.5rem center;
  background-size: 0.8rem;
  background-color: #1258A5;
  color: #ffffff;
  width: 60%;
  height: auto;
  margin: 0 auto 1rem auto;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: normal;
  padding: 1rem 3.5rem 1rem 2rem;
  border-radius: 3rem;
  line-height: 120%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

dl.low_timetable_notice {
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.4rem;
  line-height: 140%;
  margin: 1rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
dl.low_timetable_notice dt {
  width: 6%;
}
dl.low_timetable_notice dd {
  width: 92%;
}

@media screen and (min-width: 768px), print {
  iframe.accessmap {
    width: 100%;
    height: 500px;
    display: block;
    margin: 0 0 40px 0;
  }
  .access_button {
    background: url("../img/icon_02.svg") no-repeat;
    background-position: right 24px center;
    background-size: 8px;
    background-color: #1258A5;
    color: #ffffff;
    width: 200px;
    height: auto;
    margin: 0 auto 18px auto;
    text-align: center;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: normal;
    padding: 10px 35px 10px 20px;
    border-radius: 40px;
    line-height: 140%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .access_button:hover {
    background-color: #65A6EE;
    -webkit-box-shadow: 0 0 6px #063c75 inset;
            box-shadow: 0 0 6px #063c75 inset;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  dl.low_timetable_notice {
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.6rem;
    line-height: 160%;
    margin: 21px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 1200px;
  }
  dl.low_timetable_notice dt {
    width: 30px;
  }
  dl.low_timetable_notice dd {
    width: 1170px;
  }
}
/*-----------------------------------------------------------
 よくある質問
----------------------------------------------------------- */
dl.qabox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  line-height: 140%;
  width: 100%;
}
dl.qabox dt {
  width: 12%;
  margin: 0 0 1rem 0;
}
dl.qabox dt span {
  color: #ffffff;
  width: 3.5rem;
  height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
dl.qabox dt.question span {
  background-color: #1258A5;
}
dl.qabox dt.answer span {
  background-color: #A3CAF5;
}
dl.qabox dd {
  width: 85%;
  margin: 0 0 2rem 0;
  padding: 0.6rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.qabox dd.question {
  font-weight: bold;
}
dl.qabox dd.answer {
  margin: 0 0 4rem 0;
}

@media screen and (min-width: 768px), print {
  dl.qabox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.qabox dt {
    width: 80px;
    margin: 0 0 20px 0;
  }
  dl.qabox dt span {
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  dl.qabox dt.question span {
    background-color: #1258A5;
  }
  dl.qabox dt.answer {
    margin: 0 0 60px 0;
  }
  dl.qabox dt.answer span {
    background-color: #A3CAF5;
  }
  dl.qabox dd {
    width: 1120px;
    margin: 0 0 20px 0;
    padding: 10px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.qabox dd.question {
    font-weight: bold;
  }
  dl.qabox dd.answer {
    margin: 0 0 60px 0;
  }
}
/*メールフォームプロ用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　お問い合わせ・メールフォーム
----------------------------------------------------------- */
#mailformpro table {
  font-size: 1.4rem;
  line-height: 140%;
  width: 100%;
}
#mailformpro table tr th {
  display: block;
  text-align: left;
  font-weight: normal;
  background-color: #E57097;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #242424;
  border-top: #1258A5 1px solid;
  border-left: #1258A5 1px solid;
  border-right: #1258A5 1px solid;
}
#mailformpro table tr th span {
  color: #E32424;
  display: inline-block;
  padding: 0 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 0.6rem;
}
#mailformpro table tr td {
  display: block;
  text-align: left;
  border-top: #1258A5 1px solid;
  border-left: #1258A5 1px solid;
  border-right: #1258A5 1px solid;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#mailformpro table tr td ol {
  list-style-type: none;
}
#mailformpro table tr td input[type=text], #mailformpro table tr td input[type=tel], #mailformpro table tr td input[type=email] {
  font-size: 1.2rem;
  width: 90%;
  margin: 0 0 0.6rem 0;
}
#mailformpro table tr td select {
  font-size: 1.2rem;
  width: 90%;
}
#mailformpro table tr td select.time {
  width: 12%;
}
#mailformpro table tr td textarea {
  font-size: 1.2rem;
  width: 90%;
  min-height: 40vw;
}
#mailformpro table tr:last-child td {
  border-bottom: #1258A5 1px solid;
}

@media screen and (min-width: 768px), print {
  #mailformpro table {
    font-size: 1.6rem;
    line-height: 140%;
    width: 1200px;
  }
  #mailformpro table tr th {
    width: 400px;
    display: table-cell;
    text-align: left;
    font-weight: normal;
    background-color: #E57097;
    padding: 1.5rem 1rem 1.5rem 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #1258A5 1px solid;
    border-left: #1258A5 1px solid;
    border-right: #1258A5 1px solid;
    vertical-align: middle;
  }
  #mailformpro table tr th span {
    color: #E32424;
    display: inline-block;
    padding: 0 0.2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 1rem;
  }
  #mailformpro table tr td {
    width: 800px;
    display: table-cell;
    text-align: left;
    border-top: #1258A5 1px solid;
    border-left: #1258A5 1px solid;
    border-right: #1258A5 1px solid;
    padding: 1.5rem 3rem 1.5rem 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    vertical-align: middle;
    line-height: 140%;
  }
  #mailformpro table tr td ol {
    list-style-type: none;
  }
  #mailformpro table tr td ol li {
    margin: 0 0 5px 0;
  }
  #mailformpro table tr td input[type=text], #mailformpro table tr td input[type=tel], #mailformpro table tr td input[type=email] {
    font-size: 1.6rem;
    width: 300px;
    margin: 0 1rem 0 0;
  }
  #mailformpro table tr td select {
    font-size: 1.6rem;
    width: 300px;
  }
  #mailformpro table tr td select.time {
    width: 60px;
  }
  #mailformpro table tr td textarea {
    font-size: 1.6rem;
    width: 600px;
    min-height: 300px;
  }
}
/* -----------------------------------------------------------
 フォントサイズ基本
----------------------------------------------------------- */
html {
  font-size: 3.125vw;
  overflow-y: auto;
  font-family: "zen_maru_gothic_Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #242424;
  background-color: #ffffff;
  padding: 0 0 13vw 0;
  /*ページ内リンク用*/
  scroll-behavior: smooth;
}

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

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

.section_ajst {
  margin: 2rem 0 0 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;
  }
  .section_ajst {
    margin: 30px 0 0 0;
  }
  .pc_none {
    display: none;
  }
  .sp_none {
    display: block;
  }
  .pc_none_span {
    display: none;
  }
  .sp_none_span {
    display: inline;
  }
}
/* -----------------------------------------------------------
　枠
----------------------------------------------------------- */
.wrapper {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

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

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

@media screen and (min-width: 768px), print {
  .wrapper {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .wrapper_low {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .main {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .main_low {
    height: auto;
    width: 1200px;
    margin: 50px auto 100px auto;
    padding: 0;
  }
}
/* -----------------------------------------------------------
　ヘッダー
----------------------------------------------------------- */
header.header {
  padding: 1vw 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 9999;
  /*トップキービジュアル*/
  /*下層キービジュアル*/
}
header.header .header_sp {
  width: 100%;
  height: 15vw;
  margin: 0;
  /*ロゴ*/
}
header.header .header_sp .head_logo {
  width: 60%;
  margin: 0 0 0 2%;
}
header.header .header_sp .head_logo a {
  display: block;
  width: 100%;
  text-decoration: none;
}
header.header .header_sp .head_logo a img {
  width: 100%;
  height: auto;
}
header.header .key_visual {
  position: relative;
  width: 100%;
  height: 80vw;
}
header.header .key_visual .key {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  /*大枠*/
}
header.header .key_visual .key .key_bg {
  width: 100%;
  height: 80vw;
}
header.header .key_visual .key .key_bg .key_contents, header.header .key_visual .key .key_bg .key_05_content {
  position: absolute;
  top: 10vw;
  left: 0;
  right: 0;
  z-index: 2;
  width: 96%;
  height: 40vw;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
header.header .key_visual .key .key_bg .key_contents .key_text1, header.header .key_visual .key .key_bg .key_05_content .key_text1 {
  width: 80%;
  background-color: rgba(101, 166, 238, 0.7);
  color: #ffffff;
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.1rem;
  padding: 0.5rem 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 0.5rem auto;
  text-align: center;
}
header.header .key_visual .key .key_bg .key_contents .key_text2, header.header .key_visual .key .key_bg .key_05_content .key_text2 {
  width: 22%;
  background-color: rgba(101, 166, 238, 0.7);
  color: #ffffff;
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.2rem;
  padding: 0.5rem 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 3% 0.5rem 0;
  text-align: center;
}
header.header .key_visual .key .key_bg .key_contents .key_text3, header.header .key_visual .key .key_bg .key_05_content .key_text3 {
  width: 75%;
  background-color: rgba(101, 166, 238, 0.7);
  color: #ffffff;
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.2rem;
  padding: 0.5rem 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0.5rem 0;
  text-align: center;
}
header.header .key_visual .key .key_bg .key_contents .key_text3 span, header.header .key_visual .key .key_bg .key_05_content .key_text3 span {
  font-size: 1rem;
}
header.header .key_visual .key .key_bg .key_contents .key_text4, header.header .key_visual .key .key_bg .key_05_content .key_text4 {
  width: 60%;
  background-color: rgba(229, 112, 151, 0.7);
  color: #ffffff;
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.2rem;
  padding: 0.5rem 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 0 auto;
}
header.header .key_visual .key .key_bg .key_05_content {
  position: absolute;
  inset: 0;
  margin: auto;
  height: initial;
  margin-top: 1em;
  margin-bottom: 1em;
  background-color: rgba(255, 255, 255, 0.7); /* 白に70%の透過 */
  padding: 2rem;
  text-align: center;
  max-width: 600px;
}
header.header .key_visual .key .key_bg .key_05_content h2 {
  font-size: 1.6rem;
}
header.header .key_visual .key .key_bg .key_05_content p {
  padding-top: 1em;
  margin-bottom: initial;
  font-size: 1.2rem;
  text-align: justify;
}
header.header .key_visual .key .key_01 {
  background: url("../img/key_visual_01.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
header.header .key_visual .key .key_02 {
  background: url("../img/key_visual_02.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
header.header .key_visual .key .key_03 {
  background: url("../img/key_visual_03.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
header.header .key_visual .key .key_04 {
  background: url("../img/key_visual_06.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
header.header .key_visual .key .key_05 {
  background: url("../img/key_visual_05.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
header.header .key_visual_low {
  width: 100%;
  height: 35vw;
  background: url("../img/key_visual_low.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
header.header .key_visual_low h1 {
  background-color: rgba(229, 112, 151, 0.7);
  color: #ffffff;
  display: inline-block;
  font-family: "zen_maru_gothic_bold";
  font-size: 2.2rem;
  font-weight: bold;
  padding: 0.7rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header.header .header_box {
  display: none;
}

@media screen and (min-width: 768px), print {
  header.header {
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 9999;
    /*トップキービジュアル*/
    /*下層キービジュアル*/
  }
  header.header .header_sp {
    display: none;
  }
  header.header .key_visual {
    position: relative;
    width: 100%;
    height: 800px;
    background-color: beige;
  }
  header.header .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    /*大枠*/
  }
  header.header .key_visual .key .key_bg {
    width: 100%;
    height: 800px;
  }
  header.header .key_visual .key .key_bg .key_contents, header.header .key_visual .key .key_bg .key_05_content {
    position: absolute;
    top: 300px;
    left: 0;
    right: 0;
    z-index: 2;
    width: 843px;
    height: 203px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  header.header .key_visual .key .key_bg .key_contents .key_text1, header.header .key_visual .key .key_bg .key_05_content .key_text1 {
    width: 742px;
    background-color: rgba(101, 166, 238, 0.7);
    color: #ffffff;
    font-family: "zen_maru_gothic_Medium";
    font-size: 2rem;
    padding: 4px 0 4px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto 15px auto;
    text-align: center;
    letter-spacing: 0.2em;
  }
  header.header .key_visual .key .key_bg .key_contents .key_text2, header.header .key_visual .key .key_bg .key_05_content .key_text2 {
    width: 178px;
    background-color: rgba(101, 166, 238, 0.7);
    color: #ffffff;
    font-family: "zen_maru_gothic_Medium";
    font-size: 2.8rem;
    padding: 8px 0 8px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 15px 15px 0;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.2em;
  }
  header.header .key_visual .key .key_bg .key_contents .key_text3, header.header .key_visual .key .key_bg .key_05_content .key_text3 {
    width: 650px;
    background-color: rgba(101, 166, 238, 0.7);
    color: #ffffff;
    font-family: "zen_maru_gothic_Medium";
    font-size: 2.8rem;
    padding: 7px 0 7px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 13px 0;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.2em;
  }
  header.header .key_visual .key .key_bg .key_contents .key_text3 span, header.header .key_visual .key .key_bg .key_05_content .key_text3 span {
    font-size: 2rem;
  }
  header.header .key_visual .key .key_bg .key_contents .key_text4, header.header .key_visual .key .key_bg .key_05_content .key_text4 {
    width: 396px;
    background-color: rgba(229, 112, 151, 0.7);
    color: #ffffff;
    font-family: "zen_maru_gothic_Medium";
    font-size: 2.8rem;
    padding: 3px 0 3px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto 0 auto;
    text-align: center;
    letter-spacing: 0.2em;
  }
  header.header .key_visual .key .key_bg .key_05_content {
    height: 280px;
    background-color: rgba(255, 255, 255, 0.7); /* 白に70%の透過 */
    padding: 2rem;
    text-align: center;
    max-width: 800px;
  }
  header.header .key_visual .key .key_bg .key_05_content h2 {
    width: 100%;
    font-size: 3.4rem;
  }
  header.header .key_visual .key .key_bg .key_05_content p {
    padding-top: 1em;
    font-size: 1.6rem;
    text-align: center;
  }
  header.header .key_visual .key .key_01 {
    background: url("../img/key_visual_01.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  header.header .key_visual .key .key_02 {
    background: url("../img/key_visual_02.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  header.header .key_visual .key .key_03 {
    background: url("../img/key_visual_03.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  header.header .key_visual .key .key_04 {
    background: url("../img/key_visual_06.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  header.header .key_visual_low {
    width: 100%;
    height: 500px;
    background: url("../img/key_visual_low.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header.header .key_visual_low h1 {
    background-color: rgba(229, 112, 151, 0.7);
    color: #ffffff;
    display: inline-block;
    font-family: "zen_maru_gothic_bold";
    font-size: 3.4rem;
    font-weight: bold;
    padding: 18px 12px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header.header .header_box {
    width: 887px;
    margin: 20px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header.header .header_box .head_logo {
    width: 280px;
    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_tel {
    color: #E57097;
    border: #E57097 2px solid;
    border-radius: 10px;
    width: 226px;
    height: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "zen_maru_gothic_bold";
    font-size: 2.4rem;
    font-weight: bold;
    margin: 11px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header.header .header_box .header_tel span {
    font-size: 1.6rem;
    display: inline-block;
    padding: 5px 0 0 0;
  }
  header.header .header_box .header_reserve {
    text-decoration: none;
    background-color: #A3CAF5;
    border-radius: 10px;
    width: 137px;
    height: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 11px 0 0 0;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  header.header .header_box .header_reserve span {
    font-family: "zen_maru_gothic_bold";
    font-size: 1.8rem;
    font-weight: bold;
    color: #1258A5;
  }
  header.header .header_box .header_reserve::before {
    content: "";
    width: 22px;
    height: 20.937px;
    display: block;
    background: url("../img/icon_01.svg") no-repeat;
    margin: 0 6px 0 0;
  }
  header.header .header_box .header_reserve:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header.header .header_box .header_line {
    text-decoration: none;
    font-family: "zen_maru_gothic_bold";
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #00B900;
    border-radius: 10px;
    width: 113px;
    height: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 11px 0 0 0;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  header.header .header_box .header_line:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header.header .header_box .header_instagram {
    width: 50px;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 5px 0 0 25px;
  }
  header.header .header_box .header_instagram img {
    width: 50px;
    height: 50px;
  }
  header.header .header_box .header_instagram:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
/* -----------------------------------------------------------
　グローバルナビ
----------------------------------------------------------- */
nav.main_nav_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  nav.main_nav_pc {
    display: block;
    width: 100%;
    height: 56px;
    margin: 0;
    background-color: #ffffff;
  }
  nav.main_nav_pc ul {
    width: 828px;
    height: 42px;
    margin: 18px auto 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  nav.main_nav_pc ul li {
    display: block;
    width: auto;
    height: 42px;
    margin: 0;
    padding: 0;
  }
  nav.main_nav_pc ul li.treatment {
    width: 94.27px;
  }
  nav.main_nav_pc ul li.treatment a::after {
    font-family: "fontello";
    content: "\e80b";
    margin: 5px 0 0 5px;
    color: #1258A5;
    font-size: 1.2rem;
  }
  nav.main_nav_pc ul li.treatment ul li a::after {
    content: "";
    margin: 0;
  }
  nav.main_nav_pc ul li.treatment:hover {
    cursor: pointer;
    cursor: hand;
  }
  nav.main_nav_pc ul li.open_treatment a::after {
    font-family: "fontello";
    content: "\e809";
    margin: 5px 0 0 5px;
    color: #1258A5;
    font-size: 1.2rem;
  }
  nav.main_nav_pc ul li a {
    width: 100%;
    height: 42px;
    text-decoration: none;
    text-align: center;
    color: #242424;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0 0 14px 0;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    font-weight: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
  }
  nav.main_nav_pc ul li a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    bottom: 18px;
    left: 0;
    right: 0;
    border-bottom: 2px solid #1258A5;
  }
  nav.main_nav_pc ul li a:hover::before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
    bottom: 12px;
  }
  nav.main_nav_pc ul li .sub_nav_box {
    display: none;
    width: 318px;
    margin: 0 0 0 -113px;
  }
  nav.main_nav_pc ul li .sub_nav_box ul {
    width: 318px;
    height: auto;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    position: relative;
    z-index: 9999;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li {
    display: block;
    width: 159px;
    height: 48px;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a {
    width: 100%;
    height: 48px;
    text-decoration: none;
    text-align: center;
    background-color: #1258A5;
    color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
    font-family: "zen_maru_gothic_bold";
    font-size: 1.6rem;
    font-weight: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: #A3CAF5 2px solid;
    border-left: #A3CAF5 2px solid;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a::before {
    content: "";
    display: none;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a:hover {
    background-color: #063c75;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li:nth-child(even) a {
    border-right: #A3CAF5 2px solid;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li:nth-child(1) a {
    border-top-left-radius: 10px;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li:nth-child(2) a {
    border-top-right-radius: 10px;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li:nth-last-child(1) a {
    border-bottom-right-radius: 10px;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li:nth-last-child(2) a {
    border-bottom-left-radius: 10px;
  }
  .nav_add {
    position: fixed;
    top: 0;
    z-index: 9999999999;
  }
}
/* -----------------------------------------------------------
予約システム
----------------------------------------------------------- */
.reserve_frame {
  background-color: #F2F8FF;
  width: 100%;
  margin: 0;
  padding: 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.reserve_frame iframe {
  background-color: #ffffff;
  width: 96%;
  height: 80vw;
  margin: 0 auto;
  display: block;
}

@media screen and (min-width: 768px), print {
  .reserve_frame {
    background-color: #F2F8FF;
    width: 100%;
    margin: 0;
    padding: 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .reserve_frame iframe {
    background-color: #ffffff;
    width: 1000px;
    height: 1100px;
    margin: 0 auto;
    display: block;
  }
}
/* -----------------------------------------------------------
バナーリンク
----------------------------------------------------------- */
.bana_link_frame {
  width: 100%;
  background-color: #F2F8FF;
  padding: 2rem 0 5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bana_link_frame ul.top_bana_link {
  width: 96%;
  height: auto;
  margin: 0 auto 0 auto;
  list-style-type: none;
}
.bana_link_frame ul.top_bana_link li {
  margin: 0 0 1.5rem 0;
}
.bana_link_frame ul.top_bana_link li a {
  width: 98%;
  height: 28vw;
  text-decoration: none;
  color: #ffffff;
  font-family: "zen_maru_gothic_bold";
  font-size: 2rem;
  border: #ffffff 2px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bana_link_frame ul.top_bana_link li a span {
  font-size: 1.2rem;
}
.bana_link_frame ul.top_bana_link li.bana1 a {
  background: url("../img/bana_01_bg.png"), url("../img/icon_02.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: left 2% center, right 2% center;
  background-size: 25%, 2%;
  background-color: #65A6EE;
  padding: 0 0 0 6rem;
}
.bana_link_frame ul.top_bana_link li.bana2 a {
  background: url("../img/bana_02_bg.png"), url("../img/icon_02.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: left 2% center, right 2% center;
  background-size: 25%, 2%;
  background-color: #E57097;
  padding: 0 0 0 6rem;
}
.bana_link_frame ul.top_bana_link li.bana2 .bana_link_text {
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.4rem;
  text-align: center;
  margin: 1rem 0 3rem 0;
}
.bana_link_frame ul.top_bana_link li.bana3 a {
  background: url("../img/bana_03_bg.png"), url("../img/icon_02.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: left 8% center, right 2% center;
  background-size: 18%, 2%;
  background-color: #567CA7;
  padding: 0.8rem 0 0 6rem;
  line-height: 100%;
}
.bana_link_frame ul.top_bana_link li.bana3 a span {
  font-size: 1.2rem;
  display: inline-block;
  margin: -3rem 0 0 0;
}
.bana_link_frame ul.top_bana_link li.bana4 a {
  background: url("../img/icon_02.svg");
  background-repeat: no-repeat;
  background-position: right 2% center;
  background-size: 2%;
  background-color: #567CA7;
  padding: 0;
  line-height: 100%;
}
.bana_link_frame ul.top_bana_link li:last-child {
  margin: 0;
}

@media screen and (min-width: 768px), print {
  .bana_link_frame {
    width: 100%;
    background-color: #F2F8FF;
    padding: 80px 0 22px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .bana_link_frame ul.top_bana_link {
    width: 960px;
    height: auto;
    margin: 0 auto 0 auto;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bana_link_frame ul.top_bana_link li {
    margin: 0 0 0 0;
  }
  .bana_link_frame ul.top_bana_link li a {
    width: 100%;
    height: 120px;
    text-decoration: none;
    color: #ffffff;
    font-family: "zen_maru_gothic_bold";
    font-size: 3.4rem;
    border: #ffffff 2px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 0.08em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bana_link_frame ul.top_bana_link li a span {
    font-size: 2.4rem;
  }
  .bana_link_frame ul.top_bana_link li a:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .bana_link_frame ul.top_bana_link li.bana1 a {
    background: url("../img/bana_01_bg.png"), url("../img/icon_02.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left 31px center, right 19px center;
    background-size: 151px, 12px;
    background-color: #65A6EE;
    padding: 0 0 0 170px;
  }
  .bana_link_frame ul.top_bana_link li.bana2 {
    width: 500px;
  }
  .bana_link_frame ul.top_bana_link li.bana2 a {
    background: url("../img/bana_02_bg.png"), url("../img/icon_02.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left 24px center, right 19px center;
    background-size: 95px, 12px;
    background-color: #E57097;
    padding: 0 0 0 125px;
  }
  .bana_link_frame ul.top_bana_link li.bana3 {
    width: 400px;
  }
  .bana_link_frame ul.top_bana_link li.bana3 a {
    background: url("../img/bana_03_bg.png"), url("../img/icon_02.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left 24px center, right 19px center;
    background-size: 70px, 12px;
    background-color: #567CA7;
    padding: 12px 0 0 6rem;
  }
  .bana_link_frame ul.top_bana_link li.bana3 a span {
    font-size: 1.6rem;
    display: inline-block;
    margin: -20px 0 0 0;
  }
  .bana_link_frame ul.top_bana_link li.bana4 {
    width: 400px;
  }
  .bana_link_frame ul.top_bana_link li.bana4 a {
    background: url("../img/icon_02.svg");
    background-repeat: no-repeat;
    background-position: right 19px center;
    background-size: 12px;
    background-color: #567CA7;
  }
  .bana_link_frame ul.top_bana_link li:last-child {
    margin: 0;
  }
  .bana_link_frame .bana_link_text {
    font-family: "zen_maru_gothic_Medium";
    font-size: 2rem;
    text-align: center;
    margin: 18px 0 2.7rem 0;
  }
}
/* -----------------------------------------------------------
TOPインフォ
----------------------------------------------------------- */
.clinic_info_bg {
  width: 100%;
  background-color: #F2F8FF;
  padding: 0 0 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.clinic_info_bg .clinic_info_text {
  width: 96%;
  margin: 0 auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.clinic_info_bg .clinic_info_text figure {
  width: 25%;
  height: 100%;
  margin: 0 auto 1rem auto;
}
.clinic_info_bg .clinic_info_text figure img {
  width: 100%;
  height: auto;
}
.clinic_info_bg .clinic_info_text .clinic_info_text_box {
  width: 100%;
  color: #E57097;
  font-weight: bold;
}
.clinic_info_bg .clinic_info_text .clinic_info_text_box .clinic_info_text_large {
  line-height: 160%;
  margin: 0;
}
.clinic_info_bg .clinic_info_text .clinic_info_text_box .clinic_info_text_large span {
  font-size: 1.6rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #FEF7BB));
  background: linear-gradient(transparent 60%, #FEF7BB 40%);
}
.clinic_info_bg .clinic_info_text .clinic_info_text_box .clinic_info_text_small {
  margin: 0;
}
.clinic_info_bg .clinic_info_text .clinic_info_text_box .clinic_info_text_small span {
  font-size: 1.2rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #FEF7BB));
  background: linear-gradient(transparent 60%, #FEF7BB 40%);
}

@media screen and (min-width: 768px), print {
  .clinic_info_bg {
    width: 100%;
    background-color: #F2F8FF;
    padding: 0 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .clinic_info_bg .clinic_info_text {
    width: 960px;
    margin: 0 auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .clinic_info_bg .clinic_info_text figure {
    width: 100px;
    height: 100%;
    margin: 0;
  }
  .clinic_info_bg .clinic_info_text figure img {
    width: 100%;
    height: auto;
  }
  .clinic_info_bg .clinic_info_text .clinic_info_text_box {
    width: 840px;
    color: #E57097;
    font-weight: bold;
  }
  .clinic_info_bg .clinic_info_text .clinic_info_text_box .clinic_info_text_large {
    line-height: 160%;
    margin: 10px 0 0 0;
    letter-spacing: 0;
  }
  .clinic_info_bg .clinic_info_text .clinic_info_text_box .clinic_info_text_large span {
    font-size: 3rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #FEF7BB));
    background: linear-gradient(transparent 60%, #FEF7BB 40%);
  }
  .clinic_info_bg .clinic_info_text .clinic_info_text_box .clinic_info_text_small {
    margin: 5px 0 0 0;
    letter-spacing: 0;
  }
  .clinic_info_bg .clinic_info_text .clinic_info_text_box .clinic_info_text_small span {
    font-size: 2rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #FEF7BB));
    background: linear-gradient(transparent 60%, #FEF7BB 40%);
  }
}
/* -----------------------------------------------------------
　お知らせfontello
----------------------------------------------------------- */
.notice_frame {
  width: 100%;
  background-color: #F2F8FF;
  padding: 0 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_frame .notice_box {
  width: 98%;
  height: auto;
  margin: 0 auto;
  padding: 2rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_frame .notice_box dl {
  height: auto;
  margin: 0 auto 1rem auto;
  width: 96%;
  overflow-x: visible;
  overflow-wrap: break-word;
  border: #A3CAF5 2px solid;
  border-radius: 0.8rem;
  background-color: #ffffff;
}
.notice_frame .notice_box dl dt {
  color: #1258A5;
  margin: 2rem 0 0 0;
  padding: 1.8rem 2rem 1rem 1rem;
  font-family: "zen_maru_gothic_bold";
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 130%;
  position: relative;
}
.notice_frame .notice_box dl dt::after {
  position: absolute;
  font-family: "fontello";
  content: "\e809";
  color: #1258A5;
  display: block;
  width: 0;
  height: 0;
  margin: 0;
  right: 2.5rem;
  top: 1.8rem;
}
.notice_frame .notice_box dl dt.open::after {
  border: none;
  font-family: "fontello";
  content: "\e809";
  color: #1258A5;
}
.notice_frame .notice_box dl dt:first-child {
  margin: 0 0 0 0;
  padding: 1.8rem 2rem 1rem 1rem;
}
.notice_frame .notice_box dl dt.close {
  padding: 1.8rem 2rem 2rem 1rem;
}
.notice_frame .notice_box dl dt.close::after {
  font-family: "fontello";
  content: " \e809";
  color: #1258A5;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  margin: 6.1vw 0 0 0;
}
.notice_frame .notice_box dl dd {
  margin: 0 0 1rem 0;
  padding: 0 1rem 1rem 1rem;
  color: #242424;
  font-size: 1.4rem;
  text-align: justify;
  line-height: 130%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}
.notice_frame .notice_box dl dd.open {
  display: block;
}
.notice_frame .notice_box dl dd p a {
  color: #242424;
}

@media screen and (min-width: 768px), print {
  .notice_frame {
    width: 100%;
    background-color: #F2F8FF;
    padding: 17px 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame .notice_box {
    width: 960px;
    height: auto;
    margin: 35px auto 0 auto;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame .notice_box dl {
    height: auto;
    margin: 0 0 20px 0;
    width: 100%;
    overflow-x: visible;
    overflow-wrap: break-word;
    border: #A3CAF5 2px solid;
    border-radius: 10px;
    background-color: #ffffff;
  }
  .notice_frame .notice_box dl dt {
    color: #1258A5;
    margin: 20px 0 0 0;
    padding: 30px 30px 8px 28px;
    font-family: "zen_maru_gothic_bold";
    font-size: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 130%;
    position: relative;
  }
  .notice_frame .notice_box dl dt::after {
    position: absolute;
    font-family: "fontello";
    font-size: 1.5rem;
    content: "\e809";
    color: #1258A5;
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    right: 40px;
    top: 30px;
  }
  .notice_frame .notice_box dl dt.open::after {
    border: none;
    font-family: "fontello";
    content: "\e809";
    color: #1258A5;
  }
  .notice_frame .notice_box dl dt:first-child {
    margin: 0 0 0 0;
    padding: 30px 30px 8px 30px;
  }
  .notice_frame .notice_box dl dt.close {
    padding: 30px 30px 30px 30px;
  }
  .notice_frame .notice_box dl dt.close::after {
    font-family: "fontello";
    content: " \e809";
    color: #1258A5;
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
    margin: 22px 0 0 0;
  }
  .notice_frame .notice_box dl dt:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .notice_frame .notice_box dl dd {
    margin: 0 0 1rem 0;
    padding: 0 42px 0 28px;
    color: #242424;
    font-size: 1.4rem;
    line-height: 130%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: none;
  }
  .notice_frame .notice_box dl dd.open {
    display: block;
  }
  .notice_frame .notice_box dl dd p {
    line-height: 130%;
  }
  .notice_frame .notice_box dl dd p a {
    color: #242424;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
/*1列*/
/*
ul.treatment_list{
  width: 100%;
  list-style-type: none;
  li{
    width: 100%;
    height: 60vw;    
    a{
      width: 100%;
      height: 60vw;
      display: block;
      text-decoration: none;
      background-color: $color5;
      position: relative;
      span{
        background-color: $color_white;
        width: 60%;
        height: 20vw;
        box-shadow: 5px 5px 0 $color5;
        color: $bace_color;
        font-family: 'zen_maru_gothic_Medium';
        font-size: 1.8rem;
        text-align: center;        
        border-radius: 0.3rem;
        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;
        position: absolute;
        top: 35%;
        left: 0;
        right: 0;
        margin: 0 auto;
        letter-spacing: 0.05em; 
        line-height: 120%;              
        span{
          all: initial;
          color: $color1;
          font-family: 'zen_maru_gothic_Medium';
          font-size: 1.2rem;          
          text-align: center;
          letter-spacing: 0.1em;  
          line-height: 110%;
          margin: 0.2rem 0 0 0;
        }
      }
    }
    &.hemodialysis{
      background: url("../img/index_treatment_01.jpg") no-repeat;
      background-position: center top;
      background-size: cover;

    }
    &.peritoneal_dialysis{
      background: url("../img/index_treatment_02.jpg") no-repeat;
      background-position: center top;
      background-size: cover;
    }

    &.diabetes{
      background: url("../img/index_treatment_03.jpg") no-repeat;
      background-position: center top;
      background-size: cover;
      a{
        span{
          width: 60%;
          height: 35vw;                
          top: 22%;
          line-height: 120%;               
          span{
            all: initial;
            color: $color1;
            font-family: 'zen_maru_gothic_Medium';
            font-size: 1.2rem;          
            text-align: center;
            letter-spacing: 0.1em; 
            line-height: 110%;  
            margin: 0.2rem 0 0 0;                      
          }            
        }
      }      
    }  

    &.nephrology{
      background: url("../img/index_treatment_04.jpg") no-repeat;
      background-position: center top;
      background-size: cover;
    }  

    &.internal{
      background: url("../img/index_treatment_05.jpg") no-repeat;
      background-position: center top;
      background-size: cover;
    }  

    &.dermatology{
      background: url("../img/index_treatment_06.jpg") no-repeat;
      background-position: center top;
      background-size: cover;
    }      
  }
}
*/
ul.treatment_list {
  width: 100%;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
ul.treatment_list li {
  width: 50%;
  height: 80vw;
}
ul.treatment_list li a {
  width: 100%;
  height: 80vw;
  display: block;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
}
ul.treatment_list li a span {
  background-color: #ffffff;
  width: 70%;
  height: 20vw;
  -webkit-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
  color: #242424;
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.4rem;
  text-align: center;
  border-radius: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  margin: 0 auto;
  letter-spacing: 0.05em;
  line-height: 120%;
}
ul.treatment_list li a span span {
  all: initial;
  color: #1258A5;
  font-family: "zen_maru_gothic_Medium";
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 110%;
  margin: 0.2rem 0 0 0;
}
ul.treatment_list li.hemodialysis {
  background: url("../img/index_treatment_01.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
ul.treatment_list li.peritoneal_dialysis {
  background: url("../img/index_treatment_02.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
ul.treatment_list li.diabetes {
  background: url("../img/index_treatment_03.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
ul.treatment_list li.diabetes a span {
  width: 80%;
  height: 58vw;
  top: 15%;
  line-height: 120%;
}
ul.treatment_list li.diabetes a span span {
  all: initial;
  color: #1258A5;
  font-family: "zen_maru_gothic_Medium";
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 110%;
  margin: 0.2rem 0 0 0;
}
ul.treatment_list li.nephrology {
  width: 100%;
  height: 60vw;
  background: url("../img/index_treatment_04.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
ul.treatment_list li.nephrology a {
  width: 100%;
  height: 60vw;
}
ul.treatment_list li.nephrology a span {
  width: 40%;
}
ul.treatment_list li.internal {
  background: url("../img/index_treatment_05.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
ul.treatment_list li.dermatology {
  background: url("../img/index_treatment_06.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
ul.treatment_list li.cosmetic_dermatology {
  background: url("../img/index_treatment_09.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  ul.treatment_list {
    width: 100%;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.treatment_list li {
    width: 50%;
    height: 500px;
  }
  ul.treatment_list li a {
    width: 100%;
    height: 500px;
    display: block;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  ul.treatment_list li a span {
    background-color: #ffffff;
    width: 300px;
    height: 112px;
    -webkit-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
    color: #242424;
    font-family: "zen_maru_gothic_Medium";
    font-size: 3rem;
    text-align: center;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    margin: 0 auto;
    letter-spacing: 0.05em;
    line-height: 160%;
  }
  ul.treatment_list li a span span {
    all: initial;
    color: #1258A5;
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.6rem;
    text-align: center;
    margin: 5px 0 0 0;
    letter-spacing: 0.1em;
    line-height: 120%;
    margin: -3px 0 0 0;
  }
  ul.treatment_list li a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: transparent;
  }
  ul.treatment_list li:nth-child(even) a span {
    position: absolute;
    top: 200px;
    left: auto;
    right: 150px;
    margin: 0;
  }
  ul.treatment_list li:nth-child(even) a span span {
    all: initial;
    color: #1258A5;
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.6rem;
    text-align: center;
    margin: -3px 0 0 0;
    letter-spacing: 0.1em;
    line-height: 120%;
  }
  ul.treatment_list li:nth-child(odd) a span {
    position: absolute;
    top: 200px;
    left: 150px;
    right: auto;
    margin: 0;
  }
  ul.treatment_list li:nth-child(odd) a span span {
    all: initial;
    color: #1258A5;
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.6rem;
    text-align: center;
    margin: 5px 0 0 0;
    letter-spacing: 0.1em;
    line-height: 120%;
  }
  ul.treatment_list li.hemodialysis {
    background: url("../img/index_treatment_01.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  ul.treatment_list li.peritoneal_dialysis {
    background: url("../img/index_treatment_02.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  ul.treatment_list li.diabetes {
    background: url("../img/index_treatment_03.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  ul.treatment_list li.diabetes a span {
    width: 300px;
    height: 170px;
    position: absolute;
    top: 165px;
    left: auto;
    right: 150px;
    margin: 0;
  }
  ul.treatment_list li.diabetes a span span {
    all: initial;
    color: #1258A5;
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.6rem;
    text-align: center;
    margin: 5px 0 0 0;
    letter-spacing: 0.1em;
    line-height: 120%;
  }
  ul.treatment_list li.nephrology {
    width: 100%;
    height: 500px;
    background: url("../img/index_treatment_04.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  ul.treatment_list li.nephrology a {
    width: 100%;
    height: 500px;
  }
  ul.treatment_list li.nephrology a span {
    background-color: #ffffff;
    width: 300px;
    height: 112px;
    -webkit-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
    color: #242424;
    font-family: "zen_maru_gothic_Medium";
    font-size: 3rem;
    text-align: center;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    margin: 0 auto;
    letter-spacing: 0.05em;
    line-height: 160%;
  }
  ul.treatment_list li.nephrology a span span {
    all: initial;
    color: #1258A5;
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.6rem;
    text-align: center;
    margin: 5px 0 0 0;
    letter-spacing: 0.1em;
    line-height: 120%;
    margin: -3px 0 0 0;
  }
  ul.treatment_list li.internal {
    background: url("../img/index_treatment_05.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  ul.treatment_list li.dermatology {
    background: url("../img/index_treatment_06.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.treatment_list2_box {
  padding: 4rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.treatment_list2_box ul.treatment_list2 {
  width: 90%;
  margin: 0 auto;
  list-style-type: none;
}
.treatment_list2_box ul.treatment_list2 li {
  width: 100%;
  margin: 0 0 1.5rem 0;
}
.treatment_list2_box ul.treatment_list2 li a {
  text-decoration: none;
  background-color: #F8F8F8;
  width: 100%;
  height: 30vw;
  display: block;
  position: relative;
  border-radius: 0.3rem;
  -webkit-box-shadow: 3px 3px 0 #C2C2C2;
          box-shadow: 3px 3px 0 #C2C2C2;
}
.treatment_list2_box ul.treatment_list2 li a span {
  position: absolute;
  top: 35%;
  left: 2%;
  width: 40%;
  color: #242424;
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.7rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.treatment_list2_box ul.treatment_list2 li a span span {
  all: initial;
  color: #1258A5;
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.1rem;
  text-align: center;
}
.treatment_list2_box ul.treatment_list2 li a::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 6%;
  height: 100%;
  background: url("../img/icon_02.svg") no-repeat;
  background-position: center center;
  background-size: 50%;
  background-color: #E57097;
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.treatment_list2_box ul.treatment_list2 li.checkup a {
  background: url("../img/index_treatment_07.jpg") no-repeat;
  background-position: right top;
  background-size: cover;
  -webkit-box-shadow: 3px 3px 0 #C2C2C2;
          box-shadow: 3px 3px 0 #C2C2C2;
}
.treatment_list2_box ul.treatment_list2 li.vaccination a {
  background: url("../img/index_treatment_08.jpg") no-repeat;
  background-position: right top;
  background-size: cover;
  -webkit-box-shadow: 3px 3px 0 #C2C2C2;
          box-shadow: 3px 3px 0 #C2C2C2;
}

.banner_container {
  width: min(100% - 3rem, 1200px);
  margin-inline: auto;
  padding-bottom: 3.5rem;
}
.banner_container.-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}
@media screen and (min-width: 768px), print {
  .banner_container.-col2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }
}
.banner_container .img-fluid {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  .treatment_list2_box {
    padding: 80px 0 32px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
  .treatment_list2_box ul.treatment_list2 {
    width: 1200px;
    margin: 0 auto;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .treatment_list2_box ul.treatment_list2 li {
    width: 530px;
    margin: 0 0 48px 0;
  }
  .treatment_list2_box ul.treatment_list2 li a {
    text-decoration: none;
    background-color: #F8F8F8;
    width: 100%;
    height: 170px;
    display: block;
    position: relative;
    border-radius: 5px;
    -webkit-box-shadow: 3px 3px 0 #C2C2C2;
            box-shadow: 3px 3px 0 #C2C2C2;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_list2_box ul.treatment_list2 li a span {
    position: absolute;
    top: 67px;
    left: 58px;
    width: 150px;
    color: #242424;
    font-family: "zen_maru_gothic_Medium";
    font-size: 2.4rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    letter-spacing: 0.1em;
    line-height: 140%;
  }
  .treatment_list2_box ul.treatment_list2 li a span span {
    all: initial;
    color: #1258A5;
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 120%;
  }
  .treatment_list2_box ul.treatment_list2 li a::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    display: block;
    width: 15px;
    height: 100%;
    background: url("../img/icon_02.svg") no-repeat;
    background-position: center center;
    background-size: 9px;
    background-color: #E57097;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .treatment_list2_box ul.treatment_list2 li a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0.6;
  }
  .treatment_list2_box ul.treatment_list2 li.checkup a {
    background: url("../img/index_treatment_07.jpg") no-repeat;
    background-position: right top;
    background-size: cover;
    -webkit-box-shadow: 3px 3px 0 #C2C2C2;
            box-shadow: 3px 3px 0 #C2C2C2;
  }
  .treatment_list2_box ul.treatment_list2 li.vaccination a {
    background: url("../img/index_treatment_08.jpg") no-repeat;
    background-position: right top;
    background-size: cover;
    -webkit-box-shadow: 3px 3px 0 #C2C2C2;
            box-shadow: 3px 3px 0 #C2C2C2;
  }
}
/* -----------------------------------------------------------
病院まちねっと
----------------------------------------------------------- */
.bana_machinet {
  width: 90%;
  margin: 0 auto 4rem auto;
  display: block;
  text-decoration: none;
}
.bana_machinet img {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .bana_machinet {
    width: 600px;
    margin: 0 auto 80px auto;
    display: block;
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .bana_machinet img {
    width: 100%;
  }
  .bana_machinet:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0.6;
  }
}
/* -----------------------------------------------------------
クリニックの特長スライド
----------------------------------------------------------- */
.features_feature_frame {
  width: 100%;
  padding: 3.5rem 0 3rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_features_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.features_feature_frame .features_slides {
  width: 80%;
  margin: 2rem auto 1.5rem auto;
  overflow: visible;
  -webkit-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
}
.features_feature_frame .features_slides .fs_bg {
  width: 100%;
  height: 110vw;
  margin: 0 0 0 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
.features_feature_frame .features_slides .fs_bg p {
  position: absolute;
  bottom: 0;
  height: auto;
  width: 100%;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem 1rem 1.5rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_feature_frame .features_slides .fs_bg p .title {
  font-family: "zen_maru_gothic_bold";
  font-weight: bold;
  font-size: 1.6rem;
  text-align: justify;
  line-height: 120%;
  color: #1258A5;
  display: block;
  margin: 0 0 1rem 0;
}
.features_feature_frame .features_slides .fs_bg p .text {
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.3rem;
  text-align: justify;
  line-height: 135%;
  color: #242424;
  display: block;
  margin: 0;
}
.features_feature_frame .features_slides .feature_list_01 {
  background: url("../img/index_features_01.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.features_feature_frame .features_slides .feature_list_02 {
  background: url("../img/index_features_02.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.features_feature_frame .features_slides .feature_list_03 {
  background: url("../img/index_features_03.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.features_feature_frame .features_slides .feature_list_04 {
  background: url("../img/index_features_04.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.features_feature_frame .features_slides .feature_list_05 {
  background: url("../img/index_features_05.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
.features_feature_frame .features_slides .feature_list_06 {
  background: url("../img/index_features_06.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
.features_feature_frame .features_slides .feature_list_07 {
  background: url("../img/index_features_07.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
.features_feature_frame .features_slides .feature_list_08 {
  background: url("../img/index_features_08.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
.features_feature_frame .features_slides .feature_list_09 {
  background: url("../img/index_features_09.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
}
.features_feature_frame .features_slides .feature_list_10 {
  background: url("../img/index_features_10.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.features_feature_frame .features_slides .slick-prev {
  left: -11%;
}
.features_feature_frame .features_slides .slick-next {
  right: -11%;
}
.features_feature_frame .features_slides .slick-prev, .features_feature_frame .features_slides .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #ffffff;
  border: none;
  outline: none;
  background: transparent;
  z-index: 99;
}
.features_feature_frame .features_slides .slick-next:before {
  content: "›";
  background-color: #1258A5;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  padding: 0.5rem 0.8rem 0.6rem 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.features_feature_frame .features_slides .slick-prev:before {
  content: "‹";
  background-color: #1258A5;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  padding: 0.5rem 0.8rem 0.6rem 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px), print {
  .features_feature_frame {
    display: none;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
.features_frame {
  display: none;
}

/*
.features_frame{
  width: 100%;  
  padding:3.5rem 0 3rem 0;
  box-sizing: border-box;
  background: url("../img/index_features_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center top;

  ul.feature_list{
    width: 80%;
    margin:2rem auto 0 auto;
    list-style-type: none;
    li{
      width: 100%;
      height: 110vw;
      margin: 0 0 1.5rem 0;
      padding: 0 0 0 0;
      box-sizing: border-box;
      border-radius: 1rem;
      box-shadow: 5px 5px 0 $color5;
      position: relative;
      overflow: hidden;
      p{
        position: absolute;
        bottom: 0;
        height: auto;
        width: 100%;
        margin: 0;
        background-color: $color12;
        padding: 1rem 1rem 1.5rem 1rem;
        box-sizing: border-box;
        .title{
          font-family: 'zen_maru_gothic_bold';
          font-weight: bold;
          font-size: 1.6rem;
          text-align: justify;            
          line-height: 120%;
          color: $color1;
          display: block;        
          margin: 0 0 1rem 0;
        }
        .text{
          font-family: 'zen_maru_gothic_Medium';
          font-size: 1.3rem;
          text-align: justify;    
          line-height: 135%;      
          color: $bace_color;       
          display: block;
          margin: 0;
        }
      }

      &.feature_list_01{
        background: url("../img/index_features_01.jpg") no-repeat;
        background-position: center top;
        background-size: cover;      
      }
      &.feature_list_02{
        background: url("../img/index_features_02.jpg") no-repeat;
        background-position: center top;
        background-size: cover;      
      }   
      &.feature_list_03{
        background: url("../img/index_features_03.jpg") no-repeat;
        background-position: center top;
        background-size: cover;      
      }
      &.feature_list_04{
        background: url("../img/index_features_04.jpg") no-repeat;
        background-position: center top;
        background-size: cover;      
      }   
      &.feature_list_05{
        background: url("../img/index_features_05.jpg") no-repeat;
        background-position: center top;
        background-size: cover;      
      }
      &.feature_list_06{
        background: url("../img/index_features_06.jpg") no-repeat;
        background-position: center top;
        background-size: cover;      
      }      
      &.feature_list_07{
        background: url("../img/index_features_07.jpg") no-repeat;
        background-position: center top;
        background-size: cover;      
      }   
      &.feature_list_08{
        background: url("../img/index_features_08.jpg") no-repeat;
        background-position: center top;
        background-size: cover;      
      }
      &.feature_list_09{
        background: url("../img/index_features_09.jpg") no-repeat;
        background-position: center top;
        background-size: cover;      
      }                     
    }
  }  
}
*/
@media screen and (min-width: 768px), print {
  .features_frame {
    display: block;
    width: 100%;
    height: 2270px;
    padding: 78px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_features_bg.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .features_frame ul.feature_list {
    width: 1200px;
    margin: 32px auto 0 auto;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .features_frame ul.feature_list li {
    width: 350px;
    height: 443px;
    margin: 0 0 50px 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 1rem;
    -webkit-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }
  .features_frame ul.feature_list li p {
    position: absolute;
    bottom: 0;
    height: 193px;
    width: 100%;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 23px 20px 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .features_frame ul.feature_list li p .title {
    font-family: "zen_maru_gothic_bold";
    font-weight: bold;
    font-size: 2.2rem;
    text-align: justify;
    line-height: 120%;
    color: #1258A5;
    display: block;
    margin: 0 0 17px 0;
  }
  .features_frame ul.feature_list li p .text {
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.6rem;
    text-align: justify;
    line-height: 124%;
    color: #242424;
    display: block;
    margin: 0;
  }
  .features_frame ul.feature_list li.feature_list_01 {
    background: url("../img/index_features_01.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .features_frame ul.feature_list li.feature_list_02 {
    background: url("../img/index_features_02.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .features_frame ul.feature_list li.feature_list_03 {
    background: url("../img/index_features_03.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .features_frame ul.feature_list li.feature_list_04 {
    background: url("../img/index_features_04.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .features_frame ul.feature_list li.feature_list_05 {
    background: url("../img/index_features_05.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .features_frame ul.feature_list li.feature_list_06 {
    background: url("../img/index_features_06.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .features_frame ul.feature_list li.feature_list_07 {
    background: url("../img/index_features_07.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .features_frame ul.feature_list li.feature_list_08 {
    background: url("../img/index_features_08.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .features_frame ul.feature_list li.feature_list_09 {
    background: url("../img/index_features_09.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .features_frame ul.feature_list li.feature_list_10 {
    background: url("../img/index_features_10.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
  }
}
/* -----------------------------------------------------------
　画像ループ
----------------------------------------------------------- */
.loop_css {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 100%;
  overflow: hidden;
  margin: 3rem 0 0 0;
}
.loop_css ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 4000px;
  margin: 0;
  padding: 0;
}
.loop_css ul li {
  display: inline-block;
  width: 50vw;
  min-width: 250px;
  margin: 0 0.2rem;
  list-style: none;
  text-align: center;
}
.loop_css ul li a {
  display: block;
}
.loop_css ul li img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.loop_css ul:first-child {
  -webkit-animation: loop 120s -60s linear infinite;
  animation: loop 120s -60s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

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

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

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

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

@media screen and (min-width: 768px), print {
  .loop_css {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    width: 100%;
    overflow: hidden;
    margin: 0;
  }
  .loop_css ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    width: 4000px;
    margin: 80px 0 0 0;
    padding: 0;
  }
  .loop_css ul li {
    display: inline-block;
    width: 420px;
    min-width: 420px;
    margin: 0 10px 0 10px;
    list-style: none;
    text-align: center;
  }
  .loop_css ul li a {
    display: block;
  }
  .loop_css ul li img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  .loop_css ul:first-child {
    -webkit-animation: loop 120s -60s linear infinite;
    animation: loop 120s -60s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
  }
  .loop_css ul + ul {
    -webkit-animation: loop2 120s linear infinite;
    animation: loop2 120s linear infinite;
  }
  .loop_css:hover ul {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
  @-webkit-keyframes loop {
    0% {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @keyframes loop {
    0% {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @-webkit-keyframes loop2 {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-200%);
      transform: translateX(-200%);
    }
  }
  @keyframes loop2 {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-200%);
      transform: translateX(-200%);
    }
  }
  .loop_js {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 420px;
    height: 280px;
    overflow: hidden;
  }
  .loop_js > * {
    width: 33.333333%;
    height: auto;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  padding: 3rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.overview .overview_logo {
  width: 70%;
  margin: 0 auto;
  display: block;
}
.overview .overview_logo img {
  width: 100%;
  height: auto;
}
.overview .overview_box {
  width: 96%;
  margin: 0 auto;
  padding: 1rem 0 3rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*左側*/
  /*右側*/
}
.overview .overview_box .overview_info_box_left {
  width: 100%;
}
.overview .overview_box .overview_info_box_left dl.overview_list {
  width: 96%;
  margin: 2rem auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 160%;
}
.overview .overview_box .overview_info_box_left dl.overview_list dt {
  width: 25%;
  margin: 0 0 0.2rem 0;
  padding: 0.5rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #1258A5;
  background-color: #F2F8FF;
  border-radius: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd {
  width: 74%;
  margin: 0 0 0.2rem 0;
  padding: 0.5rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #242424;
  background-color: #F8F8F8;
  border-radius: 0.4rem;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd span {
  font-family: "zen_maru_gothic_bold";
  font-size: 1.8rem;
  color: #242424;
  letter-spacing: 0.1rem;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd a {
  font-family: "zen_maru_gothic_bold";
  color: #242424;
  letter-spacing: 0.1rem;
  text-decoration: none;
}
.overview .overview_box .overview_info_box_right {
  margin: 1rem 0 0 0;
}
.overview .overview_box .overview_info_box_right iframe.googlemap {
  width: 96%;
  height: 500px;
  display: block;
  margin: 0 auto;
  border-radius: 0.4rem;
  border: #ECECEC 3px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.overview .overview_box .overview_info_box_right .googlemap_link {
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.4rem;
  color: #E57097;
  text-align: right;
  float: right;
  margin: 1rem 2% 0 0;
}
.overview .overview_timetable_frame {
  background-color: #E5F0FC;
  width: 100%;
  margin: 3rem 0 0 0;
  padding: 0 0 3rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: visible;
  border-top: #ffffff 1.3rem solid;
}
.overview .overview_timetable_frame .overview_timetable_box {
  width: 96%;
  margin: 0 auto 0 auto;
}
.overview .overview_timetable_frame .overview_timetable_box .overview_timetable_title {
  margin: -1.3rem 0 2rem 2%;
  color: #458BD6;
  font-family: "zen_maru_gothic_bold";
  font-weight: bold;
  font-size: 1.9rem;
  line-height: 100%;
  position: relative;
  padding: 0 0 0 3.3rem;
}
.overview .overview_timetable_frame .overview_timetable_box .overview_timetable_title span {
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.2rem;
  color: #458BD6;
  display: block;
  line-height: 100%;
}
.overview .overview_timetable_frame .overview_timetable_box .overview_timetable_title::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: url("../img/icon_03.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.overview .overview_timetable_frame .overview_timetable_box .overview_timetable {
  margin: 0 0 1rem 0;
}
.overview .overview_timetable_frame .overview_timetable_box dl.overview_timetable_notice {
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.2rem;
  line-height: 140%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.overview .overview_timetable_frame .overview_timetable_box dl.overview_timetable_notice dt {
  width: 6%;
}
.overview .overview_timetable_frame .overview_timetable_box dl.overview_timetable_notice dd {
  width: 92%;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    padding: 37px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .overview .overview_logo {
    width: 400px;
    margin: 0 auto 43px auto;
    display: block;
  }
  .overview .overview_logo img {
    width: 100%;
    height: auto;
  }
  .overview .overview_box {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    /*左側*/
    /*右側*/
  }
  .overview .overview_box .overview_info_box_left {
    width: 550px;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list {
    width: 550px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    line-height: 125%;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt {
    width: 130px;
    margin: 0 0 3px 0;
    padding: 6px 16px 7px 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #1258A5;
    background-color: #F2F8FF;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt.tel_text {
    padding: 9px 16px 10px 16px;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt.access_text {
    padding: 10px 16px 11px 16px;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd {
    width: 418px;
    margin: 0 0 3px 0;
    padding: 6px 16px 7px 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #242424;
    background-color: #F8F8F8;
    border-radius: 5px;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd span {
    font-family: "zen_maru_gothic_bold";
    font-size: 2.4rem;
    color: #242424;
    letter-spacing: 0.1rem;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd a {
    font-family: "zen_maru_gothic_bold";
    color: #242424;
    letter-spacing: 0.1rem;
    text-decoration: none;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd.tel_text {
    padding: 9px 16px 10px 16px;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd.access_text {
    padding: 10px 16px 11px 16px;
  }
  .overview .overview_box .overview_info_box_right {
    width: 600px;
    margin: 0;
  }
  .overview .overview_box .overview_info_box_right iframe.googlemap {
    width: 600px;
    height: 350px;
    display: block;
    margin: 0;
    border-radius: 10px;
    border: #ECECEC 3px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .overview .overview_box .overview_info_box_right .googlemap_link {
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.6rem;
    color: #E57097;
    text-align: right;
    float: right;
    margin: 12px 0 0 0;
  }
  .overview .overview_timetable_frame {
    background-color: #E5F0FC;
    width: 100%;
    margin: 38px 0 0 0;
    padding: 0 0 76px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: visible;
    border-top: #ffffff 1.3rem solid;
  }
  .overview .overview_timetable_frame .overview_timetable_box {
    width: 1200px;
    margin: 0 auto 0 auto;
  }
  .overview .overview_timetable_frame .overview_timetable_box .overview_timetable_title {
    margin: -25px 0 41px 0;
    color: #458BD6;
    font-family: "zen_maru_gothic_bold";
    font-weight: bold;
    font-size: 4rem;
    line-height: 110%;
    position: relative;
    padding: 0 0 0 70px;
  }
  .overview .overview_timetable_frame .overview_timetable_box .overview_timetable_title span {
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 1.6rem;
    color: #458BD6;
    display: block;
    line-height: 100%;
  }
  .overview .overview_timetable_frame .overview_timetable_box .overview_timetable_title::before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background: url("../img/icon_03.svg") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  .overview .overview_timetable_frame .overview_timetable_box .overview_timetable {
    margin: 0 0 10px 0;
  }
  .overview .overview_timetable_frame .overview_timetable_box dl.overview_timetable_notice {
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.4rem;
    line-height: 160%;
    margin: 21px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 1200px;
  }
  .overview .overview_timetable_frame .overview_timetable_box dl.overview_timetable_notice dt {
    width: 30px;
  }
  .overview .overview_timetable_frame .overview_timetable_box dl.overview_timetable_notice dd {
    width: 1170px;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer {
  margin: 1rem 0 0 0;
  padding: 0;
  width: 100%;
}
footer .footer_frame {
  display: none;
}
footer .copyright {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  color: #242424;
  font-family: "zen_maru_gothic_Medium";
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.05em;
  background-color: #ffffff;
}
footer .copyright a {
  color: #242424;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer_link {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 13vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0.5rem 0;
  background-color: #ffffff;
  z-index: 999999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_link a.footer_tel {
  width: 20%;
  height: 10vw;
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: normal;
  font-family: "urbanist_semibold";
  letter-spacing: 0.1em;
  display: block;
  background-color: #1258A5;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_link a.footer_tel i {
  color: #ffffff;
  font-size: 1.4rem;
}
.footer_link a.footer_reserve {
  width: 22%;
  height: 10vw;
  margin: 0;
  color: #1258A5;
  text-align: center;
  font-size: 1.4rem;
  font-family: "zen_maru_gothic_Medium";
  letter-spacing: 0.1em;
  display: block;
  background-color: #A3CAF5;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_link a.footer_reserve i {
  color: rgba(229, 112, 151, 0.7);
  font-size: 1.4rem;
}
.footer_link a.footer_insta {
  width: 31%;
  height: 10vw;
  margin: 0;
  color: #ffffff;
  background-color: #d42cce;
  text-align: center;
  font-size: 1.4rem;
  font-family: "zen_maru_gothic_Medium";
  letter-spacing: 0.1em;
  display: block;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_link a.footer_insta img {
  width: auto;
  height: 100%;
}
.footer_link a.footer_line {
  width: 28%;
  height: 10vw;
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-size: 1.4rem;
  font-family: "zen_maru_gothic_Medium";
  letter-spacing: 0.1em;
  display: block;
  background-color: #00B900;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
.footer_link .smoothScrolls {
  background-color: #1258A5;
  width: 15%;
  height: 10vw;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
.footer_link .smoothScrolls a {
  width: 100%;
  color: #ffffff;
  padding: 0.8rem 0;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0;
    padding: 17px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 121px;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    display: block;
    width: 1200px;
    margin: 0 auto 0 auto;
  }
  footer .footer_frame ul.footer_list {
    line-height: 130%;
    font-size: 1.6rem;
    margin: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer_frame ul.footer_list li {
    width: auto;
    margin: 0 8px 8px 0;
    padding: 0 8px 0 0;
    list-style-type: none;
    position: relative;
    height: 14px;
  }
  footer .footer_frame ul.footer_list li a {
    color: #242424;
    text-decoration: none;
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.4rem;
    position: relative;
    line-height: 100%;
    height: 14px;
    padding: 0 0 4px 0;
  }
  footer .footer_frame ul.footer_list li a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 1px solid #242424;
  }
  footer .footer_frame ul.footer_list li a::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 14px;
    top: 4px;
    right: -9px;
    border-right: #242424 1px solid;
  }
  footer .footer_frame ul.footer_list li a:hover::before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
    top: 0;
    bottom: 2px;
  }
  footer .footer_frame ul.footer_list li.treatment {
    display: none;
  }
  footer .footer_frame ul.footer_list li.none {
    display: none;
  }
  footer .footer_frame .subtitle {
    display: none;
  }
  footer .copyright {
    margin: 18px auto 0 auto;
    padding: 0;
    text-align: left;
    color: #242424;
    font-family: "zen_maru_gothic_Medium";
    font-size: 1.2rem;
    height: auto;
    width: 1200px;
    letter-spacing: 0.05em;
    background-color: #ffffff;
  }
  footer .copyright a {
    color: #242424;
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
  }
  footer .copyright a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 1px solid #242424;
  }
  footer .copyright a:hover::before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
    top: 0;
    bottom: -3px;
  }
  .footer_link {
    display: none;
  }
}
/* -----------------------------------------------------------
　ページトップへ
----------------------------------------------------------- */
#pagetop_position {
  display: none;
}

@media screen and (min-width: 768px), print {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 80px;
    height: 80px;
  }
  #pagetop_position #linkpagetop a img {
    width: 80px;
    height: 80px;
  }
  #pagetop_position #linkpagetop a:hover {
    opacity: 0.6;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  #pagetop {
    position: fixed;
    bottom: 14px;
    right: 10px;
    z-index: 999999;
  }
}
/* -----------------------------------------------------------
　モーダルウィンドウ
----------------------------------------------------------- */
#modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}

#modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none;
  background-color: #ffffff;
  padding: 2rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#modal .modal_title {
  font-family: "zen_maru_gothic_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #1258A5;
  text-align: center;
  margin: 0 0 1rem 0;
}
#modal .modal_text {
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.4rem;
  color: #242424;
  text-align: center;
  margin: 0 0 1rem 0;
}
#modal a {
  text-decoration: none;
  display: block;
  width: 70%;
  margin: 0 auto 1rem auto;
  padding: 1rem;
  border-radius: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "zen_maru_gothic_bold";
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #E57097;
  color: #ffffff;
}
#modal a span {
  font-size: 2rem;
}
#modal #modal_close {
  font-family: "zen_maru_gothic_Medium";
  font-weight: normal;
  font-size: 1.4rem;
  color: #E57097;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  #modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    display: none;
  }
  #modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    width: 600px;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: none;
    background-color: #ffffff;
    padding: 60px 0 40px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #modal .modal_title {
    font-family: "zen_maru_gothic_bold";
    font-weight: bold;
    font-size: 3rem;
    color: #1258A5;
    text-align: center;
    margin: 0 0 30px 0;
  }
  #modal .modal_text {
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 2rem;
    color: #242424;
    text-align: center;
    margin: 0 0 20px 0;
  }
  #modal a {
    text-decoration: none;
    display: block;
    width: 270px;
    margin: 0 auto 20px auto;
    padding: 12px 0 18px 0;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "zen_maru_gothic_bold";
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.1em;
    background-color: #E57097;
    color: #ffffff;
  }
  #modal a span {
    font-size: 2.8rem;
  }
  #modal #modal_close {
    font-family: "zen_maru_gothic_Medium";
    font-weight: normal;
    font-size: 2rem;
    color: #E57097;
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */