@charset "UTF-8";
/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Damion&family=Noto+Sans+JP:wght@400;500;600&display=swap');
/* CSS Remedy */
/* base */
html {}
body {
  background-color:  #ec8233;
}

a {
  color: #fff;
}
header {
  color: #fff;
  text-align: center;
  height: auto;
}
h1, h2, h3 {
  font-family: 'Damion', 'Noto Sans JP';
}
h1 {
  font-size: 3rem;
}
h1 span {
  font-family: 'Noto Sans JP';
  font-weight: 600;
}
h2 {
  color: #000;  font-family: 'Noto Sans JP';
}
h3 {
  font-size: 2.5rem;
  text-align: center;
  margin: 2rem 0 0;
}
p {
  text-align: center;
  color: #2A2A2A;
}
ol {
  padding: 0;
  counter-reset: list;
  list-style-type: none;
}
ol li {
  position: relative;
  line-height: 30px;
  margin: 7px 0 7px 40px;
  padding-left: 10px;
  color: #2A2A2A;
}
ol li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -35px;
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  color:  #ec8233;
  border: 1px solid  #ec8233;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

/*nav*/
.nav-inner {
  text-align: center;
  display: flex;
  justify-content: center;
}
/*btn*/
button {
  appearance: none;
  display: block;
  margin: 0 2rem 2rem;
  padding: 0.6em 1em;
  font-size: 1em;  background-color: #2A2A2A;
  color: #FFF;
  cursor: pointer;
  border-radius: 3px;
  border: 0;
  transition: 0.3s;
}
button:hover {
  background-color:  #ec8233;
  color: #000;
}
footer {
  text-align: center;
  background: #2A2A2A;
  padding: 20px;
}
footer p {
  color: #fff;
}
footer p span {
  font-weight: bold;
  font-size: 120%;
}

.inner {  
  margin: 0 2rem 3rem;
}