/*
	作成日：2019/07/21
	作成者：Tsuchiya & Amagi
	名前：シンプルリセットCSS(001-WP号改)
	概要：なんかよく使うタグだけリセットするリセットCSS
	　　　シンプルなサイトを作る時に使う
	　　　試作で作ったものなので試験運用した後、改良予定
		  ⇒ WP用に改良（主にElemetor対応）
*/

/* RESET CSS 001 */

html, body, h1, h2, h3, li, p, div, span, a {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, figure, nav, section {
  display: block;
}

ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: #000;
}

a:hover {
  color: rgb(110, 110, 110);
  text-decoration: none;
}

body {
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans",
    "ヒラギノ角ゴシック", "YuGothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}

@media screen and (max-width: 576px) {
  .container {
    padding: 5px;
  }
}

.clear * {
  list-style: initial;
  list-style-type: initial;
}

.clear p, .elementor-image {
  padding: 20px 0;
  margin: 16px 0;
}

.clear ul {
  padding: 0 20px;
}

.clear h1 {
  font-size: 36px;
}

.clear h2 {
  font-size: 32px;
}

.clear h3 {
  font-size: 28px;
}

.clear h4 {
  font-size: 24px;
}

.clear h5 {
  font-size: 20px;
}

.clear h6 {
  font-size: 16px;
}

.clear a {
  text-decoration: underline;
}

.elementor-lightbox-item {
  padding: 0 !important;
}

.elementor-lightbox-image {
  max-width: 100%;
}
