/** Shopify CDN: Minification failed

Line 202:0 Expected "}" to go with "{"

**/
/* 共通 */
.article__wrapper p span {
    font-family: var(--fontNotoSans)!important;
    font-size: 14px!important;
}

.article__wrapper h2 {
    font-family: var(--fontNotoSans) !important;
    font-size: 20px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-indent: 0;
}
.article__wrapper h2 span {
    font-family: var(--fontNotoSans) !important;
    font-size: 20px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-indent: 0;
}

.article__wrapper h3 {
    font-family: var(--fontNotoSans) !important;
    font-size: 18px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-indent: 0;
}
.article__wrapper h3 span {
    font-family: var(--fontNotoSans) !important;
    font-size: 18px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-indent: 0;
}

.article__wrapper h4 {
    font-family: var(--fontNotoSans) !important;
    font-size: 16px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-indent: 0;
}
.article__wrapper h4 span {
    font-family: var(--fontNotoSans) !important;
    font-size: 16px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-indent: 0;
}

.article__wrapper h5 {
    font-family: var(--fontNotoSans) !important;
    font-size: 14px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-indent: 0;
}
.article__wrapper h5 span {
    font-family: var(--fontNotoSans) !important;
    font-size: 14px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-indent: 0;
}

.article__wrapper h6 {
    font-family: var(--fontNotoSans) !important;
    font-size: 14px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-indent: 0;
}
.article__wrapper h6 span {
    font-family: var(--fontNotoSans) !important;
    font-size: 14px !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-indent: 0;
}

.article__wrapper p a {
    font-family: var(--fontNotoSans)!important;
    font-size: 14px!important;
}

.article__wrapper p img {
    width: 100%;
}
.article__wrapper p span img {
    width: 100%;
}

/*----------------*/
/* コラム用 */
/*----------------*/
.column-body p {
  line-height: 2;
  margin-bottom: 1.5em;
}
.column-heading {
}
.column-block {
  margin-bottom: 3em;
}
.column-icon {
  margin-right: 0.5em;
}

.column-summary {
  margin-top: 3em;
  padding: 2em;
  background: rgba(0, 0, 0, 0.04); /* サイトトーンに自然になじむ薄い背景 */
  line-height: 2;
}

@media (max-width: 767px) {
  /* 画面サイズが768px未満の場合の設定 */
.column-body p {
  line-height: 1.8;
}
.column-summary {
  padding: 1.5em;
  line-height: 1.8;
}
}

/*----------------*/
/* コラム内商品紹介 */
/*----------------*/
.blog-product-box {
  display: flex;
  border: 1px solid currentColor;
  border-radius: 4px;
  overflow: hidden; /* 画像を枠にフィットさせる */
}

/* 左画像（余白なし） */
.blog-product-box__image {
  width: 38%;
  flex-shrink: 0;
}

.blog-product-box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 右コンテンツ */
.blog-product-box__content {
  width: 62%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦中央 */
  align-items: center;     /* 横中央 */
  text-align: center;
  gap: 12px;
  padding: 20px;
  box-sizing: border-box;
}

/* 商品名 */
.blog-product-box__title {
  margin: 0;
  font-weight: bold;
  line-height: 1.6;
}

/* ボタン（ここだけリンク） */
.blog-product-box__button {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid currentColor;
}

@media (max-width: 767px){
 /* 画面サイズが768px未満の場合の設定 */
.blog-product-box {
height: 100px;
font-size: 80%;
}

.blog-product-box__content {
padding: 0 16px 16px;
gap: 5px;
}

.blog-product-box__button {
padding: 5px 18px;
}
