@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_news > a .hover_line {
    color: var(--blue);
  }
  #nav_news > a .hover_line::before {
    transform: scale(1, 1);
  }
}
ul li {
  list-style: none !important;
}

/* main_view */
#main_view {
  background: #EDFAFA url(../img/mv.webp) no-repeat center top 30%;
  background-size: 100% auto;
}
#main_view h1 {
  color: var(--font-color) !important;
}

section {
  max-width: 960px;
}

/* page_link */
@media screen and (max-width: 750px) {
  .page_link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 5.3333333333vw;
  }
  .page_link li {
    width: 100%;
  }
  .page_link li:nth-child(3) {
    border-left: 2px solid var(--bg_blue);
  }
  .page_link li:last-child {
    border-left: none;
  }
}

/* news_list */
.news_list {
  width: 100%;
}
.news_list ul {
  margin-left: 0 !important;
}
.news_list li {
  border-bottom: 2px dotted var(--border_color);
}
.news_list li a {
  justify-content: flex-start !important;
  margin-bottom: 0 !important;
  padding: 15px 0 !important;
  color: var(--font-color);
  font-size: inherit;
}
.news_list li a p {
  padding-right: 30px;
}
.news_list li .link_next::after {
  margin: auto 0 auto auto;
  transform: translateX(-20px);
}
.news_list li .no_report {
  padding: 15px 0;
}
@media screen and (max-width: 750px) {
  .news_list li {
    position: relative;
  }
  .news_list li a {
    flex-wrap: wrap;
    background-size: 5.8666666667vw 5.8666666667vw;
  }
  .news_list li a p {
    width: 90%;
    margin-top: 2.6666666667vw;
    padding-right: 10.6666666667vw;
  }
  .news_list li .link_next::after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto !important;
    transform: none;
  }
}

.detailes .block {
  display: flex;
  gap: 20px;
}
.detailes .block h3.find_2 {
  border-bottom: 2px dotted var(--border_color);
  padding-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .detailes .block {
    flex-direction: column;
  }
  .detailes .block img {
    width: 100%;
  }
}

/* transportation */
#transportation .block {
  width: 100%;
  justify-content: space-between;
}
#transportation .block .box {
  flex: 1;
}
#transportation .block .box div p strong {
  color: var(--orange);
}
#transportation .block .border {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid var(--border_color);
}

/* rehabilitation */
#rehabilitation {
  position: relative;
}
#rehabilitation::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;
}
#rehabilitation::after {
  content: "";
  position: absolute;
  bottom: -800px;
  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) {
  #rehabilitation::before {
    top: 213.3333333333vw;
    right: 0;
    width: 85%;
    height: 346.6666666667vw;
    background-position: top right;
  }
  #rehabilitation::after {
    width: 85%;
    height: 346.6666666667vw;
    bottom: 146.6666666667vw;
  }
}/*# sourceMappingURL=news.css.map */