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

 共通項目

======================================================================= */
/*関数*/
/* -----------------------------------------------------------
 関数
----------------------------------------------------------- */
/*サイトの横幅*/
/*media screen*/
/*文字SP*/
/*文字PC*/
/*基本フォント*/
/*游明朝*/
/*游ゴシック*/
/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*ハンバーガー棒と文字*/
/*ハンバーガー背景*/
/*水色*/
/*水色*/
/*影*/
/*ピンク*/
/*薄黄色*/
/*水色*/
/*ピンク*/
/*ピンク*/
/*影*/
/*黄色*/
/*赤*/
/*緑*/
/*灰色*/
/*水色*/
/*水色*/
/*灰色*/
/*オレンジ*/
/*黄色*/
/*灰色*/
/*ピンク*/
/*黒*/
/*黒*/
/*黄色*/
/*緑*/
/*青色*/
/*赤紫*/
/*薄緑*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@font-face {
  font-family: "zenmarugothic_regular";
  src: url(../font/ZenMaruGothic-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenmarugothic_medium";
  src: url(../font/ZenMaruGothic-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenmarugothic_bold";
  src: url(../font/ZenMaruGothic-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "quicksand_regular";
  src: url(../font/static/Quicksand-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "quicksand_medium";
  src: url(../font/static/Quicksand-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "quicksand_bold";
  src: url(../font/static/Quicksand-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
/*共通モジュール*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.cf::after {
  clear: both;
}

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

.fl_r {
  float: right;
}

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

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

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

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

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

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

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.main_nav_sp {
  width: 100%;
}
.main_nav_sp .drawr {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 0 2rem 0;
  margin: 0 0 0 0;
  z-index: 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-top: #333333 1px solid;
  width: 90%;
  margin: 20vw auto 20vw auto;
}
.main_nav_sp .drawr ul.hbg li {
  width: 100%;
  text-align: center;
}
.main_nav_sp .drawr ul.hbg li.treatment:hover {
  cursor: pointer;
  cursor: hand;
}
.main_nav_sp .drawr ul.hbg li a {
  color: #333333;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 1rem;
  border-bottom: #333333 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: 100%;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub {
  display: none;
  width: 100%;
  list-style-type: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub.open_nav {
  display: block;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a {
  color: #333333;
  border-bottom: none;
  text-align: center;
  border-bottom: #333333 1px solid;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a::after {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li.treatment_hbg a::after {
  font-family: "fontello";
  content: "\e80a";
  margin: 0 0 0 0.5rem;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main_nav_sp .drawr ul.hbg li.open_treatment a::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 共通項目

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

h2.top_title {
  color: #FFFBC8;
  font-weight: normal;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0;
  line-height: 200%;
}
h2.top_title span {
  display: block;
  color: #333333;
  font-family: "zenmarugothic_bold";
  font-size: 2rem;
  font-weight: bold;
  line-height: 100%;
  max-width: 60%;
  text-align: center;
}
h2.top_title span span {
  display: block;
  color: #7FD9F0;
  font-family: "quicksand_bold";
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.5rem auto 0 auto;
  max-width: auto;
}
h2.top_title::before {
  content: "";
  background: url("../img/h2_left.svg") no-repeat;
  background-position: right center;
  background-size: contain;
  width: 15%;
  height: 10vw;
  margin: 0 5% 0 0;
}
h2.top_title::after {
  content: "";
  background: url("../img/h2_right.svg") no-repeat;
  background-position: left center;
  background-size: contain;
  width: 15%;
  height: 10vw;
  margin: 0 0 0 4.5%;
}
h2.low {
  color: #FFFBC8;
  font-weight: normal;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 4rem 0 1.5rem 0;
  line-height: 220%;
}
h2.low span {
  display: block;
  color: #333333;
  font-family: "zenmarugothic_bold";
  font-size: 2rem;
  font-weight: bold;
  line-height: 140%;
  max-width: 60%;
  text-align: center;
}
h2.low span::after {
  content: "";
  display: block;
  width: 2rem;
  height: 4px;
  border-bottom: #7FD9F0 4px dashed;
  margin: 0.5rem auto 0 auto;
}
h2.low::before {
  content: "";
  background: url("../img/h2_left.svg") no-repeat;
  background-position: right center;
  background-size: contain;
  width: 15%;
  height: 10vw;
  margin: 0 5% 0 0;
}
h2.low::after {
  content: "";
  background: url("../img/h2_right.svg") no-repeat;
  background-position: left center;
  background-size: contain;
  width: 15%;
  height: 10vw;
  margin: 0 0 0 4.5%;
}
h2.first {
  margin: 0 0 1.5rem 0;
}

h3.low {
  color: #6BB7C9;
  background-color: #E5F9FE;
  border-left: #7FD9F0 4px solid;
  font-family: "zenmarugothic_bold";
  font-size: 2rem;
  font-weight: normal;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2rem 0 1.5rem 0;
  line-height: 120%;
}
h3.first {
  margin: 0 0 1.5rem 0;
}

h4 {
  color: #D977B2;
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 1.9rem;
  text-align: left;
  font-weight: normal;
  border-top: #D977B2 1px solid;
  border-bottom: #D977B2 1px solid;
  margin: 1.9rem 0 1.5rem 0;
  padding: 0.6rem 0.8rem 0.8rem 0.8rem;
  line-height: 120%;
}
h4.first {
  margin: 0 0 1rem 0;
}

h5.low {
  color: #333333;
  font-size: 1.8rem;
  text-align: left;
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  background: url("../img/icon_h5.svg") no-repeat;
  background-position: left top 0.5rem;
  background-size: 5%;
  margin: 1.9rem 0 1rem 0;
  padding: 0 0 0 6%;
  line-height: 120%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h5.first {
  margin: 0 0 1rem 0;
}

h6.low {
  color: #333333;
  font-size: 1.7rem;
  text-align: left;
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  margin: 1.8rem 0 0.8rem 0;
  padding: 0 0 0 0;
  line-height: 120%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h6.first {
  margin: 0 0 0.8rem 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 {
    color: #FFFBC8;
    font-weight: normal;
    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: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 0;
    line-height: 200%;
  }
  h2.top_title span {
    display: block;
    color: #333333;
    font-family: "zenmarugothic_bold";
    font-size: 4rem;
    font-weight: bold;
    line-height: 100%;
    max-width: 838px;
    text-align: center;
    letter-spacing: 0.1em;
  }
  h2.top_title span span {
    display: block;
    color: #7FD9F0;
    font-family: "quicksand_bold";
    font-size: 2rem;
    font-weight: bold;
    margin: 10px auto 0 auto;
    max-width: auto;
  }
  h2.top_title::before {
    content: "";
    background: url("../img/h2_left.svg") no-repeat;
    background-position: right center;
    background-size: contain;
    width: 150.001px;
    height: 30px;
    margin: 0 30px 0 0;
  }
  h2.top_title::after {
    content: "";
    background: url("../img/h2_right.svg") no-repeat;
    background-position: left center;
    background-size: contain;
    width: 150.001px;
    height: 30px;
    margin: 0 0 0 25px;
  }
  h2.low {
    color: #FFFBC8;
    font-weight: normal;
    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: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 100px 0 60px 0;
    line-height: 200%;
  }
  h2.low span {
    display: block;
    color: #333333;
    font-family: "zenmarugothic_bold";
    font-size: 4rem;
    font-weight: bold;
    line-height: 100%;
    max-width: 838px;
    text-align: center;
    letter-spacing: 0.1em;
  }
  h2.low span::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    border-bottom: #7FD9F0 4px dashed;
    margin: 16px auto 0 auto;
  }
  h2.low::before {
    content: "";
    background: url("../img/h2_left.svg") no-repeat;
    background-position: right center;
    background-size: contain;
    width: 150.001px;
    height: 30px;
    margin: 0 30px 0 0;
  }
  h2.low::after {
    content: "";
    background: url("../img/h2_right.svg") no-repeat;
    background-position: left center;
    background-size: contain;
    width: 150.001px;
    height: 30px;
    margin: 0 0 0 25px;
  }
  h2.first {
    margin: 0 0 60px 0;
  }
  h3.low {
    color: #6BB7C9;
    background-color: #E5F9FE;
    border-left: #7FD9F0 4px solid;
    font-family: "zenmarugothic_bold";
    font-size: 3.2rem;
    font-weight: normal;
    padding: 16px 28px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 70px 0 20px 0;
    line-height: 120%;
  }
  h3.first {
    margin: 0 0 20px 0;
  }
  h4 {
    color: #D977B2;
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 2.6rem;
    text-align: left;
    font-weight: normal;
    border-top: #D977B2 1px solid;
    border-bottom: #D977B2 1px solid;
    margin: 60px 0 15px 0;
    padding: 11px 18px 13px 18px;
    line-height: 120%;
  }
  h4.first {
    margin: 0 0 15px 0;
  }
  h5.low {
    color: #333333;
    font-size: 2.2rem;
    text-align: left;
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    background: url("../img/icon_h5.svg") no-repeat;
    background-position: left top 5px;
    background-size: 20px;
    margin: 50px 0 15px 0;
    padding: 0 0 0 30px;
    line-height: 120%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  h5.first {
    margin: 0 0 15px 0;
  }
  h6.low {
    color: #333333;
    font-size: 2rem;
    text-align: left;
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    margin: 40px 0 15px 0;
    padding: 0 0 0 0;
    line-height: 120%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  h6.first {
    margin: 0 0 15px 0;
  }
  p {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
    line-height: 160%;
    letter-spacing: 0.05em;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
table.timetable {
  padding: 0;
  margin: 0 auto 1rem auto;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 140%;
}
table.timetable tr th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #ffffff;
  background-color: #7FD9F0;
  width: 10%;
}
table.timetable tr th.time {
  letter-spacing: 0.1em;
}
table.timetable tr th:first-child {
  border-top-left-radius: 0.4rem;
}
table.timetable tr th:last-child {
  border-top-right-radius: 0.4rem;
}
table.timetable tr td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #7FD9F0;
  background-color: #ffffff;
  border-bottom: #CCCCCC 1px solid;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
  color: #333333;
  font-weight: normal;
}
table.timetable tr td img {
  width: 70%;
}
table.timetable tr:last-child td {
  border-bottom: none;
}
table.timetable tr:last-child td:first-child {
  border-bottom-left-radius: 0.4rem;
}
table.timetable tr:last-child td:last-child {
  border-bottom-right-radius: 0.4rem;
}

dl.timetable_notice {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 160%;
}
dl.timetable_notice dt {
  width: 25%;
  margin: 0 0 1rem 0;
  padding: 0.3rem 0;
  color: #7FD9F0;
  border: #7FD9F0 1px solid;
  background-color: #ffffff;
  text-align: center;
  border-radius: 0.3rem;
  -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;
}
dl.timetable_notice dt img {
  width: 30%;
}
dl.timetable_notice dd {
  width: 73%;
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px), print {
  table.timetable {
    padding: 0;
    margin: 0 auto 20px auto;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 100%;
  }
  table.timetable tr th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 1.8rem;
    padding: 0;
    vertical-align: middle;
    color: #ffffff;
    background-color: #7FD9F0;
    width: 10%;
    height: 40px;
  }
  table.timetable tr th.time {
    letter-spacing: 0.1em;
  }
  table.timetable tr th:first-child {
    border-top-left-radius: 5px;
  }
  table.timetable tr th:last-child {
    border-top-right-radius: 5px;
  }
  table.timetable tr td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 0;
    vertical-align: middle;
    color: #7FD9F0;
    background-color: #ffffff;
    border-bottom: #CCCCCC 1px solid;
    height: 50px;
  }
  table.timetable tr td.time {
    width: 30%;
    text-align: center;
    color: #333333;
    font-weight: normal;
  }
  table.timetable tr td img {
    width: 32px;
  }
  table.timetable tr:last-child td {
    border-bottom: none;
  }
  table.timetable tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
  }
  table.timetable tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
  }
  dl.timetable_notice {
    width: 570px;
    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.8rem;
    line-height: 160%;
  }
  dl.timetable_notice dt {
    width: 100px;
    height: 30px;
    margin: 0 0 15px 0;
    padding: 0.3rem 0;
    color: #7FD9F0;
    border: #7FD9F0 1px solid;
    background-color: #ffffff;
    text-align: center;
    border-radius: 0.3rem;
    -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;
  }
  dl.timetable_notice dt img {
    width: 32px;
  }
  dl.timetable_notice dd {
    width: 454px;
    margin: 0 0 15px 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #333333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/*画像*/
