@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;
    max-width: 864px;
    margin-inline: auto;
  }
}
@media (min-width: 1025px) {
  .entry-content {
    padding: 120px 32px;
  }
}
.entry-content p,
.entry-content .wp-block-heading,
.entry-content .wp-block-image,
.entry-content .wp-block-list,
.entry-content .wp-block-quote,
.entry-content .wp-block-table {
  margin-block-end: 32px;
}
@media (min-width: 1025px) {
  .entry-content p,
  .entry-content .wp-block-heading,
  .entry-content .wp-block-image,
  .entry-content .wp-block-list,
  .entry-content .wp-block-quote,
  .entry-content .wp-block-table {
    margin-block-end: 40px;
  }
}
.entry-content p {
  font-weight: 500;
}
.entry-content .wp-block-heading {
  font-weight: 700;
}
.entry-content h2.wp-block-heading {
  position: relative;
  padding-block-end: 4px;
  border-block-end: 4px solid #d7d7d7;
}
.entry-content h2.wp-block-heading::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 h2.wp-block-heading::after {
    width: 258px;
  }
}
@media (min-width: 1025px) {
  .entry-content h2.wp-block-heading::after {
    width: 324px;
  }
}
.entry-content h3.wp-block-heading {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
}
.entry-content h3.wp-block-heading::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(4px);
}
@media (min-width: 1025px) {
  .entry-content h3.wp-block-heading::before {
    transform: translateY(3px);
  }
}
.entry-content figure.wp-block-image img {
  width: 100%;
}
.entry-content figure.wp-block-image figcaption.wp-element-caption {
  margin-block: 8px 0;
  text-align: end;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
  color: #6e6e6e;
}
.entry-content ul.wp-block-list > li ul,
.entry-content ul.wp-block-list > li ol,
.entry-content ol.wp-block-list > li ul,
.entry-content ol.wp-block-list > li ol {
  margin-block-end: 0;
  margin-block-start: 16px;
}
@media (min-width: 1025px) {
  .entry-content ul.wp-block-list > li ul,
  .entry-content ul.wp-block-list > li ol,
  .entry-content ol.wp-block-list > li ul,
  .entry-content ol.wp-block-list > li ol {
    margin-block-start: 24px;
  }
}
.entry-content ul.wp-block-list > li ul li::before,
.entry-content ol.wp-block-list > li ul li::before {
  background: #919191;
}
.entry-content ul.wp-block-list {
  margin-block-end: 32px;
  list-style: none;
}
.entry-content ul.wp-block-list > li {
  padding: 0 0 4px 25px;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .entry-content ul.wp-block-list > li {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.entry-content ul.wp-block-list > li:has(ul), .entry-content ul.wp-block-list > li:has(ol) {
  padding-block-end: 8px;
}
.entry-content ul.wp-block-list > li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: #4d4d4d;
  border-radius: 50%;
}
.entry-content ul.wp-block-list > li + li {
  margin-block-start: 8px;
}
.entry-content ol.wp-block-list {
  margin-block-end: 32px;
  list-style: none;
  counter-reset: my-counter;
}
.entry-content ol.wp-block-list > li {
  padding: 0 0 4px 25px;
  counter-increment: my-counter;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .entry-content ol.wp-block-list > li {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.entry-content ol.wp-block-list > li:has(ul), .entry-content ol.wp-block-list > li:has(ol) {
  padding-block-end: 8px;
}
.entry-content ol.wp-block-list > li::before {
  content: counter(my-counter, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #4d4d4d;
  min-width: 16px;
}
.entry-content ol.wp-block-list > li + li {
  margin-block-start: 8px;
}
.entry-content blockquote.wp-block-quote {
  position: relative;
  margin-block-end: 32px;
  padding: 32px;
  background-color: #f5f5f5;
  border-radius: 16px;
  border: none;
}
.entry-content blockquote.wp-block-quote::before {
  content: "引用";
  position: absolute;
  font-size: 0.875rem;
  line-height: 1.714;
  letter-spacing: 0.01em;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .entry-content blockquote.wp-block-quote::before {
    font-size: 1rem;
    line-height: 1.625;
  }
}
.entry-content blockquote.wp-block-quote p {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .entry-content blockquote.wp-block-quote p {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.entry-content blockquote.wp-block-quote p:first-of-type {
  margin-block-start: calc(1.49975rem + 16px);
}
@media (min-width: 1025px) {
  .entry-content blockquote.wp-block-quote p:first-of-type {
    margin-block-start: calc(1.625rem + 16px);
  }
}
.entry-content blockquote.wp-block-quote p:last-of-type {
  margin-block-end: 0;
}
.entry-content blockquote.wp-block-quote cite {
  margin-block-start: 16px;
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .entry-content blockquote.wp-block-quote cite {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.entry-content .wp-block-table {
  margin-block-end: 32px;
}
.entry-content .wp-block-table thead {
  border: none;
}
.entry-content .wp-block-table tr:nth-of-type(odd) {
  background-color: #f5f5f5;
}
.entry-content .wp-block-table:has(thead) tr:nth-of-type(even) {
  background-color: #f5f5f5;
}
.entry-content .wp-block-table:has(thead) tr:nth-of-type(odd) {
  background-color: transparent;
}
.entry-content .wp-block-table th,
.entry-content .wp-block-table td {
  border: none;
  padding: 16px 24px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
  width: 148px;
}
@media (min-width: 1025px) {
  .entry-content .wp-block-table th,
  .entry-content .wp-block-table td {
    padding: 16px 32px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.entry-content .wp-block-table th {
  color: #ffffff;
  background-color: #4d4d4d;
}
.entry-content .wp-block-table th + th {
  border-inline-start: 1px solid #ffffff;
}
.entry-content .wp-block-table th[scope=row] {
  border-block-start: 1px solid #ffffff;
}
.entry-content .wp-block-table td + td {
  border-inline-start: 1px solid #d7d7d7;
}

.entry-share {
  margin-block-start: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 768px) {
  .entry-share {
    margin-block-start: 40px;
    justify-content: end;
  }
}
.entry-share .entry-share-title {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 1025px) {
  .entry-share .entry-share-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.entry-share .entry-share-buttons {
  display: flex;
  -moz-column-gap: 9px;
       column-gap: 9px;
  padding-inline-start: 16px;
  border-inline-start: 1px solid #4d4d4d;
}
.entry-share .entry-share-buttons .share-button {
  list-style: none;
}
.entry-share .entry-share-buttons .share-button a,
.entry-share .entry-share-buttons .share-button button {
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
}
@media (min-width: 1025px) {
  .entry-share .entry-share-buttons .share-button a,
  .entry-share .entry-share-buttons .share-button button {
    width: 56px;
  }
}
.entry-share .entry-share-buttons .share-button a img,
.entry-share .entry-share-buttons .share-button button img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.cpt-header-decoration__left,
.cpt-header-decoration__right {
  content: "";
  position: absolute;
  width: 226px;
  aspect-ratio: 451/370;
  background-image: url("../images/common/cpt-header-decoration.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media (min-width: 768px) {
  .cpt-header-decoration__left,
  .cpt-header-decoration__right {
    width: 275px;
  }
}
@media (min-width: 1025px) {
  .cpt-header-decoration__left,
  .cpt-header-decoration__right {
    width: 440px;
  }
}

.cpt-header-decoration__left {
  top: -10px;
  right: -2px;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .cpt-header-decoration__left {
    top: auto;
    bottom: -10px;
    transform: scaleX(-1);
  }
}

.cpt-header-decoration__right {
  bottom: -10px;
  left: -2px;
}
