@charset "utf-8";
/*-----------------------------------
フェードイン
------------------------------------*/

.js-fadeIn {
  translate: 0 0;
  opacity: 1;
}

.js-fadeIn.is-start {
  translate: 0 20px;
  opacity: 0;
}

.js-fadeIn.is-show {
  translate: 0 0;
  opacity: 1;
  transition: all 1s ease;
}
/*-----------------------------------
inner
------------------------------------*/
.l-inner {
  padding-inline: 20px;
  margin-inline: auto;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline: 40px;
    max-width: calc(1186px + 40px * 2);
  }
}
/*-----------------------------------
top-title
------------------------------------*/
/* top__title-en */
.top__title-en {
  font-size: 58px;
  font-family: var(--ff-space);
  letter-spacing: -0.04em;
  line-height: 1.62;
  display: block;
}

.top__title-en::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
}
/* top__title-text */
.top__text {
  margin-top: 33px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 2.3;
}

@media screen and (min-width: 768px) {
  .top__text {
    letter-spacing: 0.04em;
  }
}

/*----------------------
tag
 -----------------------*/
.c-tag {
  border-radius: 40px;
  padding: 9px 16px 9px;
  background: var(--white-color);
}

.c-tag__text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--sub-color);
}

@media screen and (min-width: 1024px) {
  .c-tag__text {
    font-size: 15px;
  }
}

.mt-3,
.my-3 {
  margin-top: 0 !important;
}

/*----------------------
 ページネーション
 -----------------------*/
.webgene-pagination {
  margin-top: 76px;
  text-align: center;
}

.webgene-pagination ul {
  display: inline-flex;
  align-items: center;
  gap: 21px;
}

.webgene-pagination .prev a,
.webgene-pagination .next a {
  color: #919191 !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}

.webgene-pagination .prev {
  margin-right: 20px;
}

.webgene-pagination .next {
  margin-left: 20px;
}

.webgene-pagination .prev a::before {
  background: url(../images/prev.svg) no-repeat center center/contain;
}
.webgene-pagination .prev a:hover::before {
  background: url(../images/prev2.svg) no-repeat center center/contain;
}
.webgene-pagination .next a::after {
  background: url(../images/next.svg) no-repeat center center/contain;
}
.webgene-pagination .next a:hover::after {
  background: url(../images/next2.svg) no-repeat center center/contain;
}

.webgene-pagination .prev a::before,
.webgene-pagination .next a::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.webgene-pagination .number a {
  color: #5c5c5c !important;
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.webgene-pagination .number.selected a {
  color: var(--white-color) !important;
  background: var(--title-color);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
