@charset "UTF-8";

.article-wrap {
}

/* ----- 商品カード ----- */

/* -- 通常 -- */

.product-buy-card {
  height: auto;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 8px 25px 10px 12px;
  border-radius: 5px;
  background-image: url(../../../img/common/icon-arrow-right.png);
  background-size: 6px 12px;
  background-repeat: no-repeat;
  background-position: right 12px center;
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  -webkit-align-items: center;
  font-family: Avenir, "游ゴシック体", "Yu Gothic", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    "ＭＳ Ｐゴシック", sans-serif;
}

.product-buy-card .product-img-box {
  flex-basis: 30%;
  height: 70px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.product-buy-card .product-img-box img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  bottom: 0;
  margin: auto;
}

.product-buy-card .product-description {
  flex-basis: 70%;
  width: calc(70% - 12px);
  margin: 0 0 0 12px;
}

.product-buy-card .product-description .price {
  color: #ff0030;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

.product-buy-card .product-description .price-blank {
  color: #000000;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

.product-buy-card .product-description .price span {
  font-size: 1rem;
  position: relative;
  top: -3px;
  left: 3px;
  background: #ff0030;
  border-radius: 2px;
  color: #fff;
  padding: 3px 6px 1px 5px;
  margin: 0;
  line-height: 1;
}

.product-buy-card .product-description .sell-num {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin: 4px 0 5px 0;
  line-height: 1;
  position: relative;
}

.product-buy-card .product-description .sell-num.pb {
  padding: 0 0 0 15px;
  margin: 3px 0 0 0;
}

.product-buy-card .product-description .sell-num.pb::before {
  content: " ";
  color: #000;
  background-image: url(../../../img/common/pb-badge.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -2px;
  margin: 0 0 0 0;
}

.product-buy-card .product-description .sell-num.pb-badge {
  position: relative;
  color: #009166;
  font-size: 1.3rem;
  font-weight: 600;
  padding-left: 16px;
}

.product-buy-card .product-description .sell-num.pb-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../../img/common/pb-badge.png);
  background-size: 14px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}

.product-buy-card .product-description .sell-num.pbs-badge {
  position: relative;
  color: #0089b4;
  font-size: 1.3rem;
  font-weight: 600;
  padding-left: 16px;
}

.product-buy-card .product-description .sell-num.pbs-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../../img/common/pbs-badge.png);
  background-size: 14px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}

.product-buy-card .product-description .name {
  font-size: 1.1rem;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  height: 11px;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1;
}

/* ----- 1次流通商品 primary ----- */

.product-buy-card .product-description.primary .brand-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin: 4px 0 5px 0;
  line-height: 1;
  position: relative;
  display: flex;
  gap: 3px;
  align-items: center;
  width: 100%;
}

.product-buy-card .product-description.primary .brand-name span {
  overflow: hidden;
  max-width: calc(100% - 16px);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-buy-card .product-description.primary .brand-name.official::after {
  content: "";
  width: 11px;
  height: 11px;
  background: url(../../../img/common/icon-drop-official.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: relative;
  top: -1px;
}

/* -- 記事内 -- */

.article-buy-card-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.article-buy-card-wrapper .product-buy-card {
  margin: 8px 4px 0 0;
  width: 44%;
}

.article-buy-card-wrapper .product-buy-card:nth-child(even) {
  margin: 8px 0 0 4px;
}

/* ----- 記事コンテンツ以外の部分 ----- */

/* 見出し */
.article-wrap h2 {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 2px solid #eee;
  line-height: 1.3;
  padding: 0 0 8px 0;
  margin: 50px 0 30px 0;
}

/* ----- 記事コンテンツ本文 ----- */
.article-wrap .article-content {
  padding: 0 0 30px 0;
  margin: 0;
  font-size: 1.6rem;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-family: Avenir, "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
}

/* 見出し */
.article-wrap .article-content h2 {
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 80px 0 30px 0;
  color: #000;
  padding: 0 0 0 10px;
  border-left: solid 3px #000;
  border-bottom: none;
}

.article-wrap .article-content h3 {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 40px 0 30px 0;
}

.article-wrap .article-content h4,
.article-wrap .article-content h5,
.article-wrap .article-content h6 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 30px 0;
  color: #000;
}

/* -- 画像  -- */
/* 基本的な画像スタイル */
.article-wrap .article-content img {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0;
}

/* 通常のfigure */
.article-wrap .article-content figure {
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 15px;
}

.article-wrap .article-content figure img {
  object-fit: contain;
  max-height: 350px;
}

/* figcaption */
.article-wrap .article-content figcaption {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* 全幅表示の画像 */
.article-wrap .article-content figure.full-width {
  margin: 0 -15px 30px -15px;
}

.article-wrap .article-content figure.full-width img {
  width: 100%;
  margin: 0;
}

/* 全幅figure内のfigcaptionは通常幅に */
.article-wrap .article-content figure.full-width figcaption {
  padding: 0 15px;
}

/* --  目次  --  */
/* 目次コンテナ */
.article-wrap .article-content .toc {
  padding: 15px;
  margin: 0 0 30px 0;
  background: #f5f5f5;
}

/* 目次タイトル */
.article-wrap .article-content .toc div {
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px 0;
}

/* 目次リスト */
.article-wrap .article-content .toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.4rem;
}

.article-wrap .article-content .toc ul li {
  margin: 10px 0;
  line-height: 1.25;
  padding: 5px 0;
  border-bottom: dashed 1px #e5e5e5;
  position: relative;
  list-style: none;
}

.article-wrap .article-content .toc ul li > a {
  display: block;
  text-decoration: none;
  color: #333;
}

.article-wrap .article-content .toc ul li:last-child {
  border: none;
}

.article-wrap .article-content .toc ul li ul {
  margin-left: 1em;
}

/* --  本文  --  */
/* 本文 */
.article-wrap .article-content p {
  margin: 0 0 30px 0;
}

/* テキストリンク */
.article-wrap .article-content a {
  text-decoration: none;
}

.article-wrap .article-content a:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* --  引用  --  */
/* 引用 */
.article-wrap .article-content .quote-block {
  margin: 0 0 30px 0;
  padding: 15px;
  background: #fafafa;
}

.article-wrap .article-content .quote-block blockquote {
  margin: 0 0 15px 0;
  padding: 15px;
  border-left: 4px solid #333;
  font-style: italic;
}

.article-wrap .article-content .quote-block blockquote p {
  font-size: 1.4rem;
  margin: 0 0 15px 0;
  line-height: 1.8;
}

.article-wrap .article-content .quote-block blockquote p:last-child {
  margin-bottom: 0;
}

/* 引用元 */
.article-wrap .article-content cite {
  font-size: 1.2rem;
  line-height: 1.5;
  display: block;
  color: #999;
  font-style: normal;
  text-align: right;
}
.article-wrap .article-content cite a {
  color: #999;
}

/* --  リスト  --  */
/* 順序なしリスト */
.article-wrap .article-content ul {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0 0 30px 0;
}

/* リスト項目 */
.article-wrap .article-content ul li {
  margin: 0 0 10px 0;
  line-height: 1.5;
  list-style: disc;
}

/* 順序付きリスト */
.article-wrap .article-content ol {
  padding-left: 1.5em;
  margin: 0 0 30px 0;
}

/* リスト項目 */
.article-wrap .article-content ol li {
  margin: 0 0 10px 0;
  line-height: 1.5;
  list-style: decimal;
}

/* 入れ子のリストはマージンを調整 */
.article-wrap .article-content ul ul,
.article-wrap .article-content ol ol {
  margin: 0 0 10px 0;
}

/* 最後のリストはマージンなし */
.article-wrap .article-content ul li:last-child,
.article-wrap .article-content ol li:last-child {
  margin-bottom: 0;
}

/* --  表組み  --  */
/* テーブル */
.article-wrap .article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 30px 0;
  font-size: 1.2rem;
}

