@charset "UTF-8";
/*********************
BREAKPOINTS
*********************/
/* snippet */
.text-l {
  text-align: left;
}

.text-r {
  text-align: right;
}

.text-c {
  text-align: center;
}

.serif {
  font-family: "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", serif;
}

.gothic {
  font-family: "Helvetica neue", Helvetica, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.text-red {
  color: #e60019;
}

.text-ul {
  border-bottom: 1px solid;
}

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.wrap {
  width: 94%;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
}

@media screen and (min-width: 768px) {
  .wrap {
    max-width: 700px;
  }
}

@media screen and (min-width: 1000px) {
  .wrap {
    max-width: 1000px;
  }
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 10px;
  color: #1c2226;
  border-radius: 0.2rem;
  border: 0;
  text-decoration: none;
}

.btn img {
  width: 1.5rem;
}

@media screen and (min-width: 768px) {
  .btn {
    width: auto;
    padding: 10px 1rem;
  }
}

@media screen and (min-width: 1000px) {
  .btn:hover {
    opacity: .7;
  }
}

@media screen and (min-width: 768px) {
  .btn-m {
    width: auto;
  }
}

.btn.primary {
  background: #e60019;
  color: white;
}

.btn.secondary {
  background: #f4cf4f;
}

.btn.info {
  background: #9fa6b4;
}

.btn.cancel {
  background: #b0c7cd;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.mb3 {
  margin-bottom: 3rem !important;
}

.pb1 {
  padding-bottom: 1rem !important;
}

.pb2 {
  padding-bottom: 2rem !important;
}

.pb3 {
  padding-bottom: 3rem !important;
}

.cf {
  zoom: 1;
}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

/* forms */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input[type="submit"],
select,
textarea,
button {
  display: block;
  line-height: 1.5rem;
  height: auto;
  padding: .375rem .75rem;
  font-size: 1rem;
  color: #1c2226;
  border-radius: 0.2rem;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid #ccc;
  width: 100%;
  font-family: "Helvetica neue", Helvetica, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background-color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

input[type="text"].validate_err,
input[type="password"].validate_err,
input[type="datetime"].validate_err,
input[type="datetime-local"].validate_err,
input[type="date"].validate_err,
input[type="month"].validate_err,
input[type="time"].validate_err,
input[type="week"].validate_err,
input[type="number"].validate_err,
input[type="email"].validate_err,
input[type="url"].validate_err,
input[type="search"].validate_err,
input[type="tel"].validate_err,
input[type="color"].validate_err,
input[type="submit"].validate_err,
select.validate_err,
textarea.validate_err,
button.validate_err {
  background: #ffe6e9;
}

@media all and (-ms-high-contrast: none) {
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  input[type="submit"],
  select,
  textarea,
  button {
    height: 2.375rem;
  }
}

select::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAARCAYAAADKZhx3AAAA0klEQVRIS8XUfQ0CMQyH4fccIAkcgAMcAEqQgAQkYOEkIAEJpMmaNLt9dKMJ+/d2fa6/7brwp7Ukdwc8gT3wBk7AGvxNd+AKfICbwg/gbCB5eAjE8/oo/Erd2iaj8A0qiMLHFHWe7q94EZUkFRZQopaNUXgVlWO0cCTeROWC5XAE3kXtGefxzsbuQlvwTOdutAeP4EOoB/bgl2z46LHJ5JMhJL/kZpUuV2lf7cxrU7WJejvW4l68i47Crdhd8dp4vFHbd2qduzrVQjNwqfMhVAp8ASSKSU9xDpu1AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 14px;
}

@media screen and (min-width: 1000px) {
  select {
    background-position: 98% center;
  }
}

input[type="checkbox"] {
  vertical-align: middle;
}

.validate_err {
  background: #ffe6e9;
}

*, ::after, ::before {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-size: 1rem;
  font-family: "Helvetica neue", Helvetica, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  color: #1c2226;
  background: #f8f9fa;
}

p, img, dl, dt, dd, ul, ol, figure {
  margin: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* login */
.signin, .entry-complete {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

/* complete */
.entry-complete {
  flex-direction: column;
}

.entry-complete .wrap {
  background: white;
  border-radius: 0.2rem;
  padding: 2rem 1rem;
  max-width: 600px;
}

.entry-complete .copy {
  background: transparent;
  color: #1c2226;
}

.entry-complete .msg-complete {
  text-align: left;
  font-size: .9125rem;
}

.entry-complete .msg-complete .h2 {
  padding: 1rem 0;
}

.entry-complete .h2 {
  margin-bottom: .5rem;
  font-weight: bold;
}

.entry-complete .h3 {
  display: inline-block;
  border-bottom: 1px solid;
  margin-bottom: .5rem;
}

.entry-complete .h3 .uil {
  font-size: 1.25rem;
  top: .1rem;
}

.entry-complete .msg-info {
  border-top: 1px dashed #ccc;
  padding-top: 1rem;
}

.entry-complete .msg-info p {
  font-size: .75rem;
}

.entry-complete .tel {
  background: #fdf6df;
  padding: 1rem 0;
}

.entry-complete .tel .tel-num {
  font-size: 1.25rem;
}

.entry-complete .tel span {
  font-size: .75rem;
}

@media screen and (min-width: 768px) {
  .entry-complete .wrap {
    padding: 2rem;
  }
}

.logo {
  padding: 0 .25rem;
}

.logo img {
  max-width: 200px;
}

.form-signin {
  width: 90%;
  max-width: 500px;
  padding: 3rem 1.5rem 5rem;
  background: white;
  border-radius: 0.2rem;
}

.form-signin .text {
  font-size: .875rem;
}

@media screen and (min-width: 768px) {
  .form-signin {
    padding: 3rem 6rem 5rem;
  }
  .form-signin .primary[type="submit"] {
    padding: 10px 2rem;
  }
}

.form-control {
  position: relative;
  height: auto;
  padding: 10px;
  font-size: 1rem;
}

.new-entry > .wrap {
  background: white;
  padding: .5rem .5rem 2rem;
}

@media screen and (min-width: 768px) {
  .new-entry > .wrap {
    padding: 1rem 2rem 5rem;
  }
}

.h1 {
  font-size: 1.25rem;
  font-weight: normal;
  padding: 0 .5rem .5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid;
}

@media screen and (min-width: 768px) {
  .h1 {
    font-size: 2rem;
  }
}

.h2 {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .h2 {
    font-size: 1.25rem;
  }
}

.h3 {
  font-size: .9125rem;
}

.uil {
  position: relative;
  line-height: 0;
}

.header-nav i {
  font-size: 1.5rem;
  top: .1rem;
}

.msg-err {
  background: #ffe6e9;
  padding: 10px 1rem;
  font-size: .875rem;
  border-radius: 0.2rem;
}

.msg-err p {
  padding: .25rem 0;
}

.msg {
  font-size: 1rem;
  padding: 10px;
  border-left: 2px solid #ccc;
}

.msg img {
  width: 1.25rem;
  position: relative;
  top: -2px;
}

.form {
  text-align: left;
}

.form .text-danger {
  color: #e60019;
  display: inline-block;
  margin-left: .25rem;
}

.form .noedit {
  display: block;
  padding: .375rem .75rem;
}

.form table {
  width: 100%;
}

.form th, .form td {
  display: block;
  width: 100%;
}

.form tr:nth-child(even) {
  background: #f8f9fa;
}

.form th {
  text-align: left;
  font-size: .875rem;
  padding: .75rem .75rem 0;
}

.form td {
  padding: 0 .75rem .75rem;
}

.form .important-notes textarea {
  font-size: .75rem;
  line-height: 1rem;
  margin-bottom: .5rem;
}

.form .important-notes input[type="checkbox"] {
  display: none;
}

.form .important-notes input[type="checkbox"]:checked ~ label {
  background: #f4cf4f !important;
}

.form .important-notes input[type="checkbox"]:checked ~ label::before {
  content: '\e8ca';
}

.form .important-notes input[type="checkbox"].validate_err ~ label {
  background: #ffe6e9;
}

.form .important-notes label {
  position: relative;
  display: block;
  padding: .375rem 1rem;
  cursor: pointer;
  text-align: center;
  border-radius: 0.2rem;
  border: 1px solid #ccc;
  font-weight: bold;
}

.form .important-notes label::before {
  content: '\eb88';
  font-family: 'unicons';
  display: inline-block;
  margin-right: .25rem;
  vertical-align: middle;
  position: relative;
  top: -.1rem;
}

@media screen and (min-width: 768px) {
  .form th, .form td {
    display: table-cell;
    padding: .75em 1em;
  }
  .form th {
    width: 25%;
  }
  .form td {
    width: 75%;
  }
}

@media screen and (min-width: 1000px) {
  .form .form-s {
    max-width: 50%;
  }
  .form .form-m {
    max-width: 75%;
  }
  .form th {
    width: 20%;
    font-size: 1rem;
  }
  .form td {
    width: 80%;
  }
}

.submit-area {
  margin: 1rem 0;
}

.submit-area .btn {
  border: 0;
  width: auto;
  display: inline-block;
  padding: .75rem 2rem;
}

/* copyright */
.copy {
  text-align: center;
  background: #634d46;
  color: white;
  padding: .25rem;
  letter-spacing: .05rem;
  font-size: .875rem;
}