/* Scss Document */
/* =======================================================================

 共通項目

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

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

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

 共通項目

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

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

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

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

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

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

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

/*記号*/
dl.symbol_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.symbol_list dt {
  width: 10%;
  margin: 0 0 1rem 0;
}
dl.symbol_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;
  font-family: "zenmarugothic_medium";
  font-weight: bold;
  background-color: #E5F9FE;
  color: #6BB7C9;
  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.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.bio_list dt {
    width: 100px;
    margin: 0 0 1rem 0;
  }
  dl.bio_list dd {
    width: 1100px;
    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.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.num_list dt {
    width: 20px;
    margin: 0 0 1rem 0;
  }
  dl.num_list dd {
    width: 1180px;
    margin: 0 0 1rem 0;
  }
  /*記号*/
  dl.symbol_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.symbol_list dt {
    width: 20px;
    margin: 0 0 1rem 0;
  }
  dl.symbol_list dd {
    width: 1180px;
    margin: 0 0 1rem 0;
  }
  /*米*/
  dl.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.8rem;
    -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.8rem;
    -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;
    font-family: "zenmarugothic_medium";
    font-weight: bold;
    background-color: #E5F9FE;
    color: #6BB7C9;
    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: 2rem solid transparent;
  border-right: 2rem solid transparent;
  border-top: 2rem solid #7FD9F0;
  text-align: center;
  display: block;
  margin: 1rem auto;
}

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

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

.text_red {
  color: #ff0000;
}

