@import url("https://fonts.googleapis.com/css2?family=Kosugi&family=Kosugi+Maru&display=swap");
td.delivered_status_td {
  text-align: center;
}
td.delivered_status_td span {
  display: inline-block;
  margin: auto;
  color: white;
  padding: 4px 8px;
  font-size: 11.2px;
  border-radius: 6px;
  line-height: 1.2em;
  cursor: pointer;
  transition: 0.2s;
}
td.delivered_status_td span:hover {
  opacity: 0.8;
}
td.delivered_status_td span.deliver_notyet {
  background: grey;
}
td.delivered_status_td span.delivery_prepare {
  background: rgb(231, 150, 44);
}
td.delivered_status_td span.delivered {
  background: rgb(59, 172, 36);
}

td.history_paid_status {
  text-align: center;
}
td.history_paid_status span {
  background: grey;
  display: inline-block;
  color: white;
  padding: 3px 6px;
  font-size: 11.2px;
  border-radius: 6px;
}
td.history_paid_status span.paid {
  background: rgb(59, 172, 36);
}
td.history_paid_status span.cancel {
  background: rgb(30, 93, 122);
}
td.history_paid_status span.error {
  background: rgb(199, 46, 40);
}
td.history_paid_status span.wait {
  background: rgb(77, 77, 88);
}
td.history_paid_status span.multipay {
  background: rgb(247, 240, 149);
  color: #303030;
}

div.price_paid_date_form p {
  padding: 0px 12px 0px 0px;
  margin: 0px;
  display: inline-block;
  font-weight: bold;
  color: #303030;
}
div.price_paid_date_form input {
  padding: 0px;
  margin: 0px;
  display: inline-block;
}
div.price_paid_date_form a {
  background: #303030;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-size: 10px;
  padding: 3px;
}
div.price_paid_date_form div.date_range {
  display: inline-block;
}
div.price_paid_date_form div.date_range p.submit_range {
  background: rgb(68, 68, 160);
  color: white;
  padding: 2px 8px;
  box-shadow: 3px 3px 6px #a0a0a0;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  font-weight: normal;
}
div.price_paid_date_form button {
  background: rgb(255, 11, 174);
  border: 4px rgb(68, 71, 228) solid;
  color: rgb(95, 224, 35);
  font-weight: bold;
  cursor: pointer;
}

a.price_receipt_download_link {
  display: block;
  margin: auto;
}
a.price_receipt_download_link img {
  width: 28px;
  transition: 0.3s;
}
a.price_receipt_download_link img:hover {
  opacity: 0.7;
}

.paging_div {
  margin-top: 20px;
  margin-bottom: 4px;
  text-align: center;
}
.paging_div .current_page {
  background: #333;
  color: white;
  border-radius: 12px;
  padding: 0px 7px;
}
.paging_div .other_page {
  font-weight: normal;
  padding: 0px 7px;
  transition: 0.2s;
}
.paging_div .other_page.allow_link {
  text-decoration: none;
  background: #f0ebeb;
  border-radius: 12px;
}
.paging_div .other_page:hover {
  opacity: 0.7;
}

.button_row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
.button_row p {
  margin: 0;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 3px 3px 3px #aaa;
  transition: 0.3s;
}
.button_row p:hover {
  box-shadow: none;
  opacity: 0.8;
}

div#video_lists_link {
  position: fixed;
  width: 180px;
  height: auto;
  background: none;
  color: white;
  bottom: 20px;
  left: 20px;
  border-radius: 5px;
}
div#video_lists_link a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 3px;
  background: #8f00c7;
  background: #7a3f0f;
  color: white;
  text-decoration: none;
  position: flex;
  text-align: center !important;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
  align-items: center;
  font-weight: bold;
  transition: 0.2s;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 19px;
  font-weight: normal;
}
div#video_lists_link a.check {
  background: rgb(255, 155, 25);
  background: rgb(14, 119, 0);
  margin-bottom: 12px;
  color: rgb(255, 255, 255);
  line-height: 1.2em;
}
div#video_lists_link a:hover {
  opacity: 0.8;
}

#glp1_check {
  margin: auto;
  max-width: 800px;
}
#glp1_check h1 {
  text-align: center;
  letter-spacing: 1.2em;
  font-size: 62px;
}
#glp1_check h2 {
  background: pink;
  margin: 20px 0 0 0;
  color: #333;
  border-radius: 10px;
  padding: 14px 20px;
}
#glp1_check table {
  width: 600px;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#glp1_check table th, #glp1_check table td {
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
#glp1_check table td.failed {
  color: red;
  font-weight: bold;
}
#glp1_check table td.success {
  color: green;
  font-weight: bold;
}
#glp1_check table td.not_yet {
  color: rgb(167, 166, 166);
}
#glp1_check table th + th,
#glp1_check table td + td {
  border-left: 1px solid #ddd;
}
#glp1_check table th {
  background: #f5f5f5;
  font-weight: bold;
}
#glp1_check table tr:hover {
  background: #fafafa;
}
#glp1_check .warning p {
  background: rgb(180, 37, 37);
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
}
#glp1_check p {
  font-size: 16px;
  margin: 8px 0;
}
#glp1_check p.not_yet {
  color: grey;
}
#glp1_check p.available {
  color: white;
  background: green;
  display: inline-block;
  border-radius: 10px;
  padding: 10px;
}
#glp1_check form {
  width: 100%;
}
#glp1_check form input {
  display: block;
  width: 100%;
  font-size: 32px;
  padding: 7px 3px;
}
#glp1_check form button {
  width: 200px;
  font-size: 20px;
  display: block;
  margin: 20px auto;
  padding: 12px 0px;
}

.detail_hrja_link {
  display: block;
  width: 130px;
  letter-spacing: 0.2em;
  text-align: center;
  text-decoration: none;
  font-family: "Kosugi Maru", sans-serif;
  background: rgb(35, 143, 35);
  padding: 4px 4px;
  border-radius: 5px;
  color: white;
  font-size: 23px;
}
.detail_hrja_link:hover {
  background: brown;
  color: white;
}/*# sourceMappingURL=new_style.css.map */