/** Shopify CDN: Minification failed

Line 230:2 Unexpected "}"
Line 234:0 Unexpected "}"

**/
/* コラムカテゴリに表示される目次 */
.generated-toc {
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin: 32px 0;
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}

.toc-title {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
}


.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-item {
  padding: 4px 0;
  border-left: 3px solid transparent;
  transition: border-color 0.2s ease;
}

.toc-item--child {
  padding-left: 24px;
  font-size: 0.95em;
  color: #555;
}

.toc-link {
  color: #333;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.toc-link:hover {
  color: #007185;
}

/* コラム */
.article--heading .article--header--info {
  padding:0;
}
.article--title{padding-bottom:0.5em;}
.posttime-updatetime{padding-top: 1em;}


/* 著者情報 */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px;
  margin-top: 48px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 800px;
}
.author-box__label{
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.author-box__left {
  text-align: center;
  flex-shrink: 0;
  width: 190px;
}

.author-box__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.author-box__name {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

.author-box__position {
  font-size: 0.9rem;
  color: #666;
  margin-top: 4px;
}

.author-box__right {
  flex: 1;
  font-size: 0.95rem;
  color: #333;
  margin-top: auto;
}

.author-box__text {
  margin-bottom: 1em;
  line-height: 1.6;
}

.author-box__link {
  color: #0066cc;  
  font-weight: 500;
  text-decoration: underline !important;
}

.author-box__link:hover {
  text-decoration: none !important;
}

.author-box__sns {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.author-box__sns svg {
  width: 20px;
  height: 20px;
  vertical-align: middle; 
  display: inline-block;
}

.author-box__sns a {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.author-box__sns a:hover {
  color: #0066cc;
}

@media (max-width: 768px) {
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  .author-box__left {
    width: 100%;
  }
}

.breadcrumb {
  font-size: 12px;
  margin-bottom: 16px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item::after {
  content: ">";
  margin-left: 6px;
}

.breadcrumb__item:last-child::after {
  content: "";
}

.breadcrumb__item a {
  text-decoration: none;
  color: #666;
}

.breadcrumb__item.is-current {
  color: #999;
}

/* .image--container {
  aspect-ratio: 4 / 3;
  padding-top: 0 !important;
} */

/* 関連記事サムネイルのみ 4:3 に統一（比率は歪ませず切り抜き） */
.article--recents-image .image--container {
  aspect-ratio: 4 / 3;
  padding-top: 0 !important;
}
.article--recents-image .image--root img {
  object-fit: cover;
}

/* ヘッダー固定（共通）20260601 削除 ↓↓↓ */
/* ヘッダー固定（共通）20260326 追加 ↓↓↓ */
/* #shopify-section-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
} */

/* スマホ（767px以下） */
/* @media (max-width: 767px) {
  .off-canvas--main-content {
    padding-top: 74px !important; /* スマホのヘッダー高さ */
  }
  .header--mobile{
    padding: 6px 16px !important;;
  }
} */

/* PC（768px以上） */
/* @media (min-width: 768px) {
  .off-canvas--main-content {
    padding-top: 108px !important; /* PCのヘッダー高さ */
  }
} */

/* @media (min-width: 768px) {

  #shopify-section-header .header--root{
    padding: 21px 48px 0;
  }
  #shopify-section-header .header--bottom-row{
    padding-top: 0px;
    min-height: 46px;
  }
  #shopify-section-header a.header--cart-link{
    margin-top: -18px;
  }
  #shopify-section-header .x-menu--level-1--link>a {
    padding-bottom: 16px;
  }
  #shopify-section-header .header--cart {
    top: 10px;
  }

} */

/* ----------------------------
   記事内アンカーリンクのスクロール位置調整
   固定ヘッダー（約80px）に見出しが隠れないようにする
----------------------------- */
/* .article--content h2,
.article--content h3 {
  scroll-margin-top: 80px;
} */

/* ヘッダー固定（共通）20260326 追加 ↑↑↑ */
/* ヘッダー固定（共通）20260601 削除 ↑↑↑ */