@charset "UTF-8";

/*----------------------------------

デフォルトリセット

---------------------------------- */
p {
  margin:0;
  padding:0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin-block-start: inherit;
  margin-block-end: inherit;
  margin-inline-start: inherit;
  margin-inline-end: inherit;
  display: inherit;
}

a {
  text-decoration:none;
  color: #333;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}



/*----------------------------------

構造

---------------------------------- */

body {
  font-family: sans-serif;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  margin: 0;
  color: #333;
}

header,
footer{
  background: #1d2132;
  color: #fff;
  display: block;
}

header{
  padding: 10px 0px;
  text-align: center;
}

h1{
  font-size: 1.7rem;
}

footer{
  margin-top: 15px;
  text-align: center;
  padding: 10px 0;
  /*height: 80px;*/
  font-size: 0.85rem;
}

#main_content {
  flex: 1;
  margin: 10px 8px;
}

.sub_tit{
  display: block;
  background-color: #435ddf;
  color: #fff;
  padding: 8px;
  margin: 15px -3px;
}

.text{
  font-size: 0.95rem;
}

.privacy{
  text-align: center;
  margin: 0 auto;
}

.privacy{
  margin-top: 50px;
}

ol {
  counter-reset:num;
  list-style-type: none!important;
  padding:0;
  margin:0;
}

ol li {
  font-size: 0.95rem;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.9rem;
  margin-top: 12px;
}

ol li::before {
  counter-increment: num;
	content: counter(num) ". ";
}

/* ==================================================================================== */
/*  PC用&タブレット
/* ==================================================================================== */


@media screen and (min-width:990px){

  h1{
    font-size: 2.5rem;
  }

  #main_content{
      margin-left: auto;
      margin-right: auto;
      width: 700px;
  }

  ol li {
    font-size: 1rem;
  }

}