/* ヘッダー行（thead内のth） */
.article-wrap .article-content table thead th {
  padding: 10px;
  border: 1px solid #e5e5e5;
  text-align: center;
  background: #666;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  font-size: 1.1rem;
  vertical-align: middle;
}

/* 通常のセル */
.article-wrap .article-content table td {
  padding: 10px;
  border: 1px solid #e5e5e5;
  text-align: left;
  line-height: 1.5;
  vertical-align: middle;
}

/* tbody内のth（行見出し）を強調 */
.article-wrap .article-content table tbody th {
  padding: 10px;
  border: 1px solid #e5e5e5;
  text-align: center;
  background: #f5f5f5;
  font-weight: 600;
  color: #666;
  line-height: 1.5;
  font-size: 1.1rem;
  vertical-align: middle;
}

/* theadがない場合のtbody th */
.article-wrap .article-content table:not(:has(thead)) tbody th {
  background: #f5f5f5;
  color: #666;
}

/* tbody内の偶数行に背景色 */
.article-wrap .article-content table tbody tr:nth-child(even) {
  background: #fcfcfc;
}


/* 表組み内のリスト */
.article-wrap .article-content table ul,
.article-wrap .article-content table ol {
  margin: 0;
}

.article-wrap .article-content table ul li,
.article-wrap .article-content table ol li {
  margin: 0 0 5px 0;
}

/* 列幅調整用クラス */
.article-wrap .article-content table .w-10 { width: 10%; }
.article-wrap .article-content table .w-15 { width: 15%; }
.article-wrap .article-content table .w-20 { width: 20%; }
.article-wrap .article-content table .w-25 { width: 25%; }
.article-wrap .article-content table .w-30 { width: 30%; }
.article-wrap .article-content table .w-40 { width: 40%; }
.article-wrap .article-content table .w-50 { width: 50%; }

.article-wrap .article-content table .w-50px { width: 50px; }
.article-wrap .article-content table .w-60px { width: 60px; }
.article-wrap .article-content table .w-70px { width: 70px; }
.article-wrap .article-content table .w-80px { width: 80px; }
.article-wrap .article-content table .w-90px { width: 90px; }
.article-wrap .article-content table .w-100px { width: 100px; }
.article-wrap .article-content table .w-110px { width: 110px; }
.article-wrap .article-content table .w-120px { width: 120px; }
.article-wrap .article-content table .w-130px { width: 130px; }
.article-wrap .article-content table .w-140px { width: 140px; }
.article-wrap .article-content table .w-150px { width: 150px; }

/* 中央揃え用クラス */
.article-wrap .article-content table .text-center {
  text-align: center;
}

/* 右揃え用クラス */
.article-wrap .article-content table .text-right {
  text-align: right;
}

/* 定義リスト */
.article-wrap .article-content dl {
  margin: 0 0 30px 0;
}

.article-wrap .article-content dt {
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.5;
  color: #000;
}

