@charset "UTF-8";
/*--------------------------------------------------------------
>>> @use
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Functions
--------------------------------------------------------------*/
/*
 * Convert letter-spacing
 *
 * eg. When tracking = 0.12 on Photoshop, write f-letter-spacing(0.12).
 * @param {number} $tracking - tracking (px)
 */
/*
 * Convert pixels to line-height
 * eg. When the font size is 18 px and the line feed is 28 px write f-line-height( 18, 28 )
 *
 * @param {number} $fontSize - font-size
 * @param {number} $lineFeed - line-feed
 */
/*
 * Convert pixels to rems
 * eg. for a relational value of 12px write f-rem(12)
 * Assumes $em-base is the font-size of 16px
 *
 * @param {number} $pxval - pixel value
 */
/*--------------------------------------------------------------
>>> Mixins
--------------------------------------------------------------*/
/**
 * ブレークポイントの mixin
 * レスポンシブデザイン用のメディアクエリを生成
 *
 * @param {String} $size - ブレークポイントサイズ (md, lg)
 * @param {String} $type - ブレークポイントタイプ (min, max)
 *
 * @example
 * .container {
 *   @include media-breakpoint('lg', 'max') {
 *     padding: 1rem;
 *   }
 * }
 *
 * @example
 * // タブレット以上
 * .header {
 *   @include media-breakpoint('md') {
 *     font-size: 1.2rem;
 *   }
 * }
 */
/**
 * line-clamp の mixin
 * テキストを指定行数で省略表示
 *
 * @param {number} $lines - 表示する行数（デフォルト: 2）
 *
 * @example
 * .title {
 *   @include line_clamp(3);
 * }
 */
/*--------------------------------------------------------------
>>> @use
--------------------------------------------------------------*/
/**
 * フォントサイズの Mixin - font-size, line-height, letter-spacing を一括設定
 *
 * @param {number} $size - フォントサイズ（px単位、単位なし）
 * @param {number} $line-height - 行間の高さ（px単位、省略可）
 * @param {number} $letter-spacing - 文字間隔（em単位、省略可）
 *
 * @example
 *   @include font-size(16);             // 基本使用
 *   @include font-size(24, 30);         // 行間指定
 *   @include font-size(24, null, 0.15); // 文字間隔指定
 *
 * @example サイズ一覧
 *   @include font-size(10);  // 10px, 16px, 0.10px (SP専用、例外)
 *   @include font-size(12);  // 12px, 18px, 0.12px
 *   @include font-size(14);  // 14px, 24px, 0.14px (例外)
 *   @include font-size(16);  // 16px, 26px, 0.16px (例外)
 *   @include font-size(18);  // 18px, 28px, 0.18px (例外)
 *   @include font-size(20);  // 20px, 30px, 0.20px
 *   @include font-size(24);  // 24px, 36px, 0.24px
 *   @include font-size(28);  // 28px, 42px, 0.28px
 *   @include font-size(32);  // 32px, 48px, 0.32px
 *   @include font-size(44);  // 44px, 66px, 0.44px (PC専用)
 *
 * @note 行間は基本1.5倍、例外: 10px→16px, 14px→24px, 16px→26px, 18px→28px
 */
/*--------------------------------------------------------------
>>> @use
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Variables
--------------------------------------------------------------*/
/*
 * 目次
 *
 * button arrow
 * button arrow white
 * button black
 * link area
 * block title 28px
 * block title 24px
 * block title 20px
 * label title 28px
 * label title 24px
 * border title 24px
 * block header
 * keywords
 * post-terms
 */
/*--------------------------------------------------------------
>>> button arrow
--------------------------------------------------------------*/
@keyframes rotate-in {
  0% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
  }
  10% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 80%);
  }
  20% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 60% 100%);
  }
  30% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 20% 100%);
  }
  40% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 80%);
  }
  50% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 50%);
  }
  60% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 20%);
  }
  70% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 0%, 40% 0%);
  }
  80% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 0%, 80% 0%);
  }
  90% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 0%, 100% 0%, 100% 20%);
  }
  100% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 0%, 100% 0%, 100% 50%);
  }
}
/*--------------------------------------------------------------
>>> button arrow white
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> button black
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> link area
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> block title 28px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> block title 24px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> block title 20px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> label title 28px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> label title 24px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> border title 24px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> border title 28px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> block header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> keywords
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> post-terms
--------------------------------------------------------------*/
.archive-area {
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .archive-area {
    padding: 104px 32px;
  }
}
@media (min-width: 1025px) {
  .archive-area {
    padding: 120px 32px;
    max-width: 1264px;
    margin-inline: auto;
  }
}

