@charset "utf-8";
/* ===================
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(1266px + 40px * 2);
  }
}
/* ===================
section
==================== */
.l-section {
  padding-top: 11px;
  position: relative;
}

.l-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  padding-inline: 15px;
  width: calc(100% - 15px * 2);
  background: #d6d6d6;
}

@media screen and (min-width: 768px) {
  .l-section::before {
    max-width: 1266px;
    width: calc(100% - 40px * 2);
  }
}

/* ===================
logo
==================== */
.c-logo {
  flex-shrink: 0;
  padding: 11px 15px 8px 20px;
  border-radius: 5px;
  background: #b9a679;
  color: var(--color-white);
}

.c-logo__ja {
  font-size: clamp(14px, 1.18vw, 16px);
  font-weight: 600;
  letter-spacing: calc(160 / 1000 * 1em);
  line-height: calc(23 / 16);
  font-family: var(--ff-serif);
  color: var(--color-white);
}

.c-logo__en {
  color: var(--color-white);
  font-size: clamp(8.5px, 0.7vw, 9.5px);
  font-weight: 400;
  letter-spacing: calc(80 / 1000 * 1em);
  line-height: calc(14 / 9.5);
}

/* ===================
heading
==================== */
.c-heading {
  color: var(--color-title);
}

.c-heading__ja {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 1.32vw, 18px);
  font-weight: 700;
  letter-spacing: calc(160 / 1000 * 1em);
  line-height: calc(26 / 18);
  display: flex;
  align-items: center;
  gap: 9px;
}

.c-heading__ja::before {
  content: "";
  width: 22px;
  height: 13px;
  background: url(../images/top-heading-icon.svg) no-repeat center center /
    contain;
}

.c-heading__en {
  margin-top: 28px;
  font-size: clamp(40px, 3.52vw, 48px);
  font-weight: 400;
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(70 / 48);
}
/* ===================
swiper-wrapper
==================== */
.swiper-wrapper {
  display: flex;
}
/* ===================
カテゴリー
===================== */
.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 {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #505050;
  background: var(--color-white);
  border-radius: 50px;
  padding: 10px;
}

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

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

/* =====================
パンくずリスト
=======================-- */
.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 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: calc(50 / 1000 * 1em);
  line-height: 1;
  padding: 13px 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: 28px;
  background: #505050;
  color: var(--color-white);
  border: 1px solid #505050;
  transition: all 0.3s ease;
}

.c-link__button:hover {
  background: var(--color-white);
  color: #505050 !important;
}
