@charset "utf-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
/*	outline: 0;*/
}


img {
	vertical-align: text-bottom;
	-ms-interpolation-mode: bicubic;
}

a {
	-webkit-tap-highlight-color: transparent;
}

strong {
	font-weight: bold;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
/*	border-collapse: separate;*/
	border-spacing: 0;
}

caption, th, td {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

option {
	padding-right: 10px;
}

/* ------------------------------
	HTML5 ELEMENTS
------------------------------ */
header,article,aside,section,footer,
nav,menu,details,hgroup,summary {
	display: block;
}






#reason {
    background: url("/static/img/bg.gif") repeat;
    animation: fall 10s infinite linear;
    padding: 60px 0;
    height: 100%;
}

@keyframes fall {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -700px 700px;
  }
}

.title {
    color: rgb(226, 77, 100);
    display: block;
    font-size: 2.5rem;         /* 文字サイズ       */
    letter-spacing: 0.1em;          /* 文字間隔         */
    line-height: 1.2em;          /* 行間隔（1行高さ）*/
    font-weight: bold;
    font-family: 'klee', fantasy;
    text-align: left;
}

.text {
    color: #a15c70;
    margin-top:5%;
    display: block;
    font-size: 1.8rem;         /* 文字サイズ       */
    letter-spacing: 0em;          /* 文字間隔         */
    line-height: 2em;          /* 行間隔（1行高さ）*/
    text-align: left;
    font-family: 'klee', fantasy;
    font-weight:bold;
}

.reason1{
    margin-top: 25%;
    margin-left: 7%;
    text-align: left;
}


.reason2{
    position: absolute;
    right: 7%;
    bottom: 20%;
    margin-left: 20%;
    float: right;
}

.login1{
    margin-top: 35%;
    margin-left: 5%;
    color: rgb(255, 255, 255);
    text-align: left;
}
.title_2{
  color: rgb(255, 255, 255);
  display: block;
  font-size: 2.5rem;         /* 文字サイズ       */
  letter-spacing: 0.1em;          /* 文字間隔         */
  line-height: 1.2em;          /* 行間隔（1行高さ）*/
  font-weight: bold;
  text-align: center;
}

.login2{
    display: block;
    color: gold;
    font-size: 2.5rem;         /* 文字サイズ       */
    letter-spacing: 0em;          /* 文字間隔         */
    line-height: 1.2em;          /* 行間隔（1行高さ）*/
}


.btn {
    width: 80%;
    background-color: #ffffff;
    border-radius: 40px;
    border: solid 3px #a8a5fb;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    padding: 5px;
    margin: auto;
    margin-top: 60%;
    transition: 0.3s;
}

.btn:hover {
    background-color: #fff;
    border: solid 3px #6f94f0;
    color: rgb(0, 62, 220);
}

.arrow {
  position: relative;
  width: 100px;
  margin:auto;
  margin-top: 20%;
}
.arrow::before {
  animation: arrow 2.5s infinite;
  border: solid hsla(343, 99%, 68%);
  border-width: 0 0 9px 9px;
  content: "";
  margin: auto;
  position: absolute;
  top: -200px;
  left: 25px;
  transform: rotate(-45deg);
  width: 40px;
  height: 40px;
}

@keyframes arrow {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  60% {
    transform: rotate(-45deg) translate(-30px, 30px);
  }
  0%, 60%, 100% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
}

a {
  color: black;
  text-decoration: none;
}