.article-wrap .article-content dd {
  margin: 0 0 10px 1em;
  line-height: 1.5;
}

.article-wrap .article-content dl dd:last-child {
  margin: 0 0 0px 1em;
}

/* 最新情報用の定義リスト */
.article-wrap .article-content dl.latest-updates {
  margin: 0 0 30px;
}

.article-wrap .article-content dl.latest-updates dt {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 30px 0 10px 0;
  line-height: 1.5;
}

.article-wrap .article-content dl.latest-updates dt:first-child {
  margin-top: 0;
}

.article-wrap .article-content dl.latest-updates dd {
  font-size: 1.6rem;
  font-weight: normal;
  color: #000;
  margin: 0 0 15px 1em;
  line-height: 1.7;
}

.article-wrap .article-content dl.latest-updates dd:last-child {
  margin-bottom: 0;
}

.article-wrap .article-content dl.latest-updates dd strong {
  font-weight: 600;
  color: #000;
}

.article-wrap .article-content dl.latest-updates dd .sns-box {
  margin: 0;
}

/* アコーディオン */
.article-wrap .article-content details {
  margin: 0 0 30px 0;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 15px;
}

.article-wrap .article-content summary {
  font-weight: normal;
  cursor: pointer;
  user-select: none;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.article-wrap .article-content details[open] summary {
  margin-bottom: 15px;
}

/* 開閉アイコンのカスタマイズ */
.article-wrap .article-content summary::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  color: #666;
  transition: all 0.3s ease;
  width: 14px;
  height: 14px;
  display: block;
  background: url(../../../img/common/icon-arrow-right.png) no-repeat center / contain;
  transform: rotate(90deg);
}

.article-wrap .article-content details[open] summary::after {
  transform: rotate(270deg);
}

/* details内の最後の要素は下マージンを削除 */
.article-wrap .article-content details > *:last-child {
  margin-bottom: 0;
}


/* 水平線 */
.article-wrap .article-content hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 30px 0;
  height: 0;
}

/* 強調 */
.article-wrap .article-content strong {
  font-weight: 600;
  color: #000;
}

.article-wrap .article-content em {
  font-style: italic;
}

/* 汎用的な囲みボックス */
.article-wrap .article-content .content-box {
  margin: 0 0 30px 0;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.article-wrap .article-content .content-box h2 {
  margin: 0 0 20px 0;
}

.article-wrap .article-content .content-box h2::before {
  content: none;
  display: none;
}

.article-wrap .article-content .content-box h2::after {
  content: '';
  display: block;
  width: calc( 100% + 30px );
  height: 1px;
  background: #ccc;
  position: relative;
  left: -15px;
  margin: 10px 0 0 0;
}

.article-wrap .article-content .content-box h3 {
  margin: 0 0 15px 0;
  padding: 0;
  border: none;
}

.article-wrap .article-content .content-box > *:last-child {
  margin-bottom: 0;
}

/* 注釈 */
.article-wrap .article-content .note {
  font-size: 1.2rem;  /* 12px */
  color: #999;
  margin: 0 0 30px 0;
  line-height: 1.5;
}

.article-wrap .article-content .note a {
  color: #999;
  text-decoration: underline;
}

.article-wrap .article-content .note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-wrap .article-content .note ul li {
  margin: 0 0 5px 0;
  line-height: 1.25;
  padding: 0 0 0 1em;
  position: relative;
  list-style: none;
}

.article-wrap .article-content .note ul li::before {
  content: "※";
  position: absolute;
  left: 0;
}



/* SNS埋め込み用 */
.article-wrap .article-content .sns-box {
  margin: 0 0 30px 0;
}


/* 関連記事リスト */
.article-wrap .article-content .article-cards {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}

.article-wrap .article-content .article-cards li {
  list-style: none;
  line-height: 1;
  margin: 0;
}

.article-wrap .article-content .article-card {
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
}

.article-wrap .article-content .article-card:hover {
  opacity: 0.8;
  text-decoration: none;
}

.article-wrap .article-content .article-card figure {
  margin: 0;
  aspect-ratio: 3 / 2;
}


.article-wrap .article-content .article-card img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  object-fit: cover;
}

.article-wrap .article-content .article-card-title {
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 10px;
}

.article-wrap .article-content .article-card-title-text {
  color: #000;
  overflow: hidden;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow-wrap: break-word;
  max-height: 100%;
}

/* 本文途中の関連記事カード */
.article-wrap .article-content .related-articles-section {
  margin: 50px 0 40px 0;
  border: 1px solid #ccc;
  padding: 20px 15px 15px;
  position: relative;
}

.article-wrap .article-content .related-articles-section:hover {
  opacity: 0.8;
  text-decoration: none;
}

.article-wrap .article-content .related-articles-title {
  font-size: 1.6rem;
  font-weight: normal;
  border: none;
  margin: 0;
  display: inline;
  position: absolute;
  top: -2.2rem;
  left: -1px;
  padding: 5px 10px 5px 0px;
  margin: 0;
  background-color: #fff;
}

.article-wrap .article-content .related-articles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-wrap .article-content .related-articles-list li {
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
  list-style: none;
  border-bottom: dashed 1px #ccc;
}

.article-wrap .article-content .related-articles-list li:last-child {
  border-bottom: none;
  padding: 0;
}

.article-wrap .article-content .related-articles-list li figure {
  width: 20%;
  margin: 0;
  aspect-ratio: 3 / 2;
}

.article-wrap .article-content .related-articles-list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.article-wrap .article-content .related-article-card {
  display: flex;
  gap: 15px;
}

.article-wrap .article-content .related-article-card-content {
  width: calc( 100% - 20% - 15px );
  display: flex;
  align-items: center;
}

.article-wrap .article-content .related-article-card-title {
  text-decoration: none;
  color: #333;
  font-weight: normal;
  font-size: 1.4rem;
  overflow: hidden;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow-wrap: break-word;
  max-height: 100%;
}

.article-wrap .article-content .related-article-card:hover {
  text-decoration: underline;
  text-decoration-color: #000;
}

/* 出品＆購入するボタン */
.article-wrap .article-content .button-group {
  display: flex;
  width: 100%;
  gap: 10px;
  margin: 0 0 30px 0;
}

.article-wrap .article-content .button-group .btn {
  font-size: 1.4rem;
  padding: 10px;
  text-align: center;
  border-radius: 3px;
  font-weight: normal;
  text-decoration: none;
  line-height: 1.4rem;
  flex-grow: 1;
}

.article-wrap .article-content .button-group .btn.btn--sell {
  border: solid 1px #000;
  background: transparent;
  color: #000;
}

.article-wrap .article-content .button-group .btn.btn--buy {
  background: #000;
  color: #fff;
}

.article-wrap .article-content .button-group .btn.btn--primary {
  background: #000;
  color: #fff;
}

.article-wrap .article-content .button-group .btn.btn--secondary {
  border: solid 1px #000;
  background: transparent;
  color: #000;
}

.article-wrap .article-content .button-group .btn.btn--green {
  background: #00aaa4;
  color: #fff;
}

.article-wrap .article-content .button-group .btn.btn--outline-green {
  border: solid 1px #00aaa4;
  background: transparent;
  color: #00aaa4;
}

/* -- Gridコンテナの定義 (ul要素も想定する) -- */

.article-wrap .article-content .grid {
  /* ul のデフォルトスタイルをリセット */
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;

  /* Gridを有効化し、12の均等な列を定義 */
  display: grid;
  grid-template-columns: repeat(12, 1fr);

  /* 縦方向のギャップのみをデフォルトで設定 */
  gap: 15px 0;
  width: 100%;
}

/* リストアイテムとコンテンツの共通スタイル */
.article-wrap .article-content .grid .grid-item {
  list-style: none;
  padding: 0;
  margin: 0;
  /* どのアイテムも高さが揃うようにstretch */
  align-self: center;
}

.article-wrap .article-content .grid.gap-x-15 {
  column-gap: 15px;
}

/* 各アイテムの列幅設定 */
.article-wrap .article-content .grid .grid-item.grid-cols-1 {
  grid-column: span 1;
}

.article-wrap .article-content .grid .grid-item.grid-cols-2 {
  grid-column: span 2;
}

.article-wrap .article-content .grid .grid-item.grid-cols-3 {
  grid-column: span 3;
}

.article-wrap .article-content .grid .grid-item.grid-cols-4 {
  grid-column: span 4;
}

.article-wrap .article-content .grid .grid-item.grid-cols-5 {
  grid-column: span 5;
}

.article-wrap .article-content .grid .grid-item.grid-cols-6 {
  grid-column: span 6;
}

.article-wrap .article-content .grid .grid-item.grid-cols-7 {
  grid-column: span 7;
}

.article-wrap .article-content .grid .grid-item.grid-cols-8 {
  grid-column: span 8;
}

.article-wrap .article-content .grid .grid-item.grid-cols-9 {
  grid-column: span 9;
}

.article-wrap .article-content .grid .grid-item.grid-cols-10 {
  grid-column: span 10;
}

.article-wrap .article-content .grid .grid-item.grid-cols-11 {
  grid-column: span 11;
}

.article-wrap .article-content .grid .grid-item.grid-cols-12 {
  grid-column: span 12;
}

.article-wrap .article-content .grid .grid-item.grid-large-item {
  grid-column: span 12;
}

/* 各アイテムの行幅設定 */
.article-wrap .article-content .grid .grid-item.grid-rows-2 {
  grid-row: span 2;
}

.article-wrap .article-content .grid .grid-item.grid-rows-3 {
  grid-row: span 3;
}

.article-wrap .article-content,
.article-wrap .article-content *,
.article-wrap .article-content *::before,
.article-wrap .article-content *::after {
  box-sizing: border-box;
}

/* 親要素内の最後の要素は下マージンを削除 */
.article-wrap .article-content > *:last-child {
  margin-bottom: 0;
}

/* 入れ子の要素も考慮 */
.article-wrap .article-content * > *:last-child {
  margin-bottom: 0;
}

/* -- 記事コンテンツ内ここまで -- */

/* アイテム */
.article-wrap .article-content .item-box {
  width: 100%;
  height: auto;
  margin: 30px 0 30px;
}

.article-wrap .article-content .item-box .box-inner {
  display: table;
  table-layout: fixed;
  -webkit-box-sizing: border-box;
}

.article-wrap .article-content .item-box a.img-box {
  display: table-cell;
  vertical-align: top;
  width: 350px;
  height: auto;
}

.article-wrap .article-content .item-box a.img-box .inner {
  width: 350px;
  height: 230px;
  overflow: hidden;
  background: #e5e5e5;
  border-radius: 5px;
}

