<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

.input-table {
  width: 85%;
  margin-bottom: 10px;
}
.label-box {
  text-align: right;
  width: 172px;
  color: #fff;
  font-weight: bold;
  background: #187ecc;
  border: 1px solid;
  border-color: #ccc transparent #ccc #ccc ;
  padding: 10px 15px;
}
.data-box {
  position: relative;
  text-align: left;
  vertical-align: middle;
  border: 1px solid;
  border-color: #ccc #ccc #ccc transparent ;
  padding: 10px 20px;
}
.input-box {
  left: 40px;
}
.required:before{
  position: absolute;
  display: inline-block;
  content: "必須";
  margin: auto;
  top: 0;
  bottom: 0;
  height: 20px;
  border: 1px solid #fc216b;
  color: #fc216b;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
  padding: 1px 0 0;
  left: -30px;
  text-align: center;
  width: 40px;
  background-color: #fff;
}
.complete-container {
  margin-top: 20px;
  margin-left: 40px;
}

.error{
  position: relative;
}
.error:after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  height: 30px;
  width: 30px;
  margin: auto;
  content: "\0009";
  font-weight: bold;
  background: url("../../common/img/element/alert.png") no-repeat transparent;
}
.error-msg {
  color: #ff3b30;
  font-size: 11px;
}
.error .error-msg {
  display: block;
}

 .placeholder {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    line-height: 1;
  }

.btn-grey,
  .btn-grey:focus {
    padding: 8px 36px 6px;
    font-weight: bold;
    background: #acacac;

    color: #fff;
    border: 2px solid #acacac;

    outline: none;

    -webkit-box-shadow: 0 3px #777777;
    -moz-box-shadow: 0 3px #777777;
    box-shadow: 0 3px #777777;

    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);

    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
  }
  .btn-grey:hover,
  .btn-grey:focus:hover {
    color: #acacac;
    background: #fff;
  }
  .btn-grey:active {
    color: #acacac;
    background: #fff;
    -webkit-transform: translate(0, 2px);
    -moz-transform: translate(0, 2px);
    transform: translate(0, 2px);
    box-shadow: 0 1px #acacac;
  }
.btn-zipcode,
  .btn-zipcode:focus {
    /*color: #fff;*/
    margin-top: -30px;
    margin-left: 240px;
    padding: 4px 36px 2px;
    font-weight: bold;
    background: #ddd;
    border: 2px solid #ddd;
    /*font-size: 12px;*/
    outline: none;

    -webkit-box-shadow: 0 3px #ccc;
    -moz-box-shadow: 0 3px #ccc;
    box-shadow: 0 3px #ccc;

    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);

    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
  }
  .btn-zipcode:hover,
  .btn-zipcode:focus:hover {
    /*color: #626262;*/
    background: #fff;
  }
  .btn-zipcode:active {
    /*color: #187ecc;*/
    background: #fff;
    -webkit-transform: translate(0, 2px);
    -moz-transform: translate(0, 2px);
    transform: translate(0, 2px);
    box-shadow: 0 1px #acacac;
  }</pre></body></html>