@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
--------------------------------------------------------------*/
.entry-content {
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .entry-content {
    padding: 104px 32px;
  }
}
@media (min-width: 1025px) {
  .entry-content {
    padding: 120px 32px;
    max-width: 1264px;
    margin-inline: auto;
  }
}
.entry-content .search-form-area .search-form-title {
  margin-block-end: 0;
  position: relative;
  padding-block-end: 4px;
  border-block-end: 4px solid #d7d7d7;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
.entry-content .search-form-area .search-form-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 88px;
  height: 4px;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
}
@media (min-width: 768px) {
  .entry-content .search-form-area .search-form-title::after {
    width: 258px;
  }
}
@media (min-width: 1025px) {
  .entry-content .search-form-area .search-form-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
  .entry-content .search-form-area .search-form-title::after {
    width: 324px;
  }
}
.entry-content .search-form-area .search-form-description {
  margin-block: 32px 0;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .entry-content .search-form-area .search-form-description {
    margin-block: 40px 0;
  }
}
.entry-content .search-form-area .search-form {
  margin-block-start: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (min-width: 1025px) {
  .entry-content .search-form-area .search-form {
    margin-block-start: 40px;
    row-gap: 24px;
  }
}
.entry-content .search-form-area .search-form .search-box {
  padding: 16px 24px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  background-color: #ffffff;
  border: 1px solid #919191;
  border-radius: 8px;
}
.entry-content .search-form-area .search-form .search-box::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  -webkit-mask-image: url("../images/common/icon-search.svg");
          mask-image: url("../images/common/icon-search.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: #d7d7d7;
  pointer-events: none;
}
.entry-content .search-form-area .search-form .search-box input {
  width: 100%;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 500;
  color: #353535;
}
.entry-content .search-form-area .search-form .search-box input::-moz-placeholder {
  font-weight: 700;
  color: #d7d7d7;
}
.entry-content .search-form-area .search-form .search-box input::placeholder {
  font-weight: 700;
  color: #d7d7d7;
}
.entry-content .search-form-area .search-form .search-tags {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 4px;
       column-gap: 4px;
  list-style: none;
}
.entry-content .search-form-area .search-form .search-tags li > a {
  padding: 4px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #353535;
  text-decoration: none;
  border-radius: 4px;
}
@media (min-width: 1025px) {
  .entry-content .search-form-area .search-form .search-tags li > a {
    padding: 4px 8px;
  }
}
.entry-content .search-form-area .search-form .search-tags li > a:hover, .entry-content .search-form-area .search-form .search-tags li > a.is-active {
  background-color: #f5f5f5;
}
.entry-content .search-results-area .search-form-title {
  margin-block: 40px 0;
  position: relative;
  padding-block-end: 4px;
  border-block-end: 4px solid #d7d7d7;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
.entry-content .search-results-area .search-form-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 88px;
  height: 4px;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
}
@media (min-width: 768px) {
  .entry-content .search-results-area .search-form-title::after {
    width: 258px;
  }
}
@media (min-width: 1025px) {
  .entry-content .search-results-area .search-form-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
  .entry-content .search-results-area .search-form-title::after {
    width: 324px;
  }
}
.entry-content .search-results-area .found-posts {
  margin-block-start: 32px;
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  align-items: baseline;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .entry-content .search-results-area .found-posts {
    margin-block-start: 40px;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.entry-content .search-results-area .found-posts span {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  transform: translateY(1px);
}
@media (min-width: 1025px) {
  .entry-content .search-results-area .found-posts span {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.entry-content .search-results-area .results-items {
  margin-block-start: 24px;
}
@media (min-width: 1025px) {
  .entry-content .search-results-area .results-items {
    margin-block-start: 40px;
  }
}
.entry-content .search-results-area .results-items .results-item > a {
  padding: 32px;
  display: block;
  position: relative;
  border-block-end: 1px solid #d7d7d7;
  color: #353535;
  text-decoration: none;
}
.entry-content .search-results-area .results-items .results-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  transition: width 0.4s;
}
.entry-content .search-results-area .results-items .results-item > a:hover::after {
  width: 100%;
}
@media (min-width: 1025px) {
  .entry-content .search-results-area .results-items .results-item > a {
    padding: 40px;
  }
}
.entry-content .search-results-area .results-items .results-item > a:hover .post-title,
.entry-content .search-results-area .results-items .results-item > a:hover .post-excerpt {
  color: rgba(53, 53, 53, 0.8);
}
.entry-content .search-results-area .results-items .results-item > a .post-title {
  margin-block-end: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .entry-content .search-results-area .results-items .results-item > a .post-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.entry-content .search-results-area .results-items .results-item > a .post-excerpt {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .entry-content .search-results-area .results-items .results-item > a .post-excerpt {
    margin-block: 24px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.entry-content .search-results-area .results-none .results-none-title {
  margin-block-end: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .entry-content .search-results-area .results-none .results-none-title {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.entry-content .search-results-area .results-none .results-none-message {
  margin-block: 4px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .entry-content .search-results-area .results-none .results-none-message {
    margin-block: 8px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.entry-content .search-results-area #pagination {
  margin-block-start: 40px;
}
@media (min-width: 1025px) {
  .entry-content .search-results-area #pagination {
    margin-block-start: 64px;
  }
}
