@charset "UTF-8";
/* CSS Document */
html,body {
  font-family: "ヒラギノ角ゴ Pro W3",メイリオ,Osaka,Arial,Verdana,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 12pt;
  background-color: #f5f5f5;
  color: #696969;
}
a {
  color: #005ca8;
  text-decoration: none;
}
a:hover, #bread a:hover, #footer a:hover {
  color: #F60;
  cursor: pointer;
  cursor: hand;
}
a img {
  border: none;
}
h1 {
  font-size: 18pt;
  font-weight: normal;
  border-left: 10px solid #005ca8;
  border-bottom: 1px solid #005ca8;
  padding: 10px;
  margin: 30px 0;
}
h2 {
  font-size: 16pt;
  font-weight: normal;
  border-left: 10px solid #005ca8;
  border-bottom: 1px solid #005ca8;
  padding: 5px;
}
h3 {
  font-size: 14pt;
  font-weight: normal;
  color: #005ca8;
  background-color: #87ceeb;
  margin-bottom: 10px;
  padding: 5px;
}
sup {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.5em;
}
sub {
  font-size: 75.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.5em;
}
p {
  margin-bottom: 1em;
}
table {
  width: 100%;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  margin-bottom: 30px;
}
table th,
table td {
  border-bottom: 1px solid #666;
  border-left: 1px solid #666;
  height: 30px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2em;
  padding: 3px 5px;
}
table th {
  background-color: #b0c4de ;
}
table td.left {
  text-align: left;
}
table caption {
  text-align: left;
  margin-bottom: 5px;
}
input, textarea, select {
  line-height: 1.5em;
}

/* ラジオボタン */
input[type="radio"] {
  display: none;
}
input[type="radio"] + .dummy {
  width: 20px;
  height: 20px;
  border: 2px solid #61a35d;
  background-color: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
}
input[type="radio"]:checked + .dummy:after {
  content: "";
  width: 70%;
  height: 70%;
  background-color: #61a35d;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* チェックボックス */
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + .dummy {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  border: 3px solid #61a35d;
  background-color: #fff;
  width: 20px;
  height: 20px;
}
input[type="checkbox"]:checked + .dummy::after {
  position: absolute;
  content: "";
  border-left: 3px solid #61a35d;
  border-bottom: 3px solid #61a35d;
  transform: rotate(-45deg);
  width: 125%;
  height: 30%;
  top: 0;
  left: 10%;
}
input[type="text"]:disabled,
select:disabled {
  background-color: #a9a9a9;
}
/* リスト */
ul {
  list-style: none;
}
#container {
  width: 100%;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 50px;
}

/*================================================
          header
================================================*/
header {
  width:100%;
  min-width: 1000px;
  background-color: #00913a;
  padding: 15px 0;
  text-align: center;
  position: fixed;
  z-index: 999;
  font-size: 12pt;
  color: #fff;
}
/*================================================
          footer
================================================*/
footer {
  position: fixed;
  bottom: 0;
  height: 20px;
  width: 100%;
  min-width: 1000px;
  background-color: #00913a;
}
#copyright {
  width: 100%;
  padding: 5px 0;
  font-size: 8pt;
  text-align: center;
  color: #fff;
}

/*================================================
        contents
================================================*/
#contents {
  width: 100%;
}

/*================================================
  ログイン画面
================================================*/
.login_area {
  width: 500px;
  height: 400px;
  margin: 50px auto;
  padding: 20px 50px;
  background-color: #ffffff;
  box-shadow: 0 0 8px gray;
  font-size: 12pt;
}
.btn_area {
  width: 500px;
  margin: 30px auto 0 auto;
}
#login_btn_area {
  width: 100%;
}
.error_area {
  width: 80%;
  margin: 60px auto;
}
.error_list {
  color: #ff0000;
  list-style-type: disc;
  width: 60%;
  margin: 0 auto;
}
.error_list > li {
  margin-bottom: 1em;
}
.login_table {
  width: 100%;
  margin: 0 auto;
  border: none;
}
.login_table th,
.login_table td {
  border: none;
}
.login_table th {
  text-align: right;
  background-color: unset;
}
.login_table td {
  text-align: unset;
  padding-left: 7pt;
}

/*------------------------------------
　共通箇所
--------------------------------------*/
.btn_area {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.btn {
  background: #191970;
  border: 2px solid #191970;
  border-radius: 60px;
  color: #fff;
  display: block;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
  width: 10em;
  padding: 10px 0;
}
.btn:hover {
  background: #fff;
  color: #191970;
  letter-spacing: 0.15em;
}
.btn#clear_btn {
  background: #fff;
  color: #191970;
}
.btn#clear_btn:hover {
  background: #191970;
  color: #fff;
  letter-spacing: 0.15em;
}
.price,
.percent {
  text-align: right;
}
.note {
  font-size: 70%;
  padding-left: 0.5em;
}

/*================================================
          jquery-confirm
================================================*/
.jconfirm-content-pane {
  padding-top: 10px;
}
.jconfirm-content {
  padding-top: 5px;
}
