@charset "utf-8";

html {
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	letter-spacing: 0.03em;
}

.en {
	letter-spacing: 0em;
}

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, 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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
	line-height: 100%;
  vertical-align: baseline;
	box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

sup {
	font-size: 70%;
	vertical-align: 45%;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
	display: block;
	max-width: 100%;
  height: auto;
  min-height: 1px;
}

ol, ul {
  list-style: none;
  padding-inline-start: 0;
  line-height: 1.5;
}

ul.disc {
	list-style-type: none;
	font-size: 24px;
	margin: 0;
}
ul.disc li {
	position: relative;
	margin: 0 0 0.3em 1em;
	line-height: 140%;
}
ul.disc li:last-child {
	margin-bottom: 0;
}
ul.disc li::before {
	position: absolute;
	top: -1px;
	content: "•";
	margin: 0 0 0 -.7em;
}
ul.disc li ul.none li {
	margin: 0.3em 0 0.3em 1em;
	text-indent: -1em;
}
ul.disc li ul.none li::before {
	content: "";
}

ul.asterisk {
	font-size: 24px;
	margin: 0;
}
ul.asterisk li {
	position: relative;
	margin: 0 0 0.3em 1em;
	line-height: 140%;
}
ul.asterisk li:last-child {
	margin-bottom: 0;
}
ul.asterisk li::before {
	position: absolute;
	content: "※";
	margin: 0 0 0 -1em;
}

ul.square {
	font-size: 24px;
	margin: 0;
}
ul.square li {
	position: relative;
	margin: 0 0 0.3em 1.2em;
	line-height: 140%;
}
ul.square li:last-child {
	margin-bottom: 0;
}
ul.square li::before {
	position: absolute;
	content: "■";
	margin: 0 0 0 -1.2em;
}

ol.num {
	list-style: decimal
}
ol.num li::before {
	content: none;
}

ol.asterisk {
	counter-reset: number;
	font-size: 24px;
	margin: 0;
}
ol.asterisk li {
	position: relative;
	margin: 0 0 0.3em 2em;
	line-height: 140%;
}
ol.asterisk li:last-child {
	margin-bottom: 0;
}
ol.asterisk li::before {
	counter-increment: number;
  content: '※' counter(number);
	position: absolute;
	margin: 0 0 0 -2em;
}


br.sp {
  display: none;
}
br.pc {
  display: block;
}

.small {
	font-size: 24px;
}


/* SP
------------------------------------------------------------------------------------------------ */

@media (max-width: 750px) {

  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
	
	.small {
		font-size: 3vw!important;
	}
	
	ul.disc, ul.asterisk, ul.square, ol.asterisk {
		font-size: 3.5vw;
	}
}