﻿@charset "UTF-8";

/* ----モーダルダイアログ---- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 10000;
}

.modal-overlay-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 10002;
}

.modal-alert {
  padding: 0 10px;
  width: 100%;
  max-width: 600px;
  z-index: 10003;
}

.modal-dialog {
  padding: 0 10px;
  width: 100%;
  max-width: 600px;
  z-index: 10001;
}

.modal-dialog,
.modal-dialog :before,
.modal-dialog :after,
.modal-dialog *,
.modal-dialog *:before,
.modal-dialog *:after {
  box-sizing: border-box;
}

.modal-header {
  padding: 10px;
  font-weight: bold;
  clear: both;
  text-align: center;
  border-bottom: none;
  line-height: 1;
  color: #fff;
  background-color: #333;
}

.modal-content {
  background: #eee;
  font-size: 15px;
}

.modal-body {
  padding: 10px;
}

.modal-body p {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.modal-footer {
  padding: 0 10px 10px;
}

.modal-footer .btn {
  margin-top: 5px;
  width: 100%;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  padding: 4px 10px;
}

.modal-footer .btn:hover,
.modal-footer .btn:focus {
  text-decoration: none;
}

.modal-footer .btn-primary {
  border: 1px solid #d53100;
  color: #fff;
  background: #d53100;
  font-size: 15px;
}

.modal-footer .btn-secondary {
  color: #fff;
  border: solid 1px #333;
  background-color: #666;
  font-size: 15px;
}

.modal-footer a {
  text-decoration: none;
  color: #444;
}

.modal-footer a:hover,
.modal-footer a:focus {
  text-decoration: underline;
}

.modal-footer a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.modal-close {
  display: block;
  width: 18px;
  cursor: pointer;
  float: right;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
}