.article-wrap .article-content .item-box a.img-box .inner img {
  width: 100%;
  height: auto;
  margin: 0;
}

.article-wrap .article-content .item-box .text-box {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 30px;
}

.article-wrap .article-content .item-box .text-box .item-title {
  font-size: 1.6rem;
  color: #000;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  max-height: 45px;
  margin: 0;
}

.article-wrap .article-content .item-box .text-box .item-price {
  font-size: 1.6rem;
  color: #ff0030;
  font-weight: 600;
  margin: 4px 0 0 0;
  font-family: Avenir;
}

.article-wrap .article-content .item-box .text-box .item-detail {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin: 10px 0 0 0;
}

.article-wrap .article-content .item-box .text-box .button-type-1 {
  width: 100%;
  background: #000;
  color: #fff;
  margin: 20px 0 0 0;
}

.article-wrap .article-content .item-box .text-box .button-type-1 span::before {
  content: "";
  background-image: url(../../../img/common/article/icon-article-shop-white.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 24px;
  height: 21px;
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 10px 0 0;
}

.article-wrap .article-content .item-box .box-inner + a.button-type-1 {
  display: none;
}

.article-wrap .article-content .article-buy-card-wrapper .product-img-box img {
  margin: auto;
}
/* ----- 商品テーブル ----- */

.article-wrap .product-content-wrapper {
  padding: 0 15px 15px 15px;
}

.article-wrap .product-detail-info-table {
  width: 100%;
  margin: 10px 0 0 0;
  border: 0;
}

.article-wrap .product-detail-info-table tr {
  border-bottom: 1px #e5e5e5 dotted;
  padding: 10px 0 8px 0;
  display: block;
}

.article-wrap .product-detail-info-table tr th {
  width: 30%;
  display: inline-block;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 600;
  color: #999;
  line-height: 2;
}

.article-wrap .product-detail-info-table tr td {
  width: 68%;
  display: inline-block;
  text-align: right;
  font-size: 1.4rem;
  color: #000;
  line-height: 1.4;
}

/* プレ値 */
.sneaker-premium-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* プレ値 左枠 */
.sneaker-premium-price .form-box {
  width: 400px;
}

.sneaker-premium-price .form-box .price-text {
  font-size: 1.4rem;
  color: #000;
  font-weight: 600;
  text-align: center;
}
.sneaker-premium-price .form-box .price-text span {
  font-size: 3rem;
}

.sneaker-premium-price .form-box .detail-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #000;
  text-align: center;
  margin: 10px 0 0 0;
}

.sneaker-premium-price .form-box .premium-form {
  position: relative;
  margin: 20px 0 0 0;
}

.sneaker-premium-price .form-box .premium-form .yen {
  font-size: 2.8rem;
  font-weight: 600;
  font-family: Avenir;
  line-height: 0;
  position: absolute;
  top: 31px;
  left: 25px;
}

.sneaker-premium-price .form-box .premium-form .premium-input {
  height: 60px;
  font-size: 2.8rem;
  text-align: right;
  float: left;
  width: 80%;
  border-radius: 8px 0 0 8px;
  font-family: Avenir;
  font-weight: 600;
  letter-spacing: 1px;
}

.sneaker-premium-price .form-box .premium-form .button {
  cursor: pointer;
  float: right;
  width: 20%;
  height: 60px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 0 8px 8px 0;
}

.sneaker-premium-price .form-box .premium-form .not-premium-button {
  display: block;
  text-align: right;
  margin: 15px;
  font-size: 1.1rem;
  text-decoration: underline;
  color: #000;
  cursor: pointer;
}

.sneaker-premium-price .form-box .lable {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
}

.sneaker-premium-price .form-box .lable.comp {
  color: #00aaa4;
}
.sneaker-premium-price .form-box .lable.error {
  color: #dd2352;
}

/* プレ値 右枠 */
.sneaker-premium-price .price-list-box {
  width: 400px;
  margin-left: auto;
  background: #444444;
  padding: 15px;
  box-sizing: border-box;
  position: relative;
}

.sneaker-premium-price .price-list-box::after {
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  margin-top: -10px;
  border: 10px solid rgba(68, 68, 68, 0);
  border-right-color: #444444;
  right: 100%;
  top: 20px;
}

