@charset "UTF-8";
.breadcrumbList a {
  color: #0077ff;
}

.breadcrumbList a:hover {
  text-decoration: underline;
}

button#select {
  width: 200px;
  height: 2rem;
  color: black;
  display: inline-block;
  padding: 0.5rem 0.3rem;
  margin-left: 0.5rem;
  font-size: 14px;
  border: 1px solid #ff6600;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to bottom, #fff 0%, #ebedee 100%);
  line-height: 1;
  cursor: pointer;
  border-radius: 0.5rem;
}

button#image-button {
  border: none;
}

button#select:hover,
button#image-button:hover {
  opacity: 0.5;
}

button.expansion {
  width: 2rem;
  height: 2rem;
  box-sizing: border-box;
  border-radius: 5px;
  text-align: center;
  padding: 5px 7px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border: 2px solid #226ae0;
  background: unset;
}

button.expansion i {
  color: #226ae0;
}

ul.tmplList {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.tmplList li {
  margin-bottom: 2rem;
}

ul.tmplList li > img {
  margin: 0.5rem 0 1rem 0;
}

a.pageback {
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  margin-left: 1rem;
  color: #f18101;
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: bold;
  padding: 5px 1rem;
  text-decoration: underline;
  cursor: pointer;
}

a.pageback:hover {
  opacity: 0.7;
}

a.pageback:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: text-top;
  background-image: url(/images/PageBack.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/* モーダル周りのレイアウト */
.modal-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}

.modal-wrap.is-show {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  z-index: 2;
  box-sizing: border-box;
  overflow-y: scroll;
}

.modal-container2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  z-index: 2;
  box-sizing: border-box;
  overflow-y: scroll;
}

.modal-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  cursor: pointer;
}

.modal-title {
  margin: 0;
  padding: 0 0 0 1rem;
  font-size: 26px;
  line-height: 39px;
  font-weight: bold;
  border-left: 5px solid;
}

.title-bold .modal-title {
  font-weight: bold;
}

.modal-body {
  padding: 1rem;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  text-align: center;
}

.modal-body p {
  font-size: 18px;
  line-height: 30px;
}

.modal-body img {
  width: 90%;
  height: auto;
  margin: 0 auto;
  box-shadow: 5px 5px 10px #6f6f6f;
}

.modal-headsup {
  border: 2px solid #f2a405;
  background-color: #fdf2db;
  padding: 1em;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}

#modal_send {
  width: 30%;
  height: 50px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #f18101;
  background: #f18101;
  color: white;
  font-size: 16px;
  font-weight: bold;
  margin: 0 10px;
  cursor: pointer;
}

#modal_send:hover {
  opacity: 0.7;
}

#js-modal-close {
  width: 30%;
  height: 50px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #f18101;
  background: white;
  color: #f18101;
  font-size: 16px;
  font-weight: bold;
  margin: 0 10px;
  cursor: pointer;
}

#js-modal-close:hover {
  opacity: 0.7;
}

button#change_request {
  width: 30%;
  height: 50px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #f18101;
  background: white;
  color: #f18101;
  font-size: 16px;
  font-weight: bold;
  margin: 0 10px;
  cursor: pointer;
}

button#change_request:hover {
  opacity: 0.7;
}

button#change_request a {
  color: #f18101;
}

.notice {
  border: 1px solid red;
  margin: 1rem 0;
  padding: 0.5em;
  border-radius: 8px;
  line-height: 1.5;
  font-weight: bold;
}

.select-img-border img{
  border: 1px solid black;
}

.notice p {
  color: red;
}/*# sourceMappingURL=tmplList_View.css.map */