@charset "UTF-8";

body {
  background: #fdfdfd;
}

header {
  margin: auto 0;
  padding: 5px 0;
}

header h1{
  max-width: 1280px;
  display: flex;
  /*align-items: center;*/
  align-items: end;
  font-size: 26px;
  font-weight: normal;
  line-height: 1.15;
  }

header h1 img{
  width: 66px;
  height: auto;
}

a {
  color:#1D94E0;
  text-decoration:underline;
}
a:link {
  color:#1D94E0;
  text-decoration:underline;
}
a:visited {
  color:#0000DD;
  text-decoration:underline;
}

div.contents-wrap {
  width: 100%;
  margin: 0 auto 2em;
}

div.contents-wrap div.contents {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.5em;
}

div.contents-wrap div.contents p {
  font-size: 14px;
  line-height: 1.5;
}

h2 {
  margin: .75em 0 .75em 0.55em;
  font-size: 20px;
  position: relative;
  color: #333;
  text-shadow: 0 0 2px white;
  background: #e0f3ff;
  z-index: -4;
  border-radius: 0 10px 10px;
}

h2:before {
  content: "";
  position: absolute;
  background: #acddfc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  left: -11px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-52%);
  z-index: -1;
}

h3 {
  margin: 0px 0 15px;
  padding: 0 0 0 5px;
  border-left: 6px solid var(--baseBgColor);
  font-weight: bold;
  background: #E2E2E2;
}

div.process-area {
  padding: 1em 0 0;
}

div.process-area ol {
  margin-left: 10px;
}
div.process-area ol li {
  list-style-type: decimal;
  margin: 15px 10px 0 17px;
  font-size: 0.9rem;
  padding-left: 5px;
  line-height: 1.5;
}

div.process-area li {
  list-style-type: disc;
  margin: 15px 10px 0 17px;
  font-size: 0.9rem;
  line-height: 1.2rem;
  padding-left: 0;
}

span.details-area ol{
	margin-left: 3.5em; /* サイトに合せて調整 */
}

span.details-area ol li {
	list-style-type: none;
	counter-increment: cnt;
	position: relative;
}

span.details-area ol li:before {
	content: "(" counter(cnt) ")";
	display: inline-block;
	margin-left: -3.5em; /* サイトに合せて調整 */
	width: 3em; /* サイトに合せて調整 */
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
}

div.process-area ul li {
  list-style-type: disc;
}

p.finish{
  margin: 20px;
  text-align: end;
}


