@charset "UTF-8";
:root {
  --yellow: #f5c464;
  --yellow-bg: #fffbef;
  --teal: #50c8b5;
  --teal-bg: #edfaf7;
  --sky: #e5f4fa;
  --sky-dark: #b8dff0;
  --navy: #2d3580;
  --text: #333;
  --text-mid: #666;
  --text-light: #999;
  --white: #fff;
  --border: #ebebeb;
  --purple: #e2c6ff;
}

/* ===============================
　BLOG
=============================== */
/* 記事本文エリア全体のスタイル */
.post-style {
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .post-style {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  }
}

/* 記事内の見出し */
.post-style h1,
.post-style h2,
.post-style h3,
.post-style h4,
.post-style h5,
.post-style h6,
.post-style strong {
  font-weight: bold;
  margin: 1em 0;
}
.post-style h2 {
  font-size: clamp(0px, 32 * var(--rate-fz), 32px * var(--cap));
}
.post-style h3 {
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
}
.post-style h4 {
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
}
.post-style h5 {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
}
.post-style h6 {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
}
@media (max-width: 767px) {
  .post-style h2 {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  }
  .post-style h3 {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
  .post-style h4 {
    font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  }
  .post-style h5 {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  }
  .post-style h6 {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

/* 画像・リンク */
.post-style figure {
  width: 100%;
  margin: clamp(0px, 64 * var(--rate-vw), 64px * var(--cap)) 0;
}

/* テキスト */
.post-style p {
  margin: 2em 0;
}
.post-style figcaption {
  text-align: center;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 400;
}
@media (max-width: 767px) {
  .post-style figcaption {
    font-size: clamp(0px, 12 * var(--rate-fz), 12px * var(--cap));
  }
}

/* リンク */
.post-style a {
  color: #2271b1;
  text-decoration: underline;
}

/* リスト */
.post-style ol {
  counter-reset: count 0;
}
.post-style ol li {
  text-indent: -1em;
  padding-left: 1em;
}
.post-style ol li::before {
  content: counter(count) ".";
  counter-increment: count 1;
}
.post-style ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.post-style ul li::before {
  content: "・";
}

.blog-archive__content {
  padding: clamp(0px, 100 * var(--rate-vw), 100px * var(--cap)) 0;
}
@media (max-width: 767px) {
  .blog-archive__content {
    padding: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap)) 0;
  }
}

.blog-single__content {
  padding: clamp(0px, 100 * var(--rate-vw), 100px * var(--cap)) 0;
}
@media (max-width: 767px) {
  .blog-single__content {
    padding: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap)) 0;
  }
}

.blog-single__wrapper {
  width: calc(1000 / 1200 * 100%);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .blog-single__wrapper {
    width: 100%;
  }
}

.blog-single__category {
  display: inline-block;
  font-size: clamp(0px, 16 * var(--rate-vw), 16px * var(--cap));
  font-weight: 700;
  background: #999;
  border-radius: 1em;
  padding: 0.5em 1em;
}

.blog-single__title {
  margin-top: 0.5em;
  font-size: clamp(0px, 32 * var(--rate-fz), 32px * var(--cap));
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .blog-single__title {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  }
}

.blog-single__thumbnail {
  margin-top: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
}

.blog-single__back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 400;
  text-align: center;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.2em;
  border-bottom: 2px solid transparent;
}
.blog-single__back::before {
  display: inline-block;
  content: "";
  position: relative;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  transform: scale(-1, 1);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #6b7280;
  width: 1em;
  aspect-ratio: 256/256;
  margin-right: 1em;
}
@media (hover: hover) {
  .blog-single__back:hover {
    color: #111827;
    border-bottom: 2px solid #111827;
  }
  .blog-single__back:hover::before {
    background-color: #111827;
  }
}

/* 投稿用のCTA
------------------------------*/
.post-cta {
  background: #fff;
  border-radius: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  padding: clamp(0px, 60 * var(--rate-vw), 60px * var(--cap));
  text-align: center;
}
.post-cta h2 {
  margin-top: 0;
}
@media (max-width: 767px) {
  .post-cta {
    padding: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
    text-align: left;
  }
}

.post-cta__button a {
  color: #fff;
  text-decoration: none;
}