/*
* koza nittei modal
*/
.ukc-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);  
  opacity: 0;
  visibility: hidden;
  transition: .1.5s;
}
.ukc-overlay.ukc-active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
.ukc-modal {
  max-width: 600px;
  max-height: 600px;
  overflow: scroll;
  width: 86%;
  padding: 15px 20px;
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: .1.5s;
}
.ukc-modal.ukc-active {
  opacity: 1;
  visibility: visible;
  z-index: 1001;
}
.ukc-modal .ukc-close{
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
}

.ukc-nittei-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

/**
 * frame style.
 */
.ukc-kozanittei-frame {
	position: relative;
	width: 100%;
	height: 100%;
	border: 0;
}
.ukc-kozanittei-frame iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.ukc-kozanittei-body{
	border: 1px solid #666;
	font-size: 1.2rem;
	padding: 10px !important;
}






