@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;
}
/*共通モジュール*/
/* 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 !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.bold {
  font-weight: bold;
}

.txt_b {
  font-size: 160%;
}

.red {
  color: #FF5353;
}

.border-red {
  border-color: #FF5353 !important;
}

.bg-gray {
  background: #e4e4e4 !important;
}

/* img -------------------------------------- */
.bnr_img {
  display: inline-block;
  max-width: 95%;
  height: auto;
  margin: 1rem auto;
  text-align: center;
}

.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 {
  .bnr_img {
    max-width: 100%;
  }
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
}
.bnr_flumist {
  display: block;
  max-width: 96%;
  height: auto;
  margin: 1rem auto 2rem;
  text-align: center;
  line-height: 1;
}
.bnr_flumist img {
  width: 50%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 768px), print {
  .bnr_flumist {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
    text-align: center;
  }
  .bnr_flumist img {
    width: auto;
    height: auto;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

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

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.main_nav_sp {
  width: 100%;
}
.main_nav_sp .drawr {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 0 2rem 0;
  margin: 0 0 0 0;
  z-index: 99999999;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow: auto;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.main_nav_sp .drawr::-webkit-scrollbar {
  display: none;
}
.main_nav_sp .drawr ul.hbg {
  list-style-type: none;
  /*border-top: $color8 1px solid;*/
  width: 100%;
  margin: 18vw 0 0 0;
}
.main_nav_sp .drawr ul.hbg li {
  width: 100%;
  text-align: center;
}
.main_nav_sp .drawr ul.hbg li a {
  color: #0E80CC;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 1rem;
  border-bottom: #0E80CC 1px solid;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  line-height: 120%;
}
.main_nav_sp .drawr ul.hbg li ul {
  display: none;
  list-style-type: none;
}
.main_nav_sp .drawr ul.hbg li ul.open_nav_visit {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main_nav_sp .drawr ul.hbg li ul.open_nav_treatment {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main_nav_sp .drawr ul.hbg li ul.open_nav_cancer {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main_nav_sp .drawr ul.hbg li ul.open_nav_check {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main_nav_sp .drawr ul.hbg li ul.open_nav_vaccination {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main_nav_sp .drawr ul.hbg li ul.open_nav_child {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main_nav_sp .drawr ul.hbg li ul.open_nav_hbg {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main_nav_sp .drawr ul.hbg li ul li {
  width: 50%;
}
.main_nav_sp .drawr ul.hbg li ul li:nth-child(odd) a {
  border-right: #0E80CC 1px solid;
}
.main_nav_sp .drawr ul.hbg li ul li a {
  font-size: 1rem;
  padding: 1rem 0.5rem;
  background-color: #EEF8FF;
  color: #0E80CC;
  text-align: left;
  border-bottom: #0E80CC 1px solid;
  box-sizing: border-box;
  min-height: 14vw;
}
.main_nav_sp .drawr ul.hbg li ul li a::after {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li ul li a::before {
  display: none;
}
.main_nav_sp .drawr ul.hbg li ul li.none {
  border-bottom: #0E80CC 1px solid;
}
.main_nav_sp .drawr ul.hbg li.gn_visit a::after {
  font-family: "fontello";
  content: "\e80c";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_visit a::before {
  content: "";
  background: url("../img/icon_01.svg") no-repeat;
  background-size: contain;
  width: 9%;
  height: 8vw;
  margin: 0 0.5rem 0 0;
}
.main_nav_sp .drawr ul.hbg li.open_visit a::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_treatment a::after {
  font-family: "fontello";
  content: "\e80c";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_treatment a::before {
  content: "";
  background: url("../img/icon_02.svg") no-repeat;
  background-size: contain;
  width: 9%;
  height: 8vw;
  margin: 0 0.5rem 0 0;
}
.main_nav_sp .drawr ul.hbg li.open_treatment a::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_cancer a::after {
  font-family: "fontello";
  content: "\e80c";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_cancer a::before {
  content: "";
  background: url("../img/icon_03.svg") no-repeat;
  background-size: contain;
  width: 9%;
  height: 8vw;
  margin: 0 0.5rem 0 0;
}
.main_nav_sp .drawr ul.hbg li.open_cancer a::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_health_check a::after {
  font-family: "fontello";
  content: "\e80c";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_health_check a::before {
  content: "";
  background: url("../img/icon_04.svg") no-repeat;
  background-size: contain;
  width: 9%;
  height: 8vw;
  margin: 0 0.5rem 0 0;
}
.main_nav_sp .drawr ul.hbg li.open_check a::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_vaccination a::after {
  font-family: "fontello";
  content: "\e80c";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_vaccination a::before {
  content: "";
  background: url("../img/icon_05.svg") no-repeat;
  background-size: contain;
  width: 9%;
  height: 8vw;
  margin: 0 0.5rem 0 0;
}
.main_nav_sp .drawr ul.hbg li.open_vaccination a::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_child a::after {
  font-family: "fontello";
  content: "\e80c";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_child a::before {
  content: "";
  background: url("../img/icon_06.svg") no-repeat;
  background-size: contain;
  width: 9%;
  height: 8vw;
  margin: 0 0.5rem 0 0;
}
.main_nav_sp .drawr ul.hbg li.open_child a::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_contact a::before {
  content: "";
  background: url("../img/icon_13.svg") no-repeat;
  background-size: contain;
  width: 9%;
  height: 8vw;
  margin: 0 0.5rem 0 0;
}
.main_nav_sp .drawr ul.hbg li.gn_hbg a::after {
  font-family: "fontello";
  content: "\e80c";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.gn_hbg a::before {
  content: "";
  background: url("../img/icon_13.svg") no-repeat;
  background-size: contain;
  width: 9%;
  height: 8vw;
  margin: 0 0.5rem 0 0;
}
.main_nav_sp .drawr ul.hbg li.open_hbg a::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .openNav {
  display: block;
  animation-name: fade-in;
  animation-duration: 0.8s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
.container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction:column;
  flex-direction:column;
  width: 15%;
  max-width: 15%;
  position:fixed;
  cursor: pointer;
	right:2%;
  top:2vw;
  z-index:99999999999;
  padding: 0 0 0.6rem 0;
  background-color: $color_hbg_bg;  
  height: 12vw;
}
*/
/*見出し*/
/* Scss Document */
/* =======================================================================

 共通項目

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

h2.top_title {
  text-align: center;
  font-family: "zenmarugothic_medium";
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 100%;
  color: #0E80CC;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  letter-spacing: 0.3rem;
}
h2.top_title span {
  display: block;
  color: #CCCCCC;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
}
h2.top_title::before {
  content: "";
  background: url("../img/h2_icon.svg") no-repeat;
  background-size: 100%;
  display: block;
  width: 18%;
  height: 16vw;
  margin: 0 auto 1rem auto;
}
h2.low {
  text-align: center;
  font-family: "zenmarugothic_medium";
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 100%;
  color: #0E80CC;
  margin: 4rem 0 2rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  letter-spacing: 0.3rem;
}
h2.low::before {
  content: "";
  background: url("../img/h2_icon.svg") no-repeat;
  background-size: 100%;
  display: block;
  width: 18%;
  height: 16vw;
  margin: 0 auto 1rem auto;
}
h2.low_icon {
  width: 100%;
  background-color: #EEF8FF;
  padding: 1rem 0;
  box-sizing: border-box;
  margin: 0 0 1rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
h2.low_icon img {
  order: 1;
  width: 10%;
  margin: 0 1rem 0 0;
}
h2.low_icon span {
  order: 2;
  font-family: "zenmarugothic_medium";
  font-size: 1.4rem;
  font-weight: normal;
  color: #0E80CC;
}
h2.low_icon span.left {
  text-align: left;
}
h2.warm_color {
  background-color: #fff0f5;
}
h2.warm_color span {
  color: #ff99bb;
}
h2.warm_color2 {
  color: #ff6699;
}
h2.warm_color2::before {
  content: "";
  background: url("../img/h2_icon_warm.svg") no-repeat;
  background-size: 100%;
  display: block;
  width: 18%;
  height: 16vw;
  margin: 0 auto 1rem auto;
}
h2.first {
  margin: 0 0 2rem 0;
}

h3.low {
  color: #ffffff;
  background-color: #0E80CC;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 2rem;
  font-weight: normal;
  padding: 1rem;
  box-sizing: border-box;
  margin: 4rem 0 1.5rem 0;
  line-height: 120%;
}
h3.low2 {
  color: #379EE2;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  box-sizing: border-box;
  margin: 4rem 0 1.5rem 0;
  line-height: 120%;
}
h3.low_h4 {
  background: url("../img/h2_icon.svg") no-repeat;
  background-size: 10%;
  background-position: left 2% top;
  color: #1C77D1;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.9rem;
  box-sizing: border-box;
  padding: 0 0 0.4rem 14%;
  margin: 4rem 0 1.5rem 0;
  line-height: 130%;
  border-bottom: #1C77D1 1px solid;
}
h3.warm_color {
  background-color: #ff99bb;
}
h3.first {
  margin: 0 0 1.5rem 0;
}

h4.low {
  background: url("../img/h2_icon.svg") no-repeat;
  background-size: 10%;
  background-position: left 2% top;
  color: #1C77D1;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  font-size: 1.9rem;
  box-sizing: border-box;
  padding: 0 0 0.4rem 14%;
  margin: 3rem 0 1.5rem 0;
  line-height: 130%;
  border-bottom: #1C77D1 1px solid;
}
h4.warm_color {
  background: url("../img/h2_icon_warm.svg") no-repeat;
  background-size: 10%;
  background-position: left 2% top;
  color: #ff99bb;
  border-bottom: #ff99bb 1px solid;
}
h4.first {
  margin: 0 0 1.5rem 0;
}

h5.low {
  font-family: "zenmarugothic_medium";
  font-size: 1.8rem;
  font-weight: normal;
  color: #FB93A8;
  margin: 3rem 0 1.2rem 0;
  padding: 0 0 0.4rem 1rem;
  box-sizing: border-box;
  line-height: 130%;
  border-bottom: #FB93A8 1px dashed;
}
h5.first {
  margin: 0 0 1rem 0;
}

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

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title {
    text-align: center;
    font-family: "zenmarugothic_medium";
    font-size: 3rem;
    font-weight: normal;
    line-height: 100%;
    color: #0E80CC;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    letter-spacing: 0.3em;
  }
  h2.top_title span {
    display: block;
    color: #CCCCCC;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
  h2.top_title::before {
    content: "";
    background: url("../img/h2_icon.svg") no-repeat;
    background-size: 72.483px;
    display: block;
    width: 72.483px;
    height: 56.95px;
    margin: 0 auto 15px auto;
  }
  h2.low {
    text-align: center;
    font-family: "zenmarugothic_medium";
    font-size: 3rem;
    font-weight: normal;
    line-height: 100%;
    color: #0E80CC;
    margin: 80px 0 30px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    letter-spacing: 0.3em;
  }
  h2.low span {
    display: block;
    color: #CCCCCC;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
  h2.low::before {
    content: "";
    background: url("../img/h2_icon.svg") no-repeat;
    background-size: 72.483px;
    display: block;
    width: 72.483px;
    height: 56.95px;
    margin: 0 auto 15px auto;
  }
  h2.low_icon {
    width: 256px;
    height: 232px;
    background-color: #EEF8FF;
    padding: 16px 0;
    box-sizing: border-box;
    margin: 0 auto 30px auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  h2.low_icon img {
    order: 2;
    width: 80px;
    display: block;
    margin: 0 auto;
  }
  h2.low_icon span {
    order: 1;
    font-family: "zenmarugothic_medium";
    font-size: 2.2rem;
    font-weight: normal;
    text-align: center;
    color: #0E80CC;
    display: block;
    line-height: 120%;
    margin: 0 0 20px 0;
  }
  h2.low_icon span.left {
    text-align: left;
  }
  h2.warm_color {
    background-color: #fff0f5;
  }
  h2.warm_color span {
    color: #ff99bb;
  }
  h2.warm_color2 {
    color: #ff6699;
  }
  h2.warm_color2::before {
    content: "";
    background: url("../img/h2_icon_warm.svg") no-repeat;
    background-size: 72.483px;
    display: block;
    width: 72.483px;
    height: 56.95px;
    margin: 0 auto 15px auto;
  }
  h2.first {
    margin: 0 0 30px 0;
  }
  h3.low {
    color: #ffffff;
    background-color: #0E80CC;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.4rem;
    font-weight: normal;
    padding: 6px 20px;
    box-sizing: border-box;
    margin: 70px 0 16px 0;
    line-height: 160%;
  }
  h3.low2 {
    color: #379EE2;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    font-size: 2.6rem;
    font-weight: normal;
    text-align: center;
    padding: 6px 20px;
    box-sizing: border-box;
    margin: 70px 0 16px 0;
    line-height: 160%;
  }
  h3.low_h4 {
    background: url("../img/h2_icon.svg") no-repeat;
    background-size: 43px;
    background-position: left 8px top;
    color: #1C77D1;
    font-size: 2.2rem;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    box-sizing: border-box;
    padding: 0 0 2px 62px;
    margin: 50px 0 16px 0;
    line-height: 160%;
    position: relative;
    border-bottom: #1C77D1 1px solid;
  }
  h3.warm_color {
    background-color: #ff99bb;
  }
  h3.first {
    margin: 0 0 16px 0;
  }
  h4.low {
    background: url("../img/h2_icon.svg") no-repeat;
    background-size: 43px;
    background-position: left 8px top;
    color: #1C77D1;
    font-size: 2.2rem;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    box-sizing: border-box;
    padding: 0 0 2px 62px;
    margin: 50px 0 16px 0;
    line-height: 160%;
    position: relative;
    border-bottom: #1C77D1 1px solid;
  }
  h4.warm_color {
    background: url("../img/h2_icon_warm.svg") no-repeat;
    background-size: 43px;
    background-position: left 8px top;
    color: #ff99bb;
    border-bottom: #ff99bb 1px solid;
  }
  h4.first {
    margin: 0 0 16px 0;
  }
  h5.low {
    font-family: "zenmarugothic_medium";
    font-size: 2rem;
    font-weight: normal;
    color: #FB93A8;
    margin: 30px 0 16px 0;
    padding: 0 0 4px 20px;
    box-sizing: border-box;
    line-height: 160%;
    border-bottom: #FB93A8 1px dashed;
  }
  h5.first {
    margin: 0 0 16px 0;
  }
  p {
    font-size: 1.6rem;
    margin: 0 0 30px 0;
    line-height: 160%;
    letter-spacing: 0.05em;
  }
}
/*イメージ*/
/* Scss Document */
/* =======================================================================

 共通項目

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

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

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

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

.img_left {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_left img {
  width: 70%;
  height: auto;
}
.img_left img.half {
  width: 50%;
}
.img_left figcaption {
  font-size: 1.4rem;
  text-align: center;
  margin: 1rem 0 0 0;
  line-height: 140%;
}

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

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

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

@media screen and (min-width: 768px), print {
  .img_right {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right img {
    width: 400px;
    height: auto;
  }
  .img_right2 {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right2 img {
    width: auto;
    height: auto;
  }
  .img_right_icon {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right_icon img {
    width: 200px;
    height: auto;
  }
  .img_left {
    float: left;
    margin: 0 20px 20px 0;
  }
  .img_left img {
    width: 400px;
    height: auto;
  }
  .img_left img.half {
    width: 250px;
  }
  .img_left img.half2 {
    width: 150px;
  }
  .img_left figcaption {
    font-size: 1.6rem;
    text-align: center;
    margin: 20px 0 0 0;
    line-height: 160%;
  }
  .img_right200 {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right200 img {
    width: 200px;
    height: auto;
  }
  .img_center {
    float: none;
    margin: 0 0 20px 0;
    text-align: center;
  }
  .img_center img {
    width: auto;
    height: auto;
  }
  .img_equipment {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_equipment img {
    width: 200px;
    height: auto;
  }
  .img_two {
    margin: 0 auto;
    text-align: center;
    width: 700px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .img_two img {
    width: 300px;
    height: auto;
    margin: 0 0 1rem 0;
  }
  .img_two.electro_img img {
    width: 306px;
  }
}
/*リスト*/
/* Scss Document */
/* =======================================================================

 共通項目

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

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

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

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

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

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

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

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

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

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

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

dl.num_list_flow {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.num_list_flow dt {
  width: 10%;
  margin: 0 0 1rem 0;
}
dl.num_list_flow dd {
  width: 90%;
  margin: 0 0 1rem 0;
}

dl.num_list_flow_ty {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.num_list_flow_ty dt {
  width: 10%;
  margin: 0 0 1rem 0;
}
dl.num_list_flow_ty dd {
  width: 90%;
  margin: 0 0 1rem 0;
}

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

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

@media screen and (min-width: 768px), print {
  /*略歴*/
  dl.bio_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    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-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    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.num_list_flow {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 800px;
  }
  dl.num_list_flow dt {
    width: 20px;
    margin: 0 0 1rem 0;
  }
  dl.num_list_flow dd {
    width: 780px;
    margin: 0 0 1rem 0;
  }
  dl.num_list_flow_ty {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 180px;
  }
  dl.num_list_flow_ty dt {
    width: 20px;
    margin: 0 0 1rem 0;
  }
  dl.num_list_flow_ty dd {
    width: 160px;
    margin: 0 0 1rem 0;
  }
  /*記号*/
  dl.symbol_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.symbol_list dt {
    width: 20px;
    margin: 0 0 1rem 0;
  }
  dl.symbol_list dd {
    width: 1180px;
    margin: 0 0 1rem 0;
  }
  /*タイトルボックス*/
  dl.title_box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  dl.title_box dt {
    width: 100%;
    margin: 0;
    background-color: #EEF8FF;
    color: #333333;
    padding: 10px;
    box-sizing: border-box;
    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: 10px;
    box-sizing: border-box;
    border-bottom: #CCCCCC 1px solid;
  }
}
/* -----------------------------------------------------------
　イメージリスト
----------------------------------------------------------- */
ul.img_list_01 {
  list-style-type: none;
  background-color: #ffffff;
  width: 100%;
  padding: 3rem 1rem 1rem 1rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
}
ul.img_list_01 li {
  width: 100%;
  background-color: #EEF8FF;
  margin: 0 0 3rem 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
}
ul.img_list_01 li img {
  width: 30%;
  display: block;
  margin: 0 0 1rem 0;
}
ul.img_list_01 li .title_text {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 10rem;
  height: 10rem;
  background-color: #0E80CC;
  color: #ffffff;
  font-size: 3rem;
  margin: 0 0 2rem 0;
}
ul.img_list_01 li p {
  text-align: center;
  font-size: 1.4rem;
  margin: 0;
}
ul.img_list_01 li::before {
  font-family: "fontello";
  content: "\f06d";
  font-size: 2.5rem;
  color: #0E80CC;
  position: absolute;
  top: -1.25rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
ul.img_list_01 li ul {
  all: initial;
  width: 100%;
  display: block;
  list-style-type: disc !important;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.img_list_01 li ul li {
  all: initial;
  display: block;
  width: auto;
  text-align: left;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.5rem;
  font-family: "zenmarugothic_medium", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
  font-size: 1.4rem;
  box-sizing: border-box;
  position: relative;
}
ul.img_list_01 li ul li::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  right: auto;
  content: "・";
  color: #333333;
  font-size: 1.4rem;
  margin: 0;
}

ul.img_list_02 {
  list-style-type: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #ffffff;
  width: 100%;
  padding: 1rem 1rem 0 1rem;
  box-sizing: border-box;
}
ul.img_list_02 li {
  width: 100%;
  background-color: #EEF8FF;
  margin: 0 0 3rem 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
ul.img_list_02 li img {
  width: 40%;
  display: block;
  margin: 0 0 1rem 0;
}
ul.img_list_02 li p {
  text-align: justify;
  font-size: 1.4rem;
  margin: 0;
}
ul.img_list_02 li p.img_title {
  margin: 0 0 2rem 0;
  font-size: 1.8rem;
  text-align: center;
}

ul.img_list_02_4 {
  list-style-type: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #ffffff;
  width: 100%;
  padding: 1rem 1rem 0 1rem;
  box-sizing: border-box;
}
ul.img_list_02_4 li {
  width: 100%;
  background-color: #EEF8FF;
  margin: 0 0 3rem 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
ul.img_list_02_4 li img {
  width: 40%;
  display: block;
  margin: 0 0 1rem 0;
}
ul.img_list_02_4 li p {
  text-align: justify;
  font-size: 1.4rem;
  margin: 0;
}
ul.img_list_02_4 li p.img_title {
  margin: 0 0 2rem 0;
  font-size: 1.8rem;
  text-align: center;
}

ul.img_list_03 {
  list-style-type: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #ffffff;
  width: 100%;
  padding: 1rem 1rem 0 1rem;
  box-sizing: border-box;
}
ul.img_list_03 li {
  width: 100%;
  background-color: #EEF8FF;
  margin: 0 0 3rem 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
ul.img_list_03 li img {
  width: 40%;
  display: block;
  margin: 0 0 1rem 0;
}
ul.img_list_03 li p {
  text-align: justify;
  font-size: 1.4rem;
  margin: 0;
}
ul.img_list_03 li p.img_title {
  margin: 0 0 2rem 0;
  font-size: 1.8rem;
  text-align: center;
}

ul.img_list_04 {
  list-style-type: none;
  background-color: #ffffff;
  width: 100%;
  padding: 3rem 1rem 1rem 1rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
}
ul.img_list_04 li {
  width: 100%;
  background-color: #EEF8FF;
  margin: 0 0 3rem 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
}
ul.img_list_04 li img {
  width: 30%;
  display: block;
  margin: 0 0 1rem 0;
}
ul.img_list_04 li .title_text {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 10rem;
  height: 10rem;
  background-color: #0E80CC;
  color: #ffffff;
  font-size: 3rem;
  margin: 0 0 2rem 0;
}
ul.img_list_04 li p {
  text-align: center;
  font-size: 1.4rem;
  margin: 0;
}
ul.img_list_04 li::before {
  font-family: "fontello";
  content: "\f06d";
  font-size: 2.5rem;
  color: #0E80CC;
  position: absolute;
  top: -1.25rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
ul.img_list_04 li ul {
  all: initial;
  width: 100%;
  display: block;
  list-style-type: disc !important;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.img_list_04 li ul li {
  all: initial;
  display: block;
  width: auto;
  text-align: left;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.5rem;
  font-family: "zenmarugothic_medium", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
  font-size: 1.4rem;
  box-sizing: border-box;
  position: relative;
}
ul.img_list_04 li ul li::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  right: auto;
  content: "・";
  color: #333333;
  font-size: 1.4rem;
  margin: 0;
}

ul.img_list_05 {
  background-color: #ffffff;
  width: 100%;
  padding: 1rem 1rem 0 1rem;
  box-sizing: border-box;
}
ul.img_list_05 li {
  width: 100%;
  background-color: #EEF8FF;
  margin: 0 0 3rem 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
ul.img_list_05 li img {
  width: 40%;
  display: block;
  margin: 0 0 1rem 0;
}
ul.img_list_05 li p {
  text-align: justify;
  font-size: 1.4rem;
  margin: 0;
}
ul.img_list_05 li p.img_title {
  margin: 0 0 2rem 0;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  ul.img_list_01 {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #ffffff;
    width: 1200px;
    padding: 40px 8px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  ul.img_list_01 li {
    width: 190px;
    background-color: #EEF8FF;
    margin: 0 0 0 0;
    padding: 26px 10px;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: relative;
  }
  ul.img_list_01 li img {
    width: 100px;
    display: block;
    margin: 10px 0 20px 0;
  }
  ul.img_list_01 li .title_text {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100px;
    height: 100px;
    background-color: #0E80CC;
    color: #ffffff;
    font-size: 3rem;
    margin: 10px 0 20px 0;
  }
  ul.img_list_01 li p {
    text-align: center;
    font-size: 1.6rem;
    margin: 0;
  }
  ul.img_list_01 li::before {
    font-family: "fontello";
    content: "\f06d";
    font-size: 3rem;
    color: #005994;
    position: absolute;
    top: -1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  ul.img_list_01 li ul {
    all: initial;
    width: 100%;
    display: block;
    list-style-type: disc !important;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.4rem;
    margin: 0 0 0 0;
  }
  ul.img_list_01 li ul li {
    all: initial;
    display: block;
    width: auto;
    text-align: left;
    margin: 0 0 8px 0;
    padding: 0 0 0 15px;
    font-family: "zenmarugothic_medium", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
    font-size: 1.6rem;
    box-sizing: border-box;
    position: relative;
  }
  ul.img_list_01 li ul li::before {
    position: absolute;
    top: 3px;
    left: 0;
    right: auto;
    content: "・";
    color: #333333;
    font-size: 1.6rem;
    margin: 0;
  }
  ul.img_list_02 {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #ffffff;
    width: 1200px;
    padding: 40px 65px 10px 65px;
    box-sizing: border-box;
  }
  ul.img_list_02 li {
    width: 330px;
    background-color: #EEF8FF;
    margin: 0 40px 30px 0;
    padding: 20px 40px;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  ul.img_list_02 li:nth-of-type(3n) {
    margin: 0 0 30px 0;
  }
  ul.img_list_02 li img {
    width: 160px;
    display: block;
    margin: 10px 0 20px 0;
  }
  ul.img_list_02 li p {
    text-align: justify;
    font-size: 1.6rem;
    margin: 0;
  }
  ul.img_list_02 li p.img_title {
    margin: 0 0 16px 0;
    font-size: 2rem;
    text-align: center;
  }
  ul.img_list_02_4 {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #ffffff;
    width: 1200px;
    padding: 40px 0 10px 0;
    box-sizing: border-box;
  }
  ul.img_list_02_4 li {
    width: 270px;
    background-color: #EEF8FF;
    margin: 0 40px 30px 0;
    padding: 20px 40px;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  ul.img_list_02_4 li:nth-of-type(4n) {
    margin: 0 0 30px 0;
  }
  ul.img_list_02_4 li img {
    width: 160px;
    display: block;
    margin: 10px 0 20px 0;
  }
  ul.img_list_02_4 li p {
    text-align: justify;
    font-size: 1.6rem;
    margin: 0;
  }
  ul.img_list_02_4 li p.img_title {
    margin: 0 0 16px 0;
    font-size: 2rem;
    text-align: center;
  }
  ul.img_list_03 {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #ffffff;
    width: 700px;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto 20px auto;
  }
  ul.img_list_03 li {
    width: 330px;
    background-color: #EEF8FF;
    margin: 0 0 0 0;
    padding: 20px 40px;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  ul.img_list_03 li img {
    width: 160px;
    display: block;
    margin: 10px 0 20px 0;
  }
  ul.img_list_03 li p {
    text-align: justify;
    font-size: 1.6rem;
    margin: 0;
  }
  ul.img_list_03 li p.img_title {
    margin: 0 0 16px 0;
    font-size: 2rem;
    text-align: center;
  }
  ul.img_list_04 {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #ffffff;
    width: 1200px;
    padding: 40px 8px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  ul.img_list_04 li {
    width: 330px;
    background-color: #EEF8FF;
    margin: 0 0 30px 0;
    padding: 20px 20px;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: relative;
  }
  ul.img_list_04 li img {
    width: 160px;
    display: block;
    margin: 10px 0 20px 0;
  }
  ul.img_list_04 li .title_text {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100px;
    height: 100px;
    background-color: #0E80CC;
    color: #ffffff;
    font-size: 3rem;
    margin: 10px 0 20px 0;
  }
  ul.img_list_04 li p {
    text-align: center;
    font-size: 1.6rem;
    margin: 0;
  }
  ul.img_list_04 li::before {
    font-family: "fontello";
    content: "\f06d";
    font-size: 3rem;
    color: #005994;
    position: absolute;
    top: -1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  ul.img_list_04 li ul {
    all: initial;
    width: 100%;
    display: block;
    list-style-type: disc !important;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.4rem;
    margin: 0 0 0 0;
  }
  ul.img_list_04 li ul li {
    all: initial;
    display: block;
    width: auto;
    text-align: left;
    margin: 0 0 8px 0;
    padding: 0 0 0 15px;
    font-family: "zenmarugothic_medium", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
    font-size: 1.6rem;
    box-sizing: border-box;
    position: relative;
  }
  ul.img_list_04 li ul li::before {
    position: absolute;
    top: 3px;
    left: 0;
    right: auto;
    content: "・";
    color: #333333;
    font-size: 1.6rem;
    margin: 0;
  }
  ul.img_list_05 {
    list-style-type: none;
    background-color: #ffffff;
    width: 1100px;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
  }
  ul.img_list_05 li {
    width: 1100px;
    background-color: #EEF8FF;
    margin: 0 40px 30px 0;
    padding: 20px 40px;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  ul.img_list_05 li:nth-of-type(3n) {
    margin: 0 0 30px 0;
  }
  ul.img_list_05 li img {
    width: 320px;
    display: block;
    margin: 10px 0 20px 0;
  }
  ul.img_list_05 li p {
    text-align: justify;
    font-size: 1.6rem;
    margin: 0;
  }
  ul.img_list_05 li p.img_title {
    margin: 0 0 16px 0;
    font-size: 2rem;
    text-align: center;
  }
}
/* -----------------------------------------------------------
　問診票リスト
----------------------------------------------------------- */
ul.low_interview_sheet_list {
  list-style-type: none;
  font-size: 1.4rem;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.low_interview_sheet_list li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.4rem;
  background-size: 0.8rem;
  margin: 0 0 2rem 0;
  padding: 0 0 0 1.8rem;
  line-height: 140%;
}
ul.low_interview_sheet_list li span {
  display: block;
  color: #ff0000;
}
ul.low_interview_sheet_list li a {
  text-decoration: none;
  width: 100%;
  height: 12vw;
  font-size: 1.2rem;
  line-height: 120%;
  color: #0E80CC;
  text-align: center;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 0;
  margin: 0.5rem 0 0 0;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.low_interview_sheet_list li.large {
  font-size: 1.6rem;
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.2rem top 0.5rem;
  background-size: 1.2rem;
}

@media screen and (min-width: 768px), print {
  ul.low_interview_sheet_list {
    list-style-type: none;
    font-size: 2.2rem;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.low_interview_sheet_list li {
    width: 30%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 7px;
    background-size: 8px;
    margin: 0 2% 40px 0;
    padding: 0 0 0 22px;
    line-height: 140%;
  }
  ul.low_interview_sheet_list li span {
    display: inline-block;
    color: #ff0000;
    margin: 0 0 0 0.5rem;
  }
  ul.low_interview_sheet_list li a {
    text-decoration: none;
    width: 100%;
    height: 60px;
    font-size: 1.8rem;
    line-height: 120%;
    color: #0E80CC;
    text-align: center;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 0;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.low_interview_sheet_list li a:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  ul.low_interview_sheet_list li.large {
    font-size: 2.2rem;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 2px top 8px;
    background-size: 14px;
  }
  ul.low_interview_sheet_list li:nth-of-type(3n) {
    margin: 0 0 40px 0;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/*診療時間のテーブル*/
table.timetable {
  padding: 0;
  margin: 0 auto;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  box-sizing: border-box;
  line-height: 140%;
}
table.timetable tr th {
  box-sizing: border-box;
  font-weight: bold;
  font-size: 3.4vw;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #ffffff;
  background-color: #005994;
  border: #005994 1px solid;
  width: 10%;
}
table.timetable tr th.time {
  letter-spacing: 0.1em;
}
table.timetable tr td {
  box-sizing: border-box;
  font-weight: normal;
  font-size: 3.4vw;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #333333;
  border: #005994 1px solid;
}
table.timetable tr td i {
  font-size: 4vw;
  color: #CCCCCC;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
  color: #333333;
}
table.timetable caption {
  caption-side: bottom;
  font-size: 3.4vw;
  margin: 0.6rem 0 0 0;
  width: 100%;
  color: #333333;
  box-sizing: border-box;
  text-align: left;
}

@media screen and (min-width: 768px), print {
  /*診療時間のテーブル*/
  table.timetable {
    padding: 0;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    box-sizing: border-box;
    line-height: 140%;
  }
  table.timetable tr th {
    box-sizing: border-box;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 0;
    vertical-align: middle;
    color: #ffffff;
    background-color: #005994;
    width: 10%;
    height: 46px;
    box-sizing: border-box;
  }
  table.timetable tr th.time {
    width: 30%;
    letter-spacing: 0.1em;
  }
  table.timetable tr td {
    box-sizing: border-box;
    font-weight: normal;
    font-size: 1.6rem;
    padding: 0;
    vertical-align: middle;
    color: #333333;
    height: 46px;
    box-sizing: border-box;
    border-bottom: #005994 1px solid;
  }
  table.timetable tr td i {
    font-size: 1.4rem;
    color: #005994;
  }
  table.timetable tr td.time {
    text-align: center;
    color: #333333;
    font-size: 1.6rem;
  }
  table.timetable caption {
    caption-side: bottom;
    font-size: 1.8rem;
    margin: 12px 0 0 0;
    width: 100%;
    color: #333333;
    padding: 0;
    box-sizing: border-box;
    line-height: 160%;
    text-align: left;
  }
}
/*汎用テーブル*/
/* 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: 0.5rem;
  border-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  background-color: #EEF8FF;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table tr td {
  width: 70%;
  padding: 0.5rem;
  border-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
}

table.low_table2 {
  width: 100%;
  border-collapse: collapse;
  color: #333333;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
}
table.low_table2 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table2 tr th {
  width: 50%;
  padding: 0.5rem;
  border-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  background-color: #EEF8FF;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table2 tr td {
  width: 50%;
  padding: 0.5rem;
  border-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  box-sizing: border-box;
  text-align: center;
  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: 0.5rem;
  border: #CCCCCC 1px solid;
  background-color: #EEF8FF;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table_fixed tr td {
  width: auto;
  padding: 0.5rem;
  border: #CCCCCC 1px solid;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
}

/*スライドテーブル*/
table.low_table_slide {
  width: 800px;
  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;
  border-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  background-color: #EEF8FF;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table_slide tr th i {
  color: #005994;
}
table.low_table_slide tr th.line_right {
  border-right: #CCCCCC 1px solid;
}
table.low_table_slide tr th.ajs1 {
  width: 300px;
}
table.low_table_slide tr td {
  width: auto;
  padding: 1rem;
  border-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
}
table.low_table_slide tr td.left_text {
  text-align: left;
}
table.low_table_slide tr td.ajs {
  width: 400px;
}
table.low_table_slide tr td.ajs2 {
  width: 200px;
}
table.low_table_slide tr td.ajs3 {
  width: 200px;
}
table.low_table_slide tr td.line_right {
  border-right: #CCCCCC 1px solid;
}
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;
}
table.low_table_slide tr td hr {
  border: none;
  border-bottom: #CCCCCC 1px solid;
}
table.low_table_slide {
  /*均等*/
}
table.low_table_slide.type_a {
  table-layout: fixed;
  width: 800px;
}
table.low_table_slide.type_a th {
  vertical-align: top;
}
table.low_table_slide {
  /*均等*/
}
table.low_table_slide.type_b {
  table-layout: fixed;
  width: 1200px;
}
table.low_table_slide {
  /*均等*/
}
table.low_table_slide.type_c {
  table-layout: fixed;
  width: 700px;
}
table.low_table_slide.type_c th {
  vertical-align: top;
}
table.low_table_slide.type_c td {
  text-align: left;
}
table.low_table_slide.line tr th {
  border: #CCCCCC 1px solid;
}
table.low_table_slide.line tr td {
  border: #CCCCCC 1px solid;
}
table.low_table_slide.warm_color th {
  background-color: #fff0f5;
}
table.low_table_slide {
  /*左タイトル*/
}
table.low_table_slide.type_d {
  width: 1200px;
}
table.low_table_slide.type_d th {
  text-align: center;
  width: 20%;
  border-right: #CCCCCC 1px solid;
}
table.low_table_slide.type_d td {
  text-align: left;
  width: 40%;
}
table.low_table_slide.type_d td:nth-child(2) {
  border-right: #CCCCCC 1px solid;
}
table.low_table_slide.type_d td.title {
  text-align: center;
  background-color: #EEF8FF;
}
table.low_table_slide {
  /*特殊価格*/
}
table.low_table_slide.type_e {
  width: 1200px;
}
table.low_table_slide.type_e th {
  width: 450px;
}
table.low_table_slide.type_e td {
  width: 250px;
}
table.low_table_slide {
  /*ツールチップ複数*/
}
table.low_table_slide.type_t th.multiple {
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}
table.low_table_slide.type_t th .subtitle {
  width: 100%;
  display: block;
}
table.low_table_slide.type_f {
  table-layout: fixed;
  border-left: #CCCCCC 1px solid;
}
table.low_table_slide.type_f th {
  width: 149px;
  background-color: #0E80CC;
  color: #ffffff;
  border-right: #CCCCCC 1px solid;
  box-sizing: border-box;
}
table.low_table_slide.type_f th.item {
  width: 300px;
  text-align: center;
}
table.low_table_slide.type_f th.content {
  width: 300px;
}
table.low_table_slide.type_f th:last-child {
  border-right: none;
}
table.low_table_slide.type_f td {
  border-right: #CCCCCC 1px solid;
  box-sizing: border-box;
}
table.low_table_slide.type_f td.content {
  text-align: left;
}
table.low_table_slide.type_f td i {
  color: #0E80CC;
}
table.low_table_slide.type_f td.blue1 {
  background-color: #BFE4FF;
  color: #0E80CC;
}
table.low_table_slide.type_f td.blue2 {
  background-color: #EEF8FF;
  color: #0E80CC;
}
table.low_table_slide {
  /*受付診療時間*/
}
table.low_table_slide.type_g {
  width: 800px;
}
table.low_table_slide.type_g th {
  vertical-align: top;
}
table.low_table_slide.type_g td {
  text-align: left;
}
table.low_table_slide.type_g td.title {
  width: 300px;
  text-align: center;
}
table.low_table_slide.type_h {
  width: 1000px;
}
table.low_table_slide.type_h tr th {
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
}
table.low_table_slide.type_h tr th.ajs1 {
  width: 350px;
  background-color: #EEF8FF;
}
table.low_table_slide.type_h tr th.price {
  width: 300px;
  text-align: center;
}
table.low_table_slide.type_h tr td {
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
}
table.low_table_slide.type_h tr td.title {
  background-color: #EEF8FF;
}

/*横スライドテーブル用*/
.js-scrollable {
  margin: 0 0 2rem 0;
  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-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  border-bottom: none;
  background-color: #EEF8FF;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
}
table.low_table_spblock tr td {
  width: 100%;
  padding: 1rem;
  border-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  border-bottom: none;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  line-height: 140%;
  display: block;
}
table.low_table_spblock tr:last-child td {
  border-bottom: #CCCCCC 1px solid;
}

/*価格テーブル*/
table.price_table {
  width: 100%;
  border-collapse: collapse;
  color: #333333;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
table.price_table caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.price_table tr th {
  width: 60%;
  padding: 1rem 0.5rem;
  border-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  background-color: #EEF8FF;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.price_table tr th i {
  color: #005994;
}
table.price_table tr td {
  width: 40%;
  padding: 1rem 0.5rem;
  border-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
}

@media screen and (min-width: 768px), print {
  table.low_table {
    width: 100%;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
  table.low_table caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table tr th {
    width: 40%;
    padding: 20px;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    background-color: #EEF8FF;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table tr td {
    width: 60%;
    padding: 20px;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
  }
  table.low_table2 {
    width: 100%;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
  table.low_table2 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table2 tr th {
    width: 20%;
    padding: 20px;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    background-color: #EEF8FF;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table2 tr td {
    width: 80%;
    padding: 20px;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
  }
  /*テーブル横幅均一*/
  table.low_table_fixed {
    width: 100%;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    table-layout: fixed;
    line-height: 160%;
  }
  table.low_table_fixed caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_fixed tr th {
    width: auto;
    padding: 20px;
    border: #CCCCCC 1px solid;
    background-color: #EEF8FF;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table_fixed tr td {
    width: auto;
    padding: 20px;
    border: #CCCCCC 1px solid;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
  }
  /*スライドテーブル*/
  table.low_table_slide {
    width: 100%;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  table.low_table_slide caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_slide tr th {
    width: auto;
    padding: 20px;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    background-color: #EEF8FF;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table_slide tr th i {
    color: #005994;
  }
  table.low_table_slide tr th.title {
    width: 400px;
  }
  table.low_table_slide tr th.line_right {
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_slide tr td {
    width: auto;
    padding: 20px 15px;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
  }
  table.low_table_slide tr td.left_text {
    text-align: left;
  }
  table.low_table_slide tr td.ajs {
    width: 400px;
  }
  table.low_table_slide tr td.ajs2 {
    width: 200px;
  }
  table.low_table_slide tr td.ajs3 {
    width: 400px;
  }
  table.low_table_slide tr td.line_right {
    border-right: #CCCCCC 1px solid;
  }
  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;
  }
  table.low_table_slide tr td hr {
    border: none;
    border-bottom: #CCCCCC 1px solid;
  }
  table.low_table_slide {
    /*均等*/
  }
  table.low_table_slide.type_a {
    table-layout: fixed;
    width: 100%;
  }
  table.low_table_slide.type_a th {
    vertical-align: top;
  }
  table.low_table_slide {
    /*均等*/
  }
  table.low_table_slide.type_b {
    table-layout: fixed;
    width: 100%;
  }
  table.low_table_slide {
    /*均等*/
  }
  table.low_table_slide.type_c {
    table-layout: fixed;
    width: 700px;
  }
  table.low_table_slide.type_c th {
    vertical-align: top;
  }
  table.low_table_slide.type_c td {
    text-align: left;
  }
  table.low_table_slide.line tr th {
    border: #CCCCCC 1px solid;
  }
  table.low_table_slide.line tr td {
    border: #CCCCCC 1px solid;
  }
  table.low_table_slide {
    /*左タイトル*/
  }
  table.low_table_slide.type_d {
    width: 1200px;
  }
  table.low_table_slide.type_d th {
    text-align: center;
    width: 20%;
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_slide.type_d td {
    text-align: left;
    width: 40%;
  }
  table.low_table_slide.type_d td:nth-child(2) {
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_slide.type_d td.title {
    text-align: center;
    background-color: #EEF8FF;
  }
  table.low_table_slide {
    /*特殊価格*/
  }
  table.low_table_slide.type_e {
    width: 1200px;
  }
  table.low_table_slide.type_e th {
    width: 450px;
  }
  table.low_table_slide.type_e td {
    width: 250px;
  }
  table.low_table_slide.warm_color th {
    background-color: #fff0f5;
  }
  table.low_table_slide.type_f {
    table-layout: fixed;
    border-left: #CCCCCC 1px solid;
  }
  table.low_table_slide.type_f th {
    width: 149px;
    background-color: #0E80CC;
    color: #ffffff;
    border-right: #CCCCCC 1px solid;
    box-sizing: border-box;
  }
  table.low_table_slide.type_f th.item {
    width: 300px;
    text-align: center;
  }
  table.low_table_slide.type_f th.content {
    width: 300px;
  }
  table.low_table_slide.type_f th:last-child {
    border-right: none;
  }
  table.low_table_slide.type_f td {
    border-right: #CCCCCC 1px solid;
    box-sizing: border-box;
  }
  table.low_table_slide.type_f td.content {
    text-align: left;
  }
  table.low_table_slide.type_f td i {
    color: #0E80CC;
  }
  table.low_table_slide.type_f td.blue1 {
    background-color: #BFE4FF;
    color: #0E80CC;
  }
  table.low_table_slide.type_f td.blue2 {
    background-color: #EEF8FF;
    color: #0E80CC;
  }
  table.low_table_slide {
    /*受付診療時間*/
  }
  table.low_table_slide.type_g {
    width: 700px;
  }
  table.low_table_slide.type_g th {
    vertical-align: top;
  }
  table.low_table_slide.type_g td {
    text-align: left;
  }
  table.low_table_slide.type_g td.title {
    width: 300px;
    text-align: center;
  }
  table.low_table_slide.type_h {
    width: 1200px;
  }
  table.low_table_slide.type_h tr th {
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_slide.type_h tr th.ajs1 {
    width: 350px;
    background-color: #EEF8FF;
  }
  table.low_table_slide.type_h tr th.price {
    width: 250px;
    text-align: center;
  }
  table.low_table_slide.type_h tr td {
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_slide.type_h tr td.title {
    background-color: #EEF8FF;
  }
  table.low_table_slide.type_h tr td.left {
    text-align: left;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 0 0;
    position: static !important;
    z-index: 1;
    overflow: visible !important;
  }
  table.low_table_spblock {
    width: 100%;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    box-sizing: border-box;
  }
  table.low_table_spblock caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_spblock tr th {
    width: 40%;
    padding: 20px;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    background-color: #EEF8FF;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
  }
  table.low_table_spblock tr td {
    width: 60%;
    padding: 20px;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    line-height: 140%;
    display: table-cell;
  }
  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;
  }
  /*価格テーブル*/
  table.price_table {
    width: 800px;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.6rem;
    margin: 0 auto 20px auto;
  }
  table.price_table caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.price_table tr th {
    width: 50%;
    padding: 20px;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    background-color: #EEF8FF;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.price_table tr th i {
    color: #005994;
  }
  table.price_table tr td {
    width: 50%;
    padding: 20px;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
  }
}
/* -----------------------------------------------------------
　診療状況テーブル
----------------------------------------------------------- */
table.table_medical_condition {
  width: 100%;
  border-collapse: collapse;
  color: #333333;
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  line-height: 140%;
  table-layout: fixed;
}
table.table_medical_condition caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.3rem 0 0 0;
}
table.table_medical_condition tr:first-child th {
  display: none;
}
table.table_medical_condition tr th {
  width: auto;
  padding: 0.3rem;
  border: #CCCCCC 1px solid;
  background-color: #EEF8FF;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.table_medical_condition tr th:first-child {
  width: 25%;
}
table.table_medical_condition tr td {
  width: auto;
  padding: 0.3rem;
  border: #CCCCCC 1px solid;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
}

@media screen and (min-width: 768px), print {
  table.table_medical_condition {
    width: 100%;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    table-layout: fixed;
    line-height: 160%;
  }
  table.table_medical_condition caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.table_medical_condition tr th {
    width: auto;
    padding: 20px;
    border: #CCCCCC 1px solid;
    background-color: #EEF8FF;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.table_medical_condition tr th:first-child {
    width: 320px;
  }
  table.table_medical_condition tr td {
    width: auto;
    padding: 20px;
    border: #CCCCCC 1px solid;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
  }
}
/* -----------------------------------------------------------
　コース及び検査内容
----------------------------------------------------------- */
table.course_and_test_content_table {
  width: 1200px;
  border-collapse: collapse;
  color: #333333;
  font-size: 1.2rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
}
table.course_and_test_content_table caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.course_and_test_content_table tr th {
  width: auto;
  padding: 1rem 0.5rem;
  border: #bbbbbb 1px solid;
  background-color: #D9D9D9;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.course_and_test_content_table tr th.th1 {
  width: 28%;
}
table.course_and_test_content_table tr th.th2 {
  width: 36%;
}
table.course_and_test_content_table tr th.th3 {
  width: 36%;
}
table.course_and_test_content_table tr td {
  width: auto;
  padding: 1rem 0.5rem;
  border: #bbbbbb 1px solid;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
}
table.course_and_test_content_table tr td.title {
  background-color: #D9D9D9;
}
table.course_and_test_content_table tr td.blue_box1 {
  background-color: #EEF8FF;
  border-bottom: #EEF8FF 1px solid;
}
table.course_and_test_content_table tr td.blue_box2 {
  background-color: #EEF8FF;
  padding: 0 0.1rem 0.5rem 0.1rem;
}
table.course_and_test_content_table tr td.blue_box2 p {
  margin: 0;
  padding: 0.2rem;
  box-sizing: border-box;
  display: inline-block;
  font-size: 0.8rem;
  border-right: #bbbbbb 1px solid;
  border-left: #bbbbbb 1px solid;
  border-radius: 10px;
}
table.course_and_test_content_table tr td.pink_box1 {
  background-color: #FFECF0;
  border-bottom: #FFECF0 1px solid;
}
table.course_and_test_content_table tr td.pink_box2 {
  background-color: #FFECF0;
  padding: 0 0.1rem 0.5rem 0.1rem;
}
table.course_and_test_content_table tr td.pink_box2 p {
  margin: 0;
  padding: 0.2rem;
  box-sizing: border-box;
  display: inline-block;
  font-size: 0.8rem;
  border-right: #bbbbbb 1px solid;
  border-left: #bbbbbb 1px solid;
  border-radius: 10px;
}

@media screen and (min-width: 768px), print {
  table.course_and_test_content_table {
    width: 1200px;
    border-collapse: collapse;
    color: #333333;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  table.course_and_test_content_table caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.course_and_test_content_table tr th {
    width: auto;
    padding: 20px 10px;
    border: #bbbbbb 1px solid;
    background-color: #D9D9D9;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.course_and_test_content_table tr th.th1 {
    width: 28%;
  }
  table.course_and_test_content_table tr th.th2 {
    width: 36%;
  }
  table.course_and_test_content_table tr th.th3 {
    width: 36%;
  }
  table.course_and_test_content_table tr td {
    width: auto;
    padding: 20px 10px;
    border: #bbbbbb 1px solid;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
  }
  table.course_and_test_content_table tr td.title {
    background-color: #D9D9D9;
  }
  table.course_and_test_content_table tr td.blue_box1 {
    background-color: #EEF8FF;
    border-bottom: #EEF8FF 1px solid;
  }
  table.course_and_test_content_table tr td.blue_box2 {
    background-color: #EEF8FF;
    font-size: 1.4rem;
    padding: 0 3px 10px 3px;
  }
  table.course_and_test_content_table tr td.blue_box2 p {
    margin: 0;
    padding: 3px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 1.4rem;
    border-right: #bbbbbb 1px solid;
    border-left: #bbbbbb 1px solid;
    border-radius: 10px;
  }
  table.course_and_test_content_table tr td.pink_box1 {
    background-color: #FFECF0;
    border-bottom: #FFECF0 1px solid;
  }
  table.course_and_test_content_table tr td.pink_box2 {
    background-color: #FFECF0;
    font-size: 1.4rem;
    padding: 0 3px 10px 3px;
  }
  table.course_and_test_content_table tr td.pink_box2 p {
    margin: 0;
    padding: 3px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 1.4rem;
    border-right: #bbbbbb 1px solid;
    border-left: #bbbbbb 1px solid;
    border-radius: 10px;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

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

.arrow_warm_color {
  width: 0;
  height: 0;
  border: none;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 30px solid #E9933E;
  text-align: center;
  display: block;
  margin: 30px auto;
}

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

.emphasis_pink {
  background-color: #D9D9D9;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.emphasis_pink p.mb_none {
  margin: 0;
}

/*二列*/
/*下層電話*/
.low_tel {
  margin: 0 0 1rem 0;
}
.low_tel span {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 2.4rem;
  font-weight: bold;
}
.low_tel span i {
  font-size: 2.4rem;
}

.bana_link {
  text-decoration: none;
  width: 100%;
  display: block;
  margin: 0;
}
.bana_link img {
  width: 100%;
}

.text_tel span {
  color: #FF5353;
}
.text_tel span a {
  color: #FF5353;
}

.text_fax {
  pointer-events: none;
}

.low_tel_btn {
  width: 70%;
  height: 14vw;
  background-color: #005994;
  margin: 1rem 0 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  text-decoration: none;
  color: #ffffff;
  padding: 0 1rem 0 0;
  box-sizing: border-box;
}
.low_tel_btn i {
  font-size: 2.8rem;
  margin: 0 0.5rem 0 0;
}
.low_tel_btn .tel_box .tel_text {
  display: block;
  font-size: 1rem;
}
.low_tel_btn .tel_box .tel {
  display: block;
  font-size: 2rem;
}
.low_tel_btn .tel_box .tel a {
  text-decoration: none;
  color: #ffffff;
}

.bg_red {
  background: #FF5353;
}

.bg_bule {
  background: #379EE2;
}

.text_white {
  color: #ffffff !important;
}

.text_red {
  color: #FF5353;
}

.text_bule {
  color: #379EE2;
}

.text_bold {
  font-weight: bold;
}

.text_large {
  font-size: 1.8rem;
}

.text_xl {
  font-size: 125%;
}

.text_underline {
  text-decoration: underline;
}

.text_highlight {
  background: linear-gradient(transparent 60%, #ffff66 60%);
}

.tac {
  text-align: center;
}

.lh_12 {
  line-height: 1.2 !important;
}

.mb0 {
  margin: 0;
}

.mb16 {
  margin: 0 0 1rem 0 !important;
}

.mt16 {
  margin: 1rem 0 0 0 !important;
}

.no_link {
  pointer-events: none;
}

@media screen and (min-width: 768px), print {
  /*矢印*/
  .arrow {
    width: 0;
    height: 0;
    border: none;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 30px solid #0E80CC;
    text-align: center;
    display: block;
    margin: 30px auto;
  }
  .arrow_warm_color {
    width: 0;
    height: 0;
    border: none;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 30px solid #E9933E;
    text-align: center;
    display: block;
    margin: 30px auto;
  }
  /*強調*/
  .emphasis {
    background-color: #EEF8FF;
    padding: 24px 20px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .emphasis p.mb_none {
    margin: 0;
  }
  .emphasis ul.mb_none {
    margin: 0;
  }
  /*強調*/
  .emphasis_pink {
    background-color: #D9D9D9;
    padding: 24px 20px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .emphasis_pink p.mb_none {
    margin: 0;
  }
  /*二列*/
  .two_box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 1200px;
  }
  .two_box section {
    width: 48%;
  }
  /*下層電話*/
  .low_tel {
    margin: 0 0 20px 0;
  }
  .low_tel span {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 4rem;
    font-weight: bold;
  }
  .low_tel span i {
    font-size: 4rem;
  }
  .bana_link {
    text-decoration: none;
    width: auto;
    display: block;
    margin: 0;
  }
  .bana_link img {
    width: auto;
  }
  .bana_link:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .text_tel span {
    color: #FF5353;
  }
  .text_tel span a {
    color: #FF5353;
  }
  .text_fax {
    pointer-events: none;
  }
  .low_tel_btn {
    width: 320px;
    height: 70px;
    background-color: #005994;
    margin: 30px 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-decoration: none;
    color: #ffffff;
    padding: 0 20px 0 0;
  }
  .low_tel_btn i {
    font-size: 4.2rem;
    margin: 0 12px 0 0;
  }
  .low_tel_btn .tel_box .tel_text {
    display: block;
    font-size: 1.4rem;
  }
  .low_tel_btn .tel_box .tel {
    display: block;
    font-size: 3.2rem;
  }
  .low_tel_btn .tel_box .tel a {
    text-decoration: none;
    color: #ffffff;
  }
  .text_blue {
    color: #005994;
  }
  .text_red {
    color: #FF5353;
  }
  .text_bold {
    font-weight: bold;
  }
  .text_large {
    font-size: 2rem;
  }
  .text_underline {
    text-decoration: underline;
  }
  .tac {
    text-align: center;
  }
  .mb0 {
    margin: 0;
  }
  .mb16 {
    margin: 0 0 16px 0 !important;
  }
  .mt16 {
    margin: 16px 0 0 0 !important;
  }
  .no_link {
    pointer-events: none;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
ul.pankuzu_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  width: 96%;
  margin: 2rem auto 1rem auto;
}
ul.pankuzu_list li::after {
  content: "＞";
  font-size: 1.4rem;
  color: #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-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
    width: 1200px;
    margin: 52px auto 0 auto;
  }
  ul.pankuzu_list li::after {
    content: "＞";
    font-size: 1.6rem;
    color: #333333;
    margin: 0 10px;
  }
  ul.pankuzu_list li a {
    font-size: 1.6rem;
    color: #333333;
    text-decoration: none;
  }
  ul.pankuzu_list li:last-child:after {
    content: "";
    margin: 0;
  }
}
/* -----------------------------------------------------------
　ライトボックス
----------------------------------------------------------- */
.lightbox {
  z-index: 9999999 !important;
}

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

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

@media screen and (min-width: 768px), print {
  .lightbox {
    z-index: 9999999 !important;
  }
  .lightbox_frame {
    width: 100%;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lightbox_frame .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    box-sizing: border-box;
  }
  .lightbox_frame .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame .img_box a img {
    width: 380px;
  }
  .lightbox_frame .img_box a span {
    display: block;
    text-align: center;
    color: #333333;
    font-size: 2rem;
    margin: 30px 0 0 0;
    font-weight: bold;
  }
  .lightbox_frame2 {
    width: 100%;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lightbox_frame2 .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    box-sizing: border-box;
  }
  .lightbox_frame2 .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame2 .img_box a img {
    width: 380px;
  }
}
/* -----------------------------------------------------------
　バナー
----------------------------------------------------------- */
.banner_01 {
  width: 96%;
  margin: 0 auto 2rem auto;
  border: #005994 2px solid;
  border-radius: 1rem;
  box-sizing: border-box;
  display: block;
  background-color: #FB93A8;
  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: #005994 2px solid;
    border-radius: 1rem;
    box-sizing: border-box;
    display: block;
    background-color: #FB93A8;
    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: #0E80CC;
}

.link_text_warm_color {
  color: #ff99bb;
}

.link_text_eng {
  overflow-wrap: break-word;
}

.low_button {
  text-decoration: none;
  width: auto;
  height: auto;
  font-size: 1.4rem;
  color: #0E80CC;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 10px;
  background-color: #ffffff;
  display: inline-block;
}
.low_button.warm_color {
  border: #ff99bb 2px solid;
  color: #ff99bb;
  background: url("../img/icon_07_warm.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
}
.low_button.reserve {
  border: #0E80CC 2px solid;
  color: #ffffff;
  background: url("../img/icon_07_hover.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  background-color: #0E80CC;
}
.low_button.warm_color_reserve {
  border: #ff99bb 2px solid;
  color: #ffffff;
  background: url("../img/icon_07_hover.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  background-color: #ff99bb;
}

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

.bana_vaccination {
  width: 100%;
  text-decoration: none;
  width: 100%;
  height: auto;
  font-size: 1.4rem;
  line-height: 120%;
  color: #0E80CC;
  text-align: center;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 1rem 0;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px), print {
  .link_text {
    color: #0E80CC;
  }
  .link_text:hover {
    color: #FB93A8;
    transition: all 0.3s ease 0s;
  }
  .link_text_warm_color {
    color: #ff99bb;
  }
  .link_text_warm_color:hover {
    color: #f8d0dd;
    transition: all 0.3s ease 0s;
  }
  .link_text_eng {
    overflow-wrap: break-word;
  }
  .low_button {
    text-decoration: none;
    width: auto;
    height: auto;
    font-size: 1.8rem;
    color: #0E80CC;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 14px 28px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
    display: inline-block;
  }
  .low_button:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
    transition: all 0.3s ease 0s;
  }
  .low_button.warm_color {
    border: #ff99bb 2px solid;
    color: #ff99bb;
    background: url("../img/icon_07_warm.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
  }
  .low_button.warm_color:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ff99bb;
    transition: all 0.3s ease 0s;
  }
  .low_button.reserve {
    border: #0E80CC 2px solid;
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  .low_button.reserve:hover {
    color: #0E80CC;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
    transition: all 0.3s ease 0s;
  }
  .low_button.warm_color_reserve {
    border: #ff99bb 2px solid;
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ff99bb;
  }
  .low_button.warm_color_reserve:hover {
    color: #ff99bb;
    background: url("../img/icon_07_warm.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
    transition: all 0.3s ease 0s;
  }
  .low_button_up_ajt {
    margin: 40px 0 30px 0;
  }
  .bana_vaccination {
    text-decoration: none;
    width: 650px;
    height: auto;
    font-size: 2rem;
    line-height: 120%;
    color: #0E80CC;
    text-align: center;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 15px 0;
    margin: 0 auto;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .bana_vaccination:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
}
/* -----------------------------------------------------------
　下層汎用
----------------------------------------------------------- */
/*アンカーリンクリスト*/
ul.low_link_list {
  list-style-type: none;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 2rem 0 0 0;
}
ul.low_link_list li {
  width: 49%;
  margin: 0 0 1rem 0;
}
ul.low_link_list li a {
  text-decoration: none;
  width: 100%;
  height: 12vw;
  font-size: 1.2rem;
  line-height: 120%;
  color: #0E80CC;
  text-align: center;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 0;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.low_link_list li a.reserve {
  border: #0E80CC 2px solid !important;
  color: #ffffff !important;
  background: url("../img/icon_07_hover.svg") no-repeat !important;
  background-position: right 4px bottom 4px !important;
  background-size: 4% !important;
  background-color: #0E80CC !important;
}
ul.low_link_list.warm_color li a {
  border: #ff99bb 2px solid;
  color: #ff99bb;
  background: url("../img/icon_07_warm.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
}
ul.low_link_list.reverse_color li a {
  border: #0E80CC 2px solid;
  color: #ffffff;
  background: url("../img/icon_07_hover.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  background-color: #0E80CC;
}
ul.low_link_list.reverse_color li.pink a {
  border: #FB93A8 2px solid;
  background-color: #FB93A8;
}

ul.low_link_list2 {
  list-style-type: none;
  width: 100%;
  margin: 0 0 0 0;
}
ul.low_link_list2 li {
  width: 100%;
  margin: 0 0 1rem 0;
}
ul.low_link_list2 li a {
  text-decoration: none;
  width: 100%;
  height: 14vw;
  font-size: 1.2rem;
  line-height: 120%;
  color: #0E80CC;
  text-align: center;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 0;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 2%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.low_link_list2.warm_color li a {
  border: #ff99bb 2px solid;
  color: #ff99bb;
  background: url("../img/icon_07_warm.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 2%;
}

/*下層開閉ボックス*/
.option_text {
  text-decoration: none;
  width: auto;
  height: auto;
  font-size: 1.4rem;
  color: #0E80CC;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  background-color: #ffffff;
  display: inline-block;
}

.option_text_reserve {
  text-decoration: none;
  width: auto;
  height: auto;
  font-size: 1.4rem;
  color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background: url("../img/icon_07_hover.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  background-color: #0E80CC;
  display: inline-block;
}

.option_text_center {
  text-decoration: none;
  width: auto;
  height: auto;
  font-size: 1.2rem;
  color: #ffffff;
  border: #ffffff 2px solid;
  box-sizing: border-box;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background: url("../img/icon_07_hover.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 2%;
  background-color: #0E80CC;
  display: inline-block;
}

.option_text_long {
  text-decoration: none;
  width: auto;
  height: auto;
  font-size: 1.2rem;
  color: #ffffff;
  border: #ffffff 2px solid;
  box-sizing: border-box;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background: url("../img/icon_07_hover.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 2%;
  background-color: #0E80CC;
  display: inline-block;
}

.option_text_warm {
  text-decoration: none;
  width: auto;
  height: auto;
  font-size: 1.2rem;
  color: #ffffff;
  border: #ff99bb 2px solid;
  box-sizing: border-box;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background: url("../img/icon_07_hover.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 2%;
  background-color: #ff99bb;
  display: inline-block;
  text-align: center;
}

.ajs100 {
  width: 100%;
  margin: 0 0 1rem 0;
}

.option_box {
  display: none;
}

.obajs {
  padding: 2rem 0 0 0;
  box-sizing: border-box;
}

/*流れリスト*/
ul.flow_list {
  list-style-type: none;
}
ul.flow_list li {
  margin: 0 0 4rem 0;
  background-color: #EEF8FF;
  padding: 2rem;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  font-size: 1.4rem;
  line-height: 140%;
}
ul.flow_list li span {
  display: block;
  margin: 0 0 1rem 0;
  color: #0E80CC;
  font-size: 1.8rem;
  text-align: center;
}
ul.flow_list li span.tel {
  font-weight: normal;
  display: inline;
}
ul.flow_list li span.tel a {
  text-decoration: none;
  color: #0E80CC;
}
ul.flow_list li::before {
  position: absolute;
  left: 0;
  bottom: -2rem;
  content: "";
  width: 100%;
  height: 2rem;
  background: #EEF8FF;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%, 50% 100%);
}

/*流れリスト 2列*/
ul.flow_list2 {
  list-style-type: none;
}
ul.flow_list2 li {
  margin: 0 0 4rem 0;
  background-color: #EEF8FF;
  padding: 2rem;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  font-size: 1.4rem;
  line-height: 140%;
}
ul.flow_list2 li span {
  display: block;
  margin: 0 0 1rem 0;
  color: #0E80CC;
  font-size: 1.8rem;
  text-align: center;
  line-height: 150%;
}
ul.flow_list2 li span.tel {
  font-weight: normal;
  display: inline;
}
ul.flow_list2 li span.tel a {
  text-decoration: none;
  color: #0E80CC;
}
ul.flow_list2 li::before {
  position: absolute;
  left: 0;
  bottom: -2rem;
  content: "";
  width: 100%;
  height: 2rem;
  background: #EEF8FF;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%, 50% 100%);
}

/*スマホ縦、PC横*/
.flow_box_ty {
  background-color: #fff0f5;
}
.flow_box_ty .flow_box_arrow {
  margin: 0 0 0 0;
  padding: 2rem;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  font-size: 1.4rem;
  line-height: 140%;
}
.flow_box_ty .flow_box_arrow .flow_box_arrow_title {
  display: block;
  margin: 0 0 1rem 0;
  color: #ff99bb;
  font-size: 1.8rem;
  text-align: center;
}
.flow_box_ty .flow_box_arrow figure {
  width: 50%;
  margin: 0 auto 1rem auto;
}
.flow_box_ty .flow_box_arrow figure img {
  width: 100%;
}
.flow_box_ty .arrow_ty {
  text-align: center;
  transform: rotate(90deg);
}
.flow_box_ty .arrow_ty i {
  font-size: 2rem;
  color: #ff99bb;
}

/*アイコン付きテキスト(注意事項)*/
.content_icon_box {
  border-top: #CCCCCC 1px solid;
  padding: 2rem 0 0 0;
  box-sizing: border-box;
}
.content_icon_box p.content_icon {
  width: 100%;
  background-color: #EEF8FF;
  padding: 1rem 0;
  box-sizing: border-box;
  margin: 0 0 1rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.content_icon_box p.content_icon img {
  order: 1;
  width: 10%;
  margin: 0 1rem 0 0;
}
.content_icon_box p.content_icon span {
  order: 2;
  font-family: "zenmarugothic_medium";
  font-size: 1.4rem;
  font-weight: normal;
  color: #0E80CC;
}
.content_icon_box.last {
  border-bottom: #CCCCCC 1px solid;
  padding: 2rem 0 0 0;
}

@media screen and (min-width: 768px), print {
  /*アンカーリンクリスト*/
  ul.low_link_list {
    list-style-type: none;
    width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
  }
  ul.low_link_list li {
    width: 280px;
    margin: 0 26.66px 20px 0;
  }
  ul.low_link_list li:nth-child(4n) {
    margin: 0 0 20px 0;
  }
  ul.low_link_list li a {
    text-decoration: none;
    width: 100%;
    height: 60px;
    font-size: 1.8rem;
    line-height: 120%;
    color: #0E80CC;
    text-align: center;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 0;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.low_link_list li a:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  ul.low_link_list li a.reserve {
    border: #0E80CC 2px solid !important;
    color: #ffffff !important;
    background: url("../img/icon_07_hover.svg") no-repeat !important;
    background-position: right 4px bottom 4px !important;
    background-size: 10px !important;
    background-color: #0E80CC !important;
  }
  ul.low_link_list li a.reserve:hover {
    color: #0E80CC !important;
    background: url("../img/icon_07.svg") no-repeat !important;
    background-position: right 4px bottom 4px !important;
    background-size: 10px !important;
    background-color: #ffffff !important;
    transition: all 0.3s ease 0s !important;
  }
  ul.low_link_list.warm_color li a {
    border: #ff99bb 2px solid;
    color: #ff99bb;
    background: url("../img/icon_07_warm.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
  }
  ul.low_link_list.warm_color li a:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ff99bb;
  }
  ul.low_link_list.reverse_color li a {
    border: #0E80CC 2px solid;
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 4%;
    background-color: #0E80CC;
  }
  ul.low_link_list.reverse_color li a:hover {
    color: #0E80CC;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
  }
  ul.low_link_list.reverse_color li.pink a {
    border: #FB93A8 2px solid;
    background-color: #FB93A8;
  }
  ul.low_link_list.reverse_color li.pink a:hover {
    color: #FB93A8;
    background: url("../img/icon_07_warm.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
  }
  ul.low_link_list2 {
    list-style-type: none;
    width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 10px 0 0 0;
  }
  ul.low_link_list2 li {
    width: 435px;
    margin: 0 26.66px 20px 0;
  }
  ul.low_link_list2 li:nth-child(4n) {
    margin: 0 0 20px 0;
  }
  ul.low_link_list2 li a {
    text-decoration: none;
    width: 100%;
    height: 60px;
    font-size: 1.8rem;
    line-height: 120%;
    color: #0E80CC;
    text-align: center;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 0;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.low_link_list2 li a:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  ul.low_link_list2.warm_color li a {
    border: #ff99bb 2px solid;
    color: #ff99bb;
    background: url("../img/icon_07_warm.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
  }
  ul.low_link_list2.warm_color li a:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ff99bb;
  }
  .option_text {
    text-decoration: none;
    width: auto;
    height: auto;
    font-size: 1.8rem;
    color: #0E80CC;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 14px 28px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
    display: inline-block;
  }
  .option_text:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
    border: #0E80CC 2px solid;
  }
  .option_text_reserve {
    text-decoration: none;
    width: auto;
    height: auto;
    font-size: 1.8rem;
    color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 14px 28px;
    box-sizing: border-box;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
    display: inline-block;
  }
  .option_text_reserve:hover {
    color: #0E80CC;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
  }
  .option_text_center {
    text-decoration: none;
    width: 600px;
    height: auto;
    font-size: 1.8rem;
    color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 14px 28px;
    box-sizing: border-box;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  .option_text_center:hover {
    color: #0E80CC;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
  }
  .option_text_long {
    text-decoration: none;
    width: 600px;
    height: auto;
    font-size: 1.8rem;
    color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 14px 28px;
    box-sizing: border-box;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
    display: block;
    text-align: center;
    margin: 0;
  }
  .option_text_long:hover {
    color: #0E80CC;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
  }
  .option_text_warm {
    text-decoration: none;
    width: auto;
    height: auto;
    font-size: 1.8rem;
    color: #ffffff;
    border: #ffffff 2px solid;
    box-sizing: border-box;
    padding: 14px 28px;
    box-sizing: border-box;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ff99bb;
    display: inline-block;
    text-align: center;
  }
  .option_text_warm:hover {
    color: #ff99bb;
    border: #ff99bb 2px solid;
    background: url("../img/icon_07_warm.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
  }
  .ajs100 {
    width: auto;
  }
  .option_box {
    display: none;
  }
  .obajs {
    padding: 40px 0 0 0;
    box-sizing: border-box;
  }
  /*流れリスト*/
  ul.flow_list {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.flow_list li {
    width: 22%;
    margin: 0 20px 0 0;
    background-color: #EEF8FF;
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: left;
    position: relative;
    font-size: 1.6rem;
    line-height: 140%;
    overflow: visible;
  }
  ul.flow_list li span {
    display: block;
    margin: 0 0 1rem 0;
    color: #0E80CC;
    font-size: 2rem;
    text-align: center;
  }
  ul.flow_list li span.tel {
    font-weight: normal;
    display: inline;
  }
  ul.flow_list li span.tel a {
    text-decoration: none;
    color: #0E80CC;
  }
  ul.flow_list li::before {
    position: absolute;
    left: auto;
    right: -19px;
    bottom: 0;
    content: "";
    width: 20px;
    height: 100%;
    background: #EEF8FF;
    clip-path: polygon(0% 100%, 0% 0%, 50% 50%, 0% 100%);
  }
  ul.flow_list.three li {
    width: 30%;
  }
  /*流れリスト 2行*/
  ul.flow_list2 {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 40px 0;
  }
  ul.flow_list2 li {
    width: 22%;
    margin: 0 3% 0 0;
    background-color: #EEF8FF;
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: left;
    position: relative;
    font-size: 1.6rem;
    line-height: 140%;
    overflow: visible;
  }
  ul.flow_list2 li span {
    display: block;
    margin: 0 0 1rem 0;
    color: #0E80CC;
    font-size: 2rem;
    text-align: center;
  }
  ul.flow_list2 li span.tel {
    font-weight: normal;
    display: inline;
  }
  ul.flow_list2 li span.tel a {
    text-decoration: none;
    color: #0E80CC;
  }
  ul.flow_list2 li::before {
    position: absolute;
    left: auto;
    right: -39px;
    bottom: 0;
    content: "";
    width: 40px;
    height: 100%;
    background: #EEF8FF;
    clip-path: polygon(0% 100%, 0% 0%, 50% 50%, 0% 100%);
  }
  ul.flow_list2 li:last-child {
    margin: 0;
  }
  /*スマホ縦、PC横*/
  .flow_box_ty {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 40px 0;
    background-color: #fff0f5;
  }
  .flow_box_ty .flow_box_arrow {
    width: 18%;
    margin: 0 0 0 0;
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: left;
    position: relative;
    font-size: 1.6rem;
    line-height: 140%;
    overflow: visible;
  }
  .flow_box_ty .flow_box_arrow .flow_box_arrow_title {
    display: block;
    margin: 0 0 0 0;
    color: #ff99bb;
    font-size: 2rem;
    text-align: center;
    height: 64px;
  }
  .flow_box_ty .flow_box_arrow figure {
    width: 50%;
    margin: 0 auto 1rem auto;
  }
  .flow_box_ty .flow_box_arrow figure img {
    width: 100%;
  }
  .flow_box_ty .arrow_ty {
    text-align: center;
    transform: rotate(0deg);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .flow_box_ty .arrow_ty i {
    font-size: 2rem;
    color: #ff99bb;
  }
  /*アイコン付きテキスト*/
  .content_icon_box {
    border-top: #CCCCCC 1px solid;
    padding: 30px 0 20px 0;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 1200px;
  }
  .content_icon_box p.content_icon {
    width: 256px;
    height: 232px;
    background-color: #EEF8FF;
    padding: 1rem 0;
    box-sizing: border-box;
    margin: 0 0 1rem 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .content_icon_box p.content_icon img {
    order: 2;
    width: 30%;
    margin: 0;
  }
  .content_icon_box p.content_icon span {
    order: 1;
    font-family: "zenmarugothic_medium";
    font-size: 2.2rem;
    font-weight: normal;
    text-align: center;
    color: #0E80CC;
    display: block;
    line-height: 120%;
    margin: 0 0 20px 0;
  }
  .content_icon_box .content_icon_content {
    width: 894px;
  }
  .content_icon_box.last {
    border-bottom: #CCCCCC 1px solid;
    padding: 30px 0 20px 0;
  }
}
/* -----------------------------------------------------------
　モーダルウィンドウ
----------------------------------------------------------- */
#modal-content {
  width: 90%;
  margin: 0 auto;
  padding: 1rem;
  background: #ffffff;
  position: fixed;
  display: none;
  z-index: 9999;
}
#modal-content .button-link {
  text-decoration: none;
  width: 60%;
  height: 10vw;
  font-size: 1.6rem;
  color: #0E80CC;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}

#modal-overlay {
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

#modal-content2 {
  width: 80%;
  margin: 0 auto;
  padding: 1rem;
  background: #ffffff;
  position: fixed;
  display: none;
  z-index: 9999;
}
#modal-content2 a {
  text-decoration: none;
  width: 80%;
  height: 20vw;
  font-size: 1.6rem;
  color: #333333;
  box-sizing: border-box;
  padding: 0 1rem;
  line-height: 120%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0.5rem auto;
}
#modal-content2 a.den_yes {
  background-color: #f4b183;
}
#modal-content2 a.den_no {
  background-color: #ffd966;
}
#modal-content2 a.button-link {
  text-decoration: none;
  width: 60%;
  height: 10vw;
  font-size: 1.6rem;
  color: #0E80CC;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1rem auto 0.5rem auto;
}

#modal-overlay2 {
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

#modal-content3 {
  width: 80%;
  margin: 0 auto;
  padding: 1rem;
  background: #ffffff;
  position: fixed;
  display: none;
  z-index: 999999;
}
#modal-content3 p {
  text-decoration: none;
  width: 80%;
  height: auto;
  font-size: 1.6rem;
  color: #333333;
  box-sizing: border-box;
  padding: 1rem;
  line-height: 120%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0.5rem auto;
  background-color: #f4b183;
}
#modal-content3 a.button-link {
  text-decoration: none;
  width: 60%;
  height: 10vw;
  font-size: 1.6rem;
  color: #0E80CC;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1rem auto 0.5rem auto;
}

#modal-overlay3 {
  z-index: 99999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

#modal-content4 {
  width: 80%;
  margin: 0 auto;
  padding: 1rem;
  background: #ffffff;
  position: fixed;
  display: none;
  z-index: 999999;
}
#modal-content4 p {
  text-decoration: none;
  width: 80%;
  height: auto;
  font-size: 1.6rem;
  color: #333333;
  box-sizing: border-box;
  padding: 1rem;
  line-height: 120%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0.5rem auto;
  background-color: #ffd966;
}
#modal-content4 a.button-link {
  text-decoration: none;
  width: 60%;
  height: 10vw;
  font-size: 1.6rem;
  color: #0E80CC;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1rem auto 0.5rem auto;
}

#modal-overlay4 {
  z-index: 99999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

@media screen and (min-width: 768px), print {
  #modal-content {
    width: 50%;
    margin: 6rem auto 0 auto;
    padding: 20px;
    background: #ffffff;
    position: fixed;
    display: none;
    z-index: 2;
  }
  #modal-content .button-link {
    text-decoration: none;
    width: 280px;
    height: 48px;
    font-size: 1.8rem;
    color: #0E80CC;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 14px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #modal-content .button-link:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  #modal-overlay {
    z-index: 1;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
  }
  #modal-content2 {
    width: 700px;
    margin: 6rem auto 0 auto;
    padding: 20px;
    background: #ffffff;
    position: fixed;
    display: none;
    z-index: 2;
  }
  #modal-content2 a {
    text-decoration: none;
    width: 600px;
    height: 48px;
    font-size: 1.8rem;
    color: #333333;
    box-sizing: border-box;
    padding: 0 1rem;
    line-height: 120%;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 15px auto;
  }
  #modal-content2 a.den_yes {
    background-color: #f4b183;
  }
  #modal-content2 a.den_no {
    background-color: #ffd966;
  }
  #modal-content2 a.button-link {
    text-decoration: none;
    width: 280px;
    height: 48px;
    font-size: 1.8rem;
    color: #0E80CC;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 14px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #modal-content2 a.button-link:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  #modal-overlay2 {
    z-index: 1;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
  }
  #modal-content3 {
    width: 700px;
    margin: 6rem auto 0 auto;
    padding: 20px;
    background: #ffffff;
    position: fixed;
    display: none;
    z-index: 999999;
  }
  #modal-content3 p {
    text-decoration: none;
    width: 700px;
    height: 48px;
    font-size: 1.8rem;
    color: #333333;
    box-sizing: border-box;
    padding: 15px;
    line-height: 120%;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 15px auto;
    background-color: #f4b183;
  }
  #modal-content3 p span {
    display: inline;
  }
  #modal-content3 a.button-link {
    text-decoration: none;
    width: 280px;
    height: 48px;
    font-size: 1.8rem;
    color: #0E80CC;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 14px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #modal-content3 a.button-link:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  #modal-overlay3 {
    z-index: 99999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
  }
  #modal-content4 {
    width: 700px;
    margin: 6rem auto 0 auto;
    padding: 20px;
    background: #ffffff;
    position: fixed;
    display: none;
    z-index: 99999999;
  }
  #modal-content4 p {
    text-decoration: none;
    width: 700px;
    height: 48px;
    font-size: 1.8rem;
    color: #333333;
    box-sizing: border-box;
    padding: 15px;
    line-height: 120%;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 15px auto;
    background-color: #ffd966;
  }
  #modal-content4 p span {
    display: inline;
  }
  #modal-content4 a.button-link {
    text-decoration: none;
    width: 280px;
    height: 48px;
    font-size: 1.8rem;
    color: #0E80CC;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 14px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #modal-content4 a.button-link:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  #modal-overlay4 {
    z-index: 99999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
  }
}
/* -----------------------------------------------------------
　疾患ツールチップ
----------------------------------------------------------- */
.disease_list_box {
  background-color: #EEF8FF;
  width: 100%;
}
.disease_list_box ul.disease_list {
  list-style-type: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 96%;
  margin: 0 auto;
  padding: 2rem 0 0 0;
  box-sizing: border-box;
}
.disease_list_box ul.disease_list li {
  width: 48%;
  background-color: #ffffff;
  margin: 0 0 2rem 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
  font-size: 1.4rem;
  color: #0E80CC;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border: #0E80CC 2px solid;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  background-color: #ffffff;
  text-align: center;
}
.disease_list_box ul.disease_list li .disease_tooltip {
  display: none;
}

/*会話マークリスト形式*/
.disease_comment_box {
  width: 100%;
}
.disease_comment_box ul.comment_list {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
.disease_comment_box ul.comment_list li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}
.disease_comment_box ul.comment_list li::before {
  font-family: "fontello";
  content: "\e816";
  color: #005994;
  margin: 0 0.5rem 0 0;
}
.disease_comment_box ul.comment_list li .disease_tooltip {
  display: none;
}

@media screen and (min-width: 768px), print {
  .disease_list_box {
    background-color: #EEF8FF;
    width: 100%;
    padding: 0 0 0 32px;
    box-sizing: border-box;
  }
  .disease_list_box ul.disease_list {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 98%;
    margin: 0 auto;
    padding: 32px 0 16px 0;
    box-sizing: border-box;
  }
  .disease_list_box ul.disease_list li {
    width: 23%;
    background-color: #ffffff;
    margin: 0 20px 16px 0;
    padding: 15px;
    box-sizing: border-box;
    font-size: 1.6rem;
    color: #0E80CC;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    border: #0E80CC 2px solid;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
    position: relative;
    overflow: visible;
    text-align: center;
  }
  .disease_list_box ul.disease_list li .disease_tooltip {
    color: #333333 !important;
    display: none;
    position: absolute;
    bottom: 68px;
    left: -40px;
    z-index: 9999999999;
    width: 500px;
    height: auto;
    background-color: #ffffff;
    padding: 15px;
    border: #707070 1px solid !important;
    text-align: justify;
  }
  .disease_list_box ul.disease_list li .disease_tooltip::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -19px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    border-width: 20px 20px 0 20px;
    z-index: 99999999999;
  }
  .disease_list_box ul.disease_list li .disease_tooltip::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #707070 transparent transparent transparent;
    border-width: 20px 20px 0 20px;
  }
  .disease_list_box ul.disease_list li .disease_tooltip .disease_box p {
    margin: 0;
  }
  .disease_list_box ul.disease_list li .disease_tooltip .disease_box p.disease_title {
    font-size: 2rem;
  }
  .disease_list_box ul.disease_list li .disease_tooltip .disease_box .disease_close {
    display: none;
  }
  .disease_list_box ul.disease_list li {
    /*2行*/
  }
  .disease_list_box ul.disease_list li .ajs_2r {
    bottom: 80px;
  }
  .disease_list_box ul.disease_list li {
    /*3行*/
  }
  .disease_list_box ul.disease_list li .ajs_3r {
    bottom: 100px;
  }
  .disease_list_box ul.disease_list li {
    /*文字多い*/
  }
  .disease_list_box ul.disease_list li .ajs_large {
    width: 500px;
    left: -140px;
  }
  .disease_list_box ul.disease_list li {
    /*文字多い 右端*/
  }
  .disease_list_box ul.disease_list li .ajs_large_right {
    width: 500px;
    left: -240px;
  }
  .disease_list_box ul.disease_list li .ajs_large_right::after {
    right: 0;
    bottom: -19px;
    left: 0;
    margin: 0 0 0 350px;
  }
  .disease_list_box ul.disease_list li .ajs_large_right::before {
    right: 0;
    bottom: -20px;
    left: 0;
    margin: 0 0 0 350px;
  }
  .disease_list_box ul.disease_list li {
    /*文字多い 左端*/
  }
  .disease_list_box ul.disease_list li .ajs_large_left {
    width: 500px;
    left: auto;
    right: -240px;
  }
  .disease_list_box ul.disease_list li .ajs_large_left::after {
    right: 0;
    bottom: -19px;
    left: 0;
    margin: 0 0 0 140px;
  }
  .disease_list_box ul.disease_list li .ajs_large_left::before {
    right: 0;
    bottom: -20px;
    left: 0;
    margin: 0 0 0 140px;
  }
  .disease_list_box ul.disease_list li:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  .disease_list_box ul.disease_list li:hover .disease_tooltip {
    display: block;
  }
  .disease_list_box ul.disease_list li:nth-of-type(4n) {
    margin: 0 0 16px 0;
  }
  /*会話マークリスト形式*/
  .disease_comment_box {
    width: 100%;
  }
  .disease_comment_box ul.comment_list {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
  .disease_comment_box ul.comment_list li {
    margin: 0 0 10px 0;
    padding: 0 0 0 22px;
    position: relative;
    overflow: visible;
  }
  .disease_comment_box ul.comment_list li::before {
    font-family: "fontello";
    content: "\e816";
    color: #005994;
    margin: 0 10px 0 0;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip {
    color: #333333 !important;
    display: none;
    position: absolute;
    bottom: 40px;
    left: -10px;
    z-index: 9999999999;
    width: 500px;
    height: auto;
    background-color: #ffffff;
    padding: 15px;
    border: #707070 1px solid !important;
    text-align: justify;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip::after {
    content: "";
    position: absolute;
    right: auto;
    bottom: -19px;
    left: 20px;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    border-width: 20px 20px 0 20px;
    z-index: 99999999999;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip::before {
    content: "";
    position: absolute;
    right: auto;
    bottom: -20px;
    left: 20px;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #707070 transparent transparent transparent;
    border-width: 20px 20px 0 20px;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip .disease_box p {
    margin: 0;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip .disease_box p.disease_title {
    font-size: 2rem;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip .disease_box .disease_close {
    display: none;
  }
  .disease_comment_box ul.comment_list li:hover .disease_tooltip {
    display: block;
  }
  .disease_comment_box ul.comment_list.cl_three {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .disease_comment_box ul.comment_list.cl_three li {
    width: 30%;
  }
  .disease_comment_box ul.comment_list.cl_two {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .disease_comment_box ul.comment_list.cl_two li {
    width: 48%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .disease_list_box ul.disease_list li:hover .disease_tooltip {
    display: none;
  }
  .disease_list_box ul.disease_list li .disease_tooltip {
    display: none;
  }
  .disease_list_box ul.disease_list li .disease_tooltip .disease_box .disease_close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #333333;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  /*会話マークリスト形式*/
  .disease_comment_box ul.comment_list li {
    margin: 0 0 10px 0;
    padding: 0 0 0 22px;
    position: relative;
    overflow: visible;
  }
  .disease_comment_box ul.comment_list li::before {
    font-family: "fontello";
    content: "\e816";
    color: #005994;
    margin: 0 10px 0 0;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip {
    color: #333333 !important;
    display: none;
    position: absolute;
    bottom: 40px;
    left: -10px;
    z-index: 9999999999;
    width: 300px;
    height: auto;
    background-color: #ffffff;
    padding: 15px;
    border: #707070 1px solid !important;
    text-align: justify;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip::after {
    content: "";
    position: absolute;
    right: auto;
    bottom: -19px;
    left: 20px;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    border-width: 20px 20px 0 20px;
    z-index: 99999999999;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip::before {
    content: "";
    position: absolute;
    right: auto;
    bottom: -20px;
    left: 20px;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #707070 transparent transparent transparent;
    border-width: 20px 20px 0 20px;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip .disease_box p {
    margin: 0;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip .disease_box p.disease_title {
    font-size: 2rem;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip .disease_box {
    position: relative;
  }
  .disease_comment_box ul.comment_list li .disease_tooltip .disease_box .disease_close {
    position: absolute;
    right: -0.5rem;
    top: -0.5rem;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #333333;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    line-height: 100%;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .disease_comment_box ul.comment_list li:hover .disease_tooltip {
    display: none;
  }
  .disease_comment_box ul.comment_list.cl_three {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .disease_comment_box ul.comment_list.cl_three li {
    width: 30%;
  }
  .disease_comment_box ul.comment_list.cl_two {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .disease_comment_box ul.comment_list.cl_two li {
    width: 48%;
  }
}
/* -----------------------------------------------------------
　よくあるご質問
----------------------------------------------------------- */
.ac_box {
  margin: 0 0 1rem 0;
}

.ac_title {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  line-height: 140%;
  color: #333333;
  font-size: 1.4rem;
  padding: 1rem 1rem 1rem 2rem;
  border-bottom: solid 1px #0E80CC;
  cursor: pointer;
  background-color: #ffffff;
  position: relative;
  text-align: justify;
}
.ac_title span {
  color: #ff6699;
}
.ac_title::before {
  position: absolute;
  top: 1rem;
  left: 0;
  border: none;
  font-family: "fontello";
  content: "\f004";
  color: #0E80CC;
  margin: 0 0.5rem 0 0;
}
.ac_title.open::before {
  font-family: "fontello";
  content: "\f005";
  transition: 0.5s;
}

.ac_title.open {
  border-bottom: none;
}

.answer {
  display: none;
  padding: 1rem 1rem 1rem 2.5rem;
  font-size: 1.4rem;
  background-color: #ffffff;
  border-bottom: solid 1px #0E80CC;
}
.answer p {
  line-height: 160%;
  color: #333333;
}
.answer span {
  color: #0E80CC;
  margin: 0 0 0 0;
}

.answer p.up_space {
  margin: 1em 0 0 0;
}

.cancel_text_box {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .ac_box {
    margin: 0 0 10px 0;
  }
  .ac_title {
    position: relative;
    box-sizing: border-box;
    width: 1200px;
    height: auto;
    line-height: 160%;
    color: #333333;
    font-size: 1.6rem;
    padding: 10px 0 10px 30px;
    border-bottom: solid 1px #0E80CC;
    cursor: pointer;
    background-color: #ffffff;
    position: relative;
    margin: 0 auto;
  }
  .ac_title span {
    color: #ff6699;
  }
  .ac_title::before {
    position: absolute;
    top: 10px;
    left: 0;
    border: none;
    font-family: "fontello";
    content: "\f004";
    color: #0E80CC;
    margin: 0 0.5rem 0 0;
  }
  .ac_title::before.open::before {
    font-family: "fontello";
    content: "\f005";
    transition: 0.5s;
  }
  .ac_title.open {
    border-bottom: none;
  }
  .answer {
    display: none;
    padding: 0 0 20px 30px;
    font-size: 1.6rem;
    background-color: #ffffff;
    border-bottom: solid 1px #0E80CC;
  }
  .answer p {
    line-height: 160%;
    color: #333333;
    font-size: 1.6rem;
    margin: 0;
  }
  .answer span {
    color: #0E80CC;
    margin: 0 0 0 0;
    font-size: 1.6rem;
  }
  .answer p.up_space {
    margin: 1em 0 0 0;
  }
  .cancel_text_box {
    width: 1060px;
    margin: 0 auto 2rem auto;
  }
}
/* -----------------------------------------------------------
　3つの特徴
----------------------------------------------------------- */
.low_features_frame .low_features_box {
  margin: 0 0 6rem 0;
}
.low_features_frame .low_features_box .low_features_num {
  background-color: #FB93A8;
  color: #ffffff;
  width: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0 auto;
  line-height: 100%;
  padding: 1rem 0;
  box-sizing: border-box;
  position: relative;
}
.low_features_frame .low_features_box .low_features_num span {
  display: block;
  font-size: 1.2rem;
}
.low_features_frame .low_features_box .low_features_num span.large {
  font-size: 1.8rem;
  margin: 0 0 0.2rem 0;
}
.low_features_frame .low_features_box hr.low_features_line {
  border: none;
  border-bottom: #FB93A8 1px solid;
  width: 100%;
  height: 1px;
  margin: -5vw 0 10vw 0;
}
.low_features_frame .low_features_box .low_features_title {
  color: #FB93A8;
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 2rem 0;
}
.low_features_frame .low_features_box .low_features_text {
  font-size: 1.4rem;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.low_features_frame .low_features_box.last_lfb {
  margin: 0;
}

.beauty_menu_frame .beauty_menu_box {
  border: #379EE2 2px solid;
  border-radius: 0.4rem;
  box-sizing: border-box;
  padding: 2rem 1rem 1rem 1rem;
  margin: 0 0 4rem 0;
}
.beauty_menu_frame .beauty_menu_box img {
  width: 60%;
  display: block;
  margin: 0 auto;
}
.beauty_menu_frame .beauty_menu_box .beauty_menu_title {
  font-size: 1.8rem;
  text-align: center;
  color: #379EE2;
  margin: 1rem 0 1.5rem 0;
}
.beauty_menu_frame .beauty_menu_box .beauty_menu_osusume {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 1rem 0;
}
.beauty_menu_frame .beauty_menu_box ul.beauty_menu_list {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
.beauty_menu_frame .beauty_menu_box ul.beauty_menu_list li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
}
.beauty_menu_frame .beauty_menu_box ul.beauty_menu_list li::before {
  font-family: "fontello";
  content: "\e808";
  color: #FB93A8;
  margin: 0 0.5rem 0 0;
}
.beauty_menu_frame .beauty_menu_box .beauty_menu_btn {
  width: 90%;
  text-decoration: none;
  background-color: #0E80CC;
  color: #ffffff;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.8rem 0;
  box-sizing: border-box;
  margin: 0 auto 1rem auto;
  font-size: 1.4rem;
}
.beauty_menu_frame .beauty_menu_box .beauty_menu_btn::before {
  font-family: "fontello";
  content: "\e80a";
  margin: 0 0.5rem 0 0;
}

@media screen and (min-width: 768px), print {
  .low_features_frame {
    width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .low_features_frame .low_features_box {
    width: 360px;
    margin: 0;
  }
  .low_features_frame .low_features_box .low_features_num {
    background-color: #FB93A8;
    color: #ffffff;
    width: 120px;
    height: 37px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-flex-direction: row;
    flex-direction: row;
    margin: 0 auto;
    line-height: 100%;
    padding: 0 0 10px 0;
    box-sizing: border-box;
    position: relative;
  }
  .low_features_frame .low_features_box .low_features_num span {
    display: block;
    font-size: 1.4rem;
  }
  .low_features_frame .low_features_box .low_features_num span.large {
    font-size: 2.6rem;
    margin: 0 0 4px 0;
  }
  .low_features_frame .low_features_box hr.low_features_line {
    border: none;
    border-bottom: #FB93A8 1px solid;
    width: 100%;
    height: 1px;
    margin: -20px 0 30px 0;
  }
  .low_features_frame .low_features_box .low_features_title {
    color: #FB93A8;
    font-size: 2rem;
    text-align: center;
    margin: 0 0 12px 0;
    line-height: 140%;
  }
  .low_features_frame .low_features_box .low_features_text {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    margin: 0;
  }
  .low_features_frame .low_features_box.last_lfb {
    margin: 0;
  }
  .beauty_menu_frame {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .beauty_menu_frame .beauty_menu_box {
    width: 32%;
    border: #379EE2 2px solid;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 60px 10px 30px 10px;
    margin: 0 0 25px 0;
  }
  .beauty_menu_frame .beauty_menu_box img {
    width: 150px;
    display: block;
    margin: 0 auto;
  }
  .beauty_menu_frame .beauty_menu_box .beauty_menu_title {
    font-size: 2.8rem;
    text-align: center;
    color: #379EE2;
    margin: 1rem 0 1.5rem 0;
  }
  .beauty_menu_frame .beauty_menu_box .beauty_menu_osusume {
    font-size: 2.4rem;
    text-align: center;
    margin: 0 0 1rem 0;
  }
  .beauty_menu_frame .beauty_menu_box ul.beauty_menu_list {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    width: 90%;
    margin: 0 auto 20px auto;
  }
  .beauty_menu_frame .beauty_menu_box ul.beauty_menu_list li {
    margin: 0 0 10px 0;
    padding: 0 0 0 0;
  }
  .beauty_menu_frame .beauty_menu_box ul.beauty_menu_list li::before {
    font-family: "fontello";
    content: "\e808";
    color: #FB93A8;
    margin: 0 8px 0 0;
  }
  .beauty_menu_frame .beauty_menu_box .beauty_menu_btn {
    width: 80%;
    text-decoration: none;
    background-color: #0E80CC;
    color: #ffffff;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 0;
    box-sizing: border-box;
    margin: 0 auto 1rem auto;
    font-size: 1.6rem;
  }
  .beauty_menu_frame .beauty_menu_box .beauty_menu_btn::before {
    font-family: "fontello";
    content: "\e80a";
    margin: 0 0.5rem 0 0;
  }
  .beauty_menu_frame .beauty_menu_box .beauty_menu_btn:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
}
/* -----------------------------------------------------------
　特殊装飾
----------------------------------------------------------- */
.attention_text {
  background-color: #FB93A8;
  padding: 1rem 2rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
  line-height: 140%;
  font-weight: normal;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.attention_text i {
  color: #ffffff;
  font-size: 2rem;
  margin: 0 1rem 0 0;
}
.attention_text span {
  color: #ffffff;
  font-size: 1.4rem;
}
.attention_text.at01 {
  width: 75%;
}

@media screen and (min-width: 768px), print {
  .attention_text {
    background-color: #FB93A8;
    padding: 20px 40px;
    box-sizing: border-box;
    border-radius: 10px;
    line-height: 140%;
    font-weight: normal;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .attention_text i {
    color: #ffffff;
    font-size: 2rem;
    margin: 0 1rem 0 0;
  }
  .attention_text span {
    color: #ffffff;
    font-size: 2rem;
  }
  .attention_text.at01 {
    width: 320px;
    margin: 0 20px 0 0;
  }
  .attention_text.at02 {
    width: 670px;
    margin: 0;
  }
  .attention_box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
/* -----------------------------------------------------------
　リンク、ボタン
----------------------------------------------------------- */
#anc01, #anc02, #anc03, #anc04, #anc05, #guidance, #reserve, #payment, #access, #general_checkup, #additional_checkup, #hepatitis_virus_test, #breast_cancer_checkup, #uterine_cancer_checkup1, #uterine_cancer_checkup2, #attending, #guidance_time, #specific_health_checkup, #hepatitis_virus_screening, #lung_cancer_screening, #stomach_cancer_screening, #rubella_antibody_test, #between_dock_costs, #prostate_cancer_screening, #colon_cancer_screening, #about2, #symptoms, #feature, #q_and_a, #disease, #examination, #gastroscopy, #colonoscopy, #orthopedics01, #orthopedics02, #orthopedics03, #orthopedics04, #orthopedics05, #orthopedics06, #orthopedics07, #orthopedics08, #orthopedics09, #orthopedics10, #orthopedics11, #orthopedics12, #orthopedics13, #orthopedics14, #orthopedics15, #orthopedics16, #orthopedics17, #orthopedics18, #orthopedics19, #orthopedics20, #orthopedics21, #orthopedics22, #orthopedics23, #orthopedics24, #orthopedics25, #orthopedics26, #orthopedics27, #orthopedics28, #orthopedics29, #orthopedics30, #specialized_outpatient, #publicly_funded_infant_medical_examination, #publicly_funded_infant_vaccination, #voluntary_infant_vaccination, #howto, #locomotive_echo, #sas, #publicly_funded_vaccination, #self_funded_vaccination, #overseas_travel_vaccination, #yoyaku_form, #overseas_travel_vaccination, #sleep_apnea_syndrome, #immunotherapy, #interview_sheet, #pediatric_ent, #cosmetic_dermatology, #pediatric_dermatology, #onayami_menu, #combination_list, #price_picotoning, #price_picofractional, #price_photofacial, #price_massagepeel, #price_electroporation, #nobinobi, #late_elderly, #late_elderly_medical_checkup, #stomach_cancer, #lung_cancer, #colon_cancer, #prostate_cancer, #osteoporosis, #hepatitis_virus, #womens_health_check, #thirty_cars, #colorectal_cancer, #vaccination_influenza {
  padding: 20vw 0 0 0;
  margin: -20vw 0 0 0;
}

#about, #recommended, #overview, #site, #price, #qa, #flow {
  padding: 300px 0 0 0;
  margin: -300px 0 0 0;
}

@media screen and (min-width: 768px), print {
  #guidance, #reserve, #payment, #access, #general_checkup, #additional_checkup, #hepatitis_virus_test, #breast_cancer_checkup, #uterine_cancer_checkup1, #uterine_cancer_checkup2, #attending, #guidance_time, #specific_health_checkup, #hepatitis_virus_screening, #lung_cancer_screening, #stomach_cancer_screening, #rubella_antibody_test, #between_dock_costs, #prostate_cancer_screening, #colon_cancer_screening, #about2, #symptoms, #feature, #q_and_a, #disease, #examination, #gastroscopy, #colonoscopy, #orthopedics01, #orthopedics02, #orthopedics03, #orthopedics04, #orthopedics05, #orthopedics06, #orthopedics07, #orthopedics08, #orthopedics09, #orthopedics10, #orthopedics11, #orthopedics12, #orthopedics13, #orthopedics14, #orthopedics15, #orthopedics16, #orthopedics17, #orthopedics18, #orthopedics19, #orthopedics20, #orthopedics21, #orthopedics22, #orthopedics23, #orthopedics24, #orthopedics25, #orthopedics26, #orthopedics27, #orthopedics28, #orthopedics29, #orthopedics30, #specialized_outpatient, #publicly_funded_infant_medical_examination, #publicly_funded_infant_vaccination, #voluntary_infant_vaccination, #howto, #locomotive_echo, #sas, #publicly_funded_vaccination, #self_funded_vaccination, #overseas_travel_vaccination, #yoyaku_form, #overseas_travel_vaccination, #sleep_apnea_syndrome, #immunotherapy, #interview_sheet, #pediatric_ent, #cosmetic_dermatology, #pediatric_dermatology, #onayami_menu, #combination_list, #price_picotoning, #price_picofractional, #price_photofacial, #price_massagepeel, #price_electroporation, #nobinobi, #late_elderly, #late_elderly_medical_checkup, #stomach_cancer, #lung_cancer, #colon_cancer, #prostate_cancer, #osteoporosis, #hepatitis_virus, #womens_health_check, #thirty_cars, #colorectal_cancer, #vaccination_influenza {
    padding: 200px 0 0 0;
    margin: -200px 0 0 0;
  }
  #about, #recommended, #overview, #site, #price, #qa, #flow {
    padding: 300px 0 0 0;
    margin: -300px 0 0 0;
  }
}
/*下層*/
/* Scss Document */
/* =======================================================================

 共通項目

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

@media screen and (min-width: 768px), print {
  .img_doctor {
    float: right;
    margin: 0 0 20px 20px;
    text-align: right;
  }
  .img_doctor img {
    width: 400px;
    height: auto;
  }
}
/* -----------------------------------------------------------
　医院紹介
----------------------------------------------------------- */
.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;
}

@media screen and (min-width: 768px), print {
  .machine_box {
    width: 100%;
    margin: 80px 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .machine_box figure {
    width: 48%;
    margin: 0 0 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-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .machine_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;
  }
}
/* -----------------------------------------------------------
　流れ
----------------------------------------------------------- */
.flow_box {
  border: #005994 1px solid;
  border-radius: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.flow_box h3 {
  margin: 0 0 1rem 0;
}
.flow_box p.mb_none {
  margin: 0;
}
.flow_box .flow_sentence {
  background-color: #EEF8FF;
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}
.flow_box .flow_sentence figure img {
  background-color: #ffffff;
}
.flow_box.warm_color {
  border: #EB7908 1px solid;
}
.flow_box.warm_color .flow_sentence {
  background-color: #FFF1E3;
}

@media screen and (min-width: 768px), print {
  .flow_box {
    border: #005994 2px solid;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .flow_box h3 {
    margin: 0 0 20px 0;
  }
  .flow_box p.mb_none {
    margin: 0;
  }
  .flow_box .flow_sentence {
    background-color: #EEF8FF;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .flow_box .flow_sentence figure img {
    background-color: #ffffff;
  }
  .flow_box.warm_color {
    border: #EB7908 1px solid;
  }
  .flow_box.warm_color .flow_sentence {
    background-color: #FFF1E3;
  }
}
/* -----------------------------------------------------------
　当日お持ちいただくもの
----------------------------------------------------------- */
.bring_box {
  background-color: #fff0f5;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.bring_box figure img {
  width: 50%;
  display: block;
  margin: 0 auto 2rem auto;
}

@media screen and (min-width: 768px), print {
  .bring_box {
    background-color: #fff0f5;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 0 2rem 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .bring_box figure {
    width: 30%;
  }
  .bring_box figure img {
    width: 100%;
    display: block;
    margin: 0;
  }
  .bring_box ul {
    width: 65%;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
.access_box {
  width: 100%;
}
.access_box .access_box_left .access_box_title {
  font-size: 1.6rem;
}
.access_box .access_box_right .googlemap {
  width: 100%;
}
.access_box .access_box_right .googlemap img {
  width: 100%;
}
.access_box .access_box_right .googlemap_button {
  width: 100%;
  height: 10vw;
  margin: -2px 0 0 0;
  background-color: #0E80CC;
  color: #ffffff;
  font-size: 1.4rem;
  text-decoration: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

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

@media screen and (min-width: 768px), print {
  .access_box {
    width: 1010px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .access_box .access_box_left {
    width: 530px;
  }
  .access_box .access_box_left .access_box_title {
    font-size: 2rem;
  }
  .access_box .access_box_right {
    width: 480p;
  }
  .access_box .access_box_right .googlemap {
    width: 480p;
  }
  .access_box .access_box_right .googlemap img {
    width: 480p;
  }
  .access_box .access_box_right .googlemap_button {
    width: 460px;
    height: 44px;
    margin: -2px 0 0 0;
    background-color: #0E80CC;
    color: #ffffff;
    font-size: 1.6rem;
    text-decoration: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
  }
  .access_box .access_box_right .googlemap_button i {
    font-size: 2rem;
  }
  .access_box .access_box_right .googlemap_button:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  iframe.accessmap {
    width: 100%;
    height: 500px;
    display: block;
    margin: 0;
  }
}
/*-----------------------------------------------------------
 よくある質問
----------------------------------------------------------- */
dl.qabox {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  box-sizing: border-box;
  margin: 0;
  line-height: 140%;
  width: 100%;
}
dl.qabox dt {
  width: 12%;
  margin: 0 0 1rem 0;
}
dl.qabox dt span {
  color: #ffffff;
  width: 3.5rem;
  height: 3.5rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
dl.qabox dt.question span {
  background-color: #707070;
}
dl.qabox dt.answer span {
  background-color: #555555;
}
dl.qabox dd {
  width: 85%;
  margin: 0 0 2rem 0;
  padding: 0.6rem 0 0 0;
  box-sizing: border-box;
}
dl.qabox dd.question {
  font-weight: bold;
}
dl.qabox dd.answer {
  margin: 0 0 4rem 0;
}

@media screen and (min-width: 768px), print {
  dl.qabox {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    box-sizing: border-box;
    margin: 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.qabox dt {
    width: 80px;
    margin: 0 0 20px 0;
  }
  dl.qabox dt span {
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  dl.qabox dt.question span {
    background-color: #707070;
  }
  dl.qabox dt.answer {
    margin: 0 0 60px 0;
  }
  dl.qabox dt.answer span {
    background-color: #555555;
  }
  dl.qabox dd {
    width: 1120px;
    margin: 0 0 20px 0;
    padding: 10px 0 0 0;
    box-sizing: border-box;
  }
  dl.qabox dd.question {
    font-weight: bold;
  }
  dl.qabox dd.answer {
    margin: 0 0 60px 0;
  }
}
/* -----------------------------------------------------------
　整形外科部位別の主な病気
----------------------------------------------------------- */
.site_frame {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.site_frame .site_left {
  order: 2;
  width: 100%;
}
.site_frame .site_body {
  order: 1;
  width: 100%;
  text-align: center;
  margin: 0 0 2rem 0;
}
.site_frame .site_body img {
  display: block;
  width: 50%;
  margin: 0 auto;
}
.site_frame .site_right {
  order: 3;
  width: 100%;
}
.site_frame .site_link_box {
  width: 100%;
  margin: 0 0 2rem 0;
  padding: 0.3rem;
}
.site_frame .site_link_box .site_link_title {
  background-color: #0E80CC;
  text-align: center;
  font-size: 1.6rem;
  color: #ffffff;
  padding: 0.2rem 0 0.5rem 0;
  margin: 0 0 1rem 0;
}
.site_frame .site_link_box ul.site_link_list {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
.site_frame .site_link_box ul.site_link_list li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.4rem;
  background-size: 0.8rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}
.site_frame .site_link_box ul.site_link_list li span {
  color: #333333;
}

.orthopedics_sec {
  display: none;
  background-color: #ffffff;
  width: 94%;
  height: 75vh;
  inset: auto 0 12%;
  margin: auto !important;
  padding: 20px !important;
  box-sizing: border-box;
  position: fixed;
  z-index: 999;
  box-shadow: 0 0 5px rgba(16, 16, 16, 0.5);
  overflow-y: auto;
}
.orthopedics_sec.open {
  display: block;
}
.orthopedics_sec.open .close_btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 100;
  font-size: 1.6rem;
  font-family: "fontello";
  content: "\e806";
  color: #fff;
  background: #333;
  width: 3rem;
  height: 3rem;
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px), print {
  .site_frame {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 1120px;
    margin: 0 auto;
  }
  .site_frame .site_left {
    order: 1;
    width: 320px;
  }
  .site_frame .site_body {
    order: 2;
    width: 380px;
    text-align: center;
    margin: 0 0 2rem 0;
  }
  .site_frame .site_body img {
    display: block;
    width: 380px;
    margin: 0;
  }
  .site_frame .site_right {
    order: 3;
    width: 320px;
  }
  .site_frame .site_link_box {
    width: 100%;
    margin: 0 0 36px 0;
    padding: 0;
    box-sizing: border-box;
  }
  .site_frame .site_link_box .site_link_title {
    background-color: #0E80CC;
    text-align: center;
    font-size: 2.2rem;
    color: #ffffff;
    padding: 5px 0 8px 0;
    margin: 0 0 10px 0;
  }
  .site_frame .site_link_box ul.site_link_list {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin: 0 0 20px 20px;
  }
  .site_frame .site_link_box ul.site_link_list li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 7px;
    background-size: 8px;
    margin: 0 0 10px 0;
    padding: 0 0 0 22px;
  }
  .site_frame .site_link_box ul.site_link_list li span {
    cursor: pointer;
    text-decoration: none;
    color: #333333;
  }
  .site_frame .site_link_box ul.site_link_list li span:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .orthopedics_sec {
    width: 1200px;
    height: 55vh;
    inset: 30% 0 auto;
    box-shadow: 0 0 10px rgba(16, 16, 16, 0.5);
    overflow-y: none;
  }
  .orthopedics_sec .two_box {
    width: 100%;
  }
}
/* -----------------------------------------------------------
　院内ツアー
----------------------------------------------------------- */
.sec_box {
  border: 3px double #CCCCCC;
  padding: 1rem;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.sec_box .floor {
  position: relative;
  max-width: 100%;
  height: auto;
}
.sec_box .floor img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  float: none;
  height: auto;
}
.sec_box .floor .pin_mark {
  display: block;
  width: 6%;
  height: 6%;
  -webkit-animation: pin 0.5s ease-in-out infinite alternate;
  -moz-animation: pin 0.5s ease-in-out infinite alternate;
  animation: pin 0.5s ease-in-out infinite alternate;
  background: url(../img/logo_mark_org.svg) no-repeat left top/contain;
  position: absolute;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.sec_box .floor .pin_mark[title*="待合室 その1"] {
  top: 45%;
  left: 26%;
}
.sec_box .floor .pin_mark[title*=エントランス] {
  top: 39%;
  left: 14%;
}
.sec_box .floor .pin_mark[title*=眼科] {
  top: 53%;
  left: 8%;
}
.sec_box .floor .pin_mark[title*=耳鼻科] {
  top: 3%;
  left: 81%;
}
.sec_box .floor .pin_mark[title*=処置室] {
  top: 15%;
  left: 92%;
}
.sec_box .floor .pin_mark[title*="待合室 その2"] {
  top: 30%;
  left: 78%;
}
.sec_box .floor .pin_mark[title*=リハビリ室] {
  top: 55%;
  left: 60%;
}
.sec_box .floor .pin_mark[title*=X線室] {
  top: 57%;
  left: 93%;
}
.sec_box .floor .pin_mark[title*=CT室] {
  top: 77%;
  left: 93%;
}
.sec_box .floor .pin_mark[title*=受付] {
  top: 25%;
  left: 25%;
}
.sec_box ul.sp_thum {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 2rem 0;
  list-style-type: none;
}
.sec_box ul.sp_thum li {
  width: 48%;
  margin: 0 0 1.5rem 0;
}
.sec_box ul.sp_thum li a {
  width: 100%;
  padding: 10rem 0 0 0;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  color: #333333;
}
.sec_box ul.sp_thum li a[title*="待合室 その1"] {
  background: url(../img/tour/a_clinic_pic01.jpg) no-repeat center top/contain;
}
.sec_box ul.sp_thum li a[title*=エントランス] {
  background: url(../img/tour/a_clinic_pic11.jpg) no-repeat center top/contain;
  background-size: 50%;
}
.sec_box ul.sp_thum li a[title*=眼科] {
  background: url(../img/tour/a_clinic_pic02.jpg) no-repeat center top/contain;
}
.sec_box ul.sp_thum li a[title*=耳鼻科] {
  background: url(../img/tour/a_clinic_pic10.jpg) no-repeat center top/contain;
}
.sec_box ul.sp_thum li a[title*=処置室] {
  background: url(../img/tour/a_clinic_pic09.jpg) no-repeat center top/contain;
}
.sec_box ul.sp_thum li a[title*="待合室 その2"] {
  background: url(../img/tour/a_clinic_pic04.jpg) no-repeat center top/contain;
}
.sec_box ul.sp_thum li a[title*=リハビリ室] {
  background: url(../img/tour/a_clinic_pic05.jpg) no-repeat center top/contain;
}
.sec_box ul.sp_thum li a[title*=X線室] {
  background: url(../img/tour/a_clinic_pic06.jpg) no-repeat center top/contain;
}
.sec_box ul.sp_thum li a[title*=CT室] {
  background: url(../img/tour/a_clinic_pic07.jpg) no-repeat center top/contain;
}
.sec_box ul.sp_thum li a[title*=受付] {
  background: url(../img/tour/a_clinic_pic08.jpg) no-repeat center top/contain;
}

#swipebox-overlay {
  background: rgba(16, 16, 16, 0.9) !important;
}

@-webkit-keyframes pin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes pin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (min-width: 768px), print {
  .sec_box {
    border: 3px double #CCCCCC;
    padding: 1rem;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    width: 800px;
    margin: 0 auto;
  }
  .sec_box .floor {
    position: relative;
    width: 600px;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
  }
  .sec_box .floor img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    float: none;
    height: auto;
  }
  .sec_box .floor .pin_mark {
    display: block;
    width: 25px;
    height: 25px;
    -webkit-animation: pin 0.5s ease-in-out infinite alternate;
    -moz-animation: pin 0.5s ease-in-out infinite alternate;
    animation: pin 0.5s ease-in-out infinite alternate;
    background: url(../img/logo_mark_org.svg) no-repeat left top/contain;
    position: absolute;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .sec_box .floor .pin_mark[title*="待合室 その1"] {
    top: 45%;
    left: 26%;
  }
  .sec_box .floor .pin_mark[title*=エントランス] {
    top: 39%;
    left: 14%;
  }
  .sec_box .floor .pin_mark[title*=眼科] {
    top: 53%;
    left: 8%;
  }
  .sec_box .floor .pin_mark[title*=耳鼻科] {
    top: 3%;
    left: 81%;
  }
  .sec_box .floor .pin_mark[title*=処置室] {
    top: 15%;
    left: 92%;
  }
  .sec_box .floor .pin_mark[title*="待合室 その2"] {
    top: 30%;
    left: 78%;
  }
  .sec_box .floor .pin_mark[title*=リハビリ室] {
    top: 55%;
    left: 60%;
  }
  .sec_box .floor .pin_mark[title*=X線室] {
    top: 57%;
    left: 93%;
  }
  .sec_box .floor .pin_mark[title*=CT室] {
    top: 77%;
    left: 93%;
  }
  .sec_box .floor .pin_mark[title*=受付] {
    top: 25%;
    left: 25%;
  }
  .sec_box ul.sp_thum {
    display: none;
  }
  #swipebox-overlay {
    background: rgba(16, 16, 16, 0.9) !important;
  }
}
/* -----------------------------------------------------------
　お知らせ一覧
----------------------------------------------------------- */
.low_notice {
  width: 100%;
  margin: 0 0 2rem 0;
}
.low_notice .notice_sub_title {
  width: 100%;
  height: 12vw;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  color: #0E80CC;
  font-size: 1.5rem;
  text-decoration: none;
  border-bottom: #0E80CC 2px solid;
  box-sizing: border-box;
}
.low_notice .notice_sub_title .icon-calendar, .low_notice .notice_sub_title .icon-icon-medkit, .low_notice .notice_sub_title .icon-megaphone {
  font-size: 2rem;
  margin: 0 0.5rem 0 1rem;
}
.low_notice .notice_sub_title .icon-right-circle {
  position: absolute;
  right: 2%;
}
.low_notice dl {
  width: 96%;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.low_notice dl p {
  margin: 1rem 0 2rem 1rem;
}
.low_notice dl dt {
  width: 22%;
  min-height: 14vw;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-bottom: #C3C3C3 1px dashed;
  color: #FB93A8;
  font-size: 1.4rem;
  text-align: center;
}
.low_notice dl dt span {
  width: 80%;
  display: block;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: #FB93A8 1px solid;
  padding: 0 0 0.2rem 0;
}
.low_notice dl dd {
  width: 78%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-bottom: #C3C3C3 1px dashed;
  padding: 1rem 0 1rem 1rem;
  box-sizing: border-box;
}
.low_notice dl dd p.info_category {
  margin: 0;
  display: inline-block;
}
.low_notice dl dd p.info_category .category {
  padding: 0.1rem 1rem 0.1rem 1rem;
}
.low_notice dl dd p.info_category .cat001 {
  /*お知らせ*/
  background-color: #C3E4FB;
  color: #0E80CC;
}
.low_notice dl dd p.info_category .cat002 {
  /*重要なお知らせ*/
  background-color: #0E80CC;
  color: #ffffff;
}
.low_notice dl dd p.info_category .cat003 {
  /*休診のお知らせ*/
  background-color: #FB93A8;
  color: #ffffff;
}
.low_notice dl dd p.info_category .cat004 {
  /*病院からのお知らせ*/
  background-color: #FBC793;
  color: #333333;
}
.low_notice dl dd p.info_category .cat005 {
  /*キャンペーン*/
  background-color: #FFF1E3;
  color: #333333;
}
.low_notice dl dd p.info_title {
  color: #0E80CC;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0 0 0.5rem 0;
}
.low_notice dl dd p.info_text {
  color: #333333;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0;
}
.low_notice dl dd .link_text {
  margin: 1rem 0 0 0;
}
.low_notice dl dd .link_text a {
  color: #0E80CC;
  font-size: 1.4rem;
}
.low_notice.nodate dl dd {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .low_notice .notice_sub_title {
    width: 100%;
    height: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    color: #0E80CC;
    font-size: 2rem;
    text-decoration: none;
    border-bottom: #0E80CC 2px solid;
    box-sizing: border-box;
  }
  .low_notice .notice_sub_title .icon-calendar, .low_notice .notice_sub_title .icon-medkit, .low_notice .notice_sub_title .icon-megaphone {
    font-size: 3.4rem;
    margin: 0 10px 0 24px;
  }
  .low_notice .notice_sub_title .icon-right-circle {
    position: absolute;
    right: 20px;
  }
  .low_notice .notice_sub_title:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .low_notice dl {
    width: 1200px;
    margin: 0;
    display: block;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .low_notice dl p {
    margin: 20px 0 20px 20px;
  }
  .low_notice dl dt {
    width: 110px;
    min-height: 82px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-bottom: #C3C3C3 1px dashed;
    color: #FB93A8;
    font-size: 1.8rem;
    text-align: center;
  }
  .low_notice dl dt span {
    width: 80px;
    display: block;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: #FB93A8 1px solid;
    padding: 0 0 5px 0;
    margin: 0 0 2px 0;
  }
  .low_notice dl dt:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .low_notice dl dd {
    width: 1090px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-bottom: #C3C3C3 1px dashed;
    padding: 30px 0 30px 16px;
    box-sizing: border-box;
  }
  .low_notice dl dd p.info_category {
    margin: 0 0 5px 0;
    display: inline-block;
  }
  .low_notice dl dd p.info_category .category {
    padding: 5px 20px 5px 20px;
  }
  .low_notice dl dd p.info_category .cat001 {
    /*お知らせ*/
    background-color: #C3E4FB;
    color: #0E80CC;
  }
  .low_notice dl dd p.info_category .cat002 {
    /*重要なお知らせ*/
    background-color: #0E80CC;
    color: #ffffff;
  }
  .low_notice dl dd p.info_category .cat003 {
    /*休診のお知らせ*/
    background-color: #FB93A8;
    color: #ffffff;
  }
  .low_notice dl dd p.info_category .cat004 {
    /*病院からのお知らせ*/
    background-color: #FBC793;
    color: #333333;
  }
  .low_notice dl dd p.info_category .cat005 {
    /*キャンペーン*/
    background-color: #FFF1E3;
    color: #333333;
  }
  .low_notice dl dd p.info_title {
    color: #0E80CC;
    font-size: 2rem;
    font-weight: normal;
    margin: 0 0 10px 0;
  }
  .low_notice dl dd p.info_text {
    color: #333333;
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0;
  }
  .low_notice dl dd .link_text {
    margin: 1rem 0 0 0;
  }
  .low_notice dl dd .link_text a {
    color: #0E80CC;
    font-size: 1.6rem;
  }
}
/* -----------------------------------------------------------
　クリニック紹介
----------------------------------------------------------- */
.clinic_info_box {
  width: 100%;
}
.clinic_info_box figure {
  width: 100%;
}
.clinic_info_box figure img {
  width: 100%;
}
.clinic_info_box .clinic_info_box_content dl.clinic_info_list {
  width: 100%;
  margin: 2rem 0 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  line-height: 160%;
}
.clinic_info_box .clinic_info_box_content dl.clinic_info_list dt {
  width: 30%;
  margin: 0 0 1rem 0;
}
.clinic_info_box .clinic_info_box_content dl.clinic_info_list dt i {
  margin: 0 -0.5rem 0 0;
  letter-spacing: 0;
}
.clinic_info_box .clinic_info_box_content dl.clinic_info_list dd {
  width: 68%;
  margin: 0 0 1rem 0;
  box-sizing: border-box;
}
.clinic_info_box .clinic_info_box_content dl.clinic_info_list dd ul {
  margin: 0;
}
.clinic_info_box .clinic_info_box_content dl.clinic_info_list dd ul li {
  margin: 0 0 0.5rem 1.8rem;
}
.clinic_info_box .clinic_info_box_content dl.clinic_info_list dd .tel a {
  color: #FB93A8;
}

.features_frame {
  width: 100%;
  margin: 0 0 2rem 0;
}
.features_frame .features_area {
  width: 100%;
  background-color: #EEF8FF;
}
.features_frame .features_area .features_box {
  width: 96%;
  margin: 2rem auto 0 auto;
}
.features_frame .features_area .features_box .features_box_title {
  width: 100%;
  height: 37vw;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.features_frame .features_area .features_box .features_box_title p {
  color: #ffffff;
  font-size: 1.6rem;
  font-family: "zenmarugothic_regular";
  font-weight: normal;
  text-align: center;
  letter-spacing: 0;
  margin: 0;
  display: inline;
  padding: 0 0 0.5rem 0;
  border-bottom: #ffffff 2px solid;
}
.features_frame .features_area .features_box .features_box_title.fbt_01 {
  background: url("../img/clinic_features_01.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
}
.features_frame .features_area .features_box .features_box_title.fbt_02 {
  background: url("../img/clinic_features_02.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
}
.features_frame .features_area .features_box .features_box_title.fbt_03 {
  background: url("../img/clinic_features_03.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
}
.features_frame .features_area .features_box .features_box_title.fbt_04 {
  background: url("../img/clinic_features_04.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
}
.features_frame .features_area .features_box .features_box_text {
  padding: 1rem 0.5rem 2rem 0.5rem;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  box-sizing: border-box;
}
.features_frame .features_area .features_box .features_box_text .tbt_text {
  color: #005994;
  font-size: 1.4rem;
  text-align: justify;
  margin: 0;
}

@media screen and (min-width: 768px), print {
  .clinic_info_box {
    width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .clinic_info_box figure {
    width: 740px;
  }
  .clinic_info_box figure img {
    width: 100%;
  }
  .clinic_info_box .clinic_info_box_content {
    width: 450px;
  }
  .clinic_info_box .clinic_info_box_content dl.clinic_info_list {
    width: 450px;
    margin: 22px 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    line-height: 160%;
  }
  .clinic_info_box .clinic_info_box_content dl.clinic_info_list dt {
    width: 120px;
    margin: 0 0 6px 0;
  }
  .clinic_info_box .clinic_info_box_content dl.clinic_info_list dt i {
    margin: 0 -5px 0 0;
    letter-spacing: 0;
  }
  .clinic_info_box .clinic_info_box_content dl.clinic_info_list dd {
    width: 330px;
    margin: 0 0 6px 0;
    box-sizing: border-box;
  }
  .clinic_info_box .clinic_info_box_content dl.clinic_info_list dd span {
    margin: 0 0 0 15px;
  }
  .clinic_info_box .clinic_info_box_content dl.clinic_info_list dd .tel {
    margin: 0;
  }
  .clinic_info_box .clinic_info_box_content dl.clinic_info_list dd .tel a {
    color: #FB93A8;
  }
  .features_frame {
    width: 100%;
    margin: 0 0 60px 0;
  }
  .features_frame .features_area {
    width: 100%;
    height: 240px;
    background-color: #EEF8FF;
    margin: 0 0 40px 0;
  }
  .features_frame .features_area .features_box {
    width: 1200px;
    margin: 0 auto 50px auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .features_frame .features_area .features_box .features_box_title {
    width: 600px;
    height: 240px;
    background: url("../img/index_features_01.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .features_frame .features_area .features_box .features_box_title p {
    color: #ffffff;
    font-size: 2.6rem;
    font-family: "zenmarugothic_regular";
    font-weight: normal;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    display: inline;
    padding: 0 0 0.5rem 0;
    border-bottom: #ffffff 2px solid;
  }
  .features_frame .features_area .features_box .features_box_title.fbt_01 {
    background: url("../img/clinic_features_01.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .features_frame .features_area .features_box .features_box_title.fbt_02 {
    background: url("../img/clinic_features_02.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .features_frame .features_area .features_box .features_box_title.fbt_03 {
    background: url("../img/clinic_features_03.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .features_frame .features_area .features_box .features_box_title.fbt_04 {
    background: url("../img/clinic_features_04.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .features_frame .features_area .features_box .features_box_text {
    width: 600px;
    height: 240px;
    padding: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    box-sizing: border-box;
  }
  .features_frame .features_area .features_box .features_box_text .tbt_text {
    color: #005994;
    font-size: 1.6rem;
    text-align: justify;
    margin: 0;
    line-height: 180%;
  }
  .features_frame .features_area .features_box.left .features_box_title {
    order: 2;
  }
  .features_frame .features_area .features_box.left .features_box_text {
    order: 1;
  }
}
/* -----------------------------------------------------------
　睡眠時無呼吸検査
----------------------------------------------------------- */
.sas_box {
  overflow: hidden;
  background-color: #EEF8FF;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.sas_box figure {
  margin: 0 0 2rem 0;
}
.sas_box span {
  font-weight: bold;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px), print {
  .sas_box {
    overflow: hidden;
    background-color: #EEF8FF;
    padding: 24px 20px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .sas_box figure {
    margin: 0 20px 0 0;
  }
  .sas_box span {
    font-weight: bold;
    font-size: 2rem;
  }
}
/* -----------------------------------------------------------
　美容
----------------------------------------------------------- */
.treatment_target_area_img figure {
  margin: 0 auto 2rem auto;
  width: 80%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.treatment_target_area_img figure img {
  width: 60%;
}
.treatment_target_area_img figure figcaption {
  width: 6rem;
  height: 6rem;
  color: #555555;
  border: #555555 2px solid;
  box-sizing: border-box;
  font-size: 1.8rem;
  border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (min-width: 768px), print {
  .treatment_target_area_img {
    width: 1000px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .treatment_target_area_img figure {
    margin: 0;
    width: 500px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .treatment_target_area_img figure img {
    width: 380px;
  }
  .treatment_target_area_img figure figcaption {
    width: 100px;
    height: 100px;
    color: #555555;
    border: #555555 2px solid;
    box-sizing: border-box;
    font-size: 2.4rem;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
/* -----------------------------------------------------------
　院長紹介
----------------------------------------------------------- */
.confirmation {
  text-align: center;
  cursor: pointer;
  font-size: 1.4rem;
}
.confirmation input[type=date] {
  font-size: 1.4rem;
}
.confirmation button {
  padding: 0;
  border: none;
  background: transparent;
  margin: 1rem 0 0 0;
}
.confirmation button p {
  text-decoration: none;
  width: auto;
  height: auto;
  font-size: 1.4rem;
  color: #C3C3C3;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background: url("../img/icon_07_hover.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 10px;
  background-color: #0E80CC;
  display: inline-block;
  margin: 0 auto;
}
.confirmation button p.btncolor {
  color: #ffffff;
}

@media screen and (min-width: 768px), print {
  .confirmation {
    text-align: center;
    cursor: pointer;
    font-size: 1.4rem;
  }
  .confirmation input[type=date] {
    font-size: 1.6rem;
  }
  .confirmation button {
    padding: 0;
    border: none;
    background: transparent;
    margin: 1rem 0 0 0;
  }
  .confirmation button p {
    text-decoration: none;
    width: auto;
    height: auto;
    font-size: 1.8rem;
    color: #C3C3C3;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 14px 28px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
    display: inline-block;
  }
  .confirmation button p.btncolor {
    color: #ffffff;
  }
  .confirmation button p:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
    transition: all 0.3s ease 0s;
  }
}
/* -----------------------------------------------------------
　整形外科
----------------------------------------------------------- */
.orthopedics_check_frame .osteoporosis_subtitle {
  margin: 3rem 0 1rem;
  text-align: center;
}
.orthopedics_check_frame .osteoporosis_subtitle span {
  display: inline-block;
  line-height: 1;
  background: #FB93A8;
  color: #ffffff;
  font-family: "zenmarugothic_medium";
  font-size: 3rem;
  border: 2px solid #ffffff;
  padding: 0.5rem;
}
.orthopedics_check_frame .osteoporosis_subtitle span:nth-of-type(1) {
  z-index: 1;
}
.orthopedics_check_frame .osteoporosis_subtitle span:nth-of-type(2) {
  z-index: 2;
  transform: rotate(15deg);
}
.orthopedics_check_frame .osteoporosis_subtitle span:nth-of-type(3) {
  z-index: 3;
  transform: rotate(360deg);
}
.orthopedics_check_frame .osteoporosis_title {
  text-align: center;
  font-family: "zenmarugothic_medium";
  font-size: 1.6rem;
  font-weight: bold;
  color: #FF5353;
  margin: 0 0 1rem 0;
}
.orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_left {
  text-align: center;
}
.orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_left img {
  width: 40%;
}
.orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_right {
  margin: 2rem 0 0 0;
}
.orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_right .orthopedics_check_box_title {
  color: #1C77D1;
  font-family: "zenmarugothic_medium";
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
}
.orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_right ul.osteoporosis_price_list {
  width: 100%;
  margin: 1rem 0;
  display: flex;
  list-style-type: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_right ul.osteoporosis_price_list li {
  width: 31%;
  text-align: center;
  background-color: #FFF8F9;
  color: #FF5353;
  border: #FF5353 1px solid;
  padding: 1rem;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 120%;
}

@media screen and (min-width: 768px), print {
  .orthopedics_check_frame .osteoporosis_subtitle {
    margin: 3rem 0 1rem;
    text-align: center;
  }
  .orthopedics_check_frame .osteoporosis_subtitle span {
    display: inline-block;
    line-height: 1;
    background: #FB93A8;
    color: #ffffff;
    font-family: "zenmarugothic_medium";
    font-size: 6rem;
    border: 4px solid #ffffff;
    padding: 1rem;
  }
  .orthopedics_check_frame .osteoporosis_subtitle span:nth-of-type(1) {
    z-index: 1;
  }
  .orthopedics_check_frame .osteoporosis_subtitle span:nth-of-type(2) {
    z-index: 2;
    transform: rotate(15deg);
  }
  .orthopedics_check_frame .osteoporosis_subtitle span:nth-of-type(3) {
    z-index: 3;
    transform: rotate(360deg);
  }
  .orthopedics_check_frame .osteoporosis_title {
    text-align: center;
    font-family: "zenmarugothic_medium";
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF5353;
    margin: 0 0 16px 0;
  }
  .orthopedics_check_frame .orthopedics_check_box {
    width: 800px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_left {
    width: 200px;
    text-align: center;
  }
  .orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_left img {
    width: 100%;
  }
  .orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_right {
    width: 550px;
    margin: 0 0 0 0;
  }
  .orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_right .orthopedics_check_box_title {
    color: #1C77D1;
    font-family: "zenmarugothic_medium";
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 0 16px 0;
  }
  .orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_right ul.osteoporosis_price_list {
    width: 100%;
    margin: 10px 0;
    display: flex;
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .orthopedics_check_frame .orthopedics_check_box .orthopedics_check_box_right ul.osteoporosis_price_list li {
    width: 31%;
    text-align: center;
    background-color: #FFF8F9;
    color: #FF5353;
    border: #FF5353 1px solid;
    padding: 16px;
    box-sizing: border-box;
    font-size: 2rem;
    line-height: 160%;
  }
}
/*フォーム*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　お問い合わせ・メールフォーム
----------------------------------------------------------- */
#mailformpro {
  padding: 0 !important;
  box-sizing: border-box;
  width: 100%;
}
#mailformpro table {
  font-size: 1.4rem;
  line-height: 140%;
  width: 100%;
  word-wrap: break-word;
}
#mailformpro table tr th {
  display: block;
  text-align: left;
  font-weight: normal;
  padding: 1rem 1rem 0.5rem 1rem;
  box-sizing: border-box;
  color: #333333;
  border-top: #CCCCCC 1px solid;
}
#mailformpro table tr th span {
  color: #ff0000;
  display: inline-block;
  padding: 0 0.2rem;
  box-sizing: border-box;
  margin: 0 0 0 0.6rem;
}
#mailformpro table tr th span.notice {
  margin: 0 0 0 0;
}
#mailformpro table tr th.btn {
  border-top: none;
}
#mailformpro table tr td {
  display: block;
  text-align: left;
  padding: 0.5rem 1rem 1.5rem 1rem;
  box-sizing: border-box;
}
#mailformpro table tr td ol {
  list-style-type: none;
}
#mailformpro table tr td input[type=text], #mailformpro table tr td input[type=tel], #mailformpro table tr td input[type=email] {
  font-size: 1.2rem;
  width: 100% !important;
  margin: 0 0 0 0;
  background-color: #EEF8FF;
  border: #379EE2 1px solid;
  padding: 0.5rem;
  box-sizing: border-box;
}
#mailformpro table tr td input[type=text]:focus, #mailformpro table tr td input[type=tel]:focus, #mailformpro table tr td input[type=email]:focus {
  background-color: #c5ddee;
  border: #379EE2 1px solid;
}
#mailformpro table tr td input[type=text].age, #mailformpro table tr td input[type=tel].age, #mailformpro table tr td input[type=email].age {
  width: 20% !important;
}
#mailformpro table tr td input[type=text].small, #mailformpro table tr td input[type=tel].small, #mailformpro table tr td input[type=email].small {
  width: 40% !important;
}
#mailformpro table tr td input[type=text].hoken1, #mailformpro table tr td input[type=tel].hoken1, #mailformpro table tr td input[type=email].hoken1 {
  width: 40% !important;
  margin: 0 0 1rem 0;
}
#mailformpro table tr td input[type=text].hoken2, #mailformpro table tr td input[type=tel].hoken2, #mailformpro table tr td input[type=email].hoken2 {
  width: 20% !important;
}
#mailformpro table tr td input[type=text].time, #mailformpro table tr td input[type=tel].time, #mailformpro table tr td input[type=email].time {
  width: 40% !important;
  margin: 1rem 0 1rem 0;
}
#mailformpro table tr td input[type=file] {
  font-size: 1.2rem;
}
#mailformpro table tr td button[type=button] {
  font-size: 1.2rem;
}
#mailformpro table tr td input[type=date] {
  font-size: 1.2rem;
  background-color: #EEF8FF;
  border: #379EE2 1px solid;
  padding: 0.6rem;
  box-sizing: border-box;
}
#mailformpro table tr td input[type=date].hope {
  margin: 0.3rem 0 0.5rem 0;
}
#mailformpro table tr td select {
  font-size: 1.2rem;
  width: 24% !important;
  background-color: #EEF8FF;
  border: #379EE2 1px solid;
  padding: 0.5rem;
  box-sizing: border-box;
  margin: 0.3rem 0 0.5rem 0;
}
#mailformpro table tr td select.about {
  width: 100% !important;
}
#mailformpro table tr td select.todofuken {
  width: 50% !important;
}
#mailformpro table tr td select.yoyakubi {
  width: 80% !important;
}
#mailformpro table tr td textarea {
  font-size: 1.2rem;
  width: 100% !important;
  min-height: 40vw;
  background-color: #EEF8FF;
  border: #379EE2 1px solid;
}
#mailformpro table tr td textarea:focus {
  background-color: #c5ddee;
  border: #379EE2 1px solid;
}
#mailformpro table tr td textarea.small {
  min-height: 20vw;
}
#mailformpro table tr td p {
  margin: 3rem 0 1rem 0;
  width: 100%;
}
#mailformpro table tr td p.ajs {
  margin: 0 0 1rem 0;
}
#mailformpro table tr td p.price .price_text {
  font-size: 1.6rem;
}
#mailformpro table tr td p.price #mfp_price {
  font-size: 1.6rem;
}
#mailformpro table tr:last-child th {
  border-bottom: #CCCCCC 1px solid;
}
#mailformpro table tr:last-child td {
  border-bottom: #CCCCCC 1px solid;
}
#mailformpro .table_ajs {
  width: 100%;
}
#mailformpro .table_ajs table {
  width: 100%;
}
#mailformpro .table_ajs table tr th {
  width: 100%;
}
#mailformpro .table_ajs table tr td {
  width: 100%;
}
#mailformpro .mfp_buttons {
  width: 90%;
  margin: 2rem auto 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#mailformpro .mfp_buttons button {
  width: 45%;
  height: 10vw;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 1.5rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
  margin: 0 0 0 0.5rem;
  text-shadow: none;
}
#mailformpro .mfp_buttons button.submit {
  background: #0E80CC;
  border: #0E80CC 1px solid;
  color: #ffffff;
}
#mailformpro .mfp_buttons button.reset {
  background: #707070;
  border: #707070 1px solid;
  color: #ffffff;
}

@media screen and (min-width: 768px), print {
  #mailformpro table {
    font-size: 1.6rem;
    line-height: 140%;
    width: 1200px;
  }
  #mailformpro table tr th {
    width: 350px;
    display: table-cell;
    text-align: left;
    font-weight: normal;
    padding: 20px 20px 20px 20px;
    box-sizing: border-box;
    border-top: #CCCCCC 1px solid;
    vertical-align: middle;
  }
  #mailformpro table tr th span {
    color: #ff0000;
    display: inline-block;
    padding: 0 4px;
    box-sizing: border-box;
    margin: 0 0 0 16px;
  }
  #mailformpro table tr th span.notice {
    margin: 0 0 0 0;
  }
  #mailformpro table tr th.btn {
    border-top: none;
  }
  #mailformpro table tr td {
    width: 850px;
    display: table-cell;
    text-align: left;
    border-top: #CCCCCC 1px solid;
    padding: 20px 20px 20px 20px;
    box-sizing: border-box;
    vertical-align: middle;
    line-height: 140%;
  }
  #mailformpro table tr td.btn {
    border-top: none;
  }
  #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.6rem;
    width: 400px !important;
    margin: -4px 0 0 0;
    background-color: #EEF8FF;
    border: #379EE2 1px solid;
    padding: 10px;
    box-sizing: border-box;
  }
  #mailformpro table tr td input[type=text]:focus, #mailformpro table tr td input[type=tel]:focus, #mailformpro table tr td input[type=email]:focus {
    background-color: #c5ddee;
    border: #379EE2 1px solid;
  }
  #mailformpro table tr td input[type=text].age, #mailformpro table tr td input[type=tel].age, #mailformpro table tr td input[type=email].age {
    width: 80px !important;
    margin: 0 20px 0 0;
  }
  #mailformpro table tr td input[type=text].long, #mailformpro table tr td input[type=tel].long, #mailformpro table tr td input[type=email].long {
    width: 700px !important;
  }
  #mailformpro table tr td input[type=text].mail, #mailformpro table tr td input[type=tel].mail, #mailformpro table tr td input[type=email].mail {
    width: 700px !important;
  }
  #mailformpro table tr td input[type=text].small, #mailformpro table tr td input[type=tel].small, #mailformpro table tr td input[type=email].small {
    width: 200px !important;
  }
  #mailformpro table tr td input[type=text].hoken1, #mailformpro table tr td input[type=tel].hoken1, #mailformpro table tr td input[type=email].hoken1 {
    width: 200px !important;
    margin: 0 20px 0 5px;
  }
  #mailformpro table tr td input[type=text].hoken2, #mailformpro table tr td input[type=tel].hoken2, #mailformpro table tr td input[type=email].hoken2 {
    width: 100px !important;
  }
  #mailformpro table tr td input[type=text].time, #mailformpro table tr td input[type=tel].time, #mailformpro table tr td input[type=email].time {
    width: 200px !important;
    margin: 10px 0 10px 0;
  }
  #mailformpro table tr td input[type=file] {
    font-size: 1.6rem;
  }
  #mailformpro table tr td button[type=button] {
    font-size: 1.6rem;
  }
  #mailformpro table tr td input[type=date] {
    font-size: 1.6rem;
    background-color: #EEF8FF;
    border: #379EE2 1px solid;
    padding: 10px;
    box-sizing: border-box;
  }
  #mailformpro table tr td input[type=date].hope {
    margin: 4px 0 8px 0;
  }
  #mailformpro table tr td select {
    font-size: 1.6rem;
    width: 80px !important;
    background-color: #EEF8FF;
    border: #379EE2 1px solid;
    padding: 10px;
    box-sizing: border-box;
    margin: 4px 0 8px 0;
  }
  #mailformpro table tr td select.about {
    width: 30% !important;
  }
  #mailformpro table tr td select.todofuken {
    width: 200px !important;
  }
  #mailformpro table tr td select.yoyakubi {
    width: 300px !important;
    margin: 10px 20px 10px 0;
  }
  #mailformpro table tr td textarea {
    font-size: 1.6rem;
    width: 100% !important;
    min-height: 300px;
    background-color: #EEF8FF;
    border: #379EE2 1px solid;
  }
  #mailformpro table tr td textarea:focus {
    background-color: #c5ddee;
    border: #379EE2 1px solid;
  }
  #mailformpro table tr td textarea.small {
    min-height: 100px;
  }
  #mailformpro table tr td p {
    margin: 3rem 0 1rem 0;
    width: 100%;
  }
  #mailformpro table tr td p.ajs {
    margin: 0 0 1rem 0;
  }
  #mailformpro table tr td p.price .price_text {
    font-size: 2rem;
  }
  #mailformpro table tr td p.price #mfp_price {
    font-size: 2rem;
  }
  #mailformpro .table_ajs {
    width: 100%;
  }
  #mailformpro .table_ajs table {
    width: 100%;
  }
  #mailformpro .table_ajs table tr th {
    width: auto;
  }
  #mailformpro .table_ajs table tr td {
    width: auto;
  }
  #mailformpro .mfp_buttons {
    width: 400px;
    margin: 40px auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #mailformpro .mfp_buttons button {
    width: 150px;
    height: 50px;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0 30px;
    box-sizing: border-box;
    border-radius: 5px;
    margin: 0;
    text-shadow: none;
  }
  #mailformpro .mfp_buttons button.submit {
    background: #0E80CC;
    border: #0E80CC 1px solid;
    color: #ffffff;
  }
  #mailformpro .mfp_buttons button.reset {
    background: #707070;
    border: #707070 1px solid;
    color: #ffffff;
  }
  #mailformpro .mfp_buttons button:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  #mfp_overlay_background {
    z-index: 99999999;
  }
  #mfp_overlay {
    z-index: 1000000000000000000 !important;
  }
}
/*ドクターリスト*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　受付診療時間
----------------------------------------------------------- */
.doctor_prof {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  height: 120%;
  background-color: rgba(16, 16, 16, 0.5);
}
.doctor_prof .doctor_prof_box {
  background-color: #ffffff;
  padding: 1rem 1rem 2rem 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-sizing: border-box;
  position: absolute;
  bottom: 13vw;
  z-index: 99999;
  text-align: left;
  line-height: 100%;
  width: 100%;
}
.doctor_prof .doctor_prof_box figure {
  width: 40%;
  margin: 0 auto 1rem auto;
}
.doctor_prof .doctor_prof_box figure img {
  width: 100%;
}
.doctor_prof .doctor_prof_box .doctor_text {
  text-align: center;
  font-size: 1.2rem;
}
.doctor_prof .doctor_prof_box .doctor_text .doctor_prof_title {
  margin: 0 0 2rem 0;
  text-align: center;
}
.doctor_prof .doctor_prof_box .doctor_text .doctor_prof_title span {
  font-size: 2.2rem;
  margin: 0 1rem 0 0;
}
.doctor_prof .doctor_prof_box .doctor_text .doctor_date {
  margin: 1rem 0 0 0;
  font-size: 1.6rem;
}
.doctor_prof .doctor_prof_box .doctor_text dl.doctor_prof_list {
  font-size: 1rem;
}
.doctor_prof .doctor_prof_box .doctor_text dl.doctor_prof_list dt {
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}
.doctor_prof .doctor_prof_box .doctor_text dl.doctor_prof_list dd {
  margin: 0 0 0.5rem 0;
}
.doctor_prof .doctor_prof_box .doctor_prof_close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.6rem;
  color: #ffffff;
  background-color: #333333;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  line-height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.doctor_prof.open_doctor_prof {
  display: block;
}

.doctor_prof_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  .doctor_prof {
    display: none !important;
  }
  .doctor_prof_pc {
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 9999999999;
  }
  .doctor_prof_pc .doctor_prof_box {
    opacity: 0;
    bottom: 100px;
    left: -140px;
    width: 400px;
    height: auto;
    pointer-events: none;
    background-color: #ffffff;
    padding: 15px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-sizing: border-box;
    position: absolute;
    border: #707070 1px solid;
    text-align: left;
  }
  .doctor_prof_pc .doctor_prof_box .doctor_prof_title {
    font-size: 1.6rem;
  }
  .doctor_prof_pc .doctor_prof_box .doctor_prof_title span {
    font-size: 1.4rem;
    margin: 0 1rem 0 0;
  }
  .doctor_prof_pc .doctor_prof_box .doctor_prof_title {
    margin: 0 0 1rem 0;
  }
  .doctor_prof_pc .doctor_prof_box dl.doctor_prof_list {
    font-size: 1.4rem;
  }
  .doctor_prof_pc .doctor_prof_box dl.doctor_prof_list dt {
    font-weight: bold;
    margin: 0 0 0.1rem 0;
  }
  .doctor_prof_pc .doctor_prof_box dl.doctor_prof_list dd {
    margin: 0 0 0.1rem 0;
  }
  .doctor_prof_pc .doctor_prof_box .doctor_prof_close {
    display: none;
  }
  .doctor_prof_pc .doctor_prof_box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -19px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    border-width: 20px 20px 0 20px;
    z-index: 99999999999;
  }
  .doctor_prof_pc .doctor_prof_box::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #707070 transparent transparent transparent;
    border-width: 20px 20px 0 20px;
  }
  .doctor_prof_pc.open_doctor_prof {
    display: block;
  }
  .tooltip_link {
    position: relative;
    display: block;
  }
  .tooltip_link:hover {
    color: #0E80CC;
  }
  .tooltip_link:hover .doctor_prof_box {
    text-decoration: none;
    opacity: 1;
    color: #333333;
    visibility: visible;
  }
  /*こちら採用*/
  .doctor_tooltip_box .doctor_prof_box {
    position: absolute;
    bottom: 10px;
    pointer-events: none;
    background-color: #ffffff;
    padding: 15px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    box-sizing: border-box;
    position: absolute;
    border: #707070 1px solid;
    text-align: left;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  }
  .doctor_tooltip_box .doctor_prof_box figure {
    width: 40%;
    margin: 0;
  }
  .doctor_tooltip_box .doctor_prof_box figure img {
    width: 100%;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text {
    width: 60%;
    text-align: center;
    font-size: 1.2rem;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text p {
    margin: 0 0 15px 0;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text .doctor_prof_title {
    margin: 0 0 2rem 0;
    text-align: center;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text .doctor_prof_title span {
    font-size: 2.2rem;
    margin: 0 0 0 0;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text .doctor_prof_title {
    margin: 0 0 1rem 0;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text .doctor_date {
    margin: 0 0 0 0;
    font-size: 1.6rem;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text dl.doctor_prof_list {
    font-size: 1.4rem;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text dl.doctor_prof_list dt {
    font-weight: bold;
    margin: 0 0 0.1rem 0;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text dl.doctor_prof_list dd {
    margin: 0 0 0.1rem 0;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_prof_close {
    display: none;
  }
  .doctor_tooltip_box .doctor_prof_box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -14px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    border-width: 15px 15px 0 15px;
    z-index: 99999999999;
  }
  .doctor_tooltip_box .doctor_prof_box::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -15px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #707070 transparent transparent transparent;
    border-width: 15px 15px 0 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  /*こちら採用*/
  .doctor_tooltip_box {
    /* テスト用
    .popup{
      opacity: 1 !important;
      visibility: visible !important;
    }
    */
  }
  .doctor_tooltip_box .doctor_prof_box {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 125px;
    pointer-events: auto;
    background-color: #ffffff;
    padding: 30px 15px 15px 15px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-sizing: border-box;
    position: absolute;
    border: #707070 1px solid;
    text-align: left;
    width: 450px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  }
  .doctor_tooltip_box .doctor_prof_box figure {
    width: 40%;
    margin: 0;
  }
  .doctor_tooltip_box .doctor_prof_box figure img {
    width: 100%;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text {
    width: 60%;
    text-align: center;
    font-size: 1.2rem;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text p {
    margin: 0 0 15px 0;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text .doctor_prof_title {
    margin: 0 0 2rem 0;
    text-align: center;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text .doctor_prof_title span {
    font-size: 2.2rem;
    margin: 0 0 0 0;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text .doctor_prof_title {
    margin: 0 0 1rem 0;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text .doctor_date {
    margin: 0 0 0 0;
    font-size: 1.6rem;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text dl.doctor_prof_list {
    font-size: 1.4rem;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text dl.doctor_prof_list dt {
    font-weight: bold;
    margin: 0 0 0.1rem 0;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_text dl.doctor_prof_list dd {
    margin: 0 0 0.1rem 0;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_prof_close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #333333;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    line-height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    pointer-events: none;
  }
  .doctor_tooltip_box .doctor_prof_box .doctor_prof_close i {
    color: #ffffff;
  }
  .doctor_tooltip_box .doctor_prof_box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -14px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    border-width: 15px 15px 0 15px;
    z-index: 99999999999;
  }
  .doctor_tooltip_box .doctor_prof_box::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -15px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #707070 transparent transparent transparent;
    border-width: 15px 15px 0 15px;
  }
  .doctor_tooltip_box .tabclick {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }
}
/* -----------------------------------------------------------
　予防接種
----------------------------------------------------------- */
.vaccination_info {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  height: 120%;
  background-color: rgba(16, 16, 16, 0.5);
}
.vaccination_info .vaccination_box {
  background-color: #ffffff;
  padding: 4rem 1rem 1rem 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  max-height: 140vw;
  overflow-y: scroll;
  z-index: 99999;
  text-align: left;
  line-height: 100%;
}
.vaccination_info .vaccination_box .vaccination_title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
}
.vaccination_info .vaccination_box .vaccination_close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.6rem;
  color: #ffffff;
  background-color: #333333;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  line-height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.vaccination_info.open_influenza_info {
  display: block;
}
.vaccination_info.open_pneumococcus_info {
  display: block;
}
.vaccination_info.open_mr_info {
  display: block;
}
.vaccination_info.open_chickenpox_info {
  display: block;
}
.vaccination_info.open_mumps_info {
  display: block;
}
.vaccination_info.open_cervical_cancer_info {
  display: block;
}
.vaccination_info.open_tuberculin_reaction_info {
  display: block;
}
.vaccination_info.open_hepatitis_b_info {
  display: block;
}
.vaccination_info.open_tetanus_info {
  display: block;
}
.vaccination_info.open_hepatitis_a_info {
  display: block;
}
.vaccination_info.open_hepatitis_b2_info {
  display: block;
}
.vaccination_info.open_vaccination_tetanus2_info {
  display: block;
}
.vaccination_info.open_rabies_info {
  display: block;
}
.vaccination_info.open_japanese_encephalitis_info {
  display: block;
}
.vaccination_info.open_measles_info {
  display: block;
}
.vaccination_info.open_rubella_info {
  display: block;
}
.vaccination_info.open_mumps2_info {
  display: block;
}
.vaccination_info.open_polio_info {
  display: block;
}
.vaccination_info.open_chickenpox2_info {
  display: block;
}
.vaccination_info.open_polio2_info {
  display: block;
}
.vaccination_info.open_vaccination_tetanus3_info {
  display: block;
}
.vaccination_info.open_vaccination_tetanus4_info {
  display: block;
}
.vaccination_info.open_whooping_cough_info {
  display: block;
}
.vaccination_info.open_whooping_cough2_info {
  display: block;
}
.vaccination_info.open_diphtheria_info {
  display: block;
}
.vaccination_info.open_diphtheria2_info {
  display: block;
}

.vaccination_info_pc {
  display: none;
}

/*予防接種ポップアップこちらを採用*/
.vaccination_box2 {
  background-color: #ffffff;
  padding: 4rem 1rem 1rem 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-sizing: border-box;
  position: absolute;
  bottom: 13vw;
  max-height: 140vw;
  overflow-y: scroll;
  z-index: 99999;
  text-align: left;
  line-height: 100%;
  width: 100%;
}
.vaccination_box2 .vaccination_title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
}
.vaccination_box2 .vaccination_close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.6rem;
  color: #ffffff;
  background-color: #333333;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  line-height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (min-width: 768px), print {
  .vaccination_info {
    display: none !important;
  }
  .vaccination_info_pc {
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 9999999999;
  }
  .vaccination_box {
    opacity: 0;
    bottom: 35px;
    left: -20px;
    width: 400px;
    height: auto;
    background-color: #ffffff;
    padding: 15px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-sizing: border-box;
    position: absolute;
    border: #707070 1px solid;
    text-align: left;
    display: none;
  }
  .vaccination_box .vaccination_title {
    font-size: 2.2rem;
    margin: 0 0 1rem 0;
  }
  .vaccination_box .vaccination_close {
    display: none;
  }
  .vaccination_box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -19px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    border-width: 20px 20px 0 20px;
    z-index: 99999999999;
  }
  .vaccination_box::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #707070 transparent transparent transparent;
    border-width: 20px 20px 0 20px;
  }
  .ajs_large_left .vaccination_box {
    width: 600px;
    bottom: 42px;
  }
  .ajs_large_left .vaccination_box::after {
    content: "";
    position: absolute;
    right: auto;
    bottom: -19px;
    left: 200px;
    width: 0px;
    height: 0px;
    margin: 0;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    border-width: 20px 20px 0 20px;
    z-index: 99999999999;
  }
  .ajs_large_left .vaccination_box::before {
    content: "";
    position: absolute;
    right: auto;
    bottom: -20px;
    left: 200px;
    width: 0px;
    height: 0px;
    margin: 0;
    border-style: solid;
    border-color: #707070 transparent transparent transparent;
    border-width: 20px 20px 0 20px;
  }
  .tooltip_link_va {
    position: relative;
    display: block;
  }
  .tooltip_link_va:hover {
    color: #0E80CC;
  }
  .tooltip_link_va:hover .vaccination_box {
    display: block;
    text-decoration: none;
    opacity: 1;
    color: #333333;
    visibility: visible;
  }
  .tool_ajs {
    display: inline;
  }
  /*予防接種ポップアップこちらを採用*/
  .vaccination_box2 {
    background-color: #ffffff;
    padding: 16px 16px 16px 16px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    max-height: auto;
    overflow-y: visible;
    z-index: 99999;
    text-align: left;
    line-height: 100%;
    border: #333333 1px solid;
  }
  .vaccination_box2 p {
    margin: 0;
  }
  .vaccination_box2 .vaccination_title {
    font-size: 2.2rem;
    margin: 0 0 1rem 0;
  }
  .vaccination_box2 .vaccination_close {
    display: none;
  }
  .vaccination_box2::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border-width: 10px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    transform: translateX(-50%);
  }
  .vaccination_box2::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border-width: 12px;
    border-style: solid;
    border-color: #333333 transparent transparent transparent;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .vaccination_info_pc {
    display: block !important;
  }
  .vaccination_box .vaccination_close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #333333;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    line-height: 100%;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .vaccination_box .vaccination_close i {
    color: #ffffff;
  }
  .close_influenza_info {
    opacity: 0;
  }
  .close_influenza_info {
    display: none !important;
    opacity: 0;
    z-index: 0;
  }
  .close_influenza_info .vaccination_box {
    display: none;
    text-decoration: none;
    opacity: 0;
    color: #333333;
    visibility: hidden;
  }
  .open_pneumococcus_info {
    display: block;
  }
  .open_mr_info {
    display: block;
  }
  .open_chickenpox_info {
    display: block;
  }
  .tooltip_link_va {
    position: relative;
    display: block;
  }
  .tooltip_link_va:hover .vaccination_box {
    display: none;
  }
  /*予防接種ポップアップこちらを採用*/
  .vaccination_box2 {
    background-color: #ffffff;
    padding: 16px 16px 16px 16px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    max-height: auto;
    overflow-y: visible;
    z-index: 99999;
    text-align: left;
    line-height: 100%;
    border: #333333 1px solid;
  }
  .vaccination_box2 p {
    margin: 0;
  }
  .vaccination_box2 .vaccination_title {
    font-size: 2.2rem;
    margin: 0 0 1rem 0;
  }
  .vaccination_box2 .vaccination_close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #333333;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    line-height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    pointer-events: none;
  }
  .vaccination_box2 .vaccination_close i {
    color: #ffffff;
  }
  .vaccination_box2::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border-width: 10px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    transform: translateX(-50%);
  }
  .vaccination_box2::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border-width: 12px;
    border-style: solid;
    border-color: #333333 transparent transparent transparent;
    transform: translateX(-50%);
  }
}
/*疾患リスト*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　疾患
----------------------------------------------------------- */
.disease_content {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  height: 120%;
  background-color: rgba(16, 16, 16, 0.5);
}
.disease_content .disease_box {
  width: 100%;
  background-color: #ffffff;
  padding: 4rem 1rem 1rem 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-sizing: border-box;
  position: absolute;
  bottom: 13vw;
  z-index: 99999;
  text-align: left;
  line-height: 100%;
  max-height: 70%;
  overflow-y: scroll;
}
.disease_content .disease_box .disease_title {
  font-size: 2rem;
  margin: 0 0 1rem 0;
}
.disease_content .disease_box .disease_title span {
  font-size: 1rem;
  margin: 0 1rem 0 0;
}
.disease_content .disease_box .disease_close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.6rem;
  color: #ffffff;
  background-color: #333333;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  line-height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.disease_content {
  /*眼科*/
}
.disease_content.open_conjunctivitis_content {
  display: block;
}
.disease_content.open_eye_strain_content {
  display: block;
}
.disease_content.open_sty_content {
  display: block;
}
.disease_content.open_keratitis_content {
  display: block;
}
.disease_content.open_dry_eye_content {
  display: block;
}
.disease_content.open_cataract_content {
  display: block;
}
.disease_content.open_glaucoma_content {
  display: block;
}
.disease_content.open_age_related_content {
  display: block;
}
.disease_content.open_diabetic_retinopathy_content {
  display: block;
}
.disease_content.open_uveitis_content {
  display: block;
}
.disease_content.open_retinal_detachment_content {
  display: block;
}
.disease_content.open_ptosis_content {
  display: block;
}
.disease_content.open_central_retinitis_content {
  display: block;
}
.disease_content.open_floaters_content {
  display: block;
}
.disease_content.open_upside_down_eyelashes_content {
  display: block;
}
.disease_content {
  /*耳鼻咽喉科*/
}
.disease_content.open_acute_otitis_media_content {
  display: block;
}
.disease_content {
  /*滲出性中耳炎*/
}
.disease_content.open_otitis_media_with_effusion_content {
  display: block;
}
.disease_content {
  /*外耳炎*/
}
.disease_content.open_otitis_externa_content {
  display: block;
}
.disease_content {
  /*突発性難聴*/
}
.disease_content.open_sudden_deafness_content {
  display: block;
}
.disease_content {
  /*耳垢栓塞*/
}
.disease_content.open_earwax_blockage_content {
  display: block;
}
.disease_content {
  /*メニエール病*/
}
.disease_content.open_menieres_content {
  display: block;
}
.disease_content {
  /*急性副鼻腔炎*/
}
.disease_content.open_acute_sinusitis_content {
  display: block;
}
.disease_content {
  /*慢性副鼻腔炎*/
}
.disease_content.open_chronic_sinusitis_content {
  display: block;
}
.disease_content {
  /*アレルギー性鼻炎*/
}
.disease_content.open_allergic_rhinitis_content {
  display: block;
}
.disease_content {
  /*花粉症*/
}
.disease_content.open_hay_fever_content {
  display: block;
}
.disease_content {
  /*急性咽喉頭炎*/
}
.disease_content.open_acute_laryngopharyngitis_content {
  display: block;
}
.disease_content {
  /*扁桃炎*/
}
.disease_content.open_tonsillitis_content {
  display: block;
}
.disease_content {
  /*口内炎*/
}
.disease_content.open_stomatitis_content {
  display: block;
}
.disease_content {
  /*嚥下障害*/
}
.disease_content.open_dysphagia_content {
  display: block;
}
.disease_content {
  /*声帯ポリープ*/
}
.disease_content.open_vocal_cord_polyp_content {
  display: block;
}
.disease_content {
  /*口腔内乾燥*/
}
.disease_content.open_dry_mouth_content {
  display: block;
}
.disease_content {
  /*味覚障害*/
}
.disease_content.open_taste_disorder_content {
  display: block;
}
.disease_content {
  /*狭心症*/
}
.disease_content.open_angina_pectoris_content {
  display: block;
}
.disease_content {
  /*肺塞栓症*/
}
.disease_content.open_pulmonary_embolism_content {
  display: block;
}
.disease_content {
  /*大動脈瘤*/
}
.disease_content.open_aortic_aneurysm_content {
  display: block;
}
.disease_content {
  /*高血圧症*/
}
.disease_content.open_high_lood_pressure_content {
  display: block;
}
.disease_content {
  /*大動脈解離*/
}
.disease_content.open_aortic_dissection_content {
  display: block;
}
.disease_content {
  /*下肢静脈瘤*/
}
.disease_content.open_lower_extremity_varicose_veins_content {
  display: block;
}
.disease_content {
  /*心筋梗塞*/
}
.disease_content.open_myocardial_infarction_content {
  display: block;
}
.disease_content {
  /*不整脈*/
}
.disease_content.open_arrhythmia_content {
  display: block;
}
.disease_content {
  /*溶連菌感染症*/
}
.disease_content.open_streptococcal_infection_content {
  display: block;
}
.disease_content {
  /*アデノウイルス（プール熱・咽頭結膜熱）*/
}
.disease_content.open_adenovirus_content {
  display: block;
}
.disease_content {
  /*マイコプラズマ肺炎*/
}
.disease_content.open_mycoplasma_pneumonia_content {
  display: block;
}
.disease_content {
  /*胃腸炎（ロタウイルス、アデノウイルス、ノロウイルス）*/
}
.disease_content.open_gastroenteritis_content {
  display: block;
}
.disease_content {
  /*ヘルパンギーナと手足口病*/
}
.disease_content.open_herpangina_content {
  display: block;
}
.disease_content {
  /*RSウイルス*/
}
.disease_content.open_rs_virus_content {
  display: block;
}
.disease_content {
  /*みずぼうそう*/
}
.disease_content.open_possum_content {
  display: block;
}
.disease_content {
  /*おたふく風邪*/
}
.disease_content.open_mumps_content {
  display: block;
}
.disease_content {
  /*りんご病*/
}
.disease_content.open_apple_content {
  display: block;
}
.disease_content {
  /*インフルエンザ*/
}
.disease_content.open_influenza_content {
  display: block;
}
.disease_content {
  /*尿路感染症*/
}
.disease_content.open_urinary_tract_infection_content {
  display: block;
}
.disease_content {
  /*突発性発疹*/
}
.disease_content.open_exanthema_subitum_content {
  display: block;
}
.disease_content {
  /*夜尿症（おねしょ）*/
}
.disease_content.open_enuresis_content {
  display: block;
}
.disease_content {
  /*手足が痛い（成長痛）*/
}
.disease_content.open_sore_limbs_content {
  display: block;
}
.disease_content {
  /*熱中症*/
}
.disease_content.open_heatstroke_content {
  display: block;
}
.disease_content {
  /*中耳炎*/
}
.disease_content.open_otitis_media_content {
  display: block;
}
.disease_content {
  /*便秘*/
}
.disease_content.open_constipation_content {
  display: block;
}
.disease_content {
  /*頭痛*/
}
.disease_content.open_headache_content {
  display: block;
}
.disease_content {
  /*いびき・のど・口の中が痛い*/
}
.disease_content.open_snoring_content {
  display: block;
}
.disease_content {
  /*胸が痛い（胸痛）*/
}
.disease_content.open_chest_pain_content {
  display: block;
}
.disease_content {
  /*熱性痙攣*/
}
.disease_content.open_febrile_convulsions_content {
  display: block;
}
.disease_content {
  /*クループ*/
}
.disease_content.open_croup_content {
  display: block;
}
.disease_content {
  /*胃炎*/
}
.disease_content.open_gastritis_content {
  display: block;
}
.disease_content {
  /*胃潰瘍*/
}
.disease_content.open_gastric_ulcer_content {
  display: block;
}
.disease_content {
  /*十二指腸潰瘍*/
}
.disease_content.open_duodenal_ulcer_content {
  display: block;
}
.disease_content {
  /*逆流性食道炎*/
}
.disease_content.open_reflux_esophagitis_content {
  display: block;
}
.disease_content {
  /*食道裂孔ヘルニア*/
}
.disease_content.open_hiatus_hernia_content {
  display: block;
}
.disease_content {
  /*胃ポリープ*/
}
.disease_content.open_stomach_polyps_content {
  display: block;
}
.disease_content {
  /*十二指腸ポリープ*/
}
.disease_content.open_duodenal_polyp_content {
  display: block;
}
.disease_content {
  /*胃がん*/
}
.disease_content.open_stomach_cancer_content {
  display: block;
}
.disease_content {
  /*食道がん*/
}
.disease_content.open_esophageal_cancer_content {
  display: block;
}
.disease_content {
  /*十二指腸がん*/
}
.disease_content.open_duodenal_cancer_content {
  display: block;
}
.disease_content {
  /*ピロリ菌感染*/
}
.disease_content.open_pylori_infection_content {
  display: block;
}
.disease_content {
  /*過敏性腸症候群*/
}
.disease_content.open_irritable_bowel_syndrome_content {
  display: block;
}
.disease_content {
  /*大腸ポリープ*/
}
.disease_content.open_colon_polyps_content {
  display: block;
}
.disease_content {
  /*大腸がん*/
}
.disease_content.open_colorectal_cancer_content {
  display: block;
}
.disease_content {
  /*潰瘍性大腸炎*/
}
.disease_content.open_ulcerative_colitis_content {
  display: block;
}
.disease_content {
  /*湿疹*/
}
.disease_content.open_eczema_content {
  display: block;
}
.disease_content {
  /*薬疹*/
}
.disease_content.open_drug_eruption_content {
  display: block;
}
.disease_content {
  /*蕁麻疹*/
}
.disease_content.open_hives_content {
  display: block;
}
.disease_content {
  /*脂漏性皮膚炎*/
}
.disease_content.open_seborrheic_dermatitis_content {
  display: block;
}
.disease_content {
  /*アトピー性皮膚炎*/
}
.disease_content.open_atopic_dermatitis_content {
  display: block;
}
.disease_content {
  /*接触性皮膚炎*/
}
.disease_content.open_contact_dermatitis_content {
  display: block;
}
.disease_content {
  /*伝染性膿痂疹(とびひ)*/
}
.disease_content.open_contagious_impetigo_content {
  display: block;
}
.disease_content {
  /*伝染性軟属腫(水いぼ)*/
}
.disease_content.open_molluscum_contagiosum_content {
  display: block;
}
.disease_content {
  /*尋常性ざそう(にきび)*/
}
.disease_content.open_acne_vulgaris_content {
  display: block;
}
.disease_content {
  /*白癬(みずむし)*/
}
.disease_content.open_ringworm_content {
  display: block;
}
.disease_content {
  /*陥入爪(まき爪)*/
}
.disease_content.open_ingrown_toenail_content {
  display: block;
}
.disease_content {
  /*熱傷（やけど）*/
}
.disease_content.open_burns_content {
  display: block;
}
.disease_content {
  /*外傷*/
}
.disease_content.open_trauma_content {
  display: block;
}
.disease_content {
  /*鶏目・胼胝 (たこ・魚の目)*/
}
.disease_content.open_chicken_eyes_calluses_content {
  display: block;
}
.disease_content {
  /*口唇ヘルペス*/
}
.disease_content.open_herpes_labialis_content {
  display: block;
}
.disease_content {
  /*帯状疱疹*/
}
.disease_content.open_herpes_zoster_content {
  display: block;
}

@media screen and (min-width: 768px), print {
  .disease_content {
    display: none !important;
  }
}
/*ポップアップ*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　予防接種ポップアップこちらを採用
----------------------------------------------------------- */
.popup {
  opacity: 0;
  height: 0;
  display: none;
}

@media screen and (min-width: 768px), print {
  .container {
    position: relative;
    /*display: inline-block;*/
    margin: 0;
  }
  .container .popup {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: visibility 0s, opacity 0.5s ease;
    z-index: 99999999999;
    width: 700px;
  }
  .container .popup_ajs {
    left: 90% !important;
  }
  .container .popup_ajs .vaccination_box2::after {
    left: 45%;
  }
  .container .popup_ajs .vaccination_box2::before {
    left: 45%;
  }
  .container .popup_ajs2 {
    left: 288% !important;
  }
  .container .popup_ajs2 .vaccination_box2::after {
    left: 23%;
  }
  .container .popup_ajs2 .vaccination_box2::before {
    left: 23%;
  }
  .container .popup_ajs3 {
    left: 90% !important;
  }
  .container .popup_ajs3 .vaccination_box2::after {
    left: 25%;
  }
  .container .popup_ajs3 .vaccination_box2::before {
    left: 25%;
  }
  .container .popup_ajs4 {
    opacity: 1;
  }
  .container .popup_ajs4 .vaccination_box2::after {
    left: 29%;
  }
  .container .popup_ajs4 .vaccination_box2::before {
    left: 29%;
  }
  .container .popup_ajs5 {
    left: 187% !important;
  }
  .container .popup_ajs5 .vaccination_box2::after {
    left: 40%;
  }
  .container .popup_ajs5 .vaccination_box2::before {
    left: 40%;
  }
  .container .popup_ajs6 {
    left: 330% !important;
  }
  .container .popup_ajs6 .vaccination_box2::after {
    left: 18%;
  }
  .container .popup_ajs6 .vaccination_box2::before {
    left: 18%;
  }
  .container .popup_ajs7 {
    left: 330% !important;
  }
  .container .popup_ajs7 .vaccination_box2::after {
    left: 31%;
  }
  .container .popup_ajs7 .vaccination_box2::before {
    left: 31%;
  }
  .container .popup_ajs8 {
    left: 330% !important;
  }
  .container .popup_ajs8 .vaccination_box2::after {
    left: 31%;
  }
  .container .popup_ajs8 .vaccination_box2::before {
    left: 31%;
  }
  .container:hover .popup {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.5s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .container {
    position: relative;
    /*display: inline-block;*/
    margin: 0;
  }
  .container .popup {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: visibility 0s, opacity 0.5s ease;
    z-index: 99999999999;
    width: 700px;
  }
  .container .tabclick {
    visibility: visible !important;
    opacity: 1 !important;
  }
  .container:hover .popup {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
  }
}
/*美容*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/*〇この効果*/
ul.list_effect {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_effect li {
  color: #379EE2;
  background-color: #F7F7F7;
  font-family: "zenmarugothic_medium";
  font-weight: normal;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 120%;
}

/*こんな方にオススメ*/
.recommended_box figure img {
  width: 100%;
  height: auto;
  margin: 0 0 1rem 0;
}
.recommended_box ul {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
.recommended_box ul li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
  position: relative;
}
.recommended_box ul li::before {
  border: none;
  font-family: "fontello";
  content: "\e808";
  color: #FB93A8;
  position: absolute;
  top: 0.2rem;
  left: 0;
}

/*施術*/
.flow_box_beauty {
  border-top: #0E80CC 1px solid;
  padding: 2rem 0 0 0;
  box-sizing: border-box;
}
.flow_box_beauty .flow_box_left {
  width: 100%;
  background-color: #0E80CC;
  color: #ffffff;
  padding: 1rem 0;
  box-sizing: border-box;
  text-align: center;
  margin: 0 0 1rem 0;
}
.flow_box_beauty .flow_box_left p {
  margin: 0 0 1rem 0;
}
.flow_box_beauty .flow_box_left img {
  width: 21%;
  max-width: 111px;
  margin: 0 0 0 0;
}
.flow_box_beauty .flow_box_right p {
  margin: 0 0 1rem 0;
}
.flow_box_beauty.fbb_last {
  border-bottom: #0E80CC 1px solid;
}

@media screen and (min-width: 768px), print {
  /*〇この効果*/
  ul.list_effect {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    width: 840px;
    margin: 0 auto 20px auto;
    font-size: 2rem;
  }
  ul.list_effect li {
    color: #379EE2;
    background-color: #F7F7F7;
    font-family: "zenmarugothic_medium";
    font-weight: normal;
    text-align: center;
    padding: 17px;
    box-sizing: border-box;
    margin: 0 0 10px 0;
    line-height: 120%;
  }
  /*こんな方にオススメ*/
  .recommended_box {
    width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .recommended_box figure {
    width: 550px;
  }
  .recommended_box figure img {
    width: 550px;
    height: auto;
    margin: 0 0 0 0;
  }
  .recommended_box ul {
    width: 600px;
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 2rem;
    margin: 0 0 14px 0;
  }
  .recommended_box ul li {
    margin: 0 0 14px 0;
    padding: 0 0 0 36px;
    position: relative;
  }
  .recommended_box ul li::before {
    border: none;
    font-family: "fontello";
    content: "\e808";
    color: #FB93A8;
    position: absolute;
    top: 0.2rem;
    left: 0;
    font-size: 2.4rem;
  }
  .flow_box_beauty {
    border-top: #0E80CC 1px solid;
    padding: 20px 0 20px 0;
    box-sizing: border-box;
    width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 0;
  }
  .flow_box_beauty .flow_box_left {
    background-color: #0E80CC;
    color: #ffffff;
    width: 256px;
    padding: 34px 0 30px 0;
    box-sizing: border-box;
    text-align: center;
    margin: 0 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .flow_box_beauty .flow_box_left p {
    margin: 0 0 1rem 0;
    font-size: 2rem;
  }
  .flow_box_beauty .flow_box_left img {
    width: 111px;
    max-width: 111px;
    margin: 0 0 0 0;
  }
  .flow_box_beauty .flow_box_right {
    width: 900px;
  }
  .flow_box_beauty .flow_box_right p {
    margin: 0 0 1rem 0;
  }
  .flow_box_beauty.fbb_last {
    border-bottom: #0E80CC 1px solid;
  }
}
/* -----------------------------------------------------------
 フォントサイズ基本
----------------------------------------------------------- */
html {
  font-size: 3.125vw;
  overflow-y: auto;
  font-family: "zenmarugothic_medium", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  padding: 0 0 13vw 0;
}

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

.mt10 {
  margin-top: 10px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

/* -----------------------------------------------------------
 構成
----------------------------------------------------------- */
body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
}

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

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

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.pc_none_span {
  display: inline;
}

.sp_none_span {
  display: none;
}

.text_bold {
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  body {
    position: relative;
    z-index: 0;
    overflow: hidden;
    min-width: 1280px;
    -webkit-text-size-adjust: 100%;
  }
  body.notice_body {
    min-width: 100%;
  }
  section {
    height: auto;
    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: 3rem auto 3rem auto;
  padding: 0;
}

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

.main {
  width: 96%;
  margin: 0 auto 3rem auto;
  padding: 0 0 0 0;
}

@media screen and (min-width: 768px), print {
  .wrapper {
    height: auto;
    width: 100%;
    margin: 50px auto 100px auto;
    padding: 0;
  }
  .wrapper_low {
    height: auto;
    width: 1200px;
    margin: 26px auto 80px auto;
    padding: 0;
  }
  .main {
    width: 950px;
    margin: 0 0 140px 0;
    padding: 0;
  }
}
/* -----------------------------------------------------------
　ヘッダ
----------------------------------------------------------- */
header .header_box_sp {
  width: 100%;
  height: 18vw;
  transition: 0.5s;
  position: relative;
  z-index: 999;
  margin: 2vw 0 0 0;
}
header .header_box_sp .head_logo {
  width: 100%;
  position: relative;
  z-index: 0;
  margin: 0 0 0.1em 0;
}
header .header_box_sp .head_logo a {
  width: 100%;
  display: block;
  text-align: center;
}
header .header_box_sp .head_logo a img {
  width: 70%;
}
header .header_box_sp .head_logo .head_sns_link_sp {
  width: 36%;
  height: 13vw;
  margin: 0.5rem auto 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
header .header_box_sp .head_logo .head_sns_link_sp a {
  width: 35%;
  height: 13vw;
  font-size: 3rem;
  line-height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 1rem;
}
header .header_box_sp .head_logo .head_sns_link_sp a.header_line img {
  width: 100%;
}
header .header_box_sp .head_logo .head_sns_link_sp a.header_instagram img {
  width: 100%;
}
header .header_box_sp .head_logo .head_sns_link_sp a.header_instagram {
  /*
              ackground: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
              background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
              position: relative;
              overflow: hidden;
              border-radius: 1rem;                
              &::before{
                content: '';
                position: absolute;
                top: 23px;
                left: -18px;
                width: 60px;
                height: 60px;
                background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
                background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
                z-index: 1;
              }
              i{
                color: $color_white;
                position: relative;
                z-index: 2;
              }
              */
}
header .header_box_sp .head_logo .head_sns_link_sp a:hover {
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}
header .header_box_sp .header_tel {
  font-family: "zenmarugothic_medium";
  font-size: 2rem;
  font-weight: normal;
  color: #005994;
  margin: 0 0 0.4rem 0;
  display: block;
  text-align: center;
}
header .header_box_sp .header_tel a {
  color: #005994;
  text-decoration: none;
}
header .header_box_sp .head_logo_off h1 a img {
  visibility: hidden;
}
header .header_box_sp .head_logo_off .head_sns_link_sp {
  display: none;
  visibility: hidden;
}
header .header_box_sp .header_tel_off {
  visibility: hidden;
}
header .header_box_sp ul.main_nav_sp {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  background-color: #0E80CC;
  border-bottom: #ffffff 1px solid;
  box-sizing: border-box;
}
header .header_box_sp ul.main_nav_sp li {
  width: 25%;
  position: relative;
}
header .header_box_sp ul.main_nav_sp li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
  width: 100%;
  height: 16vw;
  color: #ffffff;
  text-align: center;
}
header .header_box_sp ul.main_nav_sp li a i {
  font-size: 2rem;
}
header .header_box_sp ul.main_nav_sp li a i.icon-chat {
  font-size: 1.6rem;
  margin: -2vw 0 0 0;
}
header .header_box_sp ul.main_nav_sp li a span {
  font-size: 1rem;
  display: block;
}
header .header_box_sp ul.main_nav_sp li a.hbg_btn::before {
  font-family: "fontello";
  content: "\e802";
  font-size: 2.2rem;
}
header .header_box_sp ul.main_nav_sp li a.hbg_btn:hover {
  cursor: pointer;
}
header .header_box_sp ul.main_nav_sp li a.hbg_btn span {
  font-size: 1.2rem;
}
header .header_box_sp ul.main_nav_sp li a.open_drawr::before {
  font-family: "fontello";
  content: "\e806";
  font-size: 2.2rem;
}
header .header_box_sp ul.main_nav_sp li::after {
  content: "";
  width: 1px;
  height: 100%;
  border-right: #ffffff 1px solid;
  position: absolute;
  top: 0;
  right: 0;
}
header .header_box_sp ul.main_nav_sp li {
  /*
          &.time{
            width: 19%
          }
          &.doctor{
            width: 19%
          }
          &.chat{
            width: 24%;
          }
          &.access{
            width: 19%
          }
          &.hbg{
            width: 19%;
          }        
          */
}
header .header_box_sp ul.main_nav_sp li:last-child::after {
  width: 0;
  height: 0;
}
header .header_box_sp .nav_add_sp {
  position: fixed;
  top: 0;
  z-index: 9999999999;
}
header .header_box_sp_top {
  position: fixed;
  top: 2vw !important;
  z-index: 999999999999;
}
header .header_box_sp_top ul.main_nav_sp {
  position: relative;
  z-index: 999999999999;
  top: -35vw;
  border-bottom: #ffffff 1px solid;
  box-sizing: border-box;
}
header {
  /*ヘッダーPC*/
}
header .header_frame {
  position: relative;
  height: 80vw;
  margin: 19vw 0 0 0;
  padding: 0 0 0 0;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
header .header_frame .header_left {
  order: 2;
  width: 100%;
  height: 80vw;
  padding: 0 0 0 0;
  box-sizing: border-box;
}
header .header_frame .header_left .key_visual {
  position: relative;
  width: 100%;
  height: 80vw;
  overflow: hidden;
}
header .header_frame .header_left .key_visual .key {
  position: relative;
  /*top:0;*/
  top: 14vw;
  left: 0;
  z-index: 1;
  /*大枠*/
}
header .header_frame .header_left .key_visual .key .key_bg {
  width: 100%;
  height: 80vw;
}
header .header_frame .header_left .key_visual .key .key_01 {
  background: url("../img/key_visual_01.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
header .header_frame .header_left .key_visual .key .key_02 {
  background: url("../img/key_visual_02.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
header .header_frame .header_left .key_visual .key .key_03 {
  background: url("../img/key_visual_03.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
header .header_frame .header_left .key_visual .key .key_04 {
  background: url("../img/key_visual_04.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
header .header_frame .header_left .key_visual .key_contents {
  position: absolute;
  bottom: 2vw;
  left: 0;
  z-index: 1;
  width: 100%;
}
header .header_frame .header_left .key_visual .key_contents .key_text {
  background-color: #C3E4FB;
  padding: 1rem 0.5rem;
  text-align: right;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
header .header_frame .header_left .key_visual .key_contents .key_text span {
  color: #0E80CC;
  font-size: 1.4rem;
  text-align: left;
  display: block;
  padding: 0 0 0 10%;
  box-sizing: border-box;
}
header .header_frame .header_right {
  display: none;
  /*
        order: 1;
        width: 100%;
        height: 70vw;
        background-color: $color_white;
        position: relative;
        .header_right_box{
          .head_logo{
            h1{
              width: 75%;
              margin: 2vw 0 0 2%;
              a{
                width: 100%;
                text-decoration: none;
                img{
                  width: 100%;
                }
              }
            }
          }
          .header_tel{
            width: 70%;
            height: 14vw;
            background-color: $color1;
            margin: 1rem auto 0 auto;
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-align-items: center;
            align-items: center;      
            -webkit-flex-direction:row;
            flex-direction:row;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
            text-decoration: none;
            color: $color_white;
            i{
              font-size: 2.8rem;
              margin: 0 0.5rem 0 0;
            }
            .tel_box{
              .tel_text{
                display: block;
                font-size: 1rem;
              }
              .tel{
                display: block;
                font-size: 2rem;
                a{
                  text-decoration: none;
                  color: $color_white;
                }
              }
            }
          }
          .header_root{
            width: 70%;
            height: 14vw;
            background-color: $color1;
            margin: 1rem auto 0 auto;
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-align-items: center;
            align-items: center;      
            -webkit-flex-direction:row;
            flex-direction:row;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
            text-decoration: none;
            color: $color_white;
            font-size: 1.4rem;
            i{
              font-size: 2.2rem;
              margin: 0 0.3rem 0 0;
            }
          }    
          .key_notice_frame{
            display: none;
          }
        }
        */
}
header .key_notice_frame2_sp {
  width: 96%;
  height: auto;
  margin: 2rem auto 0 auto;
}
header .key_notice_frame2_sp .key_notice_title2_sp {
  width: 100%;
  height: auto;
  font-size: 1.8rem;
  color: #0E80CC;
  background-color: #C3E4FB;
  text-align: center;
  line-height: 120%;
  margin: 0;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
}
header .key_notice_frame2_sp .key_notice_box2_sp {
  background-color: #EEF8FF;
  margin: 0;
  width: 100%;
  height: auto;
  padding: 1rem;
  box-sizing: border-box;
}
header .key_notice_frame2_sp .key_notice_box2_sp a {
  color: #0E80CC;
  text-decoration: underline;
}
header .key_notice_frame_sp {
  width: 96%;
  height: auto;
  margin: 2rem auto 0 auto;
}
header .key_notice_frame_sp .key_notice_title_sp {
  width: 100%;
  height: 14vw;
  font-size: 1.8rem;
  color: #0E80CC;
  background-color: #C3E4FB;
  text-align: center;
  line-height: 100%;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
}
header .key_notice_frame_sp .key_notice_box_sp {
  background-color: #EEF8FF;
  margin: 0;
  width: 100%;
  height: auto;
}
header .key_notice_frame_sp .key_notice_box_sp dl {
  width: 100%;
  height: 60vw;
  padding: 1rem;
  box-sizing: border-box;
  overflow-wrap: break-word;
  overflow: hidden;
  overflow-y: scroll;
}
header .key_notice_frame_sp .key_notice_box_sp dl dt {
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  line-height: 150%;
  box-sizing: border-box;
}
header .key_notice_frame_sp .key_notice_box_sp dl dt .date {
  color: #FB93A8;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
header .key_notice_frame_sp .key_notice_box_sp dl dt .title {
  display: none;
}
header .key_notice_frame_sp .key_notice_box_sp dl dd {
  width: 100%;
  height: auto;
  font-size: 1.4rem;
  color: #333333;
  line-height: 150%;
  padding: 0 0 1rem 0;
  box-sizing: border-box;
}
header .key_notice_frame_sp .key_notice_box_sp dl dd .title {
  font-weight: bold;
  color: #0E80CC;
}
header .key_notice_frame_sp .key_notice_box_sp dl dd p {
  font-size: 1.4rem;
  color: #333333;
}
header .key_notice_frame_sp .key_notice_box_sp dl dd p a {
  font-size: 1.4rem;
  color: #333333;
}
header {
  /*下層ヘッダー*/
}
header .header_box_low {
  display: none;
}

.side_web_link {
  display: none;
}

/*お知らせ一覧のみヘッダー固定解除*/
.news_page header .header_box_sp .nav_add_sp {
  position: static !important;
}

@media screen and (min-width: 768px) {
  header .header_box_sp {
    display: none;
  }
  header .header_frame {
    position: relative;
    width: 100%;
    height: 800px;
    margin: 0 auto;
    padding: 0 0 0 0;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    overflow: hidden;
  }
  header .header_frame .header_left {
    order: 1;
    width: 50%;
    max-width: 1000px;
    height: 800px;
  }
  header .header_frame .header_left .key_visual {
    position: relative;
    width: 100%;
    height: 800px;
  }
  header .header_frame .header_left .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    /*大枠*/
  }
  header .header_frame .header_left .key_visual .key .key_bg {
    width: 100%;
    height: 800px;
  }
  header .header_frame .header_left .key_visual .key .key_01 {
    background: url("../img/key_visual_01.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  header .header_frame .header_left .key_visual .key .key_02 {
    background: url("../img/key_visual_02.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  header .header_frame .header_left .key_visual .key .key_03 {
    background: url("../img/key_visual_03.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  header .header_frame .header_left .key_visual .key .key_04 {
    background: url("../img/key_visual_04.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  header .header_frame .header_left .key_visual .key_contents {
    position: absolute;
    bottom: 70px;
    left: 0;
    z-index: 1;
    width: 100%;
  }
  header .header_frame .header_left .key_visual .key_contents .key_text {
    background-color: #C3E4FB;
    padding: 0;
    text-align: right;
    line-height: 100%;
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    /*
                display: -webkit-flex;
                display: flex;
                -webkit-justify-content: center;
                justify-content: center;       
                -webkit-align-items: flex-end;
                align-items: flex-end;            
                -webkit-flex-direction:column;
                flex-direction:column; 
                */
    /*border: $color14 1px solid;*/
  }
  header .header_frame .header_left .key_visual .key_contents .key_text span {
    position: absolute;
    top: 30px;
    right: 42px;
    color: #0E80CC;
    font-size: 2.6rem;
    text-align: left;
    display: inline;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 140%;
  }
  header .header_frame .header_right {
    display: block;
    order: 2;
    width: 50%;
    max-width: 1000px;
    height: 800px;
    background-color: #ffffff;
    position: relative;
  }
  header .header_frame .header_right .header_right_box {
    width: 600px;
    height: 800px;
    position: relative;
  }
  header .header_frame .header_right .header_right_box .head_logo h1 {
    width: 408px;
    margin: 20px auto 0 auto;
  }
  header .header_frame .header_right .header_right_box .head_logo h1 a {
    width: 100%;
    text-decoration: none;
  }
  header .header_frame .header_right .header_right_box .head_logo h1 a img {
    width: 100%;
  }
  header .header_frame .header_right .header_right_box .head_logo .head_sns_link {
    width: 140px;
    height: 50px;
    margin: 20px auto 15px auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header .header_frame .header_right .header_right_box .head_logo .head_sns_link a {
    width: 50px;
    height: 50px;
    font-size: 4rem;
    line-height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 13px;
  }
  header .header_frame .header_right .header_right_box .head_logo .head_sns_link a.header_line img {
    width: 100%;
  }
  header .header_frame .header_right .header_right_box .head_logo .head_sns_link a.header_instagram img {
    width: 100%;
  }
  header .header_frame .header_right .header_right_box .head_logo .head_sns_link a.header_instagram {
    /*
                    ackground: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
                    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
                    position: relative;
                    overflow: hidden;
                    border-radius: 13px;              
                    &::before{
                      content: '';
                      position: absolute;
                      top: 23px;
                      left: -18px;
                      width: 60px;
                      height: 60px;
                      background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
                      background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
                      z-index: 1;
                    }
                    i{
                      color: $color_white;
                      position: relative;
                      z-index: 2;
                    }
                    */
  }
  header .header_frame .header_right .header_right_box .head_logo .head_sns_link a:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  header .header_frame .header_right .header_right_box .header_tel {
    width: 320px;
    height: 90px;
    background-color: #005994;
    margin: 32px auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-decoration: none;
    color: #ffffff;
    pointer-events: none;
  }
  header .header_frame .header_right .header_right_box .header_tel i {
    font-size: 4.2rem;
    margin: 0 12px 0 0;
  }
  header .header_frame .header_right .header_right_box .header_tel .tel_box .tel_text {
    display: block;
    font-size: 1.4rem;
  }
  header .header_frame .header_right .header_right_box .header_tel .tel_box .tel {
    display: block;
    font-size: 3.2rem;
    margin-bottom: 0.35rem;
  }
  header .header_frame .header_right .header_right_box .header_tel .tel_box .tel a {
    text-decoration: none;
    color: #ffffff;
  }
  header .header_frame .header_right .header_right_box .header_root {
    width: 320px;
    height: 70px;
    background-color: #005994;
    margin: 16px auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
  }
  header .header_frame .header_right .header_right_box .header_root i {
    font-size: 4.4rem;
    margin: 0 0.3rem 0 0;
  }
  header .header_frame .header_right .header_right_box .header_root:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame2 {
    display: block;
    width: 520px;
    height: 123px;
    margin: 36px auto 0 auto;
    background-color: #EEF8FF;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame2 .key_notice_title2 {
    width: 100%;
    height: 43px;
    font-size: 2rem;
    color: #0E80CC;
    background-color: #C3E4FB;
    text-align: center;
    line-height: 100%;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame2 .key_notice_box2 {
    background-color: #EEF8FF;
    margin: 0;
    width: 510px;
    height: 80px;
    padding: 20px;
    box-sizing: border-box;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame2 .key_notice_box2 a {
    color: #0E80CC;
    text-decoration: underline;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame2 .key_notice_box2 a:hover {
    color: #FB93A8;
    transition: all 0.3s ease 0s;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame {
    display: block;
    width: 520px;
    height: 264px;
    margin: 36px auto 0 auto;
    background-color: #EEF8FF;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame .key_notice_title {
    width: 100%;
    height: 43px;
    font-size: 2rem;
    color: #0E80CC;
    background-color: #C3E4FB;
    text-align: center;
    line-height: 100%;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame .key_notice_box {
    background-color: #EEF8FF;
    margin: 0;
    width: 510px;
    height: 160px;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame .key_notice_box dl {
    width: 520px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow-y: scroll;
    height: 160px;
    padding: 10px 0 0 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame .key_notice_box dl dt {
    width: 116px;
    height: auto;
    min-height: auto;
    padding: 20px 0 10px 10px;
    line-height: 150%;
    box-sizing: border-box;
    /*border-bottom: $color15 1px dashed;*/
  }
  header .header_frame .header_right .header_right_box .key_notice_frame .key_notice_box dl dt .date {
    color: #FB93A8;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame .key_notice_box dl dt .title {
    display: none;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame .key_notice_box dl dd {
    width: 377px;
    height: auto;
    font-size: 1.6rem;
    color: #333333;
    line-height: 150%;
    padding: 14px 10px 10px 0;
    box-sizing: border-box;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame .key_notice_box dl dd .title {
    font-weight: bold;
    color: #0E80CC;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame .key_notice_box dl dd p {
    margin: 0 0 10px 0;
    color: #333333;
  }
  header .header_frame .header_right .header_right_box .key_notice_frame .key_notice_box dl dd p a {
    color: #333333;
  }
  header .key_notice_frame_sp {
    display: none;
  }
  header .key_notice_frame2_sp {
    display: none;
  }
  header {
    /*下層ヘッダー*/
  }
  header .header_box_low {
    display: block;
    width: 100%;
    height: 150px;
  }
  header .header_box_low .header_box_low_in {
    width: 1200px;
    margin: 0 auto;
    height: 150px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header .header_box_low .header_box_low_in .head_logo a {
    text-decoration: none;
    display: block;
    margin: 10px 0 0 0;
  }
  header .header_box_low .header_box_low_in .head_logo a img {
    width: 408px;
  }
  header .header_box_low .header_box_low_in .header_info {
    width: 680px;
    height: 90px;
    margin: 40px 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header .header_box_low .header_box_low_in .header_info .header_tel {
    width: 320px;
    height: 90px;
    background-color: #005994;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-decoration: none;
    color: #ffffff;
    pointer-events: none;
  }
  header .header_box_low .header_box_low_in .header_info .header_tel i {
    font-size: 4.2rem;
    margin: 0 12px 0 0;
  }
  header .header_box_low .header_box_low_in .header_info .header_tel .tel_box .tel_text {
    display: block;
    font-size: 1.4rem;
  }
  header .header_box_low .header_box_low_in .header_info .header_tel .tel_box .tel {
    display: block;
    font-size: 3.2rem;
    margin-bottom: 0.35rem;
  }
  header .header_box_low .header_box_low_in .header_info .header_tel .tel_box .tel a {
    text-decoration: none;
    color: #ffffff;
  }
  header .header_box_low .header_box_low_in .header_info .header_root {
    width: 320px;
    height: 90px;
    background-color: #005994;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
  }
  header .header_box_low .header_box_low_in .header_info .header_root i {
    font-size: 4.4rem;
    margin: 0 0.3rem 0 0;
  }
  header .header_box_low .header_box_low_in .header_info .header_root:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  ul.side_web_link {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999999999;
    list-style-type: none;
  }
  ul.side_web_link li {
    margin: 0 0 10px;
  }
  ul.side_web_link li a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    width: 50px;
    height: 140px;
    text-decoration: none;
    font-family: "zenmarugothic_medium";
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    background-color: #0E80CC;
    padding: 13px 0;
    box-sizing: border-box;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  ul.side_web_link li a i {
    font-size: 2.4rem;
    margin: 0 0 5px 0;
  }
  ul.side_web_link li a span {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
  }
  ul.side_web_link li a.side_web_link3 {
    height: 230px;
    background-color: #FB93A8;
    padding: 0 0 14px 0;
  }
  ul.side_web_link li a.side_web_link3 i {
    font-size: 2.8rem;
    margin: 0 0 5px 0;
  }
  ul.side_web_link li a.side_web_link4 {
    height: 230px;
  }
  ul.side_web_link li a:hover {
    transition: all 0.3s ease 0s;
  }
  ul.side_web_link li a:hover.side_web_link1 {
    background-color: #75BCEC;
  }
  ul.side_web_link li a:hover.side_web_link2 {
    background-color: #75BCEC;
  }
  ul.side_web_link li a:hover.side_web_link3 {
    background-color: #FCC3CE;
  }
  ul.side_web_link li a:hover.side_web_link4 {
    background-color: #75BCEC;
  }
  /*お知らせ一覧のみヘッダー固定解除*/
  .news_page header .header_box_sp .nav_add_sp {
    position: static !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  header .header_frame .header_left .key_visual .key_contents {
    position: absolute;
    bottom: 70px;
    left: 0;
    z-index: 1;
    width: 100%;
  }
  header .header_frame .header_left .key_visual .key_contents .key_text {
    background-color: #C3E4FB;
    padding: 0;
    text-align: right;
    line-height: 100%;
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    /*            
                display: -webkit-flex;
                display: flex;
                -webkit-justify-content: center;
                justify-content: center;       
                -webkit-align-items: flex-end;
                align-items: flex-end;            
                -webkit-flex-direction:column;
                flex-direction:column; 
                */
    /*border: $color14 1px solid;*/
  }
  header .header_frame .header_left .key_visual .key_contents .key_text span {
    position: absolute;
    top: 30px;
    right: 42px;
    color: #0E80CC;
    font-size: 2.6rem;
    text-align: left;
    display: inline;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 140%;
  }
}
/* -----------------------------------------------------------
　下層キービジュアル
----------------------------------------------------------- */
.key_visual_low {
  background-color: #0E80CC;
  width: 100%;
  height: 24vw;
  margin: 18vw 0 0 0;
  border-top: #ffffff 1px solid;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
}
.key_visual_low h1 {
  color: #ffffff;
  font-family: "zenmarugothic_regular";
  font-size: 2.2rem;
  font-weight: normal;
}
.key_visual_low.warm_color {
  background-color: #ff99bb;
}

@media screen and (min-width: 768px), print {
  .key_visual_low {
    background-color: #0E80CC;
    width: 100%;
    height: 120px;
    margin: 0 0 0 0;
    border-top: #ffffff 1px solid;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0;
    text-align: center;
  }
  .key_visual_low h1 {
    color: #ffffff;
    font-family: "zenmarugothic_regular";
    font-size: 3.6rem;
    font-weight: normal;
  }
  .key_visual_low.warm_color {
    background-color: #ff99bb;
  }
}
/* -----------------------------------------------------------
　メインナビ
----------------------------------------------------------- */
.main_nav_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  .main_nav_pc {
    display: block;
    height: 190px;
    margin: 0 0 0 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    max-width: 2000px;
    position: relative;
    background-color: #ffffff;
  }
  .main_nav_pc .header_add {
    display: none;
  }
  .main_nav_pc nav {
    width: 100%;
    height: 190px;
    margin: 0 auto;
    padding: 0 0 0 0;
    background-color: #ffffff;
  }
  .main_nav_pc nav ul {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    align-items: center;
    width: 1200px;
    box-sizing: border-box;
    height: 190px;
    padding: 0;
    position: relative;
    margin: 0 auto;
  }
  .main_nav_pc nav ul li {
    display: block;
    text-align: center;
    box-sizing: border-box;
    height: 190px;
    width: 240px;
    line-height: 120%;
    text-align: center;
    font-weight: normal;
    position: relative;
  }
  .main_nav_pc nav ul li::after {
    content: "";
    width: 1px;
    height: 100px;
    border-left: #0E80CC 1px dashed;
    position: absolute;
    top: 45px;
    left: 0;
  }
  .main_nav_pc nav ul li a {
    text-decoration: none;
    color: #0E80CC;
    height: 190px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 0 0 0 0;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.05em;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .main_nav_pc nav ul li a span {
    font-family: "zenmarugothic_medium";
    font-size: 1.7rem;
    font-weight: normal;
    line-height: 120%;
    position: absolute;
    bottom: 35px;
    display: block;
    height: 38px;
  }
  .main_nav_pc nav ul li a::after {
    font-family: "fontello";
    content: " \e80c";
    font-size: 2rem;
    color: #0E80CC;
    position: absolute;
    bottom: 20px;
  }
  .main_nav_pc nav ul li a:hover {
    background-color: #0E80CC;
    color: #ffffff;
  }
  .main_nav_pc nav ul li a:hover::after {
    color: #ffffff;
  }
  .main_nav_pc nav ul li.gn_visit a::before {
    content: url("../img/icon_01.svg");
    width: 60px;
    position: absolute;
    top: 31px;
  }
  .main_nav_pc nav ul li.gn_visit a:hover::before {
    content: url("../img/icon_01_hover.svg");
  }
  .main_nav_pc nav ul li.gn_treatment a::before {
    content: url("../img/icon_02.svg");
    width: 59px;
    position: absolute;
    top: 29px;
  }
  .main_nav_pc nav ul li.gn_treatment a:hover::before {
    content: url("../img/icon_02_hover.svg");
  }
  .main_nav_pc nav ul li.gn_cancer a::before {
    content: url("../img/icon_03.svg");
    width: 68px;
    position: absolute;
    top: 38px;
  }
  .main_nav_pc nav ul li.gn_cancer a:hover::before {
    content: url("../img/icon_03_hover.svg");
  }
  .main_nav_pc nav ul li.gn_health_check a::before {
    content: url("../img/icon_04.svg");
    width: 54px;
    position: absolute;
    top: 28px;
  }
  .main_nav_pc nav ul li.gn_health_check a:hover::before {
    content: url("../img/icon_04_hover.svg");
  }
  .main_nav_pc nav ul li.gn_vaccination a::before {
    content: url("../img/icon_05.svg");
    width: 54px;
    position: absolute;
    top: 28px;
  }
  .main_nav_pc nav ul li.gn_vaccination a:hover::before {
    content: url("../img/icon_05_hover.svg");
  }
  .main_nav_pc nav ul li.gn_child a::before {
    content: url("../img/icon_06.svg");
    width: 66px;
    position: absolute;
    top: 28px;
  }
  .main_nav_pc nav ul li.gn_child a:hover::before {
    content: url("../img/icon_06_hover.svg");
  }
  .main_nav_pc nav ul li:last-child::before {
    content: "";
    width: 1px;
    height: 100px;
    border-right: #0E80CC 1px dashed;
    position: absolute;
    top: 45px;
    right: 0;
  }
  .main_nav_pc nav ul li ul {
    all: initial;
    display: none;
    border: #0E80CC 2px solid;
    background-color: #EEF8FF;
    position: relative;
    z-index: 99999;
  }
  .main_nav_pc nav ul li ul li {
    all: initial;
  }
  .main_nav_pc nav ul li ul li::after {
    content: "";
    display: none;
    width: 0;
    height: 0;
    border-left: none !important;
  }
  .main_nav_pc nav ul li ul li:last-child::before {
    content: "";
    width: 0;
    height: 0;
    border-right: none;
    position: static;
  }
  .main_nav_pc nav ul li ul li a {
    all: initial;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px 0 10px 10px;
    box-sizing: border-box;
    font-family: "zenmarugothic_medium";
    font-size: 1.5rem;
    color: #0E80CC;
    letter-spacing: 0;
  }
  .main_nav_pc nav ul li ul li a::before {
    font-family: "fontello";
    content: "\e807" !important;
    font-size: 2rem;
    color: #0E80CC;
    position: static !important;
    width: auto !important;
    margin: 0 5px 0 0;
  }
  .main_nav_pc nav ul li ul li a::after {
    content: "";
    display: none;
    width: 0;
    height: 0;
  }
  .main_nav_pc nav ul li ul li a:hover {
    background-color: #379EE2;
    color: #ffffff;
    transition: all 0.3s ease 0s;
  }
  .main_nav_pc nav ul li ul li a:hover::before {
    color: #ffffff;
  }
  .main_nav_pc nav ul li.none {
    display: none;
  }
  .main_nav_pc nav ul.open_nav_visit, .main_nav_pc nav ul .open_nav_treatment, .main_nav_pc nav ul .open_nav_cancer, .main_nav_pc nav ul .open_nav_check, .main_nav_pc nav ul .open_nav_vaccination, .main_nav_pc nav ul .open_nav_child, .main_nav_pc nav ul .open_nav_hbg {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .nav_add {
    position: fixed;
    top: 0;
    z-index: 999999999;
  }
  .nav_add .header_add {
    display: block;
    width: 100%;
    height: 97px;
    margin: 0 0 0 0;
    border-top: #ffffff 1px solid;
  }
  .nav_add .header_add .header_add_box {
    width: 1200px;
    margin: 0 auto;
    height: 97px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .nav_add .header_add .header_add_box .head_logo a {
    text-decoration: none;
    display: block;
    margin: 0 0 0 0;
  }
  .nav_add .header_add .header_add_box .head_logo a img {
    width: 300px;
  }
  .nav_add .header_add .header_add_box .header_info_add {
    width: 680px;
    height: 70px;
    margin: 13.5px 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .nav_add .header_add .header_add_box .header_info_add .header_tel {
    width: 320px;
    height: 84px;
    background-color: #005994;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-decoration: none;
    color: #ffffff;
    pointer-events: none;
  }
  .nav_add .header_add .header_add_box .header_info_add .header_tel i {
    font-size: 4.2rem;
    margin: 0 12px 0 0;
  }
  .nav_add .header_add .header_add_box .header_info_add .header_tel .tel_box .tel_text {
    display: block;
    font-size: 1.4rem;
  }
  .nav_add .header_add .header_add_box .header_info_add .header_tel .tel_box .tel {
    display: block;
    font-size: 3.2rem;
    margin-bottom: 0.35rem;
  }
  .nav_add .header_add .header_add_box .header_info_add .header_tel .tel_box .tel a {
    text-decoration: none;
    color: #ffffff;
  }
  .nav_add .header_add .header_add_box .header_info_add .header_root {
    width: 320px;
    height: 84px;
    background-color: #005994;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
  }
  .nav_add .header_add .header_add_box .header_info_add .header_root i {
    font-size: 4.4rem;
    margin: 0 0.3rem 0 0;
  }
  .nav_add .header_add .header_add_box .header_info_add .header_root:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .nav_add nav {
    width: 100%;
    height: 90px;
    margin: 0 auto;
    padding: 0 0 0 0;
    background-color: #ffffff;
  }
  .nav_add nav ul {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    align-items: center;
    width: 1200px;
    box-sizing: border-box;
    height: 90px;
    padding: 0;
    position: relative;
    margin: 0 auto;
  }
  .nav_add nav ul li {
    display: block;
    text-align: center;
    box-sizing: border-box;
    height: 90px;
    width: 240px;
    line-height: 120%;
    text-align: center;
    font-weight: normal;
    position: relative;
  }
  .nav_add nav ul li::after {
    content: "";
    width: 1px;
    height: 60px;
    border-left: #0E80CC 1px dashed;
    position: absolute;
    top: 20px;
    left: 0;
  }
  .nav_add nav ul li a {
    text-decoration: none;
    color: #0E80CC;
    height: 90px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 0 0 0 0;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.05em;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .nav_add nav ul li a span {
    font-family: "zenmarugothic_medium";
    font-size: 1.7rem;
    font-weight: normal;
    line-height: 120%;
    position: absolute;
    bottom: 35px;
    display: block;
    height: 38px;
  }
  .nav_add nav ul li a::after {
    font-family: "fontello";
    content: " \e80c";
    font-size: 2rem;
    color: #0E80CC;
    position: absolute;
    bottom: 20px;
  }
  .nav_add nav ul li a::before {
    display: none;
    width: 0;
    height: 0;
  }
  .nav_add nav ul li a:hover {
    background-color: #0E80CC;
    color: #ffffff;
    transition: all 0.3s ease 0s;
  }
  .nav_add nav ul li a:hover::after {
    color: #ffffff;
  }
  .nav_add nav ul li ul {
    all: initial;
    display: none;
    border: #0E80CC 2px solid;
    background-color: #EEF8FF;
    position: relative;
    z-index: 99999;
  }
  .nav_add nav ul li ul li {
    all: initial;
  }
  .nav_add nav ul li ul li::after {
    content: "";
    display: none;
    width: 0;
    height: 0;
    border-left: none !important;
  }
  .nav_add nav ul li ul li:last-child::before {
    content: "";
    width: 0;
    height: 0;
    border-right: none;
    position: static;
  }
  .nav_add nav ul li ul li a {
    all: initial;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px 0 10px 10px;
    box-sizing: border-box;
    font-family: "zenmarugothic_medium";
    font-size: 1.5rem;
    color: #0E80CC;
    letter-spacing: 0;
  }
  .nav_add nav ul li ul li a::before {
    display: block;
    font-family: "fontello";
    content: "\e807" !important;
    font-size: 2rem;
    color: #0E80CC;
    position: static !important;
    width: auto !important;
    margin: -20px 5px 0 0;
  }
  .nav_add nav ul li ul li a::after {
    content: "";
    display: none;
    width: 0;
    height: 0;
  }
  .nav_add nav ul li ul li a:hover {
    background-color: #379EE2;
    color: #ffffff;
    transition: all 0.3s ease 0s;
  }
  .nav_add nav ul li ul li a:hover::before {
    color: #ffffff;
  }
  .nav_add nav ul li.none {
    display: none;
  }
  .nav_add nav ul li:last-child::before {
    content: "";
    width: 1px;
    height: 60px;
    border-right: #0E80CC 1px dashed;
    position: absolute;
    top: 20px;
    right: 0;
  }
  .nav_add nav ul.open_nav_visit, .nav_add nav ul .open_nav_treatment, .nav_add nav ul .open_nav_cancer, .nav_add nav ul .open_nav_check, .nav_add nav ul .open_nav_vaccination, .nav_add nav ul .open_nav_child, .nav_add nav ul .open_nav_hbg {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .news_page .nav_add {
    position: static;
    top: 0;
    z-index: 9999999999;
  }
}
/* -----------------------------------------------------------
　当院からのお願い
----------------------------------------------------------- */
.hospital_request_frame {
  border: #FF5353 2px solid;
  background-color: #FFF8F9;
  width: 96%;
  margin: 0 auto;
  padding: 1rem 1rem 0 1rem;
  box-sizing: border-box;
}
.hospital_request_frame .hospital_request_title {
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 1rem 0;
  color: #FF5353;
}
.hospital_request_frame ul.hospital_request_list {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
.hospital_request_frame ul.hospital_request_list li {
  background: url(../img/maru_red.svg) no-repeat;
  background-position: left 0.4rem top 0.1rem;
  background-size: 1.2rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.7rem;
  color: #FF5353;
}

@media screen and (min-width: 768px), print {
  .hospital_request_frame {
    border: #FF5353 2px solid;
    background-color: #FFF8F9;
    width: 1200px;
    height: 267px;
    margin: 0 auto;
    padding: 20px 76px 0 76px;
    box-sizing: border-box;
  }
  .hospital_request_frame .hospital_request_title {
    text-align: center;
    font-size: 2.2rem;
    margin: 0 0 10px 0;
    color: #FF5353;
  }
  .hospital_request_frame ul.hospital_request_list {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 0 0;
  }
  .hospital_request_frame ul.hospital_request_list li {
    background: url(../img/maru_red.svg) no-repeat;
    background-position: left top;
    background-size: 18px;
    margin: 0 0 12px 0;
    padding: 0 0 0 19px;
    color: #FF5353;
  }
}
/* -----------------------------------------------------------
　Blue Banner
----------------------------------------------------------- */
.bluebnr_frame {
  border: #0E80CC 2px solid;
  background-color: #EEF8FF;
  width: 96%;
  margin: 0 auto 2rem;
  box-sizing: border-box;
}
.bluebnr_frame a {
  padding: 1rem;
  display: block;
  text-decoration: none;
  color: #333333;
}
.bluebnr_frame .bluebnr_title {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 0px 0;
  color: #0E80CC;
}
.bluebnr_frame .bluebnr_text {
  margin-bottom: 0;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .bluebnr_frame {
    border: #0E80CC 2px solid;
    background-color: #EEF8FF;
    width: 1000px;
    margin: 0 auto 30px;
    box-sizing: border-box;
  }
  .bluebnr_frame a {
    padding: 20px 40px;
  }
  .bluebnr_frame .bluebnr_title {
    text-align: center;
    font-size: 3.6rem;
    margin: 0 0 0px 0;
    color: #0E80CC;
  }
  .bluebnr_frame .bluebnr_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .bluebnr_frame .bluebnr_text {
    font-size: 1.8rem;
  }
}
/* -----------------------------------------------------------
　インフルエンザ予防接種
----------------------------------------------------------- */
.flu_vaccination_frame {
  border: #FF5353 2px solid;
  background-color: #FFF8F9;
  width: 96%;
  margin: 0 auto 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
.flu_vaccination_frame a {
  padding: 1rem;
  display: block;
  text-decoration: none;
  color: #333333;
}
.flu_vaccination_frame .flu_vaccination_title {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 10px 0;
  color: #FF5353;
  position: relative;
  padding-left: 60px;
}
.flu_vaccination_frame .flu_vaccination_title::before {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../img/icon_flu_vaccination01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  top: 0;
  left: 0;
}
.flu_vaccination_frame .flu_vaccination_title span.tit_s {
  display: inline-block;
  background: #FF5353;
  color: #ffffff;
  margin: 0 0 0 11.5rem;
  padding: 0.3rem 0.3rem 0.5rem;
  line-height: 100%;
}
.flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl {
  width: 100%;
  border-top: 1px solid #FF5353;
  border-left: 1px solid #FF5353;
  margin-bottom: 1rem;
}
.flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dt, .flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dd {
  border-bottom: 1px solid #FF5353;
  border-right: 1px solid #FF5353;
  padding: 0.5rem;
  line-height: 1.4;
}
.flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dt {
  font-weight: normal;
  font-size: 1.4rem;
  background-color: #FF5353;
  color: #ffffff;
  text-align: center;
}
.flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dd {
  font-size: 1.4rem;
}
.flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dd .small {
  font-size: 1rem;
}
.flu_vaccination_frame .flu_vaccination_row {
  /*
      .flu_vaccination_line {
        width: 100%;
        font-size: 1.2rem;
        text-align: center;

        a{
          color: $color44;
          font-size: 2.6rem;
          font-weight: bold;
          margin: 1rem auto 0 auto;
        }

        strong {
          display: block;
          font-size: 3rem;
          margin-bottom: 0.5rem;
        }

        .en {
          font-size: 2rem;
        }
      }
      */
}
.flu_vaccination_frame .flu_vaccination_text {
  margin: 1rem 0 0 0;
  text-align: center;
  color: #FF5353;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px), print {
  .flu_vaccination_frame {
    border: #FF5353 2px solid;
    background-color: #FFF8F9;
    width: 1000px;
    margin: 0 auto 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 30px;
  }
  .flu_vaccination_frame .flu_vaccination_title {
    text-align: center;
    font-size: 3.6rem;
    margin: 0 0 30px 0;
    color: #FF5353;
    position: relative;
    padding-left: 60px;
  }
  .flu_vaccination_frame .flu_vaccination_title::before {
    content: "";
    width: 50px;
    height: 50px;
    background-image: url(../img/icon_flu_vaccination01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    position: absolute;
    top: 5px;
    left: 110px;
  }
  .flu_vaccination_frame .flu_vaccination_title span.tit_s {
    margin: 0 0 0 1.5rem;
    padding: 0 1rem 0.3rem;
    line-height: 140%;
  }
  .flu_vaccination_frame .flu_vaccination_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl {
    width: 100%;
    border-top: 1px solid #FF5353;
    border-left: none;
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dt, .flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dd {
    border-bottom: 1px solid #FF5353;
    border-right: 1px solid #FF5353;
    padding: 1rem;
    line-height: 1.4;
  }
  .flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dt {
    text-align: center;
    font-weight: normal;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #ffffff;
    border-left: 1px solid #FF5353;
    border-right: none;
    width: 20%;
    background-color: #FF5353;
    color: #ffffff;
  }
  .flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dt.bp {
    border-bottom: 1px solid #FF5353;
  }
  .flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dd {
    width: 80%;
    font-size: 1.8rem;
    border-bottom: 1px solid #FF5353;
    border-right: 1px solid #FF5353;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dd .small {
    font-size: 1.4rem;
  }
  .flu_vaccination_frame .flu_vaccination_row .flu_vaccination_dl dd.price {
    width: 30%;
  }
  .flu_vaccination_frame .flu_vaccination_row {
    /*
          .flu_vaccination_line {
            vertical-align: top;
            width: 30%;
            font-size: 1.4rem;
            text-align: center;        
            a{
              color: $color44;
              font-size: 2.8rem;
              font-weight: bold;
              margin: 1rem auto 0 auto;
              &:hover{
                opacity: 0.6;
                transition: all 0.3s ease 0s;
              }          
            }        
            strong {
              display: block;
              font-size: 3.4rem;
              margin-bottom: 1rem;
            }
          }
          */
  }
  .flu_vaccination_frame .flu_vaccination_text {
    font-size: 1.8rem;
  }
  .flu_vaccination_frame .flu_vaccination_text:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
}
/* -----------------------------------------------------------
　お知らせ
----------------------------------------------------------- */
.notice_frame {
  width: 100%;
  background-color: #EEF8FF;
  overflow: visible;
  margin: 4rem 0 0 0;
  padding: 0 0 1rem 0;
  box-sizing: border-box;
  border-top: #ffffff 2rem solid;
}
.notice_frame h2.top_title {
  margin: -2rem 0 0 0;
}
.notice_frame .more_notice_link {
  width: 96%;
  margin: 3rem auto 1rem auto;
  text-align: right;
}
.notice_frame .more_notice_link a {
  text-decoration: none;
  width: auto;
  height: auto;
  font-size: 1.4rem;
  color: #0E80CC;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 10px;
  background-color: #ffffff;
  display: inline-block;
}
.notice_frame .notice_area {
  width: 96%;
  margin: 2rem auto 0 auto;
}
.notice_frame .notice_area .notice_box {
  width: 100%;
  background-color: #ffffff;
  margin: 0 0 2rem 0;
}
.notice_frame .notice_area .notice_box .notice_sub_title {
  width: 100%;
  height: 12vw;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  color: #0E80CC;
  font-size: 1.5rem;
  text-decoration: none;
  border-bottom: #0E80CC 2px solid;
  box-sizing: border-box;
}
.notice_frame .notice_area .notice_box .notice_sub_title .icon-calendar, .notice_frame .notice_area .notice_box .notice_sub_title .icon-icon-medkit, .notice_frame .notice_area .notice_box .notice_sub_title .icon-megaphone {
  font-size: 2rem;
  margin: 0 0.5rem 0 1rem;
}
.notice_frame .notice_area .notice_box .notice_sub_title .icon-right-circle {
  position: absolute;
  right: 2%;
}
.notice_frame .notice_area .notice_box dl {
  width: 96%;
  max-height: 43vw;
  overflow: hidden;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow-wrap: break-word;
  line-height: 140%;
}
.notice_frame .notice_area .notice_box dl p {
  margin: 1rem 0 2rem 1rem;
}
.notice_frame .notice_area .notice_box dl dt {
  width: 22%;
  height: 14vw;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-bottom: #C3C3C3 1px dashed;
  color: #FB93A8;
  font-size: 1.4rem;
  text-align: center;
}
.notice_frame .notice_area .notice_box dl dt span {
  width: 80%;
  display: block;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: #FB93A8 1px solid;
  padding: 0 0 0.2rem 0;
}
.notice_frame .notice_area .notice_box dl dd {
  width: 78%;
  height: 14vw;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-bottom: #C3C3C3 1px dashed;
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  color: #0E80CC;
  font-size: 1.4rem;
  font-weight: normal;
}
.notice_frame .notice_area .notice_box dl dd a {
  color: #0E80CC;
  text-decoration: none;
  width: 100%;
  overflow-wrap: break-word;
  overflow: hidden;
}
.notice_frame .notice_area .notice_box dl dd a span {
  overflow-wrap: break-word;
}

@media screen and (min-width: 768px), print {
  .notice_frame {
    width: 100%;
    background-color: #EEF8FF;
    overflow: visible;
    margin: 28px 0 0 0;
    padding: 0 0 35px 0;
    border-top: #ffffff 20px solid;
  }
  .notice_frame h2.top_title {
    margin: -20px 0 0 0;
  }
  .notice_frame .more_notice_link {
    display: block;
    width: 1200px;
    margin: 34px auto 0 auto;
    text-align: right;
  }
  .notice_frame .more_notice_link a {
    text-decoration: none;
    width: auto;
    height: auto;
    font-size: 1.6rem;
    color: #0E80CC;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 1rem 2rem;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #ffffff;
    display: inline-block;
  }
  .notice_frame .more_notice_link a:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
    transition: all 0.3s ease 0s;
  }
  .notice_frame .notice_area {
    width: 1200px;
    margin: 34px auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .notice_frame .notice_area .more_notice_link_sp {
    display: none;
  }
  .notice_frame .notice_area .notice_box {
    /*width: 380px;*/
    width: 590px;
    height: 333px;
    background-color: #ffffff;
  }
  .notice_frame .notice_area .notice_box .notice_sub_title {
    width: 100%;
    height: 84px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    color: #0E80CC;
    font-size: 2rem;
    text-decoration: none;
    border-bottom: #0E80CC 2px solid;
    box-sizing: border-box;
  }
  .notice_frame .notice_area .notice_box .notice_sub_title .icon-calendar, .notice_frame .notice_area .notice_box .notice_sub_title .icon-medkit, .notice_frame .notice_area .notice_box .notice_sub_title .icon-megaphone {
    font-size: 3.4rem;
    margin: 0 10px 0 24px;
  }
  .notice_frame .notice_area .notice_box .notice_sub_title .icon-right-circle {
    position: absolute;
    right: 20px;
  }
  .notice_frame .notice_area .notice_box .notice_sub_title:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .notice_frame .notice_area .notice_box dl {
    /*width: 380px;*/
    width: 590px;
    overflow: hidden;
    max-height: 251px;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow-wrap: break-word;
    line-height: 200%;
  }
  .notice_frame .notice_area .notice_box dl p {
    margin: 20px 0 20px 20px;
  }
  .notice_frame .notice_area .notice_box dl dt {
    width: 110px;
    height: 83px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-bottom: #C3C3C3 1px dashed;
    color: #FB93A8;
    font-size: 1.8rem;
    text-align: center;
    box-sizing: border-box;
  }
  .notice_frame .notice_area .notice_box dl dt span {
    width: 80px;
    display: block;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: #FB93A8 1px solid;
    padding: 0 0 5px 0;
    margin: 0 0 2px 0;
  }
  .notice_frame .notice_area .notice_box dl dt:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .notice_frame .notice_area .notice_box dl dd {
    width: 480px;
    /*width: 270px;*/
    height: 83px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-bottom: #C3C3C3 1px dashed;
    padding: 0 16px 0 16px;
    box-sizing: border-box;
    color: #0E80CC;
    font-size: 1.6rem;
    font-weight: normal;
  }
  .notice_frame .notice_area .notice_box dl dd a {
    color: #0E80CC;
    text-decoration: none;
    width: 100%;
    overflow-wrap: break-word;
    overflow: hidden;
  }
  .notice_frame .notice_area .notice_box dl dd a span {
    overflow-wrap: break-word;
  }
  .notice_frame .notice_area .notice_box dl dd:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .notice_frame .notice_area .notice_box dl dd:hover a {
    text-decoration: underline;
  }
}
/* -----------------------------------------------------------
　診療科目
----------------------------------------------------------- */
.treatments_frame {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.treatments_frame ul.treatments_list {
  list-style-type: none;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 2rem 0 0 0;
}
.treatments_frame ul.treatments_list li {
  width: 49%;
  margin: 0 0 1rem 0;
}
.treatments_frame ul.treatments_list li a {
  text-decoration: none;
  width: 100%;
  height: 12vw;
  font-size: 1.2rem;
  color: #0E80CC;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px), print {
  .treatments_frame {
    width: 1200px;
    margin: 100px auto 0 auto;
  }
  .treatments_frame ul.treatments_list {
    list-style-type: none;
    width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
  }
  .treatments_frame ul.treatments_list li {
    width: 280px;
    margin: 0 26px 34px 0;
  }
  .treatments_frame ul.treatments_list li a {
    text-decoration: none;
    width: 100%;
    height: 48px;
    font-size: 1.8rem;
    color: #0E80CC;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 14px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .treatments_frame ul.treatments_list li a:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
    transition: all 0.3s ease 0s;
  }
  .treatments_frame ul.treatments_list li:nth-of-type(4n) {
    margin: 0 0 34px 0;
  }
}
/* -----------------------------------------------------------
　診療科目
----------------------------------------------------------- */
.topics_frame {
  width: 100%;
  background: url("../img/index_topics_bg.png") repeat;
  overflow: visible;
  margin: 4rem 0 0 0;
  padding: 0 0 1rem 0;
  box-sizing: border-box;
  border-top: #ffffff 2rem solid;
}
.topics_frame h2.top_title {
  margin: -2rem 0 0 0;
}
.topics_frame ul.topics_list {
  list-style-type: none;
  width: 96%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 2rem auto 0 auto;
}
.topics_frame ul.topics_list li {
  width: 49%;
  margin: 0 0 3rem 0;
}
.topics_frame ul.topics_list li a {
  width: 100%;
  color: #0E80CC;
  text-decoration: none;
  text-align: center;
  font-family: "zenmarugothic_medium";
  font-size: 1.4rem;
  display: block;
}
.topics_frame ul.topics_list li a img {
  width: 100%;
  margin: 0 0 1rem 0;
}
.topics_frame ul.topics_list li .pdf {
  color: #ffffff;
  background-color: #0E80CC;
  font-size: 1.2rem;
  width: 18%;
  padding: 0.5rem;
  box-sizing: border-box;
  margin: 0.5rem auto 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 0.5rem;
}

@media screen and (min-width: 768px), print {
  .topics_frame {
    width: 100%;
    background: url("../img/index_topics_bg.png") repeat;
    overflow: visible;
    margin: 74px 0 0 0;
    border-top: #ffffff 20px solid;
    padding: 0 0 90px 0;
    box-sizing: border-box;
  }
  .topics_frame h2.top_title {
    margin: -20px 0 0 0;
  }
  .topics_frame ul.topics_list {
    list-style-type: none;
    width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 38px auto 0 auto;
  }
  .topics_frame ul.topics_list li {
    width: 216px;
    margin: 0 0 0 0;
  }
  .topics_frame ul.topics_list li a {
    width: 100%;
    color: #0E80CC;
    text-decoration: none;
    text-align: center;
    font-family: "zenmarugothic_medium";
    font-size: 2.1rem;
    letter-spacing: 0;
    display: block;
  }
  .topics_frame ul.topics_list li a img {
    width: 100%;
    margin: 0 0 25px 0;
  }
  .topics_frame ul.topics_list li a:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .topics_frame ul.topics_list li .pdf {
    color: #ffffff;
    background-color: #0E80CC;
    font-size: 2.4rem;
    width: 58px;
    height: 50px;
    padding: 0;
    box-sizing: border-box;
    margin: 20px auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 8px;
  }
  .topics_frame ul.topics_list li .pdf:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
}
/* -----------------------------------------------------------
　診療科目
----------------------------------------------------------- */
.tours_frame {
  margin: 4rem 0 0 0;
}
.tours_frame .tours_box {
  width: 96%;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tours_frame .tours_box a {
  width: 60%;
  display: block;
  margin: 0 auto -2px auto;
  text-decoration: none;
}
.tours_frame .tours_box a .toure_title {
  width: 100%;
}
.tours_frame .tours_box .toure_img {
  width: 50%;
}

@media screen and (min-width: 768px), print {
  .tours_frame {
    margin: 100px 0 0 0;
  }
  .tours_frame .tours_box {
    width: 1200px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tours_frame .tours_box a {
    order: 3;
    width: 280px;
    display: block;
    margin: 0;
    text-decoration: none;
  }
  .tours_frame .tours_box a .toure_title {
    width: 280px;
    height: 200px;
  }
  .tours_frame .tours_box a:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .tours_frame .tours_box .toure_img {
    width: 230px;
    height: 160px;
  }
  .tours_frame .tours_box .toure_img.toure_01 {
    order: 1;
  }
  .tours_frame .tours_box .toure_img.toure_02 {
    order: 2;
  }
  .tours_frame .tours_box .toure_img.toure_03 {
    order: 14;
  }
  .tours_frame .tours_box .toure_img.toure_04 {
    order: 5;
  }
}
/* -----------------------------------------------------------
　診療科目
----------------------------------------------------------- */
.group_frame {
  margin: 4rem 0 0 0;
}
.group_frame h2.group_title {
  text-align: center;
}
.group_frame h2.group_title img {
  width: 70%;
  display: block;
  margin: 0 auto;
}
.group_frame ul.group_link {
  list-style-type: none;
  width: 96%;
  margin: 2rem auto 0 auto;
}
.group_frame ul.group_link li {
  margin: 0;
}
.group_frame ul.group_link li a {
  widows: 100%;
  height: auto;
  text-decoration: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1rem 0;
  box-sizing: border-box;
  color: #333333;
  border-bottom: #CBCBCB 1px solid;
}
.group_frame ul.group_link li a img {
  width: 18%;
}
.group_frame ul.group_link li a .group_box {
  width: 79%;
  display: block;
}
.group_frame ul.group_link li a .group_box .group_title {
  font-size: 1.6rem;
  display: block;
  margin: 0 0 0.4rem 0;
}
.group_frame ul.group_link li a .group_box .group_title i {
  color: #1F73C8;
  margin: 0 0 0 0.2rem;
}
.group_frame ul.group_link li a .group_box .group_text {
  font-size: 1.2rem;
  display: block;
  line-height: 120%;
}

@media screen and (min-width: 768px), print {
  .group_frame {
    margin: 100px 0 0 0;
  }
  .group_frame h2.group_title {
    text-align: center;
  }
  .group_frame h2.group_title img {
    width: 322px;
    display: block;
    margin: 0 auto;
  }
  .group_frame ul.group_link {
    list-style-type: none;
    width: 1200px;
    margin: 32px auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .group_frame ul.group_link li {
    margin: 0;
    width: 400px;
  }
  .group_frame ul.group_link li a {
    widows: 100%;
    height: auto;
    text-decoration: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 0;
    box-sizing: border-box;
    color: #333333;
    border-bottom: #CBCBCB 1px solid;
  }
  .group_frame ul.group_link li a img {
    width: 80px;
    height: 80px;
  }
  .group_frame ul.group_link li a .group_box {
    width: 300px;
    display: block;
  }
  .group_frame ul.group_link li a .group_box .group_title {
    font-size: 2rem;
    display: block;
    margin: 0 0 8px 0;
  }
  .group_frame ul.group_link li a .group_box .group_title i {
    color: #1F73C8;
    margin: 0 0 0 8px;
  }
  .group_frame ul.group_link li a .group_box .group_text {
    font-size: 1.4rem;
    display: block;
    line-height: 160%;
  }
  .group_frame ul.group_link li a:hover {
    background-color: #EEF8FF;
    transition: all 0.3s ease 0s;
  }
  .group_frame ul.group_link li.none {
    border-bottom: #CBCBCB 1px solid;
  }
}
/* -----------------------------------------------------------
　お知らせタブグループ
----------------------------------------------------------- */
.recruit_bana {
  margin: 4rem 0 0 0;
  width: 100%;
  height: 40vw;
  display: block;
  text-decoration: none;
  background: url("../img/index_recruit_bana.jpg") no-repeat;
  background-position: left 74% top;
  background-size: 150%;
}
.recruit_bana .recruit_bana_box {
  display: block;
  width: 100%;
  height: 46vw;
  position: relative;
}
.recruit_bana .recruit_bana_box .recruit_text1 {
  color: #707070;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: Arial;
  position: absolute;
  top: 12vw;
  left: 45%;
}
.recruit_bana .recruit_bana_box .recruit_text2 {
  color: #707070;
  font-size: 1.2rem;
  font-weight: normal;
  font-family: "zenmarugothic_medium";
  position: absolute;
  top: 22vw;
  left: 45%;
  line-height: 140%;
}

.notice_tab_frame {
  width: 96%;
  margin: 0 auto 0 auto;
  /*タブ切り替え全体のスタイル*/
}
.notice_tab_frame .tabs {
  padding: 0;
  width: 100%;
  margin: 0;
  /*タブのスタイル*/
}
.notice_tab_frame .tabs .tab_item {
  float: left;
  width: 48%;
  height: 12vw;
  border-bottom: #0E80CC 2px solid;
  box-sizing: border-box;
  background-color: #C3E4FB;
  line-height: 100%;
  font-family: "zenmarugothic_medium";
  font-size: 1.4rem;
  text-align: center;
  color: #0E80CC;
  margin: 0 2% 0 0;
  transition: all 0.2s ease;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.notice_tab_frame .tabs .tab_item:hover {
  opacity: 0.75;
}
.notice_tab_frame .tabs .nmad {
  border-bottom: none;
}
.notice_tab_frame .tabs .noline {
  border-bottom: none;
}
.notice_tab_frame .tabs {
  /*ラジオボタンを全て消す*/
}
.notice_tab_frame .tabs input[name=tab_item] {
  display: none;
}
.notice_tab_frame .tabs {
  /*タブ切り替えの中身のスタイル*/
}
.notice_tab_frame .tabs .tab_content {
  width: 100%;
  height: 130vw;
  display: none;
  padding: 1rem;
  clear: both;
  overflow: hidden;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
}
.notice_tab_frame .tabs .tab_content_long {
  height: 166vw;
}
.notice_tab_frame .tabs {
  /*選択されているタブのコンテンツのみを表示*/
}
.notice_tab_frame .tabs #tab1:checked ~ #tab1_content, .notice_tab_frame .tabs #tab2:checked ~ #tab2_content, .notice_tab_frame .tabs #tab3:checked ~ #tab3_content, .notice_tab_frame .tabs #tab4:checked ~ #tab4_content, .notice_tab_frame .tabs #tab5:checked ~ #tab5_content, .notice_tab_frame .tabs #tab6:checked ~ #tab6_content, .notice_tab_frame .tabs #tab7:checked ~ #tab7_content {
  display: block;
}
.notice_tab_frame {
  /*選択されているタブのスタイルを変える*/
}
.notice_tab_frame .tabs input:checked + .tab_item {
  background-color: #0E80CC;
  color: #ffffff;
}

.notice_recruit_frame {
  width: 100%;
  height: 62vw;
}

dl.notice_recruit {
  height: auto;
  margin: 0 auto 0 auto;
  width: 96%;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding: 0 0 1rem 0;
  border-bottom: #C3C3C3 1px dashed;
  box-sizing: border-box;
}
dl.notice_recruit dt {
  margin: 2rem 0 0.8rem 0;
  padding: 1.8rem 0 0 0;
  font-size: 1.5rem;
  box-sizing: border-box;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 150%;
  border-top: #C3C3C3 1px dashed;
  position: relative;
}
dl.notice_recruit dt .date {
  color: #333333;
  display: block;
}
dl.notice_recruit dt .title {
  color: #333333;
}
dl.notice_recruit dt {
  /*
      &::before{
        position:absolute;
        content:"";
        display:block;
        width:0;
        height:0;
        border-bottom:solid 0.7em $color2;
        border-left:solid 0.5em transparent;
        border-right:solid 0.5em transparent;        
        margin:auto;
        left:0;
        top:2.4rem;     
        transition:0.5s;
      }
      &.open{
        &::before{
          border: none;
          border-top:solid 0.7em $color2;
          border-left:solid 0.5em transparent;
          border-right:solid 0.5em transparent;
        }                
      }

      &:first-child{
        border-top:none;
        padding: 0 0.4rem 0 2rem;

        &::before{
          top:0.5rem;
        }

      }
      &.close{
        &::before{
          transform:rotateX(180deg);
          transition:0.5s;
        }
      } 
      */
}
dl.notice_recruit dt .category {
  padding: 0.1rem 1rem 0.1rem 1rem;
}
dl.notice_recruit dt .cat001, dl.notice_recruit dt .cat002, dl.notice_recruit dt .cat003, dl.notice_recruit dt .cat004, dl.notice_recruit dt .cat005, dl.notice_recruit dt .cat006 {
  background-color: #EB7908;
  color: #ffffff;
  display: inline-block;
  border-radius: 0.3rem;
}
dl.notice_recruit dt .cat007 {
  background-color: #FB93A8;
  color: #ffffff;
  display: inline-block;
  border-radius: 0.3rem;
}
dl.notice_recruit dt .cat008 {
  background-color: #0E80CC;
  color: #ffffff;
  display: inline-block;
  border-radius: 0.3rem;
}
dl.notice_recruit dd {
  display: none;
  /*
      margin: 0 0 1rem 0;
      padding: 0 0 0 2rem;
      color: $bace_color;
      font-size: 1.4rem;
      line-height: 130%; 
      display: none;      
      &.open{
        display: block;
      }    
      p{
        a{
          color: $bace_color;
        }
      }
      */
}

ul.notice_recruit_link {
  list-style-type: none;
  margin: 3rem 0 0 0;
}
ul.notice_recruit_link li {
  margin: 0 0 2rem 0;
}
ul.notice_recruit_link li a {
  text-decoration: none;
  width: 100%;
  height: 12vw;
  font-size: 1.2rem;
  color: #0E80CC;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px), print {
  .recruit_bana {
    margin: 125px auto 0 auto;
    width: 1200px;
    height: 320px;
    display: block;
    text-decoration: none;
    background: url("../img/index_recruit_bana.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    overflow: hidden;
  }
  .recruit_bana .recruit_bana_box {
    display: block;
    width: 1200px;
    height: 320px;
    margin: 0 auto;
    position: relative;
  }
  .recruit_bana .recruit_bana_box .recruit_text1 {
    color: #707070;
    font-size: 5.3rem;
    font-weight: bold;
    font-family: Arial;
    position: absolute;
    top: 110px;
    left: 750px;
  }
  .recruit_bana .recruit_bana_box .recruit_text2 {
    color: #707070;
    font-size: 2.2rem;
    font-weight: normal;
    font-family: "zenmarugothic_medium";
    position: absolute;
    top: 180px;
    left: 750px;
    line-height: 140%;
  }
  .recruit_bana {
    /*
      &:hover{
        opacity: 0.6;
        transition: all 0.3s ease 0s;
      }
      */
  }
  .notice_tab_frame {
    width: 1200px;
    margin: 0 auto 0 auto;
    /*タブ切り替え全体のスタイル*/
  }
  .notice_tab_frame .tabs {
    padding: 0;
    width: 100%;
    margin: 0;
    /*タブのスタイル*/
  }
  .notice_tab_frame .tabs .tab_item {
    float: left;
    width: 160px;
    height: 43px;
    border-bottom: none;
    box-sizing: border-box;
    background-color: #C3E4FB;
    line-height: 100%;
    font-family: "zenmarugothic_medium";
    font-size: 2rem;
    text-align: center;
    color: #0E80CC;
    margin: 0 10px 0 0;
    transition: all 0.2s ease;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .notice_tab_frame .tabs .tab_item:hover {
    opacity: 0.75;
  }
  .notice_tab_frame .tabs .noline {
    border-bottom: none;
  }
  .notice_tab_frame .tabs .tab_none {
    display: none;
  }
  .notice_tab_frame .tabs .nmad {
    width: 220px;
    border-bottom: none;
  }
  .notice_tab_frame .tabs .npt {
    width: 290px;
    border-bottom: none;
  }
  .notice_tab_frame .tabs {
    /*ラジオボタンを全て消す*/
  }
  .notice_tab_frame .tabs input[name=tab_item] {
    display: none;
  }
  .notice_tab_frame .tabs {
    /*タブ切り替えの中身のスタイル*/
  }
  .notice_tab_frame .tabs .tab_content {
    display: none;
    height: 350px;
    padding: 20px 50px;
    clear: both;
    overflow: hidden;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
  }
  .notice_tab_frame .tabs .tab_content_long {
    height: 480px;
  }
  .notice_tab_frame .tabs {
    /*選択されているタブのコンテンツのみを表示*/
  }
  .notice_tab_frame .tabs #tab1:checked ~ #tab1_content, .notice_tab_frame .tabs #tab2:checked ~ #tab2_content, .notice_tab_frame .tabs #tab3:checked ~ #tab3_content, .notice_tab_frame .tabs #tab4:checked ~ #tab4_content, .notice_tab_frame .tabs #tab5:checked ~ #tab5_content, .notice_tab_frame .tabs #tab6:checked ~ #tab6_content, .notice_tab_frame .tabs #tab7:checked ~ #tab7_content {
    display: block;
  }
  .notice_tab_frame {
    /*選択されているタブのスタイルを変える*/
  }
  .notice_tab_frame .tabs input:checked + .tab_item {
    background-color: #0E80CC;
    color: #ffffff;
  }
  .notice_recruit_frame {
    width: 100%;
    height: 220px;
  }
  dl.notice_recruit {
    height: auto;
    margin: 0 0 0 0;
    width: 1070px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    padding: 0 0 16px 0;
    border-bottom: #C3C3C3 1px dashed;
    box-sizing: border-box;
  }
  dl.notice_recruit dt {
    margin: 15px 0 8px 0;
    padding: 15px 0 0 0;
    font-size: 1.8rem;
    box-sizing: border-box;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 130%;
    border-top: #C3C3C3 1px dashed;
    position: relative;
  }
  dl.notice_recruit dt:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  dl.notice_recruit dt .date {
    color: #333333;
    display: inline;
    font-size: 1.8rem;
  }
  dl.notice_recruit dt .title {
    color: #333333;
    margin: 0 0 0 0;
    font-size: 1.6rem;
  }
  dl.notice_recruit dt {
    /*
        &::before{
          position:absolute;
          content:"";
          display:block;
          width:0;
          height:0;
          border-bottom:solid 0.7em $color2;
          border-left:solid 0.5em transparent;
          border-right:solid 0.5em transparent;       
          margin:auto;
          left:0;
          top:21px;     
          transition:0.5s;
        }
        &.open{
          &::before{
          border: none;
          border-top:solid 0.7em $color2;
          border-left:solid 0.5em transparent;
          border-right:solid 0.5em transparent;
          }                
        }
        &:first-child{
          border-top:none;
          padding: 0 0 0 20px;
          margin: 0 0 8px 0;
          &::before{
            top:5px;
          }

        }
        &.close{
          &::before{
            transform:rotateX(180deg);
            transition:0.5s;
          }
        }  
        */
  }
  dl.notice_recruit dt .category {
    padding: 3px 10px 5px 10px;
    font-size: 1.6rem;
    margin: 0 10px;
  }
  dl.notice_recruit dt .cat001, dl.notice_recruit dt .cat002, dl.notice_recruit dt .cat003, dl.notice_recruit dt .cat004, dl.notice_recruit dt .cat005, dl.notice_recruit dt .cat006 {
    background-color: #EB7908;
    color: #ffffff;
    display: inline-block;
    border-radius: 5px;
  }
  dl.notice_recruit dt .cat007 {
    background-color: #FB93A8;
    color: #ffffff;
    display: inline-block;
    border-radius: 0.3rem;
  }
  dl.notice_recruit dt .cat008 {
    background-color: #0E80CC;
    color: #ffffff;
    display: inline-block;
    border-radius: 5px;
  }
  dl.notice_recruit dd {
    margin: 0 0 14px 0;
    padding: 0 0 0 142px;
    color: #333333;
    font-size: 1.6rem;
    line-height: 130%;
    display: none;
  }
  dl.notice_recruit dd.open {
    display: block;
  }
  dl.notice_recruit dd p a {
    color: #333333;
  }
  ul.notice_recruit_link {
    list-style-type: none;
    margin: 30px 0 0 0;
    width: 1096px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.notice_recruit_link li {
    margin: 0 0 20px 0;
    width: 32%;
  }
  ul.notice_recruit_link li a {
    text-decoration: none;
    width: 100%;
    height: 48px;
    font-size: 1.8rem;
    color: #0E80CC;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 14px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.notice_recruit_link li a:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
    transition: all 0.3s ease 0s;
  }
}
/* -----------------------------------------------------------
　バナーリンク
----------------------------------------------------------- */
.top_bana_link {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.top_bana_link .recruit_bana {
  margin: 0 0 0 0;
  width: 100%;
  height: 40vw;
  display: block;
  text-decoration: none;
  background: url("../img/index_recruit_bana.jpg") no-repeat;
  background-size: 100%;
}
.top_bana_link .recruit_bana .recruit_bana_box {
  display: block;
  width: 100%;
  height: 46vw;
  position: relative;
}
.top_bana_link .recruit_bana .recruit_bana_box .recruit_text1 {
  color: #707070;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: Arial;
  position: absolute;
  top: 12vw;
  left: 45%;
}
.top_bana_link .recruit_bana .recruit_bana_box .recruit_text2 {
  color: #707070;
  font-size: 1.2rem;
  font-weight: normal;
  font-family: "zenmarugothic_medium";
  position: absolute;
  top: 22vw;
  left: 45%;
  line-height: 140%;
}
.top_bana_link .recruit_bana .voice_action_box {
  margin: 2rem 0 0 0;
  background: url("../img/index_voice_bana.jpg") no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 768px), print {
  .top_bana_link {
    margin: 125px auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 1200px;
  }
  .top_bana_link .recruit_bana {
    margin: 0;
    width: 580px;
    height: 320px;
    display: block;
    text-decoration: none;
    background: url("../img/index_recruit_bana.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    overflow: hidden;
  }
  .top_bana_link .recruit_bana .recruit_bana_box {
    display: block;
    width: 580px;
    height: 320px;
    margin: 0 auto;
    position: relative;
  }
  .top_bana_link .recruit_bana .recruit_bana_box .recruit_text1 {
    color: #707070;
    font-size: 4rem;
    font-weight: bold;
    font-family: Arial;
    position: absolute;
    top: 105px;
    left: 265px;
  }
  .top_bana_link .recruit_bana .recruit_bana_box .recruit_text2 {
    color: #707070;
    font-size: 1.6rem;
    font-weight: normal;
    font-family: "zenmarugothic_medium";
    position: absolute;
    top: 160px;
    left: 265px;
    line-height: 140%;
  }
  .top_bana_link .recruit_bana .voice_action_box {
    margin: 0 0 0 0;
    background: url("../img/index_voice_bana.jpg") no-repeat;
    background-size: 100%;
  }
  .top_bana_link .recruit_bana:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .top_bana_link .recruit_bana.nolink {
    pointer-events: none;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  background-color: #EEF8FF;
  padding: 1rem 0;
  box-sizing: border-box;
}
.overview .overview_box {
  width: 96%;
  margin: 0 auto;
  padding: 1rem 0;
  box-sizing: border-box;
  /*左側*/
}
.overview .overview_box .overview_info_box_left {
  width: 100%;
}
.overview .overview_box .overview_info_box_left .overview_logo {
  width: 96%;
  margin: 0 auto;
  display: block;
}
.overview .overview_box .overview_info_box_left .overview_logo img {
  width: 100%;
}
.overview .overview_box .overview_info_box_left dl.overview_list {
  width: 100%;
  margin: 2rem 0 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  line-height: 160%;
}
.overview .overview_box .overview_info_box_left dl.overview_list dt {
  width: 26%;
  margin: 0 0 1rem 0;
}
.overview .overview_box .overview_info_box_left dl.overview_list dt i {
  margin: 0 -0.5rem 0 0;
  letter-spacing: 0;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd {
  width: 70%;
  margin: 0 0 1rem 0;
  box-sizing: border-box;
}
.overview .overview_box .overview_info_box_left .overview_line_sns_link {
  width: 35%;
  height: 13vw;
  margin: 0.5rem auto 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.overview .overview_box .overview_info_box_left .overview_line_sns_link a {
  width: 35%;
  height: 13vw;
  font-size: 3rem;
  line-height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 1rem;
}
.overview .overview_box .overview_info_box_left .overview_line_sns_link a.header_line img {
  width: 100%;
}
.overview .overview_box .overview_info_box_left .overview_line_sns_link a.header_instagram img {
  width: 100%;
}
.overview .overview_box .overview_info_box_left .overview_line_sns_link a.header_instagram {
  /*
              ackground: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
              background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
              position: relative;
              overflow: hidden;
              border-radius: 1rem;                
              &::before{
                content: '';
                position: absolute;
                top: 23px;
                left: -18px;
                width: 60px;
                height: 60px;
                background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
                background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
                z-index: 1;
              }
              i{
                color: $color_white;
                position: relative;
                z-index: 2;
              }
              */
}
.overview .overview_box .overview_info_box_left .overview_line_sns_link a:hover {
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}
.overview .overview_box .overview_info_box_left .overview_tel {
  width: 70%;
  height: 20vw;
  background-color: #005994;
  margin: 1rem auto 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  text-decoration: none;
  color: #ffffff;
}
.overview .overview_box .overview_info_box_left .overview_tel i {
  font-size: 2.8rem;
  margin: 0 0.5rem 0 0;
}
.overview .overview_box .overview_info_box_left .overview_tel .tel_box .tel_text {
  display: block;
  font-size: 1rem;
}
.overview .overview_box .overview_info_box_left .overview_tel .tel_box .tel {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.overview .overview_box .overview_info_box_left .overview_tel .tel_box .tel a {
  text-decoration: none;
  color: #ffffff;
}
.overview .overview_box .overview_info_box_left .overview_root {
  width: 70%;
  height: 14vw;
  background-color: #005994;
  margin: 1rem auto 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.4rem;
}
.overview .overview_box .overview_info_box_left .overview_root i {
  font-size: 2.2rem;
  margin: 0 0.3rem 0 0;
}
.overview .overview_box .overview_info_box_left .overview_root:hover {
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}
.overview .overview_box {
  /*右側*/
}
.overview .overview_box .overview_info_box_right {
  width: 96%;
  margin: 2rem auto 0 auto;
}
.overview .overview_box .overview_info_box_right .googlemap {
  width: 100%;
}
.overview .overview_box .overview_info_box_right .googlemap img {
  width: 100%;
}
.overview .overview_box .overview_info_box_right a.googlemap_button {
  width: 100%;
  height: 10vw;
  margin: -2px 0 0 0;
  background-color: #0E80CC;
  color: #ffffff;
  font-size: 1.4rem;
  text-decoration: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    background-color: #EEF8FF;
    padding: 64px 0 60px 0;
    box-sizing: border-box;
  }
  .overview .overview_box {
    width: 1120px;
    margin: 0 auto;
    padding: 0 0;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    /*左側*/
  }
  .overview .overview_box .overview_info_box_left {
    width: 600px;
    margin: 0 0 0 0;
  }
  .overview .overview_box .overview_info_box_left .overview_logo {
    width: 424.051px;
    margin: 0;
    display: block;
  }
  .overview .overview_box .overview_info_box_left .overview_logo img {
    width: 424.051px;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list {
    width: 600px;
    margin: 22px 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    line-height: 160%;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt {
    width: 120px;
    margin: 0 0 6px 0;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt i {
    margin: 0 -5px 0 0;
    letter-spacing: 0;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd {
    width: 480px;
    margin: 0 0 6px 0;
    box-sizing: border-box;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd span {
    margin: 0 0 0 15px;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd span.sp_none_span {
    margin: 0;
  }
  .overview .overview_box .overview_info_box_left .overview_line_sns_link {
    width: 140px;
    height: 50px;
    margin: 20px 0 15px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .overview .overview_box .overview_info_box_left .overview_line_sns_link a {
    width: 50px;
    height: 50px;
    font-size: 4rem;
    line-height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 13px;
  }
  .overview .overview_box .overview_info_box_left .overview_line_sns_link a.header_line img {
    width: 100%;
  }
  .overview .overview_box .overview_info_box_left .overview_line_sns_link a.header_instagram img {
    width: 100%;
  }
  .overview .overview_box .overview_info_box_left .overview_line_sns_link a.header_instagram {
    /*
                ackground: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
                background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
                position: relative;
                overflow: hidden;
                border-radius: 13px;              
                &::before{
                  content: '';
                  position: absolute;
                  top: 23px;
                  left: -18px;
                  width: 60px;
                  height: 60px;
                  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
                  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
                  z-index: 1;
                }
                i{
                  color: $color_white;
                  position: relative;
                  z-index: 2;
                }
                */
  }
  .overview .overview_box .overview_info_box_left .overview_line_sns_link a:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .overview .overview_box .overview_info_box_left .overview_tel {
    width: 320px;
    height: 90px;
    background-color: #005994;
    margin: 30px 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-decoration: none;
    color: #ffffff;
  }
  .overview .overview_box .overview_info_box_left .overview_tel i {
    font-size: 4.2rem;
    margin: 0 12px 0 0;
  }
  .overview .overview_box .overview_info_box_left .overview_tel .tel_box .tel_text {
    display: block;
    font-size: 1.4rem;
  }
  .overview .overview_box .overview_info_box_left .overview_tel .tel_box .tel {
    display: block;
    font-size: 3.2rem;
    margin-bottom: 0.35rem;
  }
  .overview .overview_box .overview_info_box_left .overview_tel .tel_box .tel a {
    text-decoration: none;
    color: #ffffff;
  }
  .overview .overview_box .overview_info_box_left .overview_root {
    width: 320px;
    height: 70px;
    background-color: #005994;
    margin: 16px 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
  }
  .overview .overview_box .overview_info_box_left .overview_root i {
    font-size: 4.4rem;
    margin: 0 0 0 0;
  }
  .overview .overview_box .overview_info_box_left .overview_root:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .overview .overview_box {
    /*右側*/
  }
  .overview .overview_box .overview_info_box_right {
    width: 480px;
    margin: 0 0 0 0;
    /*画像用*/
  }
  .overview .overview_box .overview_info_box_right .googlemap {
    width: 480px;
  }
  .overview .overview_box .overview_info_box_right .googlemap img {
    width: 480px;
  }
  .overview .overview_box .overview_info_box_right a.googlemap_button {
    width: 480px;
    height: 44px;
    margin: -2px 0 0 0;
    background-color: #0E80CC;
    color: #ffffff;
    font-size: 1.6rem;
    text-decoration: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
  }
  .overview .overview_box .overview_info_box_right a.googlemap_button i {
    font-size: 2rem;
  }
  .overview .overview_box .overview_info_box_right a.googlemap_button:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer {
  margin: 0;
  padding: 0;
  background-color: #003a61;
  box-sizing: border-box;
  width: 100%;
}
footer .media {
  color: #0b3e60;
  font-size: 0.8rem;
}
footer .media a {
  color: #0b3e60;
  font-size: 0.8rem;
  text-decoration: none;
}
footer .media dl {
  color: #0b3e60;
  padding: 0.5rem;
  font-size: 1rem;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 0.8rem;
}
footer .media dl dt {
  padding-right: 1rem;
  font-size: 0.8rem;
}
footer .media dl dd {
  text-align: center;
  border-left: 1px solid #0b3e60;
  margin: 0px;
  padding: 0 0.5rem 0 0.5rem;
  font-size: 0.8rem;
}
footer .footer_frame {
  display: none;
}
footer {
  /*
    .footer_frame{
      width: 96%;
      margin: 0 auto;    
      .footer_link_title{
        font-size: 1.6rem;
        color: $color_white;
        padding: 0 0 0.5rem 0;
        margin: 0 0 1rem 0;
        box-sizing: border-box;
        border-bottom: $color_white 1px solid;
      }    
      ul.footer_link_list1{
        list-style-type:disc;    
        line-height:140%;
        letter-spacing: 0.05em;
        font-size:1.2rem;
        margin: 0 0 2rem 0;      
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-flex-direction:row;
        flex-direction:row;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;      
        li{
          width: 43%;
          margin:0 0 0.5rem 1.8rem;
          padding:0;
          color: $color_white;
          a{
            color: $color_white;
            text-decoration: none;
            font-weight: normal;
          }
          &.pink{
            a{
              color: $color2;
            }
          }
        }
      }
      .footer_link_list2_box{

        .footer_link_sub_title{
          font-size: 1.2rem;
          color: $color_white;
          padding: 0 0 0.5rem 0;
          margin: 2rem 0 1rem 0;
          box-sizing: border-box;
          border-bottom: $color_white 1px solid;
        }
        ul.footer_link_list2{
          list-style-type:disc;    
          line-height:140%;
          letter-spacing: 0.05em;
          font-size:1.2rem;
          margin: 0 0 2rem 0;      
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          -webkit-flex-direction:row;
          flex-direction:row;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;      
          li{
            width: 43%;
            margin:0 0 0.5rem 1.8rem;
            padding:0;
            color: $color_white;
            a{
              color: $color_white;
              text-decoration: none;
              font-weight: normal;
            }
            &.pink{
              a{
                color: $color2;
              }
            }
          }
        }
      }
    }
  */
}
footer .copyright {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.05em;
  background-color: #000000;
}
footer .copyright a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer_link {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-direction: row;
  flex-direction: row;
  background-color: #0E80CC;
  z-index: 100;
}
.footer_link a.footer_reserve {
  width: 55%;
  height: 13vw;
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  display: block;
  background-color: #0E80CC;
  text-decoration: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer_link a.footer_tel {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0.6rem 0 0.7rem;
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  display: block;
  text-decoration: none;
  /*display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-align-items: center;
      align-items: center;*/
  /*border-left: $color_white 1px solid;*/
}
.footer_link a.footer_tel i {
  color: #ffffff;
  font-size: 1.6rem;
}
.footer_link a.footer_tel span {
  font-size: 1.1rem;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0 0 0 0;
    padding: 40px 0 0 0;
    background-color: #003a61;
    box-sizing: border-box;
    width: 100%;
    /*height: 768px;*/
    height: 550px;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    display: block;
    width: 1200px;
    margin: 0 auto;
  }
  footer .footer_frame .footer_link_title {
    font-size: 2.6rem;
    color: #ffffff;
    padding: 0 0 10px 10px;
    margin: 0 0 14px 0;
    box-sizing: border-box;
    border-bottom: #ffffff 1px solid;
  }
  footer .footer_frame ul.footer_link_list1 {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.4rem;
    width: 900px;
    margin: 0 auto 30px auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .footer_frame ul.footer_link_list1 li {
    width: auto;
    margin: 0 0 5px 45px;
    padding: 0;
    color: #ffffff;
  }
  footer .footer_frame ul.footer_link_list1 li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
    position: relative;
    z-index: 1;
    transition: 0.3s;
  }
  footer .footer_frame ul.footer_link_list1 li a::before {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    transition: 0.2s all;
    background: #ffffff;
    width: 0;
  }
  footer .footer_frame ul.footer_link_list1 li a:hover::before {
    width: 100%;
  }
  footer .footer_frame ul.footer_link_list1 li.pink a {
    color: #FB93A8;
  }
  footer .footer_link_list2_frame {
    width: 1200px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .footer_link_list2_frame .footer_link_list2_box {
    margin: 6px 0 0 0;
  }
  footer .footer_link_list2_frame .footer_link_list2_box .footer_link_sub_title {
    font-size: 1.3rem;
    color: #ffffff;
    padding: 0 0 8px 0;
    margin: 0 0 12px 0;
    box-sizing: border-box;
    border-bottom: #ffffff 1px solid;
  }
  footer .footer_link_list2_frame .footer_link_list2_box ul.footer_link_list2 {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.3rem;
    margin: 0 0 0 0;
  }
  footer .footer_link_list2_frame .footer_link_list2_box ul.footer_link_list2 li {
    margin: 0 0 7px 18px;
    padding: 0;
    color: #ffffff;
  }
  footer .footer_link_list2_frame .footer_link_list2_box ul.footer_link_list2 li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    margin: 0 0 0 -5px;
  }
  footer .footer_link_list2_frame .footer_link_list2_box ul.footer_link_list2 li a::before {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    transition: 0.2s all;
    background: #ffffff;
    width: 0;
  }
  footer .footer_link_list2_frame .footer_link_list2_box ul.footer_link_list2 li a:hover::before {
    width: 100%;
  }
  footer .footer_link_list2_frame .footer_link_list2_box ul.footer_link_list2 li.pink a {
    color: #FB93A8;
  }
  footer .footer_link_list2_frame .footer_link_list2_box ul.footer_link_list2 li.none {
    display: none;
  }
  footer .footer_link_list2_frame .footer_link_list2_box ul.footer_link_list2.list_two {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .footer_link_list2_frame .footer_link_list2_box ul.footer_link_list2.list_two li:nth-child(odd) {
    width: 45%;
  }
  footer .footer_link_list2_frame .footer_link_list2_box ul.footer_link_list2.list_two li:nth-child(even) {
    width: 35%;
  }
  footer .footer_link_list2_frame .visiting_title {
    width: 160px;
  }
  footer .footer_link_list2_frame .medical_title {
    width: 160px;
  }
  footer .footer_link_list2_frame .special_title {
    width: 260px;
  }
  footer .footer_link_list2_frame .special_title ul li a br {
    display: none;
  }
  footer .footer_link_list2_frame .health_title {
    width: 190px;
  }
  footer .footer_link_list2_frame .vaccination_title {
    width: 210px;
  }
  footer .footer_link_list2_frame .vaccination_title br {
    display: none;
  }
  footer .footer_link_list2_frame .other_title {
    width: 140px;
  }
  footer .copyright {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    height: 30px;
    width: 100%;
    letter-spacing: 0.05em;
    background-color: #000000;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  footer .copyright a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1em;
  }
  footer .copyright a:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  .footer_link {
    display: none;
  }
}
/* -----------------------------------------------------------
　ページトップへ
----------------------------------------------------------- */
#pagetop_position {
  display: none;
}

@media screen and (min-width: 768px), print {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 50px;
    height: 50px;
  }
  #pagetop_position #linkpagetop a img {
    width: 50px;
    height: 50px;
  }
  #pagetop_position #linkpagetop a:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  #pagetop {
    position: fixed;
    bottom: 40px;
    right: 10px;
    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: 50px;
    height: 50px;
  }
  #pagetop_position #linkpagetop a img {
    width: 50px;
    height: 50px;
  }
  #pagetop {
    position: fixed;
    bottom: 40px;
    right: 2%;
    z-index: 999999;
  }
}
/* -----------------------------------------------------------
　モーダルウィンドウ
----------------------------------------------------------- */
#modal-content-top {
  width: 90%;
  margin: 0 auto;
  padding: 1rem 1rem 0 1rem;
  background: #ffffff;
  position: fixed;
  display: none;
  z-index: 9999;
}
#modal-content-top .modal_content_title {
  background-color: #C3E4FB;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 0.5rem 0;
}
#modal-content-top .modal_content_title p {
  margin: 0;
  font-size: 1.2rem;
}
#modal-content-top .modal_content_title p.today {
  color: #333333;
  margin: 0 0 0.5rem 0;
}
#modal-content-top .modal_content_title p.today span {
  background-color: #379EE2;
  color: #ffffff;
  padding: 0 0.5rem;
  margin: 0 0.5rem 0 0;
  border-radius: 0.3rem;
}
#modal-content-top strong {
  font-size: 1.2rem;
}
#modal-content-top p {
  margin: 5px 0 5px 0;
  font-size: 1.2rem;
}
#modal-content-top .modal_content_notice {
  font-size: 1.2rem;
  color: #ff0000;
  margin: 0 0 1rem 0;
}
#modal-content-top .button-link {
  text-decoration: none;
  width: 60%;
  height: 10vw;
  font-size: 1.6rem;
  color: #0E80CC;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}
#modal-content-top dl.symbol_list {
  font-size: 1.2rem;
}
#modal-content-top dl.symbol_list dt {
  margin: 0 0 0.5rem 0;
}
#modal-content-top dl.symbol_list dd {
  margin: 0 0 0.5rem 0;
}

#modal-overlay-top {
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

@media screen and (min-width: 768px), print {
  #modal-content-top {
    width: 66%;
    margin: 6rem auto 0 auto;
    padding: 15px;
    background: #ffffff;
    position: fixed;
    display: none;
    z-index: 99999999999999;
  }
  #modal-content-top .modal_content_title {
    background-color: #C3E4FB;
    padding: 20px 20px 10px 20px;
    box-sizing: border-box;
    margin: 0 0 16px 0;
  }
  #modal-content-top .modal_content_title p {
    margin: 0;
    font-size: 1.6rem;
  }
  #modal-content-top .modal_content_title p.today {
    color: #333333;
    margin: 0 0 10px 0;
  }
  #modal-content-top .modal_content_title p.today span {
    background-color: #379EE2;
    color: #ffffff;
    padding: 0 8px;
    margin: 0 10px 0 0;
    border-radius: 5px;
  }
  #modal-content-top strong {
    font-size: 1.6rem;
  }
  #modal-content-top p {
    font-size: 1.6rem;
    margin: 10px 0 10px 0;
  }
  #modal-content-top .modal_content_notice {
    font-size: 1.6rem;
    color: #ff0000;
    margin: 0 0 32px 0;
  }
  #modal-content-top .button-link {
    text-decoration: none;
    width: 280px;
    height: 48px;
    font-size: 1.8rem;
    color: #0E80CC;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 14px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #modal-content-top .button-link:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  #modal-content-top dl.symbol_list {
    font-size: 1.6rem;
  }
  #modal-content-top dl.symbol_list dt {
    margin: 0 0 1rem 0;
  }
  #modal-content-top dl.symbol_list dd {
    margin: 0 0 1rem 0;
  }
  #modal-overlay-top {
    z-index: 1;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
  }
}
#modal-content-flumist {
  width: 90%;
  height: 48rem;
  overflow-y: scroll;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  position: fixed;
  display: none;
  z-index: 9999;
}
#modal-content-flumist .modal_content_title {
  background-color: #C3E4FB;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 0.5rem 0;
}
#modal-content-flumist .modal_content_title p {
  margin: 0;
  font-size: 1.2rem;
}
#modal-content-flumist .modal_content_title p.today {
  color: #333333;
  margin: 0 0 0.5rem 0;
}
#modal-content-flumist .modal_content_title p.today span {
  background-color: #379EE2;
  color: #ffffff;
  padding: 0 0.5rem;
  margin: 0 0.5rem 0 0;
  border-radius: 0.3rem;
}
#modal-content-flumist strong {
  font-size: 1.2rem;
}
#modal-content-flumist p {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}
#modal-content-flumist .modal_content_notice {
  font-size: 1.2rem;
  color: #ff0000;
  margin: 0 0 1rem 0;
}
#modal-content-flumist .button-link {
  text-decoration: none;
  width: 60%;
  height: 10vw;
  font-size: 1.6rem;
  color: #0E80CC;
  background-color: #ffffff;
  border: #0E80CC 2px solid;
  box-sizing: border-box;
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  background: url("../img/icon_07.svg") no-repeat;
  background-position: right 4px bottom 4px;
  background-size: 4%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}
#modal-content-flumist dl.symbol_list {
  font-size: 1.2rem;
}
#modal-content-flumist dl.symbol_list dt {
  margin: 0 0 0.5rem 0;
}
#modal-content-flumist dl.symbol_list dd {
  margin: 0 0 0.5rem 0;
}

#modal-overlay-flumist {
  z-index: 999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

@media screen and (min-width: 768px), print {
  #modal-content-flumist {
    width: 66%;
    height: 600px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #ffffff;
    position: fixed;
    display: none;
    z-index: 99999999999999;
  }
  #modal-content-flumist .modal_content_title {
    background-color: #C3E4FB;
    padding: 20px 20px 10px 20px;
    box-sizing: border-box;
    margin: 0 0 16px 0;
  }
  #modal-content-flumist .modal_content_title p {
    margin: 0;
    font-size: 1.6rem;
  }
  #modal-content-flumist .modal_content_title p.today {
    color: #333333;
    margin: 0 0 10px 0;
  }
  #modal-content-flumist .modal_content_title p.today span {
    background-color: #379EE2;
    color: #ffffff;
    padding: 0 8px;
    margin: 0 10px 0 0;
    border-radius: 5px;
  }
  #modal-content-flumist strong {
    font-size: 1.6rem;
  }
  #modal-content-flumist p {
    font-size: 1.6rem;
    margin: 1rem 0;
  }
  #modal-content-flumist .modal_content_notice {
    font-size: 1.6rem;
    color: #ff0000;
    margin: 0 0 32px 0;
  }
  #modal-content-flumist .button-link {
    text-decoration: none;
    width: 280px;
    height: 48px;
    font-size: 1.8rem;
    color: #0E80CC;
    background-color: #ffffff;
    border: #0E80CC 2px solid;
    box-sizing: border-box;
    padding: 0 0 0 14px;
    box-sizing: border-box;
    background: url("../img/icon_07.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #modal-content-flumist .button-link:hover {
    color: #ffffff;
    background: url("../img/icon_07_hover.svg") no-repeat;
    background-position: right 4px bottom 4px;
    background-size: 10px;
    background-color: #0E80CC;
  }
  #modal-content-flumist dl.symbol_list {
    font-size: 1.6rem;
  }
  #modal-content-flumist dl.symbol_list dt {
    margin: 0 0 1rem 0;
  }
  #modal-content-flumist dl.symbol_list dd {
    margin: 0 0 1rem 0;
  }
  #modal-overlay-flumist {
    z-index: 1;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
  }
}
/* -----------------------------------------------------------
　モーダルウィンドウ下層
----------------------------------------------------------- */
#modal-overlay-low {
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.7);
}

.check_btn {
  text-align: center;
}
.check_btn label {
  cursor: pointer;
  margin: 0 auto;
  padding: 0.5em 0 0.7em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #005994;
  color: #fff;
  text-align: left;
  font-size: 1.4rem;
  line-height: 140%;
}
.check_btn label input {
  margin-right: 1em;
}

@media screen and (min-width: 768px), print {
  .check_btn label {
    width: 22em;
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */