@charset "Shift_JIS";

#addStockNotification_Overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  animation-name: addstocknotification_open;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  -webkit-animation-name: addstocknotification_open;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
}

#addStockNotification_Content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1005;
  background-color: #fff;
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 160px;
  animation-name: addstocknotification_open;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  -webkit-animation-name: addstocknotification_open;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  border: 10px solid #0b2265;
  overflow: hidden;
  box-sizing: border-box;
}

@keyframes addstocknotification_open {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes addstocknotification_open {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#addStockNotification_Overlay.stocknotification_close, #addStockNotification_Content.stocknotification_close {
  animation-name: addstocknotification_close;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  -webkit-animation-name: addstocknotification_close;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
}

@keyframes addstocknotification_close {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.2);
  }
}

@-webkit-keyframes addstocknotification_close {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.2);
  }
}


/** CloseButton **/

#addStockNotification_Content .stock_notification_closebtn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 39px;
  height: 39px;
  background-color: #0b2265;
  cursor: pointer;
}

#addStockNotification_Content .stock_notification_closebtn:before {
  content: "";
  display: block;
  border-left: 3px solid #fff;
  width: 30px;
  height: 30px;
  transform: rotate(-45deg);
  position: absolute;
  top: -5px;
  left: 14px;
  right: 0;
  bottom: 0;
}

#addStockNotification_Content .stock_notification_closebtn:after {
  content: "";
  display: block;
  border-left: 3px solid #fff;
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  position: absolute;
  top: 16px;
  left: 14px;
  right: 0;
  bottom: 0;
}


/** Loading design **/

#addStockNotification_Content .loading_label {
  text-align: center;
  padding: 50px 20px;
}

#addStockNotification_Content .loading_label span {
  position: relative;
  line-height: 40px;
  height: 40px;
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  width: 150px;
}

#addStockNotification_Content .loading_label span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  height: 40px;
  margin: auto;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 66%, rgba(255, 255, 255, 0.8) 94%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 66%, rgba(255, 255, 255, 0.8) 94%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 66%, rgba(255, 255, 255, 0.8) 94%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
  animation-name: addstocknotification_loading;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  -webkit-animation-name: addstocknotification_loading;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-delay: 0s;
}

@keyframes addstocknotification_loading {
  0% {
    left: -100px;
  }
  100% {
    left: 100px;
  }
}

@-webkit-keyframes addstocknotification_loading {
  0% {
    left: -100px;
  }
  100% {
    left: 100px;
  }
}


/** Result display **/

#addStockNotification_Content .stock_notification_addanswer {
  opacity: 0;
  overflow: hidden;
  transition-property: opacity;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
}

#addStockNotification_Content .stock_notification_addanswer_title {
  font-size: 25px;
  font-weight: bold;
  margin: 20px 10px;
  text-align: center;
}

#addStockNotification_Content .stock_notification_addanswer_content {
  margin: 20px 10px;
  font-size: 12px;
}

#addStockNotification_Content .stock_notification_addanswer_items {
  font-size: 13px;
  font-weight: bold;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 20px;
}

#addStockNotification_Content .stock_notification_addanswer_items li {
  display: table;
  width: 100%;
  table-layout: fixed;
}

#addStockNotification_Content .stock_notification_addanswer_items_t_txt {
  display: table-cell;
  width: 70px;
}

#addStockNotification_Content .stock_notification_addanswer_items_c_txt {
  display: table-cell;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#addStockNotification_Content .stock_notification_addanswer_txt {
  text-align: center;
  margin: 20px 0;
}

#addStockNotification_Content .stock_notification_addanswer_txt span {
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}

#addStockNotification_Content .stock_notification_addanswer_txt_01 {
  margin: 20px 0;
  font-size: 16px;
}

#addStockNotification_Content .stock_notification_addanswer_links {
  margin: 20px 0;
  text-align: center;
}

#addStockNotification_Content .stock_notification_addanswer_links li {
  margin: 10px 0;
}

#addStockNotification_Content .stock_notification_addanswer_links a {
  display: inline-block;
  padding: 5px;
  border: 1px solid #0b2265;
}
