@charset "UTF-8";
/*--------------------------------------------
* 【注意】直接編集禁止【注意】
* --------------------------------------------
* blog-custom.cssは直接編集しないでください。
* blog-custom.sassを修正しコンパイルして使用するようにお願いします。
* 修正するファイルはdcms_media/css/sass/blog-custom.scssです。
* 修正後は以下のディレクトリにファイルをインポートしてください
* 
* 
* ============================================
* sassディレクトリ
* ============================================
*   > blog-custom.css 
*   > blog-custom.sass
*   > blog-custom.css.map
* 
* ============================================
* cssディレクトリ
* ============================================
*   > blog-custom.css 
* 
* --------------------------------------------*/
/*-----------------------------------------------------------------------
blog 改修
added 20251208
-----------------------------------------------------------------------*/
/* ────────── contents ────────── */
@media screen and (min-width: 690px) {
  #contents {
    padding: 3rem 20px 120px;
  }
}
/* ────────── 更新日時 ────────── */
:where(.md-media__time) {
  margin-top: 3rem;
}

/* ────────── sns ────────── */
.media-post__sns.--bottom {
  margin-top: 16px;
}

li.hateb iframe {
  width: 122px !important;
}

/* ────────── pagenation ────────── */
@media screen and (min-width: 980px) {
  .media-post__pagenation {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 690px) {
  :where(.md-pager__list) {
    padding-left: 0;
    padding-right: 0;
  }
}
.md-pager__next a:hover,
.md-pager__prev a:hover {
  color: #00a5e3;
}

/* ────────── 記事タイトル ────────── */
@media screen and (min-width: 980px) {
  .media-post__headline {
    font-size: 1.8rem;
  }
}
/* ────────── media-post__image ────────── */
@media screen and (min-width: 980px) {
  .media-post__image {
    margin-top: 2rem;
  }
}
/* ────────── 本文エリア ────────── */
@media screen and (min-width: 980px) {
  .media-post__details {
    margin-top: 2rem;
  }
}
/* ────────── 追従CTA ────────── */
.l-blog-fixed-cta__container {
  background-color: #e9e9e9;
  padding: 24px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 689.8px) {
  .l-blog-fixed-cta__container {
    padding: 16px 0;
  }
}
.l-blog-fixed-cta__container.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-blog-fixed-cta__inner {
  max-width: 1120px;
  width: 96%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 689.8px) {
  .l-blog-fixed-cta__inner {
    gap: 8px;
  }
}
.l-blog-fixed-cta__heading {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  padding: 0 1.5rem;
  display: inline-block;
}
@media screen and (max-width: 689.8px) {
  .l-blog-fixed-cta__heading {
    font-size: 1rem;
  }
}
.l-blog-fixed-cta__heading::before, .l-blog-fixed-cta__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 22px;
  background-color: #000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-blog-fixed-cta__heading::before {
  left: 7px;
  -webkit-transform: translateY(-50%) rotate(-38deg);
          transform: translateY(-50%) rotate(-38deg);
}
.l-blog-fixed-cta__heading::after {
  right: 7px;
  -webkit-transform: translateY(-50%) rotate(38deg);
          transform: translateY(-50%) rotate(38deg);
}
.l-blog-fixed-cta__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 689.8px) {
  .l-blog-fixed-cta__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 979.8px) {
  .l-blog-fixed-cta__button-wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 689.8px) {
  .l-blog-fixed-cta__button-wrap {
    gap: 10px;
  }
}
.l-blog-fixed-cta__button a {
  border-radius: 50px;
  border-style: solid;
  border-width: 1px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  padding: 16px 40px 16px 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 979.8px) {
  .l-blog-fixed-cta__button a {
    font-size: 1.1rem;
    padding: 16px 30px;
  }
}
@media screen and (max-width: 689.8px) {
  .l-blog-fixed-cta__button a {
    font-size: 0.8rem;
    padding: 10px 15px;
  }
}
.l-blog-fixed-cta__button a:after {
  content: none;
}
.l-blog-fixed-cta__button--green a {
  background-color: #4cca50;
  border-color: #4cca50;
}
.l-blog-fixed-cta__button--green a:hover {
  background-color: #fff;
  color: #4cca50;
}
.l-blog-fixed-cta__button--key a {
  background-color: #ed5637;
  border-color: #ed5637;
}
.l-blog-fixed-cta__button--key a:hover {
  background-color: #fff;
  color: #ed5637;
}
/* ────────── ページトップへ移動 ────────── */
.share_top-link {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 1000;
  pointer-events: none;
}
@media screen and (max-width: 689.8px) {
  .share_top-link {
    bottom: 10px;
    right: 10px;
  }
}
.share_top-link .container {
  position: relative;
  margin: 0;
  padding: 0;
  pointer-events: none;
  /* ラッパーと同様 */
}
.share_top-link .top-link {
  position: relative;
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 0.25rem !important;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 689.8px) {
  .share_top-link .top-link {
    width: 52px;
    height: 52px;
  }
}
.share_top-link .top-link.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.share_top-link .top-link::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 689.8px) {
  .share_top-link .top-link::before {
    width: 13px;
    height: 13px;
  }
}
.share_top-link .top-link:hover {
  opacity: 0.8;
}

@media screen and (min-width: 1025px) {
  .media-side__sticky .media-sticky__list > li ~ li {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 680px) and (max-width: 1024.8px) {
  .media-side__sticky .media-sticky__list {
    gap: 1rem 1rem;
  }
}
/*--------------------------------------------
* 【注意】直接編集禁止【注意】
* --------------------------------------------
* blog-custom.cssは直接編集しないでください。
* blog-custom.sassを修正しコンパイルして使用するようにお願いします。
* 修正するファイルはdcms_media/css/sass/blog-custom.scssです。
* 修正後は以下のディレクトリにファイルをインポートしてください
* 
* 
* ============================================
* sassディレクトリ
* ============================================
*   > blog-custom.css 
*   > blog-custom.sass
*   > blog-custom.css.map
* 
* ============================================
* cssディレクトリ
* ============================================
*   > blog-custom.css 
* 
* --------------------------------------------*//*# sourceMappingURL=blog-custom.css.map */