@charset "UTF-8";
:root {
  --font_family: "Noto Sans JP", sans-serif;
  --main_font_color: #335467;
  --white: #FFFFFF;
  --green: #4DAE51;
  --bg_green: #E3F4CD;
  --bg_blue: #CDE8F4;
  --bg_blue_2: #D5F4F5;
  --bg_blue_3: #EDFAFA;
  --bg_blue_4: #E9F3F5;
  --border_color: #B9E9EE;
  --blue: #2F96AD;
  --bg_yellow: #F8F0C3;
  --yellow: #B8A74A;
  --orange: #EE8E49;
  --bg_orange: #F4E2CD;
  --pink: #C670D3;
  --bg_pink: #F4D9D9;
  --red: #674733;
  --box_shadow: 2px 2px 10px rgba(47, 150, 173, .3);
}

/* flexの基本の形 */
.flex_basic {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* gideの基本の形 */
.grid_basic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* gnav */
@media screen and (min-width: 751px) {
  #nav_outpatient > a .hover_line {
    color: var(--blue);
  }
  #nav_outpatient > a .hover_line::before {
    transform: scale(1, 1);
  }
}
/* main_view */
#main_view {
  background: url(../img/mv.webp) no-repeat center top 30%;
  background-size: 100% auto;
}

/* detailes */
#detailes {
  align-items: center;
}
#detailes .icon_find {
  margin-bottom: 40px;
}
#detailes .swiper {
  width: 100%;
  max-width: 960px;
  height: 200px;
}
#detailes .swiper .swiper-slide img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 750px) {
  #detailes .icon_find {
    font-size: 6.4vw;
    gap: 2.6666666667vw;
    margin-bottom: 8vw;
  }
  #detailes .icon_find img {
    width: 18.6666666667vw;
  }
  #detailes .swiper {
    height: 57.3333333333vw;
  }
  #detailes .swiper .swiper-slide {
    width: auto;
    height: 100%;
  }
  #detailes .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.6666666667vw;
  }
  #detailes .pagination span {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
  #detailes .pagination .swiper-pagination-bullet-active {
    background: var(--blue);
  }
}

/* schedule */
#schedule {
  position: relative;
}
#schedule::before {
  content: "";
  position: absolute;
  top: 300px;
  right: -19.4444444444vw;
  display: block;
  width: 55.5555555556vw;
  height: 83.3333333333vw;
  background: url(../../assets/img/bg_green.png) no-repeat top right;
  background-size: 100% auto;
  opacity: 0.4;
  z-index: -1;
}
#schedule .scroll {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border_color);
  margin-bottom: 30px;
}
#schedule .link_download {
  width: 100%;
  max-width: 260px;
}
@media screen and (max-width: 750px) {
  #schedule::before {
    right: 0;
  }
  #schedule .scroll img {
    height: 202.6666666667vw;
  }
}

/* contactpoint */
#contactpoint {
  align-items: center;
}
#contactpoint p strong {
  font-size: 1.8rem;
  font-weight: 700;
}
#contactpoint p span {
  font-size: 1.4rem;
}
@media screen and (max-width: 750px) {
  #contactpoint p {
    text-align: center;
    line-height: 1.5;
  }
  #contactpoint p strong {
    font-size: 4.2666666667vw;
  }
  #contactpoint p span {
    font-size: 3.2vw;
  }
  #contactpoint p:last-child {
    line-height: 2;
  }
}/*# sourceMappingURL=outpatient.css.map */