@charset "UTF-8";
body {
  background: #0082bc;
}

.wrapper {
  background: #0082bc;
  box-shadow: none;
}
@media only screen and (max-width: 640px) {
  .wrapper .wrapper-main {
    margin-top: 20px;
  }
}
.wrapper .noteArea {
  border-radius: 10px;
  background: #fff;
  margin: 30px auto;
  padding: 40px 0 50px;
}
@media only screen and (max-width: 640px) {
  .wrapper .noteArea {
    margin: 15px auto;
    padding: 20px 0 30px;
  }
}
@media only screen and (max-width: 640px) {
  .wrapper .noteArea .container {
    padding: 0 20px;
  }
}

h1 {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  text-decoration: underline;
  margin: 2em auto;
}
@media only screen and (max-width: 640px) {
  h1 {
    font-size: 15px;
  }
}

.indent {
  padding-left: -1em;
  text-indent: 1em;
}

.btn {
  color: #1a4389;
}
.btn.icon-arrow-right:before, .btn.icon-arrow-right:after {
  border-color: #1a4389;
}

/* iOSでのデフォルトスタイルをリセット */
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;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

input[type=button] {
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  background: #fff;
  border-right: solid 2px #333;
  border-bottom: solid 2px #333;
  font-size: 14px;
  cursor: pointer;
}
input[type=button]:hover {
  opacity: .8;
}