.archive-items {
  display: grid;
  row-gap: 64px;
}
@media (min-width: 768px) {
  .archive-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1025px) {
  .archive-items {
    gap: 24px;
  }
}

#pagination {
  margin-block-start: 64px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 6px;
       column-gap: 6px;
  align-items: center;
  justify-content: center;
}
.pagination .pagination-numbers,
.pagination .nav-links {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.pagination .pagination-number,
.pagination .page-numbers:not(.next):not(.prev) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #353535;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .pagination .pagination-number,
  .pagination .page-numbers:not(.next):not(.prev) {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.pagination .pagination-number.dots,
.pagination .page-numbers:not(.next):not(.prev).dots {
  font-family: serif;
  pointer-events: none;
}
.pagination .pagination-number.current,
.pagination .page-numbers:not(.next):not(.prev).current {
  color: white;
  -webkit-mask-image: url("../images/common/heptagon.svg");
          mask-image: url("../images/common/heptagon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #4d4d4d;
  cursor: default;
  pointer-events: none;
}
.pagination .pagination-number:hover,
.pagination .page-numbers:not(.next):not(.prev):hover {
  background-image: url("../images/common/heptagon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pagination .prev.pagination-nav,
.pagination .next.pagination-nav,
.pagination .prev.page-numbers,
.pagination .next.page-numbers {
  font-size: 0;
}
.pagination .prev.pagination-nav.disabled,
.pagination .next.pagination-nav.disabled,
.pagination .prev.page-numbers.disabled,
.pagination .next.page-numbers.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination .prev.pagination-nav::before,
.pagination .next.pagination-nav::before,
.pagination .prev.page-numbers::before,
.pagination .next.page-numbers::before {
  display: inline-block;
  content: "";
  width: 32px;
  height: 32px;
  -webkit-mask-size: 13px 13px;
          mask-size: 13px 13px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #353535;
}
@media (min-width: 1025px) {
  .pagination .prev.pagination-nav::before,
  .pagination .next.pagination-nav::before,
  .pagination .prev.page-numbers::before,
  .pagination .next.page-numbers::before {
    width: 40px;
    height: 40px;
    -webkit-mask-size: 16px 16px;
            mask-size: 16px 16px;
  }
}
.pagination .prev.pagination-nav::before,
.pagination .prev.page-numbers::before {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  transform: scaleX(-1);
}
.pagination .prev.pagination-nav:hover::before,
.pagination .prev.page-numbers:hover::before {
  background-color: #919191;
}
.pagination .next.pagination-nav::before,
.pagination .next.page-numbers::before {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
}
.pagination .next.pagination-nav:hover::before,
.pagination .next.page-numbers:hover::before {
  background-color: #919191;
}

.archive-item {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(77, 77, 77, 0.25);
}
.archive-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 19px;
  background-image: linear-gradient(90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d97 71%, #e71f19 86%, #f08619 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.archive-item:hover::before {
  opacity: 1;
}
.archive-item > a {
  display: block;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
}
.archive-item .post-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.archive-item .post-thumbnail-wrapper {
  position: relative;
}
.archive-item .post-thumbnail-wrapper .post-thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-item .post-thumbnail-wrapper .post-terms {
  position: absolute;
  bottom: 0;
  left: 0;
}
.archive-item .post-thumbnail-wrapper .post-terms .post-term {
  display: inline-block;
  padding: 8px 16px;
  border-start-end-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
.archive-item .post-content {
  padding: 16px;
  display: flex;
  row-gap: 16px;
  flex-direction: column;
  flex: 1;
  background-color: #ffffff;
}
@media (min-width: 1025px) {
  .archive-item .post-content {
    padding: 24px;
  }
}
.archive-item .post-content .post-title {
  margin-block-end: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .archive-item .post-content .post-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.archive-item .post-content .post-meta {
  margin-block-start: auto;
  display: flex;
}
.archive-item .post-content .post-meta .post-date {
  margin-inline-start: auto;
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #353535;
}
@media (min-width: 1025px) {
  .archive-item .post-content .post-meta .post-date {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
