@charset "UTF-8";
/*第二階層 お知らせ*/
.news {
  background-color: #e7f7f2;
}
.news .box {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.news .box h4 {
  display: block;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  margin: 0;
  position: relative;
  border-radius: 10px 10px 0 0;
  border: none;
}
.news .box h4:before {
  display: none;
}
.news .box h4 i {
  font-size: 28px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
  height: 28px;
}
.news .box.schedule h4 {
  background: linear-gradient(45deg, rgba(183, 37, 77, 1), rgba(197, 81, 113, 1));
}
.news .box.info h4 {
  background: linear-gradient(45deg, rgba(22, 66, 79, 1), rgba(29, 87, 105, 1));
}
.news .dl_box {
  padding: 10px 5%;
}
.news dl {
  margin: 0;
  padding: 10px 0;
  line-height: 28px;
}
.news dl a {
  color: #000;
}
.news .schedule dl {
  border-bottom: dashed 1px #b6254d;
}
.news .info dl {
  border-bottom: dashed 1px #005348;
}
.news dl:last-child {
  border: none;
}
.news dl dt {
  display: inline-block;
  vertical-align: middle;
  width: 23%;
}
.news dl dd {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  width: 73%;
}
.news .box.schedule dl dd {
  border-left: solid 1px #b6254d;
  padding-left: 3%;
}
.news .box.info dl dt {
  display: none;
}
.news .box.info dl dd {
  width: 100%;
}
.news .dl_box dl dd ul {
  padding: 0 0 0 15px;
}
@media screen and (max-width:1050px) {
  .news .box {
    display: block;
    width: auto;
    margin: 0 auto 20px;
  }
  .news .box h4 i {
    font-size: 24px;
    left: 40px;
    height: 24px;
  }
  .news dl dt {
    display: block;
    width: auto;
    font-weight: 500;
  }
  .news dl dd {
    display: block;
    width: auto;
  }
  .news .box.schedule dl dd {
    border-left: none;
    padding-left: 0;
  }
  .news .dl_box dl dd ul {
    padding: 0 0 0 20px;
  }
}