@media screen and (min-width: 768px), print {
  /*矢印*/
  .arrow {
    width: 0;
    height: 0;
    border: none;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #7FD9F0;
    text-align: center;
    display: block;
    margin: 20px 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: #E5F9FE;
    border: #D9F6FD 1px solid;
    padding: 30px;
    border-radius: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .emphasis p.mb_none {
    margin: 0;
  }
  /*下層電話*/
  .low_tel {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .low_tel span {
    font-size: 1.8rem;
  }
  .low_tel span a {
    color: #333333;
    text-decoration: none;
  }
  .text_red {
    color: #ff0000;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
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: #333333;
  margin: 0 0.5rem;
}
ul.pankuzu_list li a {
  font-size: 1.4rem;
  color: #333333;
  text-decoration: none;
}
ul.pankuzu_list li:last-child:after {
  content: "";
  margin: 0;
}

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

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

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

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

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

.low_button {
  text-decoration: none;
  width: auto;
  height: auto;
  background-color: #7FD9F0;
  border: #ffffff 2px solid;
  border-radius: 1rem;
  display: inline-block;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #FFF9B1;
  padding: 1rem;
  margin: 0 0 1rem 0;
}
.low_button::before {
  font-family: "fontello";
  content: "\e80b";
  color: #ffffff;
  margin: 0 0.5rem 0 0;
}

@media screen and (min-width: 768px), print {
  .link_text {
    color: #6BB7C9;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .link_text:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
  }
  .low_button {
    text-decoration: none;
    width: auto;
    height: auto;
    background-color: #7FD9F0;
    border: #ffffff 2px solid;
    border-radius: 10px;
    display: inline-block;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 1.8rem;
    color: #FFF9B1;
    padding: 15px 25px;
    margin: 0 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button i {
    color: #ffffff;
    font-size: 2rem;
    margin: 0 8px 0 0;
  }
  .low_button:hover {
    background-color: #4C8CB7;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/*下層*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.doctor_name {
  text-align: right;
}

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

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

/*スライダー*/
.slider-pro {
  margin: 0 auto 2rem auto !important;
}
.slider-pro p.sp-layer {
  font-size: 2.4rem !important;
}

@media screen and (min-width: 768px), print {
  .machine_box {
    width: 100%;
    margin: 80px 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .machine_box figure {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .machine_box figure figcaption {
    text-align: center;
    font-weight: normal;
    margin: 0 0 10px 0;
    font-size: 2.2rem;
  }
  .machine_box figure img {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .machine_box2 {
    width: 100%;
    margin: 80px 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .machine_box2 section {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .machine_box2 section h3 {
    margin: 0 0 20px 0;
  }
  .machine_box2 section img {
    width: 100%;
    margin: 0 0 20px 0;
  }
  /*スライダー*/
  .slider-pro {
    margin: 0 auto 30px auto !important;
  }
  .slider-pro p.sp-layer {
    font-size: 2rem !important;
  }
}
/* -----------------------------------------------------------
　初めての方へ
----------------------------------------------------------- */
.flow_box {
  background-color: #E5F9FE;
  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 {
    background-color: #E5F9FE;
    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;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
dl.access_info {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 160%;
}
dl.access_info dt {
  width: 25%;
  margin: 0 0 1rem 0;
  padding: 0.5rem 0;
  color: #6BB7C9;
  background-color: #E5F9FE;
  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;
}
dl.access_info dd {
  width: 73%;
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
dl.access_info dd a {
  color: #6BB7C9;
  text-decoration: none;
}
dl.access_info dd.tel_text {
  color: #6BB7C9;
  text-decoration: underline;
}
dl.access_info dd.fax a {
  color: #333333;
  pointer-events: none;
}

iframe.accessmap {
  width: 96%;
  height: 500px;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px), print {
  dl.access_info {
    width: 550px;
    margin: 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.8rem;
    line-height: 160%;
  }
  dl.access_info dt {
    width: 120px;
    margin: 0 0 15px 0;
    padding: 10px 0;
    color: #6BB7C9;
    background-color: #E5F9FE;
    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;
  }
  dl.access_info dt.large {
    padding: 20px 0;
  }
  dl.access_info dd {
    width: 415px;
    margin: 0 0 15px 0;
    padding: 10x 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #333333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  dl.access_info dd a {
    color: #6BB7C9;
    text-decoration: none;
  }
  dl.access_info dd.tel_text {
    color: #6BB7C9;
    text-decoration: underline;
  }
  dl.access_info dd.fax a {
    color: #333333;
    pointer-events: none;
  }
  iframe.accessmap {
    width: 100%;
    height: 500px;
    display: block;
    margin: 0;
  }
}
/*メールフォームプロ用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　お問い合わせ・メールフォーム
----------------------------------------------------------- */
#mailformpro table {
  font-size: 1.4rem;
  line-height: 140%;
  width: 100%;
}
#mailformpro table tr th {
  display: block;
  text-align: left;
  font-weight: normal;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  border-top: #D9F6FD 1px solid;
  border-left: #D9F6FD 1px solid;
  border-right: #D9F6FD 1px solid;
}
#mailformpro table tr th span {
  color: #ff0000;
  display: inline-block;
  padding: 0 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 0.6rem;
}
#mailformpro table tr td {
  display: block;
  text-align: left;
  border-top: #D9F6FD 1px solid;
  border-left: #D9F6FD 1px solid;
  border-right: #D9F6FD 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: #D9F6FD 1px solid;
}

@media screen and (min-width: 768px), print {
  #mailformpro table {
    font-size: 1.8rem;
    line-height: 140%;
    width: 1200px;
  }
  #mailformpro table tr th {
    width: 400px;
    display: table-cell;
    text-align: left;
    font-weight: normal;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1.5rem 1rem 1.5rem 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #D9F6FD 1px solid;
    border-left: #D9F6FD 1px solid;
    border-right: #D9F6FD 1px solid;
    vertical-align: middle;
  }
  #mailformpro table tr th span {
    color: #ff0000;
    display: inline-block;
    padding: 0 0.2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 1rem;
  }
  #mailformpro table tr td {
    width: 800px;
    display: table-cell;
    text-align: left;
    border-top: #D9F6FD 1px solid;
    border-left: #D9F6FD 1px solid;
    border-right: #D9F6FD 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;
  }
}
/*テーブル用*/
/* Scss Document */
/* =======================================================================

 共通項目

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

/*スライドテーブル*/
table.low_table_slide {
  width: 1200px;
  border-collapse: collapse;
  color: #333333;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
}
table.low_table_slide caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_slide tr th {
  width: auto;
  padding: 1rem 0.5rem;
  border: #CCCCCC 1px solid;
  background-color: #E5F9FE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
  color: #6BB7C9;
}
table.low_table_slide tr th.ajs1 {
  width: 25%;
}
table.low_table_slide tr th.ajs2 {
  width: 25%;
}
table.low_table_slide tr th.ajs3 {
  width: 50%;
}
table.low_table_slide tr th.ajs4 {
  width: 20%;
}
table.low_table_slide tr th.ajs5 {
  width: 25%;
}
table.low_table_slide tr th.ajs6 {
  width: 40%;
}
table.low_table_slide tr th.ajs7 {
  width: 15%;
}
table.low_table_slide tr td {
  width: auto;
  padding: 1rem 0.5rem;
  border: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
}
table.low_table_slide tr td ul li {
  text-align: left;
}
table.low_table_slide tr td ul.list_mbnone {
  margin: 0;
}
table.low_table_slide tr td ul.list_mbnone li {
  text-align: left;
}

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

table.low_table_spblock {
  width: 100%;
  border-collapse: collapse;
  color: #333333;
  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;
  border: #CCCCCC 1px solid;
  border-bottom: none;
  background-color: #E5F9FE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #6BB7C9;
}
table.low_table_spblock tr td {
  width: 100%;
  padding: 1rem;
  border: #CCCCCC 1px solid;
  border-bottom: none;
  -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.tel {
  color: #333333;
}
table.low_table_spblock tr td.tel a {
  color: #333333;
  text-decoration: none;
}
table.low_table_spblock tr:last-child td {
  border-bottom: #CCCCCC 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table {
    width: 100%;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  table.low_table caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table tr th {
    width: 40%;
    padding: 20px;
    border: #CCCCCC 1px solid;
    background-color: #E5F9FE;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    color: #6BB7C9;
  }
  table.low_table tr td {
    width: 60%;
    padding: 20px;
    border: #CCCCCC 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: #333333;
    font-size: 1.8rem;
    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: #CCCCCC 1px solid;
    background-color: #E5F9FE;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    color: #6BB7C9;
  }
  table.low_table_fixed tr td {
    width: auto;
    padding: 20px;
    border: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
  }
  table.low_table_fixed tr td.pickup {
    background-color: #CCCCCC;
  }
  /*スライドテーブル*/
  table.low_table_slide {
    width: 100%;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  table.low_table_slide caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_slide tr th {
    width: auto;
    padding: 20px;
    border: #CCCCCC 1px solid;
    background-color: #E5F9FE;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    color: #6BB7C9;
  }
  table.low_table_slide tr th.ajs1 {
    width: 25%;
  }
  table.low_table_slide tr th.ajs2 {
    width: 25%;
  }
  table.low_table_slide tr th.ajs3 {
    width: 50%;
  }
  table.low_table_slide tr th.ajs4 {
    width: 20%;
  }
  table.low_table_slide tr th.ajs5 {
    width: 25%;
  }
  table.low_table_slide tr th.ajs6 {
    width: 40%;
  }
  table.low_table_slide tr th.ajs7 {
    width: 15%;
  }
  table.low_table_slide tr td {
    width: auto;
    padding: 20px;
    border: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
  }
  table.low_table_slide tr td ul li {
    text-align: left;
  }
  table.low_table_slide tr td ul.list_mbnone {
    margin: 0;
  }
  table.low_table_slide tr td ul.list_mbnone li {
    text-align: left;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 0 0;
    position: static !important;
    z-index: 0;
  }
  table.low_table_spblock {
    width: 100%;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.8rem;
    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: 40%;
    padding: 20px;
    border: #CCCCCC 1px solid;
    border-bottom: none;
    background-color: #E5F9FE;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #6BB7C9;
  }
  table.low_table_spblock tr td {
    width: 60%;
    padding: 20px;
    border: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    border-left: none;
    -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.tel {
    color: #333333;
  }
  table.low_table_spblock tr td.tel a {
    color: #333333;
    text-decoration: none;
  }
  table.low_table_spblock tr:last-child th {
    border-bottom: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr:last-child td {
    border-bottom: #CCCCCC 1px solid;
  }
}
/*アニメーション用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
.tate_anime {
  -webkit-animation: tate 1s ease-in-out infinite alternate;
          animation: tate 1s ease-in-out infinite alternate;
}

.yoko_anime {
  -webkit-animation: yoko 1s ease-in-out infinite alternate;
          animation: yoko 1s ease-in-out infinite alternate;
}

.delay03 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes tate {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes tate {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes yoko {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes yoko {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
/* -----------------------------------------------------------
　ファーストビュー
----------------------------------------------------------- */
.first_view_anime {
  -webkit-animation: fvfadein 0.5s ease 1s 1 normal backwards;
          animation: fvfadein 0.5s ease 1s 1 normal backwards;
}

.first_view_anime2 {
  -webkit-animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
          animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
}

@-webkit-keyframes fvfadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fvfadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 768px), print {
  .first_view_anime {
    -webkit-animation: fvfadein 0.5s ease 1s 1 normal backwards;
            animation: fvfadein 0.5s ease 1s 1 normal backwards;
  }
  .first_view_anime2 {
    -webkit-animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
            animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
  }
  @-webkit-keyframes fvfadein {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fvfadein {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
/* -----------------------------------------------------------
　アイコン
----------------------------------------------------------- */
.purupuru.blockIn::before {
  -webkit-animation: purupuru 0.8s linear 0s 1;
          animation: purupuru 0.8s linear 0s 1;
}

@-webkit-keyframes purupuru {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    -webkit-transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
            transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
  }
  50% {
    -webkit-transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
            transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
  }
  65% {
    -webkit-transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
            transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
  }
  80% {
    -webkit-transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
            transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}

@keyframes purupuru {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    -webkit-transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
            transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
  }
  50% {
    -webkit-transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
            transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
  }
  65% {
    -webkit-transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
            transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
  }
  80% {
    -webkit-transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
            transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@media screen and (min-width: 768px), print {
  .purupuru.blockIn::before {
    -webkit-animation: purupuru 0.8s linear 0s 1;
            animation: purupuru 0.8s linear 0s 1;
  }
  @-webkit-keyframes purupuru {
    0% {
      -webkit-transform: scale(1, 1) translate(0%, 0%);
              transform: scale(1, 1) translate(0%, 0%);
    }
    20% {
      -webkit-transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
              transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
    }
    50% {
      -webkit-transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
              transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
    }
    65% {
      -webkit-transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
              transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
    }
    80% {
      -webkit-transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
              transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
    }
    100% {
      -webkit-transform: scale(1, 1) translate(0%, 0%);
              transform: scale(1, 1) translate(0%, 0%);
    }
  }
  @keyframes purupuru {
    0% {
      -webkit-transform: scale(1, 1) translate(0%, 0%);
              transform: scale(1, 1) translate(0%, 0%);
    }
    20% {
      -webkit-transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
              transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
    }
    50% {
      -webkit-transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
              transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
    }
    65% {
      -webkit-transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
              transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
    }
    80% {
      -webkit-transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
              transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
    }
    100% {
      -webkit-transform: scale(1, 1) translate(0%, 0%);
              transform: scale(1, 1) translate(0%, 0%);
    }
  }
}
/* -----------------------------------------------------------
　基本アニメーション
----------------------------------------------------------- */
/*左から*/
.scroll_left {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.scroll_left.blockIn {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*右から*/
.scroll_right {
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.scroll_right.blockIn {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*下から*/
.scroll_up {
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
}

.scroll_up.blockIn {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media screen and (min-width: 768px), print {
  /*左から*/
  .scroll_left {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .scroll_left.blockIn {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /*右から*/
  .scroll_right {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .scroll_right.blockIn {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /*下から*/
  .scroll_up {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    opacity: 0;
  }
  .scroll_up.blockIn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  /*下からPCのみ*/
  .scroll_up_pc {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .scroll_up_pc.blockIn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.scroll_treatment_up.blockIn li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* -----------------------------------------------------------
 フォントサイズ基本
----------------------------------------------------------- */
html {
  font-size: 3.125vw;
  overflow-y: auto;
  font-family: "zenmarugothic_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  padding: 0 0 12vw 0;
}

@media screen and (min-width: 768px), print {
  html {
    font-size: 62.5%;
    overflow-y: scroll;
    font-family: "zenmarugothic_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    color: #333333;
    background-color: #ffffff;
    padding: 0;
  }
}
/* -----------------------------------------------------------
 構成
----------------------------------------------------------- */
body {
  position: relative;
  width: 100%;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

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

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

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.pc_none_span {
  display: inline;
}

.sp_none_span {
  display: none;
}

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

.wrapper_low {
  height: auto;
  width: 100%;
  margin: 2rem 0 0 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: 100px 0 0 0;
    padding: 0;
  }
  .wrapper_low {
    height: auto;
    width: 100%;
    margin: 150px 0 0 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 {
  background-color: #D9F6FD;
  padding: 2vw 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 9999;
}
header.header .header_box {
  /*ロゴとハンバーガー*/
  /*ヘッダー情報*/
}
header.header .header_box .header_top {
  width: 100%;
  height: 14vw;
  margin: 0;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*ハンバーガー*/
  /*ロゴ*/
}
header.header .header_box .header_top .container {
  width: 15%;
}
header.header .header_box .header_top .head_logo {
  width: 80%;
  margin: 0 0 0 2%;
}
header.header .header_box .header_top .head_logo a {
  display: block;
  width: 100%;
  text-decoration: none;
}
header.header .header_box .header_top .head_logo a img {
  width: 95%;
}
header.header .header_box .header_info {
  margin: 1rem 0 0 0;
  /*住所*/
  /*電話番号*/
}
header.header .header_box .header_info .header_address {
  margin: 0;
  text-align: center;
  font-size: 1.4rem;
  line-height: 140%;
}
header.header .header_box .header_info .header_tel {
  display: none;
}

.side_web_link {
  display: none;
}

.side_line_link {
  display: none;
}

@media screen and (min-width: 768px), print {
  header.header {
    background-color: #D9F6FD;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 124px;
  }
  header.header .header_box {
    width: 1200px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    /*ロゴとハンバーガー*/
    /*ヘッダー情報*/
  }
  header.header .header_box .header_top {
    width: 400px;
    height: 70px;
    margin: 0;
    position: absolute;
    top: 16px;
    left: -32px;
    z-index: 0;
    display: block;
    overflow: visible;
    /*ハンバーガー*/
    /*ロゴ*/
  }
  header.header .header_box .header_top .container {
    display: none;
  }
  header.header .header_box .header_top .head_logo {
    width: 484px;
    margin: 0;
  }
  header.header .header_box .header_top .head_logo a {
    display: block;
    width: 484px;
    text-decoration: none;
  }
  header.header .header_box .header_top .head_logo a img {
    width: 484px;
  }
  header.header .header_box .header_info {
    margin: 0;
    width: 324px;
    height: 70px;
    position: absolute;
    top: 22px;
    right: 40px;
    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;
    /*住所*/
    /*電話番号*/
  }
  header.header .header_box .header_info .header_address {
    margin: 0 0 8px 0;
    text-align: center;
    font-size: 1.6rem;
    line-height: 100%;
  }
  header.header .header_box .header_info .header_tel {
    display: block;
    margin: 0;
  }
  header.header .header_box .header_info .header_tel span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    font-size: 4rem;
    font-family: "quicksand_bold";
    font-weight: bold;
  }
  header.header .header_box .header_info .header_tel span i {
    font-size: 3.6rem;
    color: #7FD9F0;
  }
  header.header .header_box .header_info .header_tel span a {
    text-decoration: none;
    color: #333333;
  }
  .side_web_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 60px;
    height: 160px;
    text-decoration: none;
    color: #FFF9B1;
    background-color: #FF8DD2;
    border: #ffffff 2px solid;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
    line-height: 110%;
    letter-spacing: 0.05em;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 370px;
    right: 0px;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    letter-spacing: 0;
  }
  .side_web_link img {
    width: 26px;
    margin: 0 0 8px 0;
  }
  .side_web_link:hover {
    background-color: #EE565D;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_line_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 60px;
    height: 160px;
    text-decoration: none;
    color: #06C755;
    background-color: #ffffff;
    border: #06C755 2px solid;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
    line-height: 110%;
    letter-spacing: 0.05em;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 550px;
    right: 0px;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    letter-spacing: 0;
  }
  .side_line_link img {
    width: 30px;
    margin: 0 0 8px 0;
  }
  .side_line_link:hover {
    background-color: #d5ffe6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　グローバルナビ
----------------------------------------------------------- */
nav.main_nav_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  nav.main_nav_pc {
    display: block;
    width: 100%;
    height: 60px;
    margin: 0;
    background-color: #D9F6FD;
  }
  nav.main_nav_pc ul {
    width: 1080px;
    height: 60px;
    margin: 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: 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: 171px;
    height: 60px;
    margin: 0;
    padding: 0;
  }
  nav.main_nav_pc ul li.home {
    width: 130px;
  }
  nav.main_nav_pc ul li.doctor {
    width: 140px;
  }
  nav.main_nav_pc ul li.clinic {
    width: 200px;
  }
  nav.main_nav_pc ul li.treatment {
    width: 160px;
  }
  nav.main_nav_pc ul li.treatment a span::after {
    font-family: "fontello";
    content: "\e80a";
    margin: 0 0 0 5px;
    display: inline-block;
  }
  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 span::after {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  nav.main_nav_pc ul li.first {
    width: 200px;
  }
  nav.main_nav_pc ul li.access {
    width: 250px;
  }
  nav.main_nav_pc ul li a {
    width: 100%;
    height: 60px;
    text-decoration: none;
    text-align: center;
    color: #333333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
    font-family: "zenmarugothic_medium";
    font-size: 2rem;
    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;
  }
  nav.main_nav_pc ul li a span {
    position: relative;
    height: 30px;
  }
  nav.main_nav_pc ul li a span::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 2px solid #FF8DD2;
  }
  nav.main_nav_pc ul li a:hover span::before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
    top: 0;
    bottom: -3px;
  }
  nav.main_nav_pc ul li .sub_nav_box {
    display: none;
    width: 230px;
    margin: 0 0 0 -35px;
  }
  nav.main_nav_pc ul li .sub_nav_box ul {
    width: 230px;
    height: auto;
    margin: 0;
    padding: 0 0 0 0;
    position: relative;
    z-index: 9999999999;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a {
    width: 100%;
    height: 50px;
    text-decoration: none;
    text-align: left;
    color: #333333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0 0 0 14px;
    letter-spacing: 0;
    font-size: 2rem;
    font-weight: normal;
    box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a::before {
    font-family: "fontello";
    content: "\e80b";
    margin: 0 10px 0 0;
    color: #7FD9F0;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a:hover {
    color: #7FD9F0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .nav_add {
    position: fixed;
    top: 0;
    z-index: 9999999999;
    background-color: #ffffff !important;
  }
}
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
/*トップキービジュアル*/
.key_visual_bg {
  background: url("../img/index_key_06.svg") no-repeat;
  background-position: center top;
  background-size: contain;
  background-color: #ffffff;
  width: 100%;
  height: 78vw;
}
.key_visual_bg .key_visual {
  position: relative;
  width: 100%;
  height: 100vw;
}
.key_visual_bg .key_visual .key_img_heri {
  position: absolute;
  top: 3vw;
  right: 20%;
  width: 12%;
  z-index: 99;
}
.key_visual_bg .key_visual .key_img_heri img {
  width: 100%;
}
.key_visual_bg .key_visual .key_img_kumo {
  position: absolute;
  top: 8vw;
  right: 14%;
  width: 10%;
  z-index: 99;
}
.key_visual_bg .key_visual .key_img_kumo img {
  width: 100%;
}
.key_visual_bg .key_visual .key_img_hikouki {
  position: absolute;
  top: 2vw;
  right: 2%;
  width: 15%;
  z-index: 99;
}
.key_visual_bg .key_visual .key_img_hikouki img {
  width: 100%;
}
.key_visual_bg .key_visual .key_img_kikyuu {
  position: absolute;
  top: 30vw;
  left: 2%;
  width: 15%;
  z-index: 99;
}
.key_visual_bg .key_visual .key_img_kikyuu img {
  width: 100%;
}
.key_visual_bg .key_visual .key_img_niji {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  z-index: 0;
}
.key_visual_bg .key_visual .key_img_niji img {
  width: 100%;
}
.key_visual_bg .key_visual .key {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  /*大枠*/
}
.key_visual_bg .key_visual .key .key_bg {
  width: 100%;
  height: 48vw;
}
.key_visual_bg .key_visual .key .key_01 {
  background: url("../img/key_visual_01.png") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual_bg .key_visual .key .key_02 {
  background: url("../img/key_visual_02.png") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual_bg .key_visual .key .key_03 {
  background: url("../img/key_visual_03.png") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual_bg .key_visual .key .key_04 {
  background: url("../img/key_visual_04.png") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual_bg .key_visual .key .key_05 {
  background: url("../img/key_visual_05.png") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual_bg .key_visual .key_contents {
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.key_visual_bg .key_visual .key_contents .key_text {
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 1.2rem;
  text-align: left;
  margin: 0 0 1rem 0;
  line-height: 160%;
}
.key_visual_bg .key_visual .key_contents .key_text span {
  background-color: #7FD9F0;
  color: #ffffff;
  padding: 0.2rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.key_visual_bg .key_visual .key_contents .key_open {
  background-color: #FFFBC8;
  color: #333333;
  width: 96%;
  height: auto;
  margin: 0 auto 1rem auto;
  text-align: center;
  text-decoration: none;
  font-weight: normal;
  padding: 0.5rem;
  border-radius: 2rem;
  border: #7FD9F0 1px solid;
  -webkit-box-shadow: 0 0 0 4px #FFFBC8;
          box-shadow: 0 0 0 4px #FFFBC8;
  line-height: 100%;
}
.key_visual_bg .key_visual .key_contents .key_open p {
  margin: 0;
}
.key_visual_bg .key_visual .key_contents .key_open p .kot_large {
  font-size: 1.6rem;
}
.key_visual_bg .key_visual .key_contents .key_open p .kot_small {
  font-size: 1.2rem;
}
.key_visual_bg .key_visual .key_contents .key_event {
  background-color: #FFE8F6;
  color: #333333;
  width: 96%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: normal;
  padding: 0.5rem;
  border-radius: 2rem;
  border: #FF8DD2 1px solid;
  -webkit-box-shadow: 0 0 0 4px #FFE8F6;
          box-shadow: 0 0 0 4px #FFE8F6;
  line-height: 100%;
}
.key_visual_bg .key_visual .key_contents .key_event p {
  margin: 0;
}
.key_visual_bg .key_visual .key_contents .key_event p .kot_large {
  font-size: 1.6rem;
}
.key_visual_bg .key_visual .key_contents .key_event p .kot_small {
  font-size: 1.2rem;
}

/*下層キービジュアル*/
.key_visual_low {
  width: 100%;
  height: 35vw;
  background: url("../img/key_low_bg.svg") no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-color: #D9F6FD;
  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;
}
.key_visual_low .key_img_heri {
  position: absolute;
  top: 3vw;
  right: 20%;
  width: 12%;
  z-index: 99;
}
.key_visual_low .key_img_heri img {
  width: 100%;
}
.key_visual_low .key_img_kumo {
  position: absolute;
  top: 8vw;
  right: 14%;
  width: 10%;
  z-index: 99;
}
.key_visual_low .key_img_kumo img {
  width: 100%;
}
.key_visual_low .key_img_hikouki {
  position: absolute;
  top: 2vw;
  right: 2%;
  width: 15%;
  z-index: 99;
}
.key_visual_low .key_img_hikouki img {
  width: 100%;
}
.key_visual_low .key_img_niji {
  position: absolute;
  top: 0;
  left: -5%;
  width: 40%;
  z-index: 0;
}
.key_visual_low .key_img_niji img {
  width: 100%;
}
.key_visual_low .key_img_kikyu {
  display: none;
}
.key_visual_low h1 {
  font-family: "zenmarugothic_bold";
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  color: #333333;
  line-height: 160%;
  letter-spacing: 0.1em;
  margin: 0.5rem 0 0 0;
  z-index: 999;
}

@media screen and (min-width: 768px), print {
  /*トップキービジュアル*/
  .key_visual_bg {
    background: url("../img/index_key_06.svg") no-repeat;
    background-position: center top;
    background-size: contain;
    background-color: #ffffff;
    width: 100%;
    height: 700px;
  }
  .key_visual_bg .key_visual {
    position: relative;
    width: 1400px;
    height: 700px;
    margin: 0 auto;
  }
  .key_visual_bg .key_visual .key_img_heri {
    position: absolute;
    top: 54px;
    right: 230px;
    width: 147px;
    z-index: 999999;
  }
  .key_visual_bg .key_visual .key_img_heri img {
    width: 100%;
  }
  .key_visual_bg .key_visual .key_img_kumo {
    position: absolute;
    top: 114px;
    right: 140px;
    width: 115px;
    z-index: 999999;
  }
  .key_visual_bg .key_visual .key_img_kumo img {
    width: 100%;
  }
  .key_visual_bg .key_visual .key_img_hikouki {
    position: absolute;
    top: 28px;
    right: 0;
    width: 188px;
    z-index: 999999;
  }
  .key_visual_bg .key_visual .key_img_hikouki img {
    width: 100%;
  }
  .key_visual_bg .key_visual .key_img_kikyuu {
    position: absolute;
    top: 370px;
    left: -120px;
    width: 155px;
    z-index: 999999;
  }
  .key_visual_bg .key_visual .key_img_kikyuu img {
    width: 100%;
  }
  .key_visual_bg .key_visual .key_img_niji {
    position: absolute;
    top: 34px;
    left: -248px;
    width: 800px;
    z-index: 0;
  }
  .key_visual_bg .key_visual .key_img_niji img {
    width: 100%;
  }
  .key_visual_bg .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100% !important;
    height: 700px;
    margin: 0 auto;
    overflow: hidden;
    /*大枠*/
  }
  .key_visual_bg .key_visual .key .key_bg {
    width: 1400px !important;
    height: 700px !important;
    margin: 0 auto !important;
    position: relative;
    left: 0;
    right: 0;
  }
  .key_visual_bg .key_visual .key .key_01 {
    background: url("../img/key_visual_01.png") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual_bg .key_visual .key .key_02 {
    background: url("../img/key_visual_02.png") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual_bg .key_visual .key .key_03 {
    background: url("../img/key_visual_03.png") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual_bg .key_visual .key .key_04 {
    background: url("../img/key_visual_04.png") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual_bg .key_visual .key .key_05 {
    background: url("../img/key_visual_05.png") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual_bg .key_visual .key_contents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    width: 1400px;
    height: 700px;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .key_visual_bg .key_visual .key_contents .key_text {
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 4.2rem;
    text-align: left;
    margin: 0 0 0 0;
    position: absolute;
    bottom: 60px;
    left: 0;
    line-height: 160%;
  }
  .key_visual_bg .key_visual .key_contents .key_text span {
    background-color: #7FD9F0;
    color: #ffffff;
    padding: 5px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .key_visual_bg .key_visual .key_contents .key_open {
    position: absolute;
    bottom: 0;
    right: 100px;
    background: url("../img/index_key_07.svg") no-repeat;
    background-color: transparent;
    color: #333333;
    width: 200px;
    height: 170px;
    margin: 0;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    padding: 30px 0 0 0;
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    line-height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .key_visual_bg .key_visual .key_contents .key_open p {
    margin: 0;
    line-height: 120%;
  }
  .key_visual_bg .key_visual .key_contents .key_open p .kot_large {
    font-size: 3rem;
  }
  .key_visual_bg .key_visual .key_contents .key_open p .kot_small {
    font-size: 1.8rem;
  }
  .key_visual_bg .key_visual .key_contents .key_open p .ajs {
    margin: 10px 0 0 0;
    display: block;
  }
  .key_visual_bg .key_visual .key_contents .key_event {
    position: absolute;
    bottom: 0;
    right: 100px;
    background: url("../img/index_key_08.svg") no-repeat;
    background-color: transparent;
    color: #333333;
    width: 200px;
    height: 170px;
    margin: 0;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    padding: 30px 0 0 0;
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    line-height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .key_visual_bg .key_visual .key_contents .key_event p {
    margin: 0;
    line-height: 130%;
  }
  .key_visual_bg .key_visual .key_contents .key_event p .kot_large {
    font-size: 3rem;
  }
  .key_visual_bg .key_visual .key_contents .key_event p .kot_small {
    font-size: 1.8rem;
  }
  .key_visual_bg .key_visual .key_contents .key_event p .ajs {
    margin: 10px 0 0 0;
    display: block;
  }
  /*下層キービジュアル*/
  .key_visual_low {
    width: 100%;
    height: 330px;
    background: url("../img/key_low_bg.svg") no-repeat;
    background-position: center bottom;
    background-size: contain;
    background-color: #D9F6FD;
    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;
  }
  .key_visual_low .key_img_heri {
    position: absolute;
    top: 54px;
    right: 355px;
    width: 147px;
    z-index: 999999;
  }
  .key_visual_low .key_img_heri img {
    width: 100%;
  }
  .key_visual_low .key_img_kumo {
    position: absolute;
    top: 114px;
    right: 265px;
    width: 115px;
    z-index: 999999;
  }
  .key_visual_low .key_img_kumo img {
    width: 100%;
  }
  .key_visual_low .key_img_hikouki {
    position: absolute;
    top: 28px;
    right: 125px;
    width: 188px;
    z-index: 999999;
  }
  .key_visual_low .key_img_hikouki img {
    width: 100%;
  }
  .key_visual_low .key_img_kikyuu {
    position: absolute;
    top: 370px;
    left: -120px;
    width: 155px;
    z-index: 999999;
  }
  .key_visual_low .key_img_kikyuu img {
    width: 100%;
  }
  .key_visual_low .key_img_niji {
    position: absolute;
    top: 0;
    left: -50px;
    width: 740px;
    z-index: 0;
  }
  .key_visual_low .key_img_niji img {
    width: 100%;
  }
  .key_visual_low .key_img_kikyu {
    display: block;
    position: absolute;
    top: 155px;
    left: 50%;
    width: 190px;
    z-index: 0;
    margin: 0 0 0 220px;
  }
  .key_visual_low .key_img_kikyu img {
    width: 100%;
  }
  .key_visual_low h1 {
    font-family: "zenmarugothic_bold";
    font-size: 4.4rem;
    font-weight: bold;
    text-align: center;
    color: #333333;
    line-height: 160%;
    letter-spacing: 0.1em;
    margin: 0 0 80px 0;
    z-index: 99999999;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  /*トップキービジュアル*/
  .key_visual_bg .key_visual .key_img_heri {
    position: absolute;
    top: 54px;
    right: 250px;
    width: 147px;
    z-index: 999999;
  }
  .key_visual_bg .key_visual .key_img_heri img {
    width: 100%;
  }
  .key_visual_bg .key_visual .key_img_kumo {
    position: absolute;
    top: 114px;
    right: 160px;
    width: 115px;
    z-index: 999999;
  }
  .key_visual_bg .key_visual .key_img_kumo img {
    width: 100%;
  }
  .key_visual_bg .key_visual .key_img_hikouki {
    position: absolute;
    top: 28px;
    right: 20px;
    width: 188px;
    z-index: 999999;
  }
  .key_visual_bg .key_visual .key_img_hikouki img {
    width: 100%;
  }
  .key_visual_bg .key_visual .key_img_kikyuu {
    position: absolute;
    top: 370px;
    left: 20px;
    width: 155px;
    z-index: 999999;
  }
  .key_visual_bg .key_visual .key_img_kikyuu img {
    width: 100%;
  }
  .key_visual_bg .key_visual .key_img_niji {
    position: absolute;
    top: 34px;
    left: -248px;
    width: 800px;
    z-index: 0;
  }
  .key_visual_bg .key_visual .key_img_niji img {
    width: 100%;
  }
  /*下層キービジュアル*/
  .key_visual_low {
    width: 100%;
    height: 330px;
    background: url("../img/key_low_bg.svg") no-repeat;
    background-position: center bottom;
    background-size: contain;
    background-color: #D9F6FD;
    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;
  }
  .key_visual_low .key_img_heri {
    position: absolute;
    top: 54px;
    right: 255px;
    width: 147px;
    z-index: 999999;
  }
  .key_visual_low .key_img_heri img {
    width: 100%;
  }
  .key_visual_low .key_img_kumo {
    position: absolute;
    top: 114px;
    right: 165px;
    width: 115px;
    z-index: 999999;
  }
  .key_visual_low .key_img_kumo img {
    width: 100%;
  }
  .key_visual_low .key_img_hikouki {
    position: absolute;
    top: 28px;
    right: 25px;
    width: 188px;
    z-index: 999999;
  }
  .key_visual_low .key_img_hikouki img {
    width: 100%;
  }
  .key_visual_low .key_img_kikyuu {
    position: absolute;
    top: 370px;
    left: -120px;
    width: 155px;
    z-index: 999999;
  }
  .key_visual_low .key_img_kikyuu img {
    width: 100%;
  }
  .key_visual_low .key_img_niji {
    position: absolute;
    top: 0;
    left: -350px;
    width: 740px;
    z-index: 0;
  }
  .key_visual_low .key_img_niji img {
    width: 100%;
  }
  .key_visual_low .key_img_kikyu {
    display: block;
    position: absolute;
    top: 155px;
    left: 50%;
    width: 190px;
    z-index: 0;
    margin: 0 0 0 220px;
  }
  .key_visual_low .key_img_kikyu img {
    width: 100%;
  }
  .key_visual_low h1 {
    font-family: "zenmarugothic_bold";
    font-size: 4.4rem;
    font-weight: bold;
    text-align: center;
    color: #333333;
    line-height: 160%;
    letter-spacing: 0.1em;
    margin: 0 0 80px 0;
  }
}
/* -----------------------------------------------------------
　お知らせfontello
----------------------------------------------------------- */
.notice_frame_bg .notice_img {
  display: none;
}
.notice_frame_bg .notice_frame {
  width: 96%;
  margin: 0 auto 2rem auto;
}
.notice_frame_bg .notice_frame .notice_box {
  width: 100%;
  height: auto;
  margin: 2rem 0 0 0;
  padding: 2rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #E5F9FE;
  border-radius: 0.5rem;
}
.notice_frame_bg .notice_frame .notice_box dl {
  height: auto;
  margin: 0 auto 0 auto;
  padding: 0 0.8rem 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 96%;
  height: 80vw;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-wrap: break-word;
  /* スクロールバー1 */
}
.notice_frame_bg .notice_frame .notice_box dl::-webkit-scrollbar {
  width: 0.6rem; /* 横幅設定 */
}
.notice_frame_bg .notice_frame .notice_box dl::-webkit-scrollbar-thumb {
  background: #7FD9F0; /* ハンドルの色 */
}
.notice_frame_bg .notice_frame .notice_box dl::-webkit-scrollbar-track {
  background: #ffffff; /* 背景色 */
}
.notice_frame_bg .notice_frame .notice_box dl dt {
  color: #333333;
  margin: 2rem 0 0.8rem 0;
  padding: 1.8rem 0 0 2rem;
  font-family: "zenmarugothic_bold";
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 130%;
  border-top: #7FD9F0 1px solid;
  position: relative;
}
.notice_frame_bg .notice_frame .notice_box dl dt::before {
  position: absolute;
  font-family: "fontello";
  content: "\e803";
  color: #7FD9F0;
  display: block;
  width: 0;
  height: 0;
  margin: 0;
  left: 0.1rem;
  top: 1.9rem;
}
.notice_frame_bg .notice_frame .notice_box dl dt.open::before {
  border: none;
  font-family: "fontello";
  content: "\e803";
  color: #7FD9F0;
}
.notice_frame_bg .notice_frame .notice_box dl dt:first-child {
  margin: 0 0 0.8rem 0;
  border-top: none;
  padding: 0 0 0 2rem;
}
.notice_frame_bg .notice_frame .notice_box dl dt:first-child::before {
  top: 0.1rem;
}
.notice_frame_bg .notice_frame .notice_box dl dt.close::before {
  font-family: "fontello";
  content: " \e803";
  color: #7FD9F0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  margin: 1.9rem 0 0 0;
}
.notice_frame_bg .notice_frame .notice_box dl dd {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
  color: #333333;
  font-size: 1.4rem;
  line-height: 130%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}
.notice_frame_bg .notice_frame .notice_box dl dd.open {
  display: block;
}
.notice_frame_bg .notice_frame .notice_box dl dd p a {
  color: #333333;
}

@media screen and (min-width: 768px), print {
  .notice_frame_bg {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .notice_frame_bg .notice_img {
    display: block;
    width: 280px;
    position: absolute;
    top: 80px;
    left: 50%;
    margin: 0 0 0 -942px;
  }
  .notice_frame_bg .notice_frame {
    width: 1200px;
    margin: 0 auto 40px auto;
  }
  .notice_frame_bg .notice_frame .notice_box {
    width: 1200px;
    height: 400px;
    margin: 60px 0 0 0;
    padding: 50px 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #E5F9FE;
    border-radius: 15px;
  }
  .notice_frame_bg .notice_frame .notice_box dl {
    height: auto;
    margin: 0 auto 0 auto;
    padding: 0 26px 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 1100px;
    height: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    overflow-wrap: break-word;
    /* スクロールバー1 */
  }
  .notice_frame_bg .notice_frame .notice_box dl::-webkit-scrollbar {
    width: 10px; /* 横幅設定 */
  }
  .notice_frame_bg .notice_frame .notice_box dl::-webkit-scrollbar-thumb {
    background: #7FD9F0; /* ハンドルの色 */
  }
  .notice_frame_bg .notice_frame .notice_box dl::-webkit-scrollbar-track {
    background: #ffffff; /* 背景色 */
  }
  .notice_frame_bg .notice_frame .notice_box dl dt {
    color: #333333;
    margin: 20px 0 8px 0;
    padding: 30px 0 0 30px;
    font-family: "zenmarugothic_bold";
    font-size: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 130%;
    border-top: #7FD9F0 1px solid;
    position: relative;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt::before {
    position: absolute;
    font-size: 1.8rem;
    font-family: "fontello";
    content: "\e803";
    color: #7FD9F0;
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    left: 2px;
    top: 32px;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt.open::before {
    border: none;
    font-family: "fontello";
    content: "\e803";
    color: #7FD9F0;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt:first-child {
    margin: 0 0 8px 0;
    border-top: none;
    padding: 0 0 0 30px;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt:first-child::before {
    top: 2px;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt.close::before {
    font-family: "fontello";
    content: " \e803";
    color: #7FD9F0;
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
    margin: 25px 0 0 0;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd {
    margin: 0 0 0 0;
    padding: 0 0 0 30px;
    color: #333333;
    font-size: 1.8rem;
    line-height: 130%;
    display: none;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd.open {
    display: block;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd p {
    margin: 0 0 15px 0;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd p a {
    color: #333333;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .notice_frame_bg .notice_img {
    display: none;
  }
}
/* -----------------------------------------------------------
　TOP情報
----------------------------------------------------------- */
.info_frame_bg .info_img {
  display: none;
}
.info_frame_bg .info_frame {
  width: 96%;
  margin: 0 auto;
}
.info_frame_bg .info_frame .calender_box {
  /*カレンダー部*/
  /*注釈*/
}
.info_frame_bg .info_frame .calender_box ul#tab {
  zoom: 1;
  list-style: none;
  margin: 3rem auto 0 auto;
  padding: 10px 0 0 0;
  width: 100%;
}
.info_frame_bg .info_frame .calender_box ul#tab:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  line-height: 0;
  visibility: hidden;
}
.info_frame_bg .info_frame .calender_box ul#tab li {
  float: left;
  text-align: center;
  font-size: 1.4rem;
  margin: 0 10px 0 0;
  width: 20%;
}
.info_frame_bg .info_frame .calender_box ul#tab li:last-child {
  background: none;
}
.info_frame_bg .info_frame .calender_box ul#tab li a {
  display: block;
  width: 100%;
  padding: 8px 0;
  text-decoration: none;
  color: #333333;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: #7FD9F0 1px solid;
  box-sizing: border-box;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.info_frame_bg .info_frame .calender_box ul#tab li.active span.tab1 {
  background: #7FD9F0;
  color: #ffffff;
}
.info_frame_bg .info_frame .calender_box ul#tab li.active span.tab1 a {
  background: #7FD9F0;
  color: #ffffff;
}
.info_frame_bg .info_frame .calender_box ul#tab li.active span.tab1 a:hover {
  background: #7FD9F0;
  color: #ffffff;
}
.info_frame_bg .info_frame .calender_box ul#tab li.selected span.tab1 a:visited {
  background: #7FD9F0;
  color: #333333;
}
.info_frame_bg .info_frame .calender_box ul#tab li.active span.tab2 {
  background: #7FD9F0;
  color: #ffffff;
}
.info_frame_bg .info_frame .calender_box ul#tab li.active span.tab2 a {
  background: #7FD9F0;
  color: #ffffff;
}
.info_frame_bg .info_frame .calender_box ul#tab li.active span.tab2 a:hover {
  background: #7FD9F0;
  color: #ffffff;
}
.info_frame_bg .info_frame .calender_box ul#tab li span.tab2 a:visited {
  background: #7FD9F0;
  color: #333333;
}
.info_frame_bg .info_frame .calender_box ul#tab li.active span.tab3 {
  background: #7FD9F0;
  color: #ffffff;
}
.info_frame_bg .info_frame .calender_box ul#tab li.active span.tab3 a {
  background: #7FD9F0;
  color: #ffffff;
}
.info_frame_bg .info_frame .calender_box ul#tab li.active span.tab3 a:hover {
  background: #7FD9F0;
  color: #ffffff;
}
.info_frame_bg .info_frame .calender_box ul#tab li span.tab3 a:visited {
  background: #7FD9F0;
  color: #333333;
}
.info_frame_bg .info_frame .calender_box #detail {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
.info_frame_bg .info_frame .calender_box #detail #tab1, .info_frame_bg .info_frame .calender_box #detail #tab2, .info_frame_bg .info_frame .calender_box #detail #tab3 {
  clear: both;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.info_frame_bg .info_frame .calender_box .tabbox {
  display: none;
}
.info_frame_bg .info_frame .calender_box ul.calender_notice {
  list-style-type: none;
  font-size: 1.4rem;
  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;
}
.info_frame_bg .info_frame .calender_box ul.calender_notice li {
  width: 50%;
  margin: 0 0 1rem 0;
}
.info_frame_bg .info_frame .calender_box ul.calender_notice li i {
  border: #CCCCCC 1px solid;
  font-size: 1.2rem;
}
.info_frame_bg .info_frame .calender_box ul.calender_notice li:nth-child(1) i {
  background-color: #EEEEEE;
  color: #EEEEEE;
}
.info_frame_bg .info_frame .calender_box ul.calender_notice li:nth-child(2) i {
  background-color: #D3EDFB;
  color: #D3EDFB;
}
.info_frame_bg .info_frame .calender_box ul.calender_notice li:nth-child(3) i {
  background-color: #FBDAC8;
  color: #FBDAC8;
}
.info_frame_bg .info_frame .calender_box ul.calender_notice li:nth-child(4) i {
  background-color: #FFFCDB;
  color: #FFFCDB;
}
.info_frame_bg .info_frame .calender_box a.web_btn {
  text-decoration: none;
  width: 90%;
  height: 16vw;
  background-color: #FF8DD2;
  border: #ffffff 2px solid;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #FFF9B1;
  margin: 1rem auto 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.info_frame_bg .info_frame .calender_box a.web_btn i {
  color: #ffffff;
  font-size: 2rem;
  margin: 0 0.4rem 0 0;
}
.info_frame_bg .info_frame .calender_box a.web_btn:hover {
  background-color: #EE565D;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.info_frame_bg .info_frame .info_googlemap {
  width: 100%;
  height: 100vw;
  margin: 2rem 0 0 0;
}

@media screen and (min-width: 768px), print {
  .info_frame_bg {
    width: 100%;
    margin: 100px auto 0 auto;
    position: relative;
  }
  .info_frame_bg .info_img {
    display: block;
    width: 200px;
    position: absolute;
    top: 80px;
    right: 50%;
    margin: 0 -905px 0 0;
  }
  .info_frame_bg .info_frame {
    width: 1200px;
    margin: 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;
  }
  .info_frame_bg .info_frame .calender_box {
    width: 420px;
    /*カレンダー部*/
    /*注釈*/
  }
  .info_frame_bg .info_frame .calender_box ul#tab {
    zoom: 1;
    list-style: none;
    margin: 0 auto 0 auto;
    padding: 10px 0 0 0;
    width: 100%;
  }
  .info_frame_bg .info_frame .calender_box ul#tab:after {
    content: ".";
    display: block;
    height: 0px;
    clear: both;
    line-height: 0;
    visibility: hidden;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li {
    float: left;
    text-align: center;
    font-size: 1.8rem;
    margin: 0 5px 0 0;
    width: 75px;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li:last-child {
    background: none;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li a {
    display: block;
    width: 100%;
    padding: 6px 0;
    text-decoration: none;
    color: #333333;
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: #7FD9F0 1px solid;
    box-sizing: border-box;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li.active span.tab1 {
    background: #7FD9F0;
    color: #ffffff;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li.active span.tab1 a {
    background: #7FD9F0;
    color: #ffffff;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li.active span.tab1 a:hover {
    background: #7FD9F0;
    color: #ffffff;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li.selected span.tab1 a:visited {
    background: #7FD9F0;
    color: #333333;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li.active span.tab2 {
    background: #7FD9F0;
    color: #ffffff;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li.active span.tab2 a {
    background: #7FD9F0;
    color: #ffffff;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li.active span.tab2 a:hover {
    background: #7FD9F0;
    color: #ffffff;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li span.tab2 a:visited {
    background: #7FD9F0;
    color: #333333;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li.active span.tab3 {
    background: #7FD9F0;
    color: #ffffff;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li.active span.tab3 a {
    background: #7FD9F0;
    color: #ffffff;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li.active span.tab3 a:hover {
    background: #7FD9F0;
    color: #ffffff;
  }
  .info_frame_bg .info_frame .calender_box ul#tab li span.tab3 a:visited {
    background: #7FD9F0;
    color: #333333;
  }
  .info_frame_bg .info_frame .calender_box #detail {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
  .info_frame_bg .info_frame .calender_box #detail #tab1, .info_frame_bg .info_frame .calender_box #detail #tab2, .info_frame_bg .info_frame .calender_box #detail #tab3 {
    clear: both;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .info_frame_bg .info_frame .calender_box .tabbox {
    display: none;
  }
  .info_frame_bg .info_frame .calender_box ul.calender_notice {
    list-style-type: none;
    font-size: 1.8rem;
    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;
  }
  .info_frame_bg .info_frame .calender_box ul.calender_notice li {
    width: auto;
    margin: 0 0 0 0;
  }
  .info_frame_bg .info_frame .calender_box ul.calender_notice li i {
    border: #CCCCCC 1px solid;
    font-size: 1.3rem;
    margin: 0 3px 0 0;
  }
  .info_frame_bg .info_frame .calender_box ul.calender_notice li:nth-child(1) i {
    background-color: #EEEEEE;
    color: #EEEEEE;
  }
  .info_frame_bg .info_frame .calender_box ul.calender_notice li:nth-child(2) i {
    background-color: #D3EDFB;
    color: #D3EDFB;
  }
  .info_frame_bg .info_frame .calender_box ul.calender_notice li:nth-child(3) i {
    background-color: #FBDAC8;
    color: #FBDAC8;
  }
  .info_frame_bg .info_frame .calender_box ul.calender_notice li:nth-child(4) i {
    background-color: #FFFCDB;
    color: #FFFCDB;
  }
  .info_frame_bg .info_frame .calender_box a.web_btn {
    text-decoration: none;
    width: 380px;
    height: 70px;
    background-color: #FF8DD2;
    border: #ffffff 2px solid;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 2.4rem;
    color: #FFF9B1;
    margin: 42px auto 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .info_frame_bg .info_frame .calender_box a.web_btn i {
    color: #ffffff;
    font-size: 2.6rem;
    margin: 0 10px 0 0;
  }
  .info_frame_bg .info_frame .info_googlemap {
    width: 700px;
    height: 575px;
    margin: 0;
  }
}
/* -----------------------------------------------------------
　当ファミリー棟を受診する予定がある方へ
----------------------------------------------------------- */
.cooperation_frame {
  pointer-events: none;
  display: block;
  text-decoration: none;
  width: 96%;
  margin: 3rem auto 0 auto;
  border: #9ca0a8 3px solid;
  border-radius: 0.5rem;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-weight: bold;
  box-sizing: border-box;
}
.cooperation_frame .cooperation_text1 {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  color: #e34b83;
  margin: 0 0 0.5rem 0;
}
.cooperation_frame hr.cooperation_line {
  border: none;
  border-bottom: #9ca0a8 2px solid;
  margin: 0 0 1rem 0;
}
.cooperation_frame .cooperation_text2 {
  display: block;
  text-align: center;
  font-size: 2rem;
  line-height: 120%;
  color: #2a2f39;
  margin: 0 0 1rem 0;
}
.cooperation_frame .cooperation_text3 {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  line-height: 100%;
  color: #6d727e;
  margin: 0 0 0 0;
}

@media screen and (min-width: 768px), print {
  .cooperation_frame {
    pointer-events: none;
    display: block;
    text-decoration: none;
    width: 1200px;
    height: 165px;
    margin: 100px auto 0 auto;
    border: #9ca0a8 4px solid;
    border-radius: 0.5rem;
    padding: 10px 35px 5px 35px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /*
    &:hover{
      background-color: $color7;
      transition: 0.3s;    
    }
    */
  }
  .cooperation_frame .cooperation_text1 {
    text-align: center;
    font-size: 2.2rem;
    color: #e34b83;
    margin: 0 0 4px 0;
  }
  .cooperation_frame hr.cooperation_line {
    border: none;
    border-bottom: #9ca0a8 2px solid;
    margin: 0 0 16px 0;
  }
  .cooperation_frame .cooperation_text2 {
    display: block;
    text-align: center;
    font-size: 3.4rem;
    line-height: 120%;
    color: #2a2f39;
    margin: 0 0 12px 0;
  }
  .cooperation_frame .cooperation_text3 {
    display: block;
    text-align: center;
    font-size: 2.4rem;
    line-height: 100%;
    color: #6d727e;
    margin: 0 0 0 0;
  }
}
/* -----------------------------------------------------------
　きむらクリニック ファミリー棟の特長
----------------------------------------------------------- */
.features_frame_bg {
  background: url("../img/index_features_bg1.svg"), url("../img/index_features_bg2.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center bottom;
  background-size: contain, contain;
  background-color: #FFFCDE;
  margin: 3rem 0 0 0;
  padding: 3rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_frame_bg .features_img_left {
  display: none;
}
.features_frame_bg .features_img_right {
  display: none;
}
.features_frame_bg .features_box {
  margin: 2rem auto 0 auto;
  width: 96%;
}
.features_frame_bg .features_box figure {
  margin: 0 0 4rem 0;
}
.features_frame_bg .features_box figure img {
  width: 70%;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
.features_frame_bg .features_box figure .features_no {
  margin: -12vw auto 1rem auto;
  position: relative;
  z-index: 1;
  font-size: 5rem;
  font-family: "quicksand_bold";
  font-weight: bold;
  text-align: center;
  color: #7FD9F0;
}
.features_frame_bg .features_box figure figcaption {
  text-align: center;
  margin: 0 0 1rem 0;
}
.features_frame_bg .features_box figure figcaption span {
  display: inline-block;
  background-color: #7FD9F0;
  color: #ffffff;
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 120%;
  padding: 0.3rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_frame_bg .features_box figure .features_text {
  text-align: justify;
  margin: 0;
}

@media screen and (min-width: 768px), print {
  .features_frame_bg {
    background: url("../img/index_features_bg1.svg"), url("../img/index_features_bg2.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: center top, center bottom;
    background-size: contain, contain;
    background-color: #FFFCDE;
    margin: 100px 0 0 0;
    padding: 170px 0 130px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .features_frame_bg .features_img_left {
    display: block;
    width: 200px;
    position: absolute;
    top: 115px;
    left: 50%;
    margin: 0 0 0 -805px;
  }
  .features_frame_bg .features_img_right {
    display: block;
    width: 280px;
    position: absolute;
    top: 705px;
    right: 50%;
    margin: 0 -920px 0 0;
  }
  .features_frame_bg .features_box {
    margin: 58px auto 0 auto;
    width: 1200px;
    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_bg .features_box figure {
    width: 360px;
    margin: 0 0 40px 0;
  }
  .features_frame_bg .features_box figure img {
    width: 295px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 0;
  }
  .features_frame_bg .features_box figure .features_no {
    margin: -50px auto 8px auto;
    position: relative;
    z-index: 1;
    font-size: 7rem;
    font-family: "quicksand_bold";
    font-weight: bold;
    text-align: center;
    color: #7FD9F0;
    line-height: 100%;
  }
  .features_frame_bg .features_box figure figcaption {
    text-align: center;
    margin: 0 0 22px 0;
    height: 102px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .features_frame_bg .features_box figure figcaption span {
    display: inline-block;
    background-color: #7FD9F0;
    color: #ffffff;
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 100%;
    padding: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .features_frame_bg .features_box figure .features_text {
    line-height: 160%;
    letter-spacing: 0;
    text-align: justify;
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .features_frame_bg .features_img_left {
    display: none;
  }
  .features_frame_bg .features_img_right {
    display: none;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.treatment_frame_bg {
  margin: 3rem 0 0 0;
  padding: 1rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.treatment_frame_bg .treatment_img_left {
  display: none;
}
.treatment_frame_bg .treatment_frame ul.treatment_list {
  width: 96%;
  margin: 2rem 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;
}
.treatment_frame_bg .treatment_frame ul.treatment_list li {
  width: 45%;
  margin: 0 0 4rem 0;
}
.treatment_frame_bg .treatment_frame ul.treatment_list li a {
  text-decoration: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #333333;
  font-family: "zenmarugothic_bold";
  font-size: 1.4rem;
  font-weight: bold;
}
.treatment_frame_bg .treatment_frame ul.treatment_list li a::before {
  content: "";
  width: 100%;
  height: 38vw;
}
.treatment_frame_bg .treatment_frame ul.treatment_list li a::after {
  font-family: "fontello";
  content: "\e80b";
  margin: 1rem 0 0 0;
  color: #FF8DD2;
}
.treatment_frame_bg .treatment_frame ul.treatment_list li.pediatrics a::before {
  background: url("../img/index_treatment_01.svg") no-repeat;
  background-size: contain;
}
.treatment_frame_bg .treatment_frame ul.treatment_list li.allergy a::before {
  background: url("../img/index_treatment_02.svg") no-repeat;
  background-size: contain;
}
.treatment_frame_bg .treatment_frame ul.treatment_list li.internal a::before {
  background: url("../img/index_treatment_03.svg") no-repeat;
  background-size: contain;
}
.treatment_frame_bg .treatment_frame ul.treatment_list li.consultation a::before {
  background: url("../img/index_treatment_04.svg") no-repeat;
  background-size: contain;
}
.treatment_frame_bg .treatment_frame ul.treatment_list li.vaccination a::before {
  background: url("../img/index_treatment_05.svg") no-repeat;
  background-size: contain;
}
.treatment_frame_bg .treatment_frame ul.treatment_list li.infant_medical_examination a::before {
  background: url("../img/index_treatment_06.svg") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px), print {
  .treatment_frame_bg {
    width: 100%;
    margin: 56px 0 0 0;
    padding: 58px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .treatment_frame_bg .treatment_img_left {
    display: block;
    width: 440px;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0 0 0 -930px;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list {
    width: 840px;
    margin: 60px 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;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li {
    width: 240px;
    margin: 0 0 62px 0;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li a {
    text-decoration: none;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #333333;
    font-family: "zenmarugothic_bold";
    font-size: 2.4rem;
    font-weight: bold;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li a::before {
    content: "";
    width: 200px;
    height: 170px;
    margin: 0 0 26px 0;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li a::after {
    font-size: 2.9rem;
    font-family: "fontello";
    content: "\e80b";
    margin: 20px 0 0 0;
    color: #FF8DD2;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li.pediatrics a::before {
    background: url("../img/index_treatment_01.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li.allergy a::before {
    background: url("../img/index_treatment_02.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li.internal a::before {
    background: url("../img/index_treatment_03.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li.consultation a::before {
    background: url("../img/index_treatment_04.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li.vaccination a::before {
    background: url("../img/index_treatment_05.svg") no-repeat;
    background-size: contain;
  }
  .treatment_frame_bg .treatment_frame ul.treatment_list li.infant_medical_examination a::before {
    background: url("../img/index_treatment_06.svg") no-repeat;
    background-size: contain;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
.greeting_frame_bg {
  background: url("../img/index_greeting_bg.svg"), url("../img/index_greeting_01.svg"), url("../img/index_greeting_02.svg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center top, left bottom, right bottom;
  background-size: contain, 45%, 45%;
  background-color: #E5F9FE;
  margin: 2rem 0 0 0;
  padding: 4rem 0 6rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: visible;
}
.greeting_frame_bg .greeting_bird {
  width: 30%;
  position: absolute;
  top: -1.6rem;
  right: 2%;
}
.greeting_frame_bg .greeting_cloud {
  display: none;
}
.greeting_frame_bg .greeting_frame_box {
  width: 96%;
  margin: 2rem auto 0 auto;
}
.greeting_frame_bg .greeting_frame_box .greeting_frame_text p {
  font-size: 1.4rem;
  text-align: justify;
}
.greeting_frame_bg .greeting_frame_box .greeting_frame_text p.doctor_name {
  text-align: right;
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
.greeting_frame_bg .greeting_frame_box figure img {
  width: 70%;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px), print {
  .greeting_frame_bg {
    background: url("../img/index_greeting_bg.svg"), url("../img/index_greeting_01.svg"), url("../img/index_greeting_02.svg");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center top, left bottom, right bottom;
    background-size: contain, 653px, 450px;
    background-color: #E5F9FE;
    margin: 42px 0 0 0;
    padding: 160px 0 68px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    overflow: visible;
  }
  .greeting_frame_bg .greeting_bird {
    width: 390px;
    position: absolute;
    top: -40px;
    right: 60px;
  }
  .greeting_frame_bg .greeting_cloud {
    display: block;
    width: 1830px;
    position: absolute;
    top: 280px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 1;
  }
  .greeting_frame_bg .greeting_frame_box {
    width: 1200px;
    margin: 95px 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;
    position: relative;
    z-index: 2;
  }
  .greeting_frame_bg .greeting_frame_box .greeting_frame_text {
    width: 740px;
  }
  .greeting_frame_bg .greeting_frame_box .greeting_frame_text p {
    font-size: 1.8rem;
    text-align: justify;
    margin: 0 0 28px 0;
  }
  .greeting_frame_bg .greeting_frame_box .greeting_frame_text p.doctor_name {
    text-align: right;
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 2.4rem;
    margin: 0;
  }
  .greeting_frame_bg .greeting_frame_box figure {
    width: 427px;
    margin: -30px 0 0 0;
  }
  .greeting_frame_bg .greeting_frame_box figure img {
    width: 427px;
    display: block;
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .greeting_frame_bg {
    padding: 160px 0 200px 0;
  }
}
/* -----------------------------------------------------------
　画像ループ
----------------------------------------------------------- */
.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;
}
.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: 3300px;
  margin: 0;
  padding: 0;
}
.loop_css ul li {
  display: inline-block;
  width: 50vw;
  min-width: 250px;
  margin: 0 0.5rem;
  list-style: none;
  text-align: center;
}
.loop_css ul li a {
  display: block;
}
.loop_css ul li img {
  display: block;
  width: 100%;
  height: auto;
}
.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: 2, 870px;
    margin: 60px 0;
    padding: 0;
  }
  .loop_css ul li {
    display: inline-block;
    width: 50vw;
    min-width: 390px;
    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;
  }
  .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: 2550px;
    height: 190px;
    overflow: hidden;
  }
  .loop_js > * {
    width: 33.333333%;
    height: auto;
  }
}
/* -----------------------------------------------------------
　小児かかりつけ医制度と機能強化加算について バナー
----------------------------------------------------------- */
.primary_care_button {
  width: 100%;
  margin: 0 0 3rem 0;
}
.primary_care_button a {
  display: block;
  width: 96%;
  margin: 0 auto;
}
.primary_care_button a img {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .primary_care_button {
    width: 100%;
    margin: 0 0 60px 0;
  }
  .primary_care_button a {
    display: block;
    width: 540px;
    margin: 0 auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .primary_care_button a img {
    width: 100%;
  }
  .primary_care_button a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  background-color: #FFFCDE;
  width: 100%;
  padding: 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.overview .overview_img_01 {
  display: none;
}
.overview .overview_img_02 {
  display: none;
}
.overview .overview_logo {
  width: 80%;
  margin: 0 auto;
  display: block;
}
.overview .overview_logo img {
  width: 100%;
}
.overview .overview_box {
  width: 96%;
  margin: 2rem auto 0 auto;
  /*左側*/
  /*右側*/
}
.overview .overview_box .overview_info_box_left {
  width: 100%;
}
.overview .overview_box .overview_info_box_left dl.overview_list {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 160%;
}
.overview .overview_box .overview_info_box_left dl.overview_list dt {
  width: 30%;
  margin: 0 0 1rem 0;
  padding: 0.5rem 0;
  color: #6BB7C9;
  background-color: #E5F9FE;
  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;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd {
  width: 67%;
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd a {
  color: #6BB7C9;
  text-decoration: none;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd.tel_text {
  color: #6BB7C9;
  text-decoration: underline;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd.fax a {
  color: #333333;
  pointer-events: none;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd.mail a {
  text-decoration: none;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd.mail a img {
  display: block;
  width: 100%;
}
.overview .overview_box .overview_info_box_right {
  margin: 2rem 0 0 0;
}
.overview .overview_box .overview_info_box_right .overview_timetable {
  width: 100%;
  margin: 0;
}
.overview ul.overview_link {
  list-style-type: none;
}
.overview ul.overview_link li.reserve a {
  text-decoration: none;
  width: 90%;
  height: 16vw;
  background-color: #FF8DD2;
  border: #ffffff 2px solid;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #FFF9B1;
  margin: 1rem auto 0 auto;
}
.overview ul.overview_link li.reserve a i {
  color: #ffffff;
  font-size: 2rem;
  margin: 0 0.4rem 0 0;
}
.overview ul.overview_link li.line a {
  text-decoration: none;
  width: 90%;
  height: 16vw;
  background-color: #ffffff;
  border: #06C755 2px solid;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #06C755;
  margin: 1rem auto 0 auto;
}
.overview ul.overview_link li.line a img {
  width: 8%;
  margin: 0 1rem 0 0;
}
.overview ul.overview_link li a.img_bnr {
  display: block;
  margin: 1rem auto 0 auto;
  aspect-ratio: 12/5;
  max-width: 90%;
  height: auto;
}
.overview ul.overview_link li a.img_bnr img {
  max-width: 100%;
  height: auto;
}

.footer_info {
  padding: 2rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_info .footer_info_title {
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 2rem;
  color: #333333;
  text-align: center;
}
.footer_info .footer_info_title::after {
  content: "";
  display: block;
  width: 15%;
  height: 4px;
  border-bottom: #7FD9F0 4px dashed;
  margin: 0.5rem auto 0 auto;
}
.footer_info .footer_info_box .footer_info_box_left .footer_bana {
  width: 96%;
  margin: 0 auto;
  display: block;
  text-decoration: none;
}
.footer_info .footer_info_box .footer_info_box_left .footer_bana img {
  width: 100%;
}
.footer_info .footer_info_box .footer_info_box_left .hp_btn {
  text-decoration: none;
  width: 90%;
  height: 16vw;
  background-color: #7FD9F0;
  border: #ffffff 2px solid;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "zenmarugothic_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #FFF9B1;
  margin: 1rem auto 0 auto;
}
.footer_info .footer_info_box .footer_info_box_left .hp_btn i {
  color: #ffffff;
  font-size: 2rem;
  margin: 0 0.4rem 0 0;
}
.footer_info .footer_info_box .footer_info_box_right {
  margin: 2rem 0 0 0;
}
.footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list {
  width: 96%;
  margin: 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%;
}
.footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dt {
  width: 25%;
  margin: 0 0 1rem 0;
  padding: 0.5rem 0;
  color: #6BB7C9;
  background-color: #E5F9FE;
  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;
}
.footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dd {
  width: 73%;
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dd a {
  color: #6BB7C9;
  text-decoration: none;
}
.footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dd.tel_text {
  color: #6BB7C9;
  text-decoration: underline;
}
.footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dd.fax a {
  color: #333333;
  pointer-events: none;
}

@media screen and (min-width: 768px), print {
  .overview {
    background-color: #FFFCDE;
    width: 100%;
    height: auto;
    padding: 58px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .overview .overview_img_01 {
    display: block;
    width: 260px;
    position: absolute;
    top: 98px;
    left: 50%;
    margin: 0 0 0 -930px;
  }
  .overview .overview_img_02 {
    display: block;
    width: 360px;
    position: absolute;
    top: 62px;
    right: 0;
  }
  .overview .overview_logo {
    width: 483.46px;
    margin: 0 auto;
    display: block;
  }
  .overview .overview_logo img {
    width: 100%;
  }
  .overview .overview_box {
    width: 1200px;
    margin: 58px 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;
    /*左側*/
    /*右側*/
  }
  .overview .overview_box .overview_info_box_left {
    width: 570px;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list {
    width: 570px;
    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.8rem;
    line-height: 160%;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt {
    width: 120px;
    margin: 0 0 15px 0;
    padding: 10px 0;
    color: #6BB7C9;
    background-color: #E5F9FE;
    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;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt.large {
    padding: 20px 0;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd {
    width: 435px;
    margin: 0 0 15px 0;
    padding: 10x 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #333333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd a {
    color: #6BB7C9;
    text-decoration: none;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd.tel_text {
    color: #6BB7C9;
    text-decoration: underline;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd.fax a {
    color: #333333;
    pointer-events: none;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd.mail a {
    text-decoration: none;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd.mail a img {
    display: block;
    width: 197px;
  }
  .overview .overview_box .overview_info_box_right {
    margin: 0 0 0 0;
    width: 570px;
  }
  .overview .overview_box .overview_info_box_right .overview_timetable {
    width: 100%;
    margin: 0;
  }
  .overview ul.overview_link {
    list-style-type: none;
    width: 1200px;
    margin: 30px 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;
  }
  .overview ul.overview_link li.reserve a {
    text-decoration: none;
    width: 320px;
    height: 70px;
    background-color: #FF8DD2;
    border: #ffffff 2px solid;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 2.4rem;
    color: #FFF9B1;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .overview ul.overview_link li.reserve a i {
    color: #ffffff;
    font-size: 2.6rem;
    margin: 0 12px 0 0;
  }
  .overview ul.overview_link li.reserve a:hover {
    background-color: #EE565D;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .overview ul.overview_link li.line a {
    text-decoration: none;
    width: 320px;
    height: 70px;
    background-color: #ffffff;
    border: #06C755 2px solid;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 2.4rem;
    color: #06C755;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .overview ul.overview_link li.line a img {
    width: 30px;
    margin: 0 16px 0 0;
  }
  .overview ul.overview_link li.line a:hover {
    background-color: #d5ffe6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .overview ul.overview_link li a.img_bnr {
    margin: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 160px;
  }
  .overview ul.overview_link li a.img_bnr:hover {
    opacity: 0.8;
  }
  .footer_info {
    padding: 60px 0 34px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: #CCCCCC 1px solid;
  }
  .footer_info .footer_info_title {
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 2.4rem;
    color: #333333;
    text-align: center;
    margin: 0 0 48px 0;
  }
  .footer_info .footer_info_title::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    border-bottom: #7FD9F0 4px dashed;
    margin: 16px auto 0 auto;
  }
  .footer_info .footer_info_box {
    width: 1200px;
    margin: 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;
  }
  .footer_info .footer_info_box .footer_info_box_left {
    width: 570px;
  }
  .footer_info .footer_info_box .footer_info_box_left .footer_bana {
    width: 570px;
    margin: 0;
    display: block;
    text-decoration: none;
  }
  .footer_info .footer_info_box .footer_info_box_left .footer_bana img {
    width: 570px;
  }
  .footer_info .footer_info_box .footer_info_box_left .hp_btn {
    text-decoration: none;
    width: 285px;
    height: 60px;
    background-color: #7FD9F0;
    border: #ffffff 2px solid;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: "zenmarugothic_bold";
    font-weight: bold;
    font-size: 1.8rem;
    color: #FFF9B1;
    margin: 40px auto 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .footer_info .footer_info_box .footer_info_box_left .hp_btn i {
    color: #ffffff;
    font-size: 2rem;
    margin: 0 8px 0 0;
  }
  .footer_info .footer_info_box .footer_info_box_left .hp_btn:hover {
    background-color: #4C8CB7;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .footer_info .footer_info_box .footer_info_box_right {
    margin: 0 0 0 0;
    width: 570px;
  }
  .footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list {
    width: 570px;
    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.8rem;
    line-height: 160%;
  }
  .footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dt {
    width: 120px;
    margin: 0 0 15px 0;
    padding: 10px 0;
    color: #6BB7C9;
    background-color: #E5F9FE;
    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;
  }
  .footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dt.large {
    padding: 20px 0;
  }
  .footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dd {
    width: 435px;
    margin: 0 0 15px 0;
    padding: 10x 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #333333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dd a {
    color: #6BB7C9;
    text-decoration: none;
  }
  .footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dd.tel_text {
    color: #6BB7C9;
    text-decoration: underline;
  }
  .footer_info .footer_info_box .footer_info_box_right dl.footer_overview_list dd.fax a {
    color: #333333;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .overview .overview_img_01 {
    display: none;
  }
  .overview .overview_img_02 {
    display: none;
  }
}
/* -----------------------------------------------------------
　地図
----------------------------------------------------------- */
iframe.googlemap {
  width: 100%;
  height: 100vw;
  display: block;
  margin: 0;
}

@media screen and (min-width: 768px), print {
  iframe.googlemap {
    width: 100%;
    height: 500px;
    display: block;
    margin: 0;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer {
  margin: 0 0 0 0;
  padding: 2rem 0 0 0;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
footer .footer_frame {
  display: none;
}
footer .copyright {
  margin: 0;
  padding: 0.5rem 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.05em;
  background-color: #7FD9F0;
  line-height: 110%;
}
footer .copyright a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer_link {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 12vw;
  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;
  z-index: 999999;
}
.footer_link a {
  height: 12vw;
  border-top: #ffffff 1px solid;
  color: #ffffff;
  background-color: #7FD9F0;
  font-family: "zenmarugothic_medium";
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  -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;
}
.footer_link a.footer_tel {
  width: 40%;
  border-right: #ffffff 1px solid;
}
.footer_link a.footer_tel i {
  font-size: 1.4rem;
}
.footer_link a.footer_reserve {
  width: 30%;
  border-right: #ffffff 1px solid;
}
.footer_link a.footer_access {
  width: 30%;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0 0 0 0;
    padding: 45px 0 0 0;
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 190px;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    display: block;
    width: 1200px;
    margin: 0 auto 0 auto;
  }
  footer .footer_frame ul.footer_list {
    line-height: 130%;
    font-size: 1.6rem;
    margin: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer_frame ul.footer_list li {
    width: auto;
    height: 16px;
    margin: 0 8px 16px 0;
    padding: 0 8px 0 0;
    list-style-type: none;
    position: relative;
    border-right: #333333 1px solid;
    line-height: 100%;
  }
  footer .footer_frame ul.footer_list li a {
    color: #333333;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.6rem;
    position: relative;
  }
  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: 2px solid #FF8DD2;
  }
  footer .footer_frame ul.footer_list li a:hover::before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
    top: 0;
    bottom: -3px;
  }
  footer .footer_frame ul.footer_list li.treatment {
    display: none;
  }
  footer .footer_frame ul.footer_list li:last-child {
    border-right: none;
  }
  footer .copyright {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ffffff;
    font-size: 1.6rem;
    height: 50px;
    width: 100%;
    letter-spacing: 0.05em;
    background-color: #7FD9F0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 100%;
  }
  footer .copyright a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1em;
  }
  .footer_link {
    display: none;
  }
}
/* -----------------------------------------------------------
　ページトップへ
----------------------------------------------------------- */
#pagetop_position {
  display: block;
  margin: 0;
  padding: 0;
}
#pagetop_position #linkpagetop a {
  width: 2rem;
}
#pagetop_position #linkpagetop a img {
  width: 100%;
}
#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: 28vw;
  right: 1%;
  z-index: 999999;
}

@media screen and (min-width: 768px), print {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 85px;
  }
  #pagetop_position #linkpagetop a img {
    width: 85px;
  }
  #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: 80px;
    right: 60px;
    z-index: 999999;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 85px;
  }
  #pagetop_position #linkpagetop a img {
    width: 85px;
  }
  #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: 80px;
    right: 60px;
    z-index: 999999;
  }
}
/*# sourceMappingURL=style.css.map */