@charset "UTF-8";
/* ==============================
      お知らせ記事ページ
============================== */
.single {
  padding-top: 72px;
}

.single__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 800px;
  padding: 80px 0;
}

/* ==============================
      本文エリア
============================== */
.single__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.single__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.single__date {
  font-family: var(--font-family-zen);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1.9px;
  color: #777a8d;
}

.single__title {
  font-family: var(--font-family-zen);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 3.1px;
  color: var(--color-primary);
}

.single__divider {
  width: 100%;
  height: 1px;
  background-color: #dedede;
  border: none;
  margin: 0;
}

.single__content {
  width: 100%;
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 4px;
  color: var(--color-primary);
}
.single__content p {
  margin-bottom: 0;
}
.single__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
}
.single__content a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ==============================
      シェア＆ナビゲーション
============================== */
.single__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.single__share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  width: 100%;
  height: 96px;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.single__share-label {
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.6px;
  color: #777a8d;
}

.single__share-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.single__share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.single__share-icon svg {
  display: block;
}

/* ==============================
      前後の記事ナビ
============================== */
.single__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 96px;
}

.single__nav-prev,
.single__nav-next {
  width: 120px;
}

.single__nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-family-zen);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.7px;
  color: var(--color-secondary);
  text-decoration: none;
}

.single__nav-back {
  justify-content: center;
}

.single__nav-next .single__nav-link {
  justify-content: flex-end;
}

.single__nav-arrow {
  display: block;
  width: 25px;
  height: 8px;
  position: relative;
}
.single__nav-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-secondary);
}
.single__nav-arrow--prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-left: 1px solid var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  transform: translateY(-50%) rotate(45deg);
}
.single__nav-arrow--next::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--color-secondary);
  border-top: 1px solid var(--color-secondary);
  transform: translateY(-50%) rotate(45deg);
}

/* ==============================
      レスポンシブ（SP）
============================== */
@media (max-width: 768px) {
  .single__contents {
    width: 100%;
    padding: 56px 0 80px;
  }
  .single__body {
    padding: 0 24px;
  }
  .single__title {
    font-size: 24px;
    letter-spacing: 2.4px;
  }
  .single__footer {
    width: 100%;
  }
  .single__share {
    width: 100%;
  }
  .single__nav {
    padding: 0 24px;
  }
  .single__nav-back {
    text-align: center;
    line-height: 1.4;
  }
}/*# sourceMappingURL=single.css.map */