.sneaker-premium-price .price-list-box .title {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.sneaker-premium-price .price-list-box .inner {
  display: flex;
  flex-wrap: wrap;
}

.sneaker-premium-price .price-list-box .title span {
  font-weight: normal;
  padding: 0 0 0 5px;
}

.sneaker-premium-price .price-list-box .result-box {
  width: 48%;
  padding: 12px;
  box-sizing: border-box;
  background-color: #fff;
}

.sneaker-premium-price .price-list-box .result-box .price {
  font-size: 3rem;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.sneaker-premium-price .price-list-box .result-box .price-title {
  font-size: 1rem;
  font-weight: normal;
  color: #000;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
}

.sneaker-premium-price .price-list-box .result-box .people-num-box {
  font-weight: 600;
  text-align: center;
  margin: 5px 0 0 0;
}

.sneaker-premium-price .price-list-box .result-box .people-num-box.red {
  color: #ff005a;
}
.sneaker-premium-price .price-list-box .result-box .people-num-box.blue {
  color: #00b4ff;
}

.sneaker-premium-price .price-list-box .result-box .people-num-box .num-title {
  font-size: 1rem;
  float: left;
  text-align: left;
  line-height: 1.1;
}

.sneaker-premium-price .price-list-box .result-box .people-num-box .num {
  font-size: 2.4rem;
  float: left;
  padding: 0 0 0 4px;
}

.sneaker-premium-price
  .price-list-box
  .result-box
  .people-num-box
  .detail-text {
  font-size: 1rem;
  float: left;
  padding: 0 0 0 2px;
  line-height: 3;
  color: #000 !important;
}

.sneaker-premium-price .price-list-box .result-box.logout,
.sneaker-premium-price .price-list-box .list-box.logout {
  filter: blur(5px);
  height: 200px;
  overflow: hidden;
}

.sneaker-premium-price .price-list-box .list-box {
  width: 48%;
  padding: 10px 12px;
  box-sizing: border-box;
  background-color: #fff;
  margin-left: auto;
}

.sneaker-premium-price .price-list-box .list-box li {
  line-height: 1.5;
  position: relative;
}

.sneaker-premium-price .price-list-box .list-box li .you {
  position: absolute;
  display: block;
  top: -2px;
  right: -40px;
  z-index: 10;
  padding: 6px 7px 5px;
  line-height: 1;
  background: #14b6b8;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 3px;
}

.sneaker-premium-price .price-list-box .list-box li .you::after {
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  margin-top: -5px;
  border: 5px solid rgba(20, 182, 184, 0);
  border-right-color: #14b6b8;
  right: 100%;
  top: 10.5px;
}

.sneaker-premium-price .price-list-box .list-box li .price-range {
  font-size: 1.2rem;
  float: left;
  font-weight: 600;
}

.sneaker-premium-price .price-list-box .list-box li .price-range-num {
  font-size: 1.3rem;
  font-weight: 600;
  float: left;
  margin-left: 15px;
}

.sneaker-premium-price .price-list-box .list-box li .price-range-num.none {
  opacity: 0.3;
}

.sneaker-premium-price .price-list-box .list-box li .price-range-num span {
  font-size: 1.1rem;
  font-weight: normal;
}

.sneaker-premium-price .price-list-box .registration-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
}

.sneaker-premium-price .price-list-box .registration-box .inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.sneaker-premium-price .price-list-box .registration-box .text {
  color: #000;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 10px;
  width: 100%;
  text-shadow:
    0 1px 5px #fff,
    0 1px 5px #fff;
}

.sneaker-premium-price .price-list-box .registration-box .text span {
  font-weight: normal;
}

.sneaker-premium-price .price-list-box .registration-box .button-type-1 {
  width: 65%;
}

/* 購入リンク */
.sneaker-release-shop-box {
}

.sneaker-release-shop-box.pre-release {
  background: #f5f5f5;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 5px 15px 15px 15px;
  margin: -30px 0 0 0;
  border: 1px solid #eee;
  border-top: none;
  font-size: 1.3rem;
}

.sneaker-release-shop-box.pre-release .buy-title {
  font-size: 1.5rem;
  color: #000;
  font-weight: 600;
  padding: 15px 0 10px 0;
}

.sneaker-release-shop-box .buy-sub-title {
  font-size: 1.3rem;
  color: #666;
  font-weight: 600;
  padding: 10px 0 8px 0;
}

.sneaker-release-shop-box .shop-box {
  background-color: #fff;
  width: 55%;
  padding: 12px 32px 10px 12px;
  border-radius: 5px;
  border: 1px solid #eee;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  background-image: url(../../../img/common/icon-arrow-right.png);
  background-size: 6px 12px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  -webkit-align-items: center;
  margin: 0 0 6px 0;
}
.sneaker-release-shop-box .shop-box:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  opacity: 0.8;
}

.sneaker-release-shop-box .left-box {
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  line-height: 1.5;
}

.sneaker-release-shop-box .left-box .name-text {
  margin: 3px 0 0 0;
}

.sneaker-release-shop-box .left-box .name-text span.detail,
.sneaker-release-shop-box
  .article-sneaker-buy-box-wrapper
  .shop-box
  .shop-name-box
  .text
  .detail {
  color: #ff5825;
}

.sneaker-release-shop-box .shop-right-box {
  margin-left: auto;
  vertical-align: middle;
}

.sneaker-release-shop-box .shop-right-box .time {
  vertical-align: middle;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff5825;
}

.sneaker-release-shop-box .toggle-button {
  cursor: pointer;
  color: #666;
  font-size: 1.2rem;
  padding: 15px 0 0;
  line-height: 1.4;
}

.sneaker-release-shop-box .toggle-button span {
  display: block;
  background-image: url("../../../img/common/icon-arrow-bottom-black.png");
  background-size: 13px 7px;
  background-repeat: no-repeat;
  background-position: right center;
}

.sneaker-release-shop-box .toggle-button.bg02 span {
  background-image: url("../../../img/common/icon-arrow-top-black.png");
  background-size: 13px 7px;
  background-repeat: no-repeat;
  background-position: right center;
}

.sneaker-release-shop-box .toggle-content {
  display: none;
}

/* 古(magazie) */

.sneaker-release-shop-box
  .article-sneaker-buy-box-wrapper
  .shop-box
  .shop-name-box
  .text {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  margin: 3px 0 0 0;
  line-height: 1.65;
}

.sneaker-release-shop-box.pre-release p {
  line-height: 1.65;
}

.article-sneaker-buy-box-wrapper > p {
  display: none;
}

/* カラーの変更 */

.sneaker-color-switch {
  margin: 0 0 30px 0;
}

