@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-header,
.page-item .entry-header,
.services-single-item .entry-header {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  background-size: 100% 8px;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.archive-header::before,
.page-item .entry-header::before,
.services-single-item .entry-header::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: -1px;
  width: 112px;
  aspect-ratio: 1/1;
  background-image: url("../images/common/decoration-triangle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: -1;
}
@media (min-width: 768px) {
  .archive-header::before,
  .page-item .entry-header::before,
  .services-single-item .entry-header::before {
    bottom: 0;
  }
}
@media (min-width: 1025px) {
  .archive-header::before,
  .page-item .entry-header::before,
  .services-single-item .entry-header::before {
    width: 162px;
  }
}

.archive-header-decoration,
.page-item .entry-header-decoration,
.services-single-item .entry-header-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.archive-header-decoration__circle,
.page-item .entry-header-decoration__circle,
.services-single-item .entry-header-decoration__circle {
  position: absolute;
  bottom: -96px;
  right: -3px;
  width: 200px;
  aspect-ratio: 405/399;
  background-image: url("../images/common/decoration-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  animation: float 4s ease-in-out infinite;
  z-index: -3;
}
@media (min-width: 768px) {
  .archive-header-decoration__circle,
  .page-item .entry-header-decoration__circle,
  .services-single-item .entry-header-decoration__circle {
    bottom: -120px;
    right: -6px;
    width: 280px;
  }
}
@media (min-width: 1025px) {
  .archive-header-decoration__circle,
  .page-item .entry-header-decoration__circle,
  .services-single-item .entry-header-decoration__circle {
    bottom: -158px;
    right: -8px;
    width: 395px;
  }
}
.archive-header-decoration__diamond,
.page-item .entry-header-decoration__diamond,
.services-single-item .entry-header-decoration__diamond {
  position: absolute;
  bottom: calc(100% - 136px);
  right: -82px;
  width: 280px;
  aspect-ratio: 1/1;
  background-image: url("../images/common/decoration-diamond.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  animation: float-reverse 5s ease-in-out infinite;
  animation-delay: 2s;
  z-index: -2;
}
@media (min-width: 768px) {
  .archive-header-decoration__diamond,
  .page-item .entry-header-decoration__diamond,
  .services-single-item .entry-header-decoration__diamond {
    bottom: -133px;
    right: 192px;
    width: 266px;
  }
}
@media (min-width: 1025px) {
  .archive-header-decoration__diamond,
  .page-item .entry-header-decoration__diamond,
  .services-single-item .entry-header-decoration__diamond {
    bottom: -200px;
    right: 268px;
    width: 394px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}
@keyframes float-reverse {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(8px) rotate(-2deg);
  }
}
.archive-header-inner,
.page-item .entry-header-inner,
.services-single-item .entry-header-inner {
  padding: 172px 24px 180px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .archive-header-inner,
  .page-item .entry-header-inner,
  .services-single-item .entry-header-inner {
    padding: 112px 32px;
  }
}
@media (min-width: 1025px) {
  .archive-header-inner,
  .page-item .entry-header-inner,
  .services-single-item .entry-header-inner {
    padding: 158px 120px;
    max-width: 1440px;
    margin-inline: auto;
  }
}

.archive-header-label,
.page-item .entry-header-label,
.services-single-item .entry-header-label {
  margin-block-end: 8px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
.archive-header-label::before,
.page-item .entry-header-label::before,
.services-single-item .entry-header-label::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(1px);
}
@media (min-width: 1025px) {
  .archive-header-label,
  .page-item .entry-header-label,
  .services-single-item .entry-header-label {
    margin-block-end: 16px;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}

.archive-header-title,
.page-item .entry-header-title,
.services-single-item .entry-header-title {
  margin-block-end: 0;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.32px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .archive-header-title,
  .page-item .entry-header-title,
  .services-single-item .entry-header-title {
    font-size: 2.75rem;
    line-height: 1.5;
    letter-spacing: 0.44px;
  }
}

.archive-header-description,
.page-item .entry-header-description,
.services-single-item .entry-header-description {
  margin-block-start: 16px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .archive-header-description,
  .page-item .entry-header-description,
  .services-single-item .entry-header-description {
    max-width: 550px;
  }
}
@media (min-width: 1025px) {
  .archive-header-description,
  .page-item .entry-header-description,
  .services-single-item .entry-header-description {
    margin-block-start: 24px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
    max-width: 700px;
  }
}
