@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;
  font-size: 0.85rem;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  margin: 0;
  color: #333;
  position: relative;/*←相対位置*/
}


header,
footer,
.c_footer{
  background: #00ac97;
  color: #fff;
  display: block;
}

.c_footer{
  position: absolute;/*←絶対位置*/
  bottom: 0; /*下に固定*/
  width: 100%;
}

header{
  padding: 10px 0px;
  text-align: center;
}

h1{
  font-size: 1.7rem;
}

h3{
  font-size: 1.7rem;
  text-align: center;
  padding: 15px 0px;
}

footer{
  margin-top: 10px;
  text-align: center;
  padding: 10px 0;
  /*height: 80px;*/
  font-size: 0.85rem;
}

.wrapper{
  text-align: center;
}



#main_content {
  flex: 1;
  margin: 5px 8px;
}

.privacy_policy {
  background: #82cddd;
  color: #fff;
  height: 45px;
  display: block;
}

.sub_tit{
  display: block;
  background-color: #000000;
  color: #fff;
  padding: 8px;
  margin: 15px -3px;
}

.text{
  font-size: 0.85rem;
  margin-top: 10px;
}

.text_main{
  margin: 0px 0px 0px 30px;
}


.text_sub{
  margin: 0px 0px 0px 80px;
}

.text_end{
  text-align: right;
}

.privacy{
  text-align: center;
  margin: 0 auto;
}

.privacy{
  margin-top: 50px;
}

.list_num {
  list-style-type: none;
}

li {
  list-style-type: none;
}

ol {
  counter-reset:num;
  list-style-type: none!important;
  padding:0;
  margin:0;
}

ol li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.85rem;
  margin-top: 12px;
}

ol li::before {
  counter-increment: num;
	content: counter(num) ". ";
}

ol.list_parentheses{
  list-style-type: none;
  counter-reset: count 0;
  font-size: 0.85rem;
}
ol.list_parentheses li:before{
   content: "（" counter(count) "）";
   counter-increment: count 1;
}

.pic_sp{
  display: block;
  text-align: center;
}

.pic_pc{
  display: none;
}




/* ==================================================================================== */
/*  PC用&タブレット
/* ==================================================================================== */


@media screen and (min-width:990px){

  h1{
    font-size: 2.5rem;
  }

  #main_content{
      margin-left: auto;
      margin-right: auto;
      width: 800px;
  }

  .text {
    font-size: 0.95rem;
  }


  ol li {
    font-size: 0.95rem;
  }


  .pic_sp{
    display: none;
  }

  .pic_pc{
    display: block;
    text-align: center;
  }

  .wrapper {
      margin-left: auto;
      margin-right: auto;
      width: 800px;
  }


}
