/** Colors **/
/** Font Size **/
/** Spacer **/
/** breakPoint **/
/* CSS custom property */
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes loadingeffect {
  0% {
    --angle: -1deg;
  }
  100% {
    --angle: 360deg;
  }
}
.article-list__heading {
  position: relative;
  z-index: 1;
}
.article-list__title {
  font-size: 40px;
  margin-bottom: 8px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__title {
    font-size: 36px;
  }
}
.article-list__title-h2 {
  text-align: center;
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 48px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__title-h2 {
    font-size: 24px;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
  }
}
@media print, screen and (max-width: 1079px) {
  .article-list__desc {
    font-size: 12px;
  }
}
.article-list__page-top {
  position: fixed;
  right: 3%;
  top: 50%;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  transform: translate(0, -50%);
}
.article-list__page-top.is-active {
  opacity: 1;
  pointer-events: all;
}
@media print, screen and (max-width: 1079px) {
  .article-list__page-top {
    right: 0;
  }
  .article-list__page-top img {
    width: 18px;
  }
}
.article-list__sliders {
  overflow: visible;
  transition: 0.6s;
  margin-top: 32px;
}
.article-list__sliders .swiper-button-navi .swiper-button {
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
}
.article-list__sliders .swiper-button-navi .swiper-button:hover {
  opacity: 0.8;
}
.article-list__sliders .swiper-button-navi .swiper-button-prev {
  left: calc(50% - 420px - 20px);
  cursor: pointer;
  transform: translate(0, -25%);
}
.article-list__sliders .swiper-button-navi .swiper-button-next {
  right: calc(50% - 420px - 20px);
  transform: translate(0, 25%);
}
.article-list__sliders .swiper-slide {
  width: 820px;
  position: relative;
  scale: 0.76;
  margin: 0 -60px;
  transition: 0.3s;
}
@media screen and (max-width: 480px) {
  .article-list__sliders .swiper-slide {
    width: 367px;
  }
}
.article-list__sliders .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.article-list__sliders .swiper-slide::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.article-list__sliders .swiper-slide-active {
  scale: 1;
  z-index: 3;
}
.article-list__sliders .swiper-slide-active::before {
  opacity: 0;
}
.article-list__sliders .swiper-pagination {
  bottom: -32px;
}
@media screen and (max-width: 480px) {
  .article-list__sliders .swiper-pagination {
    bottom: -40px;
  }
}
.article-list__sliders .swiper-button-prev,
.article-list__sliders .swiper-button-next {
  border-radius: 100%;
  width: 64px;
  height: 64px;
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  background-image: url("../images/common/icon-chevron.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}
@media print, screen and (max-width: 1079px) {
  .article-list__sliders .swiper-button-prev,
  .article-list__sliders .swiper-button-next {
    display: none;
  }
}
.article-list__sliders .swiper-button-prev {
  left: 4px;
}
.article-list__sliders .swiper-button-next {
  right: 4px;
  scale: -1;
}
.article-list__sliders .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 8px !important;
}
@property --angle {
  .article-list__sliders {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
  }
}
.article-list__sliders .swiper-pagination-bullet-active {
  background-color: #0E63C4;
  position: relative;
  --angle: 0deg;
}
.article-list__sliders .swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: -1;
  border-radius: 100%;
  background: radial-gradient(#fcfcfb 55%, transparent 25%), conic-gradient(#0E63C4 var(--angle), transparent 0deg);
  animation: loadingeffect 5s ease-in-out both;
}
.article-list__header-anker {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__header-anker {
    margin-top: 24px;
    margin-bottom: 12px;
  }
}
.article-list__header-anker a {
  display: flex;
  gap: 8px;
  border-radius: 36px;
  border: 1px solid #fff;
  background: var(--color-button-primary, #0e63c4);
  color: #fff;
  padding: 8px 16px;
}
.article-list__filter-buttons {
  display: grid;
  justify-content: center;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
  align-items: start;
}
.article-list__filter-buttons--seminar {
  gap: 48px;
  grid-template-columns: repeat(2, minmax(auto, 373px));
  margin-bottom: 24px;
}
.article-list__filter-buttons--seminar .article-list__filter-button {
  justify-content: flex-start;
}
@media print, screen and (max-width: 1079px) {
  .article-list__filter-buttons--seminar {
    margin-bottom: 0px !important;
  }
}
@media print, screen and (max-width: 1079px) {
  .article-list__filter-buttons {
    margin-bottom: 32px;
    gap: 16px;
    grid-template-columns: 100%;
  }
}
.article-list__filter-button {
  border: solid 1px #0E63C4;
  padding: 16px 24px;
  color: var(--color-button-primary, #0e63c4);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 4px;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-position: center right 24px;
  background-repeat: no-repeat;
  background: #fff;
  height: 64px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__filter-button {
    background-position: center right 12px;
  }
}
.article-list__filter-button:hover {
  opacity: 0.6;
}
.article-list__filter-button:after {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2225%22%20viewBox%3D%220%200%2025%2025%22%20fill%3D%22none%22%3E%20%3Crect%20width%3D%2223.9883%22%20height%3D%2225%22%20transform%3D%22translate(0.789062)%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M6.78711%209.375L12.7842%2015.625L18.7813%209.375%22%20stroke%3D%22%23001A88%22%20stroke-width%3D%221.52296%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  display: inline-block;
  position: absolute;
  right: 16px;
  top: 31%;
  transform: rotate(0deg);
  /* transition: 0.3s ease; */
}
.article-list__filter-menu {
  position: relative;
}
.article-list__filter-menu.active {
  border-bottom-width: 1px;
}
.article-list__filter-menu.active .article-list__filter-button:after {
  transform: rotate(180deg);
  top: 22%;
}
.article-list__filter-menu.active .article-list__filter-list {
  border: solid 1px var(--color-button-primary, #0e63c4);
  border-radius: 4px;
  padding: 16px 24px;
  position: absolute;
  z-index: 2;
  background: #fff;
  width: 100%;
  top: 72px;
}
.article-list__filter-menu.active ul {
  height: 100%;
}
.article-list__filter-menu ul {
  list-style: none;
  /* border-bottom: 0; */
  /* transition: 0.3s ease; */
  height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.article-list__filter-menu ul li {
  text-align: left;
}
.article-list__filter-menu ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: 0.3s;
  color: var(--sumi-900, #212529);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.article-list__filter-menu--2col ul {
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}
.article-list__filter-menu--2col li:nth-child(2) {
  border-top: none;
}
.article-list__more-button {
  text-align: center;
  margin-top: 48px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__more-button {
    margin-top: 0px;
    margin-bottom: 8px;
  }
}
.article-list__more-button span {
  cursor: pointer;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__more-button span {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
.article-list__header {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
  position: relative;
}
@media print, screen and (max-width: 1079px) {
  .article-list__header {
    padding: 24px 5% 64px;
  }
}
.article-list__header--t1 {
  margin-bottom: 56px;
  background-color: #FDFAF5;
}
@media print, screen and (max-width: 1079px) {
  .article-list__header--t1 {
    padding: 24px 0;
    margin-bottom: 48px;
  }
}
.article-list__header--t1::before {
  content: "";
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  right: 0;
  top: 0;
  width: 35vw;
  height: 100%;
  background-color: #FAF0E3;
}
.article-list__header--t2 {
  margin-bottom: 56px;
  background-color: #FDFAF5;
}
@media print, screen and (max-width: 1079px) {
  .article-list__header--t2 {
    min-height: 400px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 48px;
  }
}
.article-list__header--t2::before {
  content: "";
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  right: 0;
  top: 0;
  width: 35vw;
  height: 100%;
  background-color: #FAF0E3;
}
.article-list__header--t2-2 {
  min-height: auto;
}
@media print, screen and (max-width: 1079px) {
  .article-list__header--t2-2 {
    min-height: auto;
    padding-bottom: 24px;
  }
}
@media print, screen and (max-width: 1079px) {
  .article-list__header .c-section-heading {
    margin-bottom: 16px;
  }
}
@media print, screen and (max-width: 1079px) {
  .article-list__header--t3 {
    padding-bottom: 24px;
  }
}
.article-list__header--seminar {
  margin-bottom: 32px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__header--seminar {
    margin-bottom: 24px;
  }
}
.article-list__features {
  max-width: 1230px;
  margin: 0 auto 0;
  overflow: visible;
}
@media print, screen and (max-width: 1079px) {
  .article-list__features {
    padding: 0 0 48px;
    margin: 0 auto -48px;
  }
}
.article-list__features--medium {
  max-width: 1100px;
}
.article-list__features .c-resource-item--feature::after {
  content: "";
  z-index: 1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), linear-gradient(91deg, rgba(255, 255, 255, 0.8) 0.66%, rgba(255, 255, 255, 0) 99.42%);
  position: absolute;
  left: 0;
  top: 0;
}
.article-list__feature {
  padding: 48px 0;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.25));
}
@media print, screen and (max-width: 1079px) {
  .article-list__feature {
    padding: 32px 0;
    filter: none;
  }
}
.article-list__feature-content {
  background-color: #fff;
  border-radius: 0 16px 16px 0;
}
@media print, screen and (max-width: 1079px) {
  .article-list__feature-content {
    border-radius: 0 0 16px 16px;
  }
}
.article-list__filter {
  max-width: fit-content;
  margin: 0 auto 48px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__filter {
    width: fit-content;
    margin: 0 auto 24px;
  }
}
.article-list__anchor-link {
  padding: 32px 0;
  background-color: #fcfcfb;
}
@media print, screen and (max-width: 1079px) {
  .article-list__anchor-link {
    padding-top: 0;
  }
}
.article-list__tags {
  padding: 32px 0;
  background-color: #fcfcfb;
}
@media print, screen and (max-width: 1079px) {
  .article-list__tags {
    overflow: auto;
    margin-top: -64px;
    padding: 32px 0;
  }
}
.article-list__lists-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__lists-title {
    margin-bottom: 32px;
    font-size: 24px;
  }
}
.article-list .c-case-study-item__content {
  padding: 24px 16px 0px;
}
.article-list__content--seminar {
  padding: 64px 0 0 0;
}
@media print, screen and (max-width: 1079px) {
  .article-list__content--seminar {
    padding: 40px 0 0 0;
  }
}
.article-list__content--seminar:nth-child(odd) {
  background: #f8f9fa;
}
.article-list__content-group + .article-list__content-group {
  padding-top: 64px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__content-group + .article-list__content-group {
    padding-top: 32px;
  }
}
.article-list__content-group {
  padding-bottom: 64px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__content-group {
    padding-bottom: 32px;
  }
}
.article-list__content-group--bgalt:nth-child(even) {
  background: #fcfcfb;
}
.article-list__customer {
  margin-bottom: 64px;
}
.article-list__review {
  margin-bottom: 64px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__review {
    margin-bottom: 32px;
  }
}
.article-list__cta {
  background-color: #FCFCFB;
  padding-top: 64px;
}
@media print, screen and (max-width: 1079px) {
  .article-list__cta {
    padding-top: 24px;
  }
}
.article-list__footer {
  padding-top: 48px;
  padding-bottom: 64px;
}

/*# sourceMappingURL=article-list.css.map */
