@charset "UTF-8";
/* **********************************************
    ツキネコオンラインショップ 特定商取引法に基づく表記ページ
    
    デスクトップ（ベース）
    タブレット（max-width: 1030px）
    スマホ（max-width: 767px）
    ★デスクトップ限定も追加
    
 ********************************************** */
/* ===== desktop ===== */
@media screen and (min-width: 1031px) {
}
/* ===== PC wide ===== */
@media screen and (min-width: 1280px) {
}
/* ===== tablet ===== */
@media screen and (max-width: 1030px) {
}
/* ===== mobile ===== */
@media screen and (max-width: 767px) {
}
/******************************/
/* transactions act override */
/******************************/

/* 全体 */
.u-contents {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.9;
  font-size: 15px;
  color: #333;
}

/* セクションタイトル */
.c-ttl-second {
  font-size: 20px;
  font-weight: 600;
  margin: 60px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

/* 擬似テーブル全体 */
.c-tbl-list {
  border-top: 1px solid #e6e6e6;
}

/* 行 */
.c-tbl-list__tr {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

/* 項目名（左） */
.c-tbl-list__th {
  flex: 0 0 220px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

/* 内容（右） */
.c-tbl-list__td {
  flex: 1;
  font-size: 14px;
  line-height: 1.8;
}

/* 画像系（配送・決済アイコン） */
.c-tbl-list__td img {
  max-width: 120px;
  height: auto;
  margin-bottom: 8px;
  display: inline-block;
}

/* 郵便番号だけ微調整（既存class活かす） */
.c-transactions-act__tr {
  padding: 18px 0;
}

/* リンク */
.u-contents a {
  color: #2b6cb0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.u-contents a:hover {
  text-decoration: none;
  color: #1a4f8a;
}

/* パンくず */
.c-breadcrumbs {
  font-size: 12px;
  margin-bottom: 20px;
}

.c-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.c-breadcrumbs a {
  color: #777;
  text-decoration: none;
}

.c-breadcrumbs a:hover {
  text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .c-tbl-list__tr {
    flex-direction: column;
    gap: 6px;
  }

  .c-tbl-list__th {
    flex: unset;
  }
}