@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
body {
  font-family: "Open Sans", sans-serif;
}

.content {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  width: 100%;
  height: 100%;
  /* Text fields' focus effect */
  /* Buttons' focus effect */
}
.content .login {
  width: 400px;
  margin: 16px auto;
  font-size: 16px;
}
.content .login-header,
.content .login p {
  margin-top: 0;
  margin-bottom: 0;
}
.content .login-triangle {
  width: 0;
  margin-right: auto;
  margin-left: auto;
  border: 12px solid transparent;
  border-bottom-color: #28d;
}
.content .login-header {
  background: #28d;
  padding: 20px;
  font-size: 1.4em;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.content .login-container {
  background: #ebebeb;
  padding: 12px;
}
.content .login p {
  padding: 12px;
}
.content .login input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  padding: 16px;
  outline: 0;
  font-family: inherit;
  font-size: 0.95em;
}
.content .login input[type=email],
.content .login input[type=password] {
  background: #fff;
  border-color: #bbb;
  color: #555;
}
.content .login input[type=email]:focus,
.content .login input[type=password]:focus {
  border-color: #888;
}
.content .login input[type=submit] {
  background: #28d;
  border-color: transparent;
  color: #fff;
  cursor: pointer;
}
.content .login input[type=submit]:hover {
  background: #17c;
}
.content .login input[type=submit]:focus {
  border-color: #05a;
}

.menu {
  width: 100%;
}
.menu .logo {
  float: right;
  margin: 0 10px;
  width: 12.5%;
  height: auto;
  margin: auto;
  padding-top: 0.5rem;
}
.menu .logo img {
  width: 90%;
  margin: 0 auto;
}

nav .button {
  display: flex;
  justify-content: left;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 120px;
  margin: auto;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border: 2px solid rgb(2, 153, 163);
  color: rgb(2, 153, 163);
  transition: 0.5s;
}

nav .button a:hover {
  color: #fff;
  background: rgb(2, 153, 163);
}

@media screen and (max-width: 959px) {
  /* 959px以下に適用されるCSS（タブレット用） */
}
@media screen and (max-width: 480px) {
  body {
    background-color: rgba(245, 246, 246, 0.3294117647);
    background-image: none;
    font-family: "Open Sans", sans-serif;
  }
  .content {
    width: 100%;
    background-image: none;
    margin: auto;
    /* Text fields' focus effect */
    /* Buttons' focus effect */
  }
  .content .login {
    width: 95%;
    margin: 16px auto;
    font-size: 16px;
  }
  .content .login-header,
  .content .login p {
    margin-top: 0;
    margin-bottom: 0;
  }
  .content .login-triangle {
    width: 0;
    margin-right: auto;
    margin-left: auto;
    border: 12px solid transparent;
    border-bottom-color: #28d;
  }
  .content .login-header {
    background: rgb(3, 168, 138);
    padding: 20px;
    font-size: 1.4em;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
  }
  .content .login-container {
    background: #ebebeb;
    padding: 12px;
  }
  .content .login p {
    padding: 12px;
  }
  .content .login input {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border-width: 1px;
    border-style: solid;
    padding: 16px;
    outline: 0;
    font-family: inherit;
    font-size: 0.95em;
  }
  .content .login input[type=email],
  .content .login input[type=password] {
    background: #fff;
    border-color: #bbb;
    color: #555;
  }
  .content .login input[type=email]:focus,
  .content .login input[type=password]:focus {
    border-color: #888;
  }
  .content .login input[type=submit] {
    background: #28d;
    border-color: transparent;
    color: #fff;
    cursor: pointer;
  }
  .content .login input[type=submit]:hover {
    background: rgb(222, 3, 127);
  }
  .content .login input[type=submit]:focus {
    border-color: rgb(6, 170, 0);
  }
  .menu {
    width: 100%;
    margin: 0 auto;
  }
  .menu .logo {
    display: none;
  }
  .menu .logo img {
    display: none;
  }
  nav {
    display: flex;
    justify-content: left;
    background-color: rgb(2, 153, 163);
    padding: 10px;
    position: fixed;
    width: 92%;
  }
  nav a {
    color: rgb(249, 252, 252);
    text-decoration: none;
    margin: 0 15px;
  }
  nav a:hover {
    border-bottom: 1px solid #fff;
  }
}/*# sourceMappingURL=login.css.map */