@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 {
  display: grid;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .entry-content {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    max-width: none;
  }
}
@media (min-width: 1200px) {
  .entry-content {
    -moz-column-gap: 80px;
         column-gap: 80px;
    max-width: 1264px;
  }
}

.download-single-item .download-content {
  min-width: 0;
}
.download-single-item .download-content .download-title {
  margin-block-end: 0;
  position: relative;
  padding-block-end: 4px;
  border-block-end: 4px solid #d7d7d7;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
.download-single-item .download-content .download-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) {
  .download-single-item .download-content .download-title::after {
    width: 124px;
  }
}
@media (min-width: 1025px) {
  .download-single-item .download-content .download-title {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
  .download-single-item .download-content .download-title::after {
    width: 150px;
  }
}
.download-single-item .download-content .download-slide {
  margin-block-start: 24px;
}
@media (min-width: 1025px) {
  .download-single-item .download-content .download-slide {
    margin-block-start: 32px;
  }
}
.download-single-item .download-content .download-datas {
  margin-block: 16px 0;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
  font-weight: 500;
  color: #6e6e6e;
  text-align: right;
}
@media (min-width: 768px) {
  .download-single-item .download-content .download-datas {
    margin-block-start: 24px;
  }
}
@media (min-width: 1025px) {
  .download-single-item .download-content .download-datas {
    margin-block-start: 16px;
  }
}
.download-single-item .download-content .download-toc-title {
  margin-block: 40px 0;
  position: relative;
  padding-block-end: 4px;
  border-block-end: 4px solid #d7d7d7;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
.download-single-item .download-content .download-toc-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) {
  .download-single-item .download-content .download-toc-title::after {
    width: 124px;
  }
}
@media (min-width: 1025px) {
  .download-single-item .download-content .download-toc-title {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
  .download-single-item .download-content .download-toc-title::after {
    width: 150px;
  }
}
@media (min-width: 1025px) {
  .download-single-item .download-content .download-toc-title {
    margin-block: 64px 0;
  }
}
.download-single-item .download-content .download-toc {
  margin-block-start: 24px;
  list-style: none;
  counter-reset: my-counter;
}
@media (min-width: 1025px) {
  .download-single-item .download-content .download-toc {
    margin-block-start: 32px;
  }
}
.download-single-item .download-content .download-toc .download-toc-item {
  counter-increment: my-counter;
  padding-block: 10px 6px;
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .download-single-item .download-content .download-toc .download-toc-item {
    padding-block: 8px 6px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.download-single-item .download-content .download-toc .download-toc-item::before {
  content: counter(my-counter, decimal-leading-zero);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.download-single-item .download-content .download-toc .download-toc-item + .download-toc-item {
  margin-block-start: 8px;
}
@media (min-width: 1025px) {
  .download-single-item .download-content .download-toc .download-toc-item + .download-toc-item {
    margin-block-start: 16px;
  }
}
.download-single-item .download-form .hbspt-form iframe {
  display: block;
}

.download-slide.swiper {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .download-slide.swiper {
    width: calc(100% + 40px);
    margin-inline: -20px;
    padding-inline: 20px;
  }
}
@media (min-width: 1025px) {
  .download-slide.swiper {
    width: calc(100% + 60px);
    margin-inline: -30px;
    padding-inline: 30px;
  }
}
.download-slide.swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.download-slide.swiper .swiper-button-next,
.download-slide.swiper .swiper-button-prev {
  position: absolute;
  top: calc(50% + 4px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 4.5px solid #f5f5f5;
}
.download-slide.swiper .swiper-button-next:hover,
.download-slide.swiper .swiper-button-prev:hover {
  border-color: transparent;
  transition: border-color 0.3s ease;
}
.download-slide.swiper .swiper-button-next:hover::before,
.download-slide.swiper .swiper-button-prev:hover::before {
  opacity: 1;
  transform: scale(1);
}
.download-slide.swiper .swiper-button-next::before,
.download-slide.swiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (min-width: 1025px) {
  .download-slide.swiper .swiper-button-next,
  .download-slide.swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
  }
}
.download-slide.swiper .swiper-button-next::after,
.download-slide.swiper .swiper-button-prev::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  -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: #353535;
}
@media (min-width: 1025px) {
  .download-slide.swiper .swiper-button-next::after,
  .download-slide.swiper .swiper-button-prev::after {
    width: 24px;
    height: 24px;
  }
}
.download-slide.swiper .swiper-button-next {
  right: 10px;
}
@media (min-width: 768px) {
  .download-slide.swiper .swiper-button-next {
    right: 0;
  }
}
.download-slide.swiper .swiper-button-next::after {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  transform: translateX(1px);
}
.download-slide.swiper .swiper-button-prev {
  left: 10px;
}
@media (min-width: 768px) {
  .download-slide.swiper .swiper-button-prev {
    left: 0;
  }
}
.download-slide.swiper .swiper-button-prev::after {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  transform: scaleX(-1) translateX(1px);
}

.download-thumbs.swiper {
  margin-block-start: 16px;
}
@media (min-width: 1025px) {
  .download-thumbs.swiper {
    margin-block-start: 24px;
  }
}
.download-thumbs.swiper .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s;
}
.download-thumbs.swiper .swiper-slide-thumb-active {
  opacity: 1;
}
