@charset "utf-8";
.page {
  background: #f5f5f5;
}

.page__fv {
  margin-top: 92px;
  padding-bottom: 75px;
  background: #fdfdfd;
}

.page__fv-inner.l-inner {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .page__fv-inner.l-inner {
    padding-inline: 50px;
  }
}

.page__fv-container {
  padding-top: 11px;
  border-top: 1px solid #d6d6d6;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.page__fv-title-ja {
  color: #b9a679;
  font-size: clamp(16px, 1.32vw, 18px);
  font-weight: 700;
   letter-spacing: calc(160 / 1000 * 1em);
  font-family: var(--ff-serif);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.page__fv-title-en {
  margin-top: 45px;
  color: var(--color-title);
  font-size: clamp(38px, 4.25vw, 58px);
  font-weight: 400;
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(84 / 58);
}

/* ======================
ページネーション
========================== */
.webgene-pagination ul {
  position: absolute;
  bottom: -110px;
  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: 30px;
  }
}

.number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.number a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: #4b4b4b;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
}

.selected a {
  color: var(--color-white);
  background: #505050;
}

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

/* ページネーション矢印の基本スタイル */
.prev a,
.next a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #919191;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.3s ease;
}

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

/* Prevアイコン（左向き矢印）*/
.prev a::before {
  padding-right: 40px;
  background: url(../images/pagination-left.svg) no-repeat center center/contain;
}

/* Nextアイコン（右向き矢印）*/
.next a::after {
  padding-left: 40px;
  background: url(../images/pagination-right.svg) no-repeat center
    center/contain;
}

/* ホバー・フォーカス時のスタイル */
.prev a:hover,
.prev a:focus,
.next a:hover,
.next a:focus {
  color: #4b4b4b !important;
}

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

.next a:hover::after,
.next a:focus::after {
  background: url(../images/pagination-right-b.svg) no-repeat center
    center/contain;
}
/* ================================
service,partner,companyのheading
=================================== */
.page__contents-title-en {
  font-size: clamp(30px, 2.79vw, 38px);
  font-weight: 400;
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(55 / 38);
  color: #b9a67a;
}

.page__contents-title-ja {
  font-size: clamp(16px, 1.32vw, 18px);
  font-weight: 700;
  letter-spacing: calc(50 / 1000 * 1em);
  line-height: calc(31 / 18);
  color: #483d41;
}
/* ================================
service,partner,companyの帯のタイトル
=================================== */
.page__contents-body-heading {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 14px 20px;
}

.page__contents-body-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: calc(80 / 1000 * 1em);
  line-height: 1.2;
  color: #333333;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .page__contents-body-title {
    gap: 21px;
  }
}

.page__contents-body-title::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #b9a57b;
  border-radius: 50%;
  flex-shrink: 0;
}