.sneaker-color-switch ul {
  text-align: center;
  vertical-align: top;
}

.sneaker-color-switch ul li {
  display: inline-block;
  margin: 0 3px 8px 3px;
  opacity: 0.6;
  width: 100px;
  vertical-align: top;
  cursor: pointer;
}
.sneaker-color-switch ul li a {
  display: block;
}

.sneaker-color-switch ul li a .img-box {
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 70px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  background: #f5f5f5;
}

.sneaker-color-switch ul li a .img-box img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.sneaker-color-switch ul li a .style-code {
  font-size: 1.2rem;
  color: #999;
  text-align: center;
  margin: 5px 0 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 25px;
}

.sneaker-color-switch ul li.active {
  opacity: 1;
}

.sneaker-color-switch ul li.active a .img-box {
  border: 2px solid #000;
}

.sneaker-color-switch ul li.active a .style-code {
  color: #000;
  font-weight: 600;
}

/* 関連するアイテム */
.sneaker-detail-recommend-item {
  border-top: 1px solid #eee;
  margin: 80px 0 0 0;
  padding: 30px 0 50px 0;
}

.sneaker-detail-recommend-item h3.title {
  font-size: 2rem;
  color: #000;
}

.sneaker-detail-recommend-item .item-wrapper {
  width: 100%;
  height: auto;
}

.sneaker-detail-recommend-item .item-box {
  width: 224px;
  height: auto;
  margin: 25px 20px 0 0;
  float: left;
}

.sneaker-detail-recommend-item .item-box:last-child {
  margin: 25px 0 0 0;
}

.sneaker-detail-recommend-item .item-box .img-box {
  width: 100%;
  height: 135px;
  background: #f5f5f5;
  overflow: hidden;
  display: block;
  position: relative;
}

.sneaker-detail-recommend-item .item-box .img-box img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.sneaker-detail-recommend-item .item-box .title {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.3;
  display: block;
  margin: 10px 0 0 0;
}

.article-wrap .article-main-img {
  position: relative;
}

/* マイスニーカー */
.article-wrap .article-main-img .mysneaker-button-box {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 240px;
  padding: 10px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 50;
  border-radius: 3px;
}

.mysneaker-button-box .mysneaker-button {
  border-radius: 3px;
  cursor: pointer;
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  height: 35px;
  text-align: center;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
  line-height: 3.2;
}

.mysneaker-button-box.off .mysneaker-button {
  background: #000;
}
.mysneaker-button-box.on .mysneaker-button {
  background: #fff;
}
.mysneaker-button-box .mysneaker-button.disabled {
  opacity: 0.6;
}

.mysneaker-button-box .mysneaker-button .text {
  font-weight: 600;
  text-align: center;
}

.mysneaker-button-box .mysneaker-button .text .num {
  font-size: 1.1rem;
  font-weight: normal;
  display: inline-block;
  padding: 0 0 0 3px;
}

.mysneaker-button-box.off .mysneaker-button .text {
  color: #fff;
}
.mysneaker-button-box.on .mysneaker-button .text {
  color: #ccc;
}

.mysneaker-button-box.off .mysneaker-button .text::before {
  content: " ";
  width: 26px;
  height: 15px;
  background: url("../../../img/common/article/sp-icon-mysneaker-off.png")
    no-repeat center center;
  background-size: 100%;
  display: inline-block;
  position: relative;
  top: 3px;
  left: 0;
  margin: 0 5px 0 0;
}
.mysneaker-button-box.on .mysneaker-button .text::before {
  content: " ";
  width: 26px;
  height: 15px;
  background: url("../../../img/common/article/sp-icon-mysneaker-on.png")
    no-repeat center center;
  background-size: 100%;
  display: inline-block;
  position: relative;
  top: 3px;
  left: 0;
  margin: 0 5px 0 0;
}

/* お気に入り(発売アラート) */
.article-wrap .article-main-img .release-alert-box {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 240px;
  padding: 10px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  border-radius: 3px;
}

.release-alert .push-button {
  cursor: pointer;
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  height: 35px;
  text-align: center;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
  line-height: 3.2;
  border-radius: 3px;
  margin: 0 0 5px 0;
}

.release-alert.off .push-button {
  background: #fff;
}
.release-alert.off .push-button .text {
  color: #000;
}
.release-alert.push.off .detail-text {
  color: #fff;
}
.release-alert.on .push-button {
  background: #fff;
}
.release-alert.on .push-button .text {
  color: #ccc;
}
.release-alert.push.one .detail-text {
  color: #fff;
}

.release-alert .alert-button {
  background: #ffb300;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  height: 35px;
  text-align: center;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
  line-height: 3.2;
}

.release-alert.off .alert-button {
  background: #ffb300;
}
.release-alert.on .alert-button {
  background: #fff;
}
.release-alert .alert-button.disabled {
  opacity: 0.6;
}

.release-alert .alert-button .text {
  font-weight: 600;
  text-align: center;
}

.release-alert .alert-button .text .num {
  font-size: 1.1rem;
  font-weight: normal;
  display: inline-block;
  padding: 0 0 0 3px;
}

.release-alert.off .alert-button .text {
  color: #fff;
}
.release-alert.on .alert-button .text {
  color: #ccc;
}

