@charset "UTF-8";

/* ----------------------------------------------

news-blc

------------------------------------------------ */

#news-inner .inner {
  background-color: #fff;
  padding: 4rem 2rem;
  box-sizing: border-box;
}

/* news-dl --------------------------------- */

.news-dl {
  margin-top: 2rem;
  padding-top: 2rem;
  box-sizing: border-box;
  position: relative;
}

.news-dl:first-child {
  margin-top: 0;
  padding-top: 0;
}

.news-dl::before {
  content: "";
  background: rgb(98, 165, 49);
  background: linear-gradient(90deg, rgba(98, 165, 49, 1) 0%, rgba(246, 171, 0, 1) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
}

.news-dl:first-child::before {
  content: none;
}

/* news-ttl --------------------------------- */

.news-dl .news-ttl {
  display: flex;
  position: relative;
  cursor: pointer;
}

.news-dl .news-ttl .ttl-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: calc(100% - 40px);
  box-sizing: border-box;
}

.news-dl .news-ttl .ttl-inner>.date {
  width: 100px;
  display: inline-block;
  font-weight: 600;
  background-color: #f6ab00;
  text-align: center;
  font-size: 80%;
  color: #fff;
  line-height: 1;
  padding: 5px 5px;
  box-sizing: border-box;
}

.news-dl .news-ttl .ttl-inner>.ttl {
  width: calc(100% - 100px);
  padding-left: 10px;
  font-weight: 600;
  box-sizing: border-box;
  display: block;
}

.news-dl .news-ttl .icon-stat {
  width: 35px;
  height: 35px;
  margin: auto;
  position: absolute;
  top: -5px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #62a531;
  border-radius: 999px;
}

.news-dl .news-ttl .icon-stat::before {
  content: "";
  background-color: #fff;
  width: 14px;
  height: 2px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.news-dl .news-ttl .icon-stat::after {
  content: "";
  background-color: #fff;
  width: 2px;
  height: 14px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 400ms ease-in-out;
}

.news-dl .news-ttl.onclick .icon-stat::after {
  transform: rotate(-90deg);
  transform-origin: center center;
}

/* news-content --------------------------------- */

.news-dl .news-content {
  margin-top: 1rem;
  padding-left: 110px;
  box-sizing: border-box;
}

@media screen and (max-width:1000px) {

  .news-dl .news-ttl .ttl-inner>.ttl {
    width: 100%;
    padding-left: 0;
    margin-top: 5px;
  }

  .news-dl .news-ttl .ttl-inner {
    padding-right: 0;
    width: 100%;
  }

  .news-dl .news-content {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }

  .news-dl .news-ttl .icon-stat {
    top: -10px;
  }
}

@media screen and (max-width:767px) {

  .news-dl .news-ttl .icon-stat {
    width: 30px;
    height: 30px;
    top: -5px;
  }

  .news-dl .news-ttl .icon-stat::after {
    height: 12px;
  }

  .news-dl .news-ttl .icon-stat::before {
    width: 12px;
  }
}

@media screen and (max-width:640px) {
  .news-dl {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

@media screen and (max-width:480px) {

  #news-inner .inner {
    padding: 3rem 1rem;
  }
}