@charset "UTF-8";
/* --------------------------
media query
-------------------------- */
/* --------------------------
非表示切り替え
-------------------------- */
@media screen and (min-width: 768px) {
  .u-hide--pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-hide--tab {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .u-hide--laptop {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-hide--sp {
    display: none;
  }
}
.u-hidden {
  visibility: hidden;
}

.top-section {
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .top-section {
    margin: 40px 0;
  }
}
.top-section-container--1200 {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.top-article-link {
  display: block;
  transition: all 0.2s;
}
.top-article-link:hover {
  opacity: 0.6;
}
.top-article-link:hover .top-article-date,
.top-article-link:hover .top-article-title {
  color: rgb(var(--site-themeColor-accent_2));
}
.top-article-image {
  margin-bottom: 0.5em;
  position: relative;
}
.top-article-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
}
.top-article-date {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .top-article-date {
    font-size: 12px;
  }
}
.top-article-category {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  padding: 0 10px;
  background: #526884;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .top-article-category {
    font-size: 10px;
  }
}
.top-article-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #121314;
}
.top-button {
  width: 500px;
  display: inline-block;
  padding: 16px;
  background: rgb(var(--site-themeColor-accent_2));
}
@media screen and (max-width: 767px) {
  .top-button {
    width: 100%;
  }
}
.top-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.top-button span::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/share/ico_arr_circle_m_wh.svg") center center no-repeat;
  background-size: 100% auto;
  margin-left: 1em;
  transition: all 0.2s;
  transform: translateX(0px);
}
.top-button:hover span::after {
  transform: translateX(5px);
}/*# sourceMappingURL=top.css.map */