@charset "utf-8";

/*
	* CNAモバイルLPオリジナルスタイルシート
	* リセットCSS
	* ver1
	* Copyright (C) ●●など
	* 更新履歴
		└ 
*/
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	初期設定（不要なものは削除）
//////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ******************************************************************************************
	root設定（適宜修正）（フォントはベースフォント外を削除してください。）
****************************************************************************************** */
/* === RESET CSS: 基本を全てリセット === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5要素の表示をブロックに */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* リストのマーカーを消す */
ol, ul {
  list-style: none;
}

/* 引用符リセット */
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

/* テーブル：ボーダーとスペーシングをなくす */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォームの要素のフォント継承とボーダーリセット */
input, textarea, select, button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
}

/* aタグのリセット */
a {
  text-decoration: none;
  color: inherit;
}

/* 強調タグ */
strong, b {
  font-weight: bold;
}

/* box-sizing の初期化（推奨） */
*,
*::before,
*::after {
  box-sizing: border-box;
}
