@charset "utf-8";
/* CSS Document */
/* news.css */
.newslist__box {
  display: block;
  margin: calc(70  / 750 * 100%) auto;
  width: calc(670 / 750 * 100%);
}
.newslist__box a {
  display: block;
  width: 100%;
}
.newslist__item {
  background: var(--c-white);
  border-radius: calc(30 / 28 * 1rem);
  box-sizing: border-box;
  padding: calc(50 / 670 * 100%) calc(30 / 670 * 100%) calc(50 / 670 * 100%);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  border: 2px solid transparent;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.newslist__box a:hover .newslist__item {
  border: 2px solid var(--c-black);
}


.newslist__date {
  font-size:  calc(24 / 28 * 1rem);
  line-height: 1.6em;
  width: 9.4em;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%,-50%,0);
  -ms-transform: translate3d(-50%,-50%,0);
  -o-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
}
.newslist__image {
  width: calc(250 / 610 * 100%);
  height: 0;
  overflow: hidden;
  padding-bottom: calc(180 / 610 * 100%);
  position: relative;
}
.newslist__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newslist__data {
  width: calc( 330 / 610 * 100%);
}
.newslist__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: calc( 26 / 28 * 1rem);
  font-weight: bold;
  line-height: 1.75em;
}
.newslist__text {
  background: url(../shared/img/dotline_black.png) no-repeat top left;
  -webkit-background-size: auto calc( 4 / 28 * 1rem);
  background-size: auto calc( 4 / 28 * 1rem);
  box-sizing: border-box;
  margin-top: .3em;
  padding-top: .3em;
}
.newslist__box p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0 auto;
  line-height: 1.5em;
  font-size: calc( 24 / 28 * 1rem);
  font-weight: 500;
}
.newslist__button {
  display: block;
  position: absolute;
  bottom: -1.2em;
  right: -.5em;
}
.newslist__button .button--black {
  line-height: 1em;
  padding: 0;
}
.newslist__button .button--black:after {
  content: "";
  background: url(../shared/img/webp/ar.webp) no-repeat 50% 50%;
  -webkit-background-size: contain;
  background-size: contain;
  width: calc(10 / 28 * 1rem);
  height: calc(10 / 28 * 1rem);
  position: absolute;
  top: calc(50% - (10 / 28 * 1rem * 0.5));
  right: .5rem;
  z-index: 2;
}
.newslist__button .button--black span {
  display: block;
  font-weight: 400;
  padding: .3em 1.8em .4em 1.5em;
  font-size:  calc(20 / 28 * 1rem);
}

.button__box--news .button--black {
  width: 70%;
}
.newscontent__thm {
  width: calc(670 / 750 * 100%);
  display: block;
  margin: calc(0 / 750 * 100%) auto 0;
  height: 0;
  overflow: hidden;
  padding-bottom: calc(280 / 750 * 100%);
  background-color: #fff;
  position: relative;
  border-radius: calc(30 / 28 * 1rem);
}
.newscontent__thm img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newscontent__article {
  box-sizing: border-box;
  margin: 0 auto;
  padding: calc(30 / 750 * 100%);
}
.newscontent__date {
  width: 9.4em;
  margin: 0 auto;
  text-align: center;
  font-size: calc(24 / 28 * 1rem);
}
.newscontent__article .ribbon {
  line-height: 1.6em;
}
.newscontent__article .newscontent__title {
}
.newscontent__article h1 {
  font-size: calc(36 / 28 * 1rem);
  font-weight: 400;
  margin: .5em auto;
  text-align: center;
}
.newscontent__text {
  background: url(../shared/img/dotline_black.png) no-repeat top left;
  -webkit-background-size: auto calc( 4 / 28 * 1rem);
  background-size: auto calc( 4 / 28 * 1rem);
  box-sizing: border-box;
  padding-top: 1em;
}
.newscontent__article p {
  font-weight: 400;
  font-size: calc(24 / 28 * 1rem);
  margin: 0 auto 1em;
}