@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-color: #85c346;
  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;
}

#main_content {
  flex: 1;
  margin: 10px 8px;
}

.sub_tit{
  display: block;
  background-color: #43a941;
  color: #fff;
  padding: 8px;
  margin: 15px -3px;
}

.text{
  font-size: 0.95rem;
}

.privacy{
  text-align: center;
  margin: 0 auto;
}

.privacy{
  margin-top: 50px;
}


/* ==================================================================================== */
/*  PC用&タブレット
/* ==================================================================================== */


@media screen and (min-width:990px){

  h1{
    font-size: 2.5rem;
  }

  #main_content{
      margin-left: auto;
      margin-right: auto;
      width: 900px;
  }



}
