.show-pc {
  display: inherit;
}
@media screen and (max-width: 820px) {
  .show-pc {
    display: none;
  }
}
.show-sp {
  display: none;
}
@media screen and (max-width: 820px) {
  .show-sp {
    display: inherit;
  }
}
.toggle {
  width: 36px;
  height: 36px;
  background: #3f84a7;
  border-radius: 100%;
  position: absolute;
  bottom: 50%;
  right: 30px;
}
@media screen and (max-width: 820px) {
  .toggle {
    width: 30px;
    height: 30px;
    right: 15px;
    bottom: auto;
    top: 0;
  }
}
.toggle:before,
.toggle:after {
  content: "";
  display: block;
  background: #fff;
  width: 20px;
  height: 3px;
  position: absolute;
  bottom: 44%;
  right: 8px;
}
@media screen and (max-width: 820px) {
  .toggle:before,
  .toggle:after {
    bottom: auto;
    top: 14px;
    width: 16px;
    right: 7px;
  }
}
.toggle:before {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.toggle:after {
  transform: rotate(0deg);
}
/* ========================================================================
   Component: content
========================================================================== */
.wrapper {
  background: #f4f4f4;
}
.content-inner {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
  padding: 60px 20px;
}
.content-title {
  font-size: 4.6rem;
  font-weight: bold;
  text-align: center;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .content-title {
    font-size: 3.2rem;
    padding: 30px 0;
  }
}
.content-subtitle {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 10px;
}
.news-list-item {
  background: #fff;
  padding: 30px 50px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-list-item {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.news-list-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  transition: 0.3s opacity;
}
.news-list-link:hover {
  opacity: 0.4;
}
.news-date,
.news-title,
.news-text,
.news-link {
  display: block;
}
.news-date {
  font-size: 1.8rem;
  color: #b1b1b1;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .news-date {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.news-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .news-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.news-text {
  line-height: 1.8;
}
.news-link {
  margin-top: 20px;
}
