@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_introduction > a .hover_line {
    color: var(--blue);
  }
  #nav_introduction > a .hover_line::before {
    transform: scale(1, 1);
  }
}
/* main_view */
#main_view {
  background: url(../img/mv.jpg) no-repeat center top 30%;
  background-size: 100% auto;
}

/* greeting */
#greeting {
  position: relative;
}
#greeting::before {
  content: "";
  position: absolute;
  top: 250px;
  left: -20.8333333333vw;
  display: block;
  width: 55.5555555556vw;
  height: 83.3333333333vw;
  background: url(../../assets/img/bg_blue.png) no-repeat top right;
  background-size: 100% auto;
  opacity: 0.4;
  z-index: -1;
}
#greeting > div {
  display: flex;
  gap: 60px;
}
#greeting > div .left {
  display: block;
  min-width: 340px;
  text-align: center;
}
#greeting > div .left img {
  width: 100%;
}
#greeting > div .left figcaption {
  margin-top: 1em;
}
#greeting > div .left figcaption strong {
  display: block;
  margin-top: 0.5em;
  font-size: 2rem;
}
@media screen and (max-width: 750px) {
  #greeting::before {
    top: 4vw;
    left: 0;
    width: 90%;
    height: 193.3333333333vw;
  }
  #greeting > div {
    flex-direction: column;
    gap: 8vw;
  }
  #greeting > div .left figcaption strong {
    font-size: 4.8vw;
  }
}

/* philosophy */
#philosophy {
  align-items: center;
}
#philosophy > strong {
  font-size: 3.2rem;
}
#philosophy div {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 40px 80px;
  margin-top: 40px;
  border: 2px solid var(--border_color);
  border-radius: 10px;
  background: var(--white);
}
#philosophy div strong {
  font-size: 2.4rem;
  margin-bottom: 1em;
  color: var(--blue);
}
@media screen and (max-width: 750px) {
  #philosophy > strong {
    font-size: 6.4vw;
    line-height: 1.5;
  }
  #philosophy div {
    padding: 8vw 5.3333333333vw;
  }
  #philosophy div strong {
    font-size: 5.3333333333vw;
  }
}

/* notices */
#notices {
  position: relative;
}
#notices::before {
  content: "";
  position: absolute;
  top: 70px;
  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;
}
#notices > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#notices > div a {
  width: 100%;
  min-height: 120px;
}
@media screen and (max-width: 750px) {
  #notices::before {
    display: none;
  }
  #notices > div {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.6666666667vw;
  }
  #notices > div a {
    width: 100%;
    min-height: 0;
  }
}

/* organization_chart */
#organization_chart figure {
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #organization_chart figure {
    margin: 0 0.5333333333vw;
    padding: 2.6666666667vw;
  }
  #organization_chart figure img {
    width: 100%;
    height: auto;
  }
}

/* patient_rights */
@media screen and (max-width: 750px) {
  #patient_rights::before {
    content: "";
    position: absolute;
    top: 6.6666666667vw;
    right: 0;
    display: block;
    width: 70%;
    height: 193.3333333333vw;
    background: url(../../assets/img/bg_green.png) no-repeat top left;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
  }
}/*# sourceMappingURL=introduction.css.map */