.release-alert.off .alert-button .text::before {
  content: " ";
  width: 14px;
  height: 14px;
  background: url("../../../img/common/sp-icon-favorites-off.png") no-repeat
    center center;
  background-size: 100%;
  display: inline-block;
  position: relative;
  top: 4px;
  left: 0;
  margin: 0 5px 0 0;
}
.release-alert.on .alert-button .text::before {
  content: " ";
  width: 14px;
  height: 14px;
  background: url("../../../img/common/sp-icon-favorites-on.png") no-repeat
    center center;
  background-size: 100%;
  display: inline-block;
  position: relative;
  top: 4px;
  left: 0;
  margin: 0 5px 0 0;
}

.release-alert .detail-text {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin: 0 0 6px 0;
}

.release-alert.off .detail-text {
  color: #ffb300;
}
.release-alert.on .detail-text {
  color: #ccc;
}

.release-alert .have-button {
  margin: 5px 0 0 0;
  background: #fff;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  height: 28px;
  text-align: center;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
  line-height: 2.6;
}

/* 投稿 */

.no-post-text {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1eb2c5;
  padding: 0 0 15px 0;
}

.posts-list-1-column.article-page {
  margin-top: -30px;
}

/* フォーム */

.entry-block {
  padding: 0 0 15px 0;
}

.post-content .textarea-type-1 {
  border-radius: 5px 5px 0 0;
  border-bottom: none;
  max-height: 350px;
}

.post-content .hashtag-box {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  border-top: none;
  background: #f5f5f5;
  padding: 10px 15px;
  box-sizing: border-box;
  position: relative;
  border-radius: 0 0 5px 5px;
}

.post-content .hashtag-box .hashtag-button {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  padding: 6px 7px 5px 7px;
  background: #666;
  display: inline-block;
  border-radius: 3px;
}

.entry-block .post-content .post-img-box {
  margin: 10px 0 0 0;
}

.entry-block .post-content .post-img-box label.post-img input {
  display: none;
}

.entry-block .post-content .post-img-box label.post-img {
  position: relative;
  width: 70px;
  display: inline-block;
  margin: 0 0 0 8px;
  padding: 0;
}

.entry-block .post-content .post-img-box label.post-img:first-child {
  margin: 0;
}

.entry-block .post-content .post-img-box label.post-img:before {
  content: " ";
  display: block;
  padding-top: 100%;
}

.entry-block .post-content .post-img-box label.post-img .content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #f5f5f5;
  border: #e5e5e5 solid 1px;
  box-sizing: border-box;
  border-radius: 3px;
  overflow: hidden;
}

.entry-block .post-content .post-img-box label.post-img .content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.entry-block .button-type-1 {
  border-radius: 100px;
  width: 55%;
}

/* ----- タブ ----- */

.tab-block-style-2 {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 0 15px 0;
}

.tab-block-style-2 .tab-list {
  text-align: center;
  background: #fff;
  height: 36px;
  flex: 1 0 0;
  max-width: 100%;
  box-sizing: border-box;
}

.tab-block-style-2 .tab-list .table {
  display: table;
  width: 100%;
}

.tab-block-style-2 .tab-list .table a,
.tab-block-style-2 .tab-list .table p {
  height: 36px;
  width: 100%;
  font-size: 1.2rem;
  overflow: hidden;
  color: #999;
  vertical-align: middle;
  display: table-cell;
  padding-top: 3px;
  box-sizing: border-box;
}

/* アクティブ */

.tab-block-style-2 .tab-list.active .table a,
.tab-block-style-2 .tab-list.active .table p {
  color: #fff;
  font-weight: 600;
  background: #000;
}

/* 引用 */

.tns-horizontal.tns-subpixel > .tns-item {
  position: relative;
}
.article-img-slide-cite {
  position: absolute;
  bottom: 11px;
  left: 11px;
  display: block;
  color: #aaa;
  font-size: 1rem;
  width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
}

.article-img-slide-cite a {
  color: #aaa;
}

.pc-article-guide-banner {
  height: auto;
  display: block;
  margin: 0 15px 15px;
}

.pc-article-guide-banner img {
  width: 100%;
  height: auto;
}

.pc-article-guide-text {
  color: #999;
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0 20px 15px 20px;
}
/* 記事プレキャン */
/* PCはcontentがid */

#content .article-content .web-block,
#content.app .article-content .app-block {
  display: block !important;
}

#content.app .article-content .web-block,
#content .article-content .app-block {
  display: none !important;
}

.article-content .btn-block {
  margin: 10px 0 25px;
}

.article-content .btn-block img.store {
  margin: 0;
  width: 40%;
  display: block;
}

.article-content .cam-block p.cam-step {
  margin: 0 0 10px 0;
  font-weight: 600;
}

.article-content .cam-block p.cam-step span {
  border: 1px solid #000;
  color: #000;
  padding: 5px 7px;
  font-size: 1.2rem;
  margin: 0 8px 0 0;
}

.article-content .entry-btn {
  display: block;
  position: relative;
  width: 40%;
  height: 50px;
  font-size: 1.5rem;
  line-height: 52px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  margin: 0 !important;
  color: #fff;
  background: #000;
}

.article-content button.entry-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.article-content .entry-btn.joined {
  opacity: 0.4;
  pointer-events: none;
}

.article-content .entry-btn.finish {
  background: #e5e5e5;
  pointer-events: none;
  color: #999;
}

.article-content .fix-button-block {
  display: none;
}

#content .article-content .web-block,
#content.app .article-content .app-block .bottom-fixed-banner {
  display: none !important;
}
