/* ===========================================
   Trenders CC K original
   =========================================== */
@charset "utf-8";
/* box-sizing とフォントの継承、背景色の統一 */
html {
  box-sizing: border-box;
  font-family: sans-serif;    /* デフォルトフォントをサンセリフ系に */
  font-size: 100%;            /* 基本フォントサイズを100%に */
  background: #fff;           /* 背景色を白に統一 */
}

/* 基本プロパティのリセット */
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  background-color: transparent;
  vertical-align: baseline;
  font: inherit;
  color: inherit;
}

/* HTML5要素のブロック表示化（古いブラウザ対応） */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* 見出しのフォントウェイト・サイズの調整 */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  font-size: 100%;
}

/* インライン要素（強調・斜体など）の調整 */
b, strong { font-weight: bold; }
i, em    { font-style: italic; }
small    { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* リストのデフォルトスタイルをリセット */
ul, ol {
  list-style: none;
}

/* テーブルのリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 画像のリセット */
img {
  border: 0;
  vertical-align: middle;
}

/* フォーム要素のリセット */
input, button, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* ボタンの追加リセットとカーソル設定 */
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* フィールドセットの余白とボーダー削除 */
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* アクセシビリティ：focus時のみoutlineを表示 */
:focus {
  outline: auto;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* 引用符のリセット */
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* テキスト装飾の削除 */
a, ins, del, abbr, acronym {
  text-decoration: none;
  color: inherit;
}

/* iframe、objectのデフォルトボーダー削除 */
iframe, object {
  border: 0;
}

/* iOSでの文字サイズ調整を無効化 */
html {
  -webkit-text-size-adjust: 100%;
}

/* プレフォーマット・コード・サンプル文字用 */
pre, code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* マーク・サマリー要素の背景色リセット */
mark, summary {
  background-color: transparent;
}

/* hidden属性の強制非表示 */
[hidden] {
  display: none !important;
}