@charset "utf-8";
/*――――――――――　html　――――――――――*/
* {
  margin: 0px;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a:link { 
  color: black;
  text-decoration: none;
} 
a:visited { 
  color: black;
} 
a:hover { 
  text-decoration: underline;
} 
a:active { 
  color: black;
}
p {
  line-height: 1.25em;
  margin-bottom: .25em;
  text-align:	justify;
}
/*――――――――――　heder　――――――――――*/
#main_visual {
  display: flex;
  flex-flow: column;
  margin: 0px auto 32px auto;
  padding: 0px;
}
#main_visual > h2 {
  text-align: center;
}
#main_visual > p {
  text-align: center;
}
@media(max-width: 500px) {
  #main_visual > .en {
    text-align:	left;
  }
  #main_visual > p {
    text-align:	justify;
  }
}
#main_visual > .center {
  text-align: center;
}
button {
  margin: 0px auto 20px auto;
  padding: 5px 10px;
  border: 0px;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  background: #E6547A;
  color: white;
  font-family: 'Avenir','Arial';
}
/*――――――――――　footer　――――――――――*/
footer {
  margin-top: auto;
}
#footer {
  text-align: center;
}
footer > P {
  text-align: center;
  line-height: 1.5em;
}