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

/* detailes */
.detailes {
  position: relative;
  align-items: center;
}
.detailes > p {
  margin-bottom: 60px;
}
.detailes ul {
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-left: 0 !important;
}
.detailes ul li {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  border: 2px solid #C3E5E5;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 0 !important;
  box-sizing: border-box;
  background: #fff;
}
.detailes ul li img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--box_shadow);
}
.detailes ul li strong {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding-left: 56px;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 20px;
  background: url(../img/icon_home.svg) no-repeat left center;
  background-size: 36px auto;
}
.detailes ul li .icon_meal {
  color: var(--orange);
  background-image: url(../img/icon_meal.svg);
}
.detailes ul li .icon_bathing {
  color: var(--pink);
  background-image: url(../img/icon_bathing.svg);
}
.detailes ul li .icon_treatment {
  color: var(--blue);
  background-image: url(../img/icon_treatment.svg);
}
.detailes ul li p {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .detailes .icon_find {
    font-size: 6.4vw;
    gap: 2.6666666667vw;
  }
  .detailes .icon_find img {
    width: 18.6666666667vw;
  }
  .detailes > p {
    margin-bottom: 8vw;
  }
  .detailes ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 8vw;
  }
  .detailes ul li {
    border-radius: 5.3333333333vw;
    padding: 5.3333333333vw;
    gap: 5.3333333333vw;
  }
  .detailes ul li img {
    border-radius: 5.3333333333vw;
  }
  .detailes ul li strong {
    padding-left: 14.9333333333vw;
    font-size: 5.3333333333vw;
    min-height: 9.6vw;
    margin-bottom: 2.6666666667vw;
    background-size: auto 9.6vw;
  }
}

/* kitatou */
#kitatou::before {
  content: "";
  position: absolute;
  top: 900px;
  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;
}
@media screen and (max-width: 750px) {
  #kitatou::before {
    width: 85%;
    top: 186.6666666667vw;
    left: 0;
  }
}

/* byoutou */
#byoutou {
  position: relative;
}
#byoutou::before {
  content: "";
  position: absolute;
  top: -500px;
  right: -19.4444444444vw;
  display: block;
  width: 52.0833333333vw;
  height: 83.3333333333vw;
  background: url(../../assets/img/bg_green.png) no-repeat bottom right;
  background-size: 100% auto;
  opacity: 0.4;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  #byoutou::before {
    top: -293.3333333333vw;
    right: 0;
    width: 85%;
    height: 346.6666666667vw;
    background-position: top right;
  }
  #byoutou .scroll img {
    width: auto;
    height: 146.6666666667vw;
  }
}/*# sourceMappingURL=admission.css.map */