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

@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline: 40px;
    max-width: calc(1200px + 40px * 2);
  }
}
/* ===================
レイアウト
==================== */
.l-main {
  background: #fff;
}

/* ======================
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: #aaaaaa;
}

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

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

/* ====================
ボタン
======================= */
.c-link__button,
.c-link__button-back {
  display: block;
}

.c-link__button p,
.c-link__button-back p {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: calc(80 / 1000 * 1em);
  line-height: 1.2;
  display: inline-flex;
  gap: 19px;
  align-items: center;
  justify-content: center;
}

.c-link__button p::after {
  content: "";
  width: 57px;
  height: 31px;
  background: url(../images/c-button-icon-w.svg) no-repeat center center/contain;
  transition: background 0.5s ease;
}

.c-link__button-back p::before {
  content: "";
  width: 57px;
  height: 31px;
  background: url(../images/c-backbutton-icon-w.svg) no-repeat center
    center/contain;
  transition: background 0.5s ease;
}

.c-link__button:hover,
.c-link__button-back:hover {
  opacity: 1;
}

.c-link__button-back:hover p::before {
  background: url(../images/c-backbutton-icon-b.svg) no-repeat center
    center/contain;
}

.c-link__button:hover p::after {
  background: url(../images/c-button-icon-b.svg) no-repeat center center/contain;
}

/* ===================
カテゴリー
===================== */
.c-category__wrapper .webgene-blog {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  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: 100px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-base);
  background: #fff;
  border-radius: 50px;
  padding: 10px;
  border: 1px solid var(--color-base);
}

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

.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);
}

/* ===================
アンダーライン
==================== */
.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%;
}

/* ===================
snsアイコン
==================== */
.c-sns__instagram,
.c-sns__x {
  aspect-ratio: 20/20;
  width: 20px;
  height: auto;
}

.c-sns__instagram img,
.c-sns__x img {
  aspect-ratio: 20/20;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: auto;
}

.c-sns__tictok {
  aspect-ratio: 20/24;
  width: 20px;
  height: auto;
}

.c-sns__tictok img {
  aspect-ratio: 20/24;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: auto;
}


/* ======================
ページネーション
========================== */
.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%;
}

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

@media screen and (min-width: 500px) {
  .number a {
    width: 40px;
  }
}

@media screen and (min-width: 768px) {
  .number a {
    width: 57px;
  }
}

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

/* ページネーション矢印の基本スタイル */
.prev a,
.next a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--color-base);
  font-size: clamp(14px, 1.18vw, 16px);
  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: 60px;
  }
}

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

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

@media screen and (min-width: 768px) {
  .prev a::before,
  .next a::after {
    width: 57px;
  }
}

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

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

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

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