@charset "UTF-8";

.home .hero {
  height: auto;
}
.home .news {
    background: linear-gradient(to bottom, #a7eee4 0, #a7eee4 calc(100% - 150px), transparent calc(100% - 150px), transparent 100%);
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}
.home .news::before {
    background: linear-gradient(to bottom, transparent 0, #90eadd 50%, #90eadd 100%);
    content: "";
    display: block;
    height: 300px;
    left: 0;
    position: absolute;
    top: -300px;
    width: 100%;
    z-index: -1;
}
.home .news::after {
    background: linear-gradient(to bottom, #90eadd, transparent);
    content: "";
    display: block;
    height: 300px;
    left: 0;
    position: absolute;
    bottom: -149px;
    width: 100%;
    z-index: -1;
}
.home .news .l-inner {
  min-height: 150px;
  padding: 25px;
  display: flex;
  justify-content: flex-start;
  background-color: white;
  max-width: 1240px;
}
.home .news .l-inner h2 {
  width: 10%;
  min-width: 110px;
  margin-right: 40px;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Shippori Mincho", serif;
}
.home .news .l-inner h2 a {
  background-color: rgba(0, 0, 0, 0);
  display: block;
  max-width: 230px;
  font-size: 1rem;
}
.home .news .l-inner h2 a.c-button__link {
  padding-left: 0px;
  padding-right: 5px;
}
.home .news .l-inner h2 a:hover {
    background-color: #000;
    border-color: #000;
}

.home .news .l-inner div.separater {
  width: 40px;
  border-left: solid 1px #666;
}
.home .news .l-inner div.newslist_top dl {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.home .news .l-inner div.newslist_top dd.date {
  min-width: 6em;
}
.home .news .l-inner div.newslist_top dt.title {
}
.pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: none;
  }
  .home .news .l-inner {
    display: inline-block;
    height: auto;
  }
  .home .news .l-inner h2 {
    width: 100%;
    text-align: left;
  }
  .home .news .l-inner h2 a {
    width: 100px;
    display: inline-block;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-left: 2rem;
  }
  .home .news .l-inner div.separater {
    width: 100%;
    border-left: none;
    border-top: solid 1px #666;
  }
  .home .news .l-inner div.newslist_top dl {
/*    flex-wrap: wrap;*/
    flex-direction: column-reverse;

  }
  .home .news .l-inner div.newslist_top dd.date {
    min-width: 100%;
  }
  .pc {
    display: inline-block;
  }
}


.newslist li{
  display: flex;
  justify-content: flex-start;
  border: solid 1px #ccc;
  padding: 1rem;
  width: 100%;
  margin: 10px auto;
}
.newslist li p {
  padding-right: 2rem;
  min-width: 8rem;
}
.newslist li a {
  font-size: 1rem;
  font-weight: normal;
/*  font-weight: bold;*/
}
.news_date {
  max-width: 900px;
  margin: 1rem auto 0 auto;
}
.news_title {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.3rem;
  font-family: "Shippori Mincho", serif;  
}
.news_contents {
  max-width: 850px;
  margin: 4rem auto;
}
@media screen and (max-width: 767px) {
  .newslist li{
    width: auto;
    display: block;
  }
}
