@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;
  width: 100%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline: 40px;
    max-width: calc(1200px + 40px * 2);
  }
}

@media screen and (min-width: 768px) {
  .l-inner02.l-inner {
    max-width: calc(1060px + 40px * 2);
  }
}

/* ===================
top__section-inner
==================== */
.top__section-inner {
  padding-inline: 20px;
  width: 100%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .top__section-inner {
    padding-inline: 40px;
    max-width: calc(1120px + 40px * 2);
  }
}

/* ======================
swiper
========================= */
.swiper-wrapper {
  display: flex;
}

/* =====================
パンくずリスト
=======================-- */
.c-breadcrumbs__wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media screen and (min-width: 768px) {
  .c-breadcrumbs__wrapper {
    gap: 16px;
  }
}

.c-breadcrumbs__link {
  color: var(--color-white);
}

.c-breadcrumbs__text {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: calc(60 / 1000 * 1em);
}

.c-breadcrumbs__icon {
  width: 7px;
  height: auto;
  aspect-ratio: 7/8;
}

.c-breadcrumbs__icon img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* ===================
カテゴリー
===================== */
.c-category__wrapper .webgene-blog {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .c-category__wrapper .webgene-blog {
    justify-content: flex-start;
  }
}

.c-category__wrap {
  height: auto;
  display: block;
}

.c-category {
  text-align: center;
  min-width: 120px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-base);
  background: #fff;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .c-category {
    padding: 16px 19px 15px;
    min-width: 160px;
  }
}

.c-category:focus,
.c-category:active,
.c-category:hover {
  color: #fff !important;
  background: var(--color-base);
  opacity: 1;
}

/* ===================
heading
==================== */
/* .c-top__heading {
  white-space: nowrap;
  font-size: clamp(40px, 3.96vw, 54px);
  font-weight: 900;
  letter-spacing: calc(-10 / 1000 * 1em);
  line-height: 1.2;
  font-family: var(--font-en);
}

.c-heading__small {
  white-space: nowrap;
  font-family: var(--font-en);
  font-size: clamp(20px, 1.76vw, 24px);
  font-weight: 700;
  letter-spacing: calc(10 / 1000 * 1em);
} */

/* ======================
ページネーション
========================== */
.webgene-pagination ul {
  position: absolute;
  bottom: -101px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  width: 100%;
}

@media screen and (min-width: 1000px) {
  .webgene-pagination ul {
    gap: 10px;
  }
}

.number a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-base);
  background: var(--color-white);
  border-radius: 50%;
  transition: all 0.3s ease;
  aspect-ratio: 30/30;
  width: 30px;
  height: auto;
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 400;
}

.number a:hover {
  color: var(--color-base) !important;
}

.selected a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-base);
  color: var(--color-white);
  font-weight: 400;
}

.selected a:hover {
  color: var(--color-white) !important;
}

/* ページネーション矢印の基本スタイル */
.prev a,
.next a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #919191;
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: calc(80 / 1000 * 1em);
  transition: all 0.3s ease;
}

@media screen and (min-width: 1000px) {
  .prev a {
    padding-right: 30px;
    gap: 11px;
  }
}

@media screen and (min-width: 1000px) {
  .next a {
    padding-left: 30px;
    gap: 11px;
  }
}

/* 疑似要素の基本設定 */
.prev a::before,
.next a::after {
  content: "";
  flex-shrink: 0;
  aspect-ratio: 40/40;
  width: 40px;
  transition: all 0.3s ease;
}

/* Prevアイコン（左向き矢印）*/
.prev a::before {
  background: url(../images/c-prev-icon-w.svg) no-repeat center center/contain;
}

/* Nextアイコン（右向き矢印）*/
.next a::after {
  background: url(../images/c-next-icon-w.svg) no-repeat center center/contain;
}

/* ホバー・フォーカス時のアイコン変更 */
.prev a:hover::before,
.prev a:focus::before {
  background: url(../images/c-prev-icon-b.svg) no-repeat center center/contain;
}

.next a:hover::after,
.next a:focus::after {
  background: url(../images/c-next-icon-b.svg) no-repeat center center/contain;
}

/* ===================
アンダーライン
==================== */
/* .hover-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.hover-underline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-base);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.hover-underline:hover::after {
  width: 100%;
} */

/* ======================
ボタン
======================= */

.section__button-link {
  color: var(--color-white);
}

.section__button-link--black {
  color: var(--color-base);
}

.section__button-link p {
  overflow: hidden;
  font-size: clamp(11px, 0.96vw, 13px);
  font-weight: 600;
  letter-spacing: calc(60 / 1000 * 1em);
  line-height: 1.2;
  padding: 10px 57px 10px 40px;
  border: 1px solid var(--color-white);
  position: relative;
  display: inline-block;
  transition: scale 0.3s ease;
}

.section__button-link--black p {
  border: 1px solid var(--color-base);
}

.section__button-link p::after {
  position: absolute;
  content: "";
  aspect-ratio: 9/8;
  width: 9px;
  height: auto;
  background: url(../images/metro-arrow-right.svg) no-repeat center
    center/contain;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: none; /* transitionを削除 */
}

.section__button-link--black p::after {
  background: url(../images/metro-arrow-right-black.svg) no-repeat center
    center/contain;
}

.section__button-link:hover {
  opacity: 1;
}

.section__button-link:hover p {
  scale: 1.1;
}

.section__button-link:hover p::after {
  animation: arrowSlideOut 0.6s ease-in-out forwards;
}

/* ホバー終了時は即座に元の位置に戻る */
.section__button-link:not(:hover) p::after {
  right: 24px;
  opacity: 1;
}

@keyframes arrowSlideOut {
  0% {
    right: 24px;
    opacity: 1;
  }

  50% {
    right: -20px;
    opacity: 0;
  }

  51% {
    right: 80px;
    opacity: 0;
  }

  100% {
    right: 24px;
    opacity: 1;
  }
}

/* ===================
縦書き
==================== */
.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

/*=====================
 下層ページ"青のタイトル"
 ====================== */
.card__title {
  position: relative;
  font-size: clamp(14px, 1.18vw, 16px);
  font-weight: 600;
  letter-spacing: calc(60 / 1000 * 1em);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #569cdb;
  gap: 8px;
}

@media screen and (min-width: 600px) {
  .card__title {
    text-align: left;
    font-size: clamp(14px, 1.62vw, 22px);
    justify-content: flex-start;
  }
}

.card__title::before {
  content: "";
  width: 12px;
  height: auto;
  aspect-ratio: 12/35;
  background: url(../images/quotation-left.svg) no-repeat center top/contain;
}

.card__title::after {
  content: "";
  width: 12px;
  height: auto;
  aspect-ratio: 12/35;
  background: url(../images/quotation-right.svg) no-repeat center top/contain;
}

.card__text {
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 500;
  line-height: calc(33 / 15);
  color: var(--color-page-section-text);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .card__text {
    gap: 30px;
  }
}
