@charset "UTF-8";
@import url("trigger.css");
/* CSS Document */
/*ポップアップボタン*/
.btn3{
  background-color: #ffd700;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 10px;
}
.button{
  padding-top: 10px;
}
.button a{
  margin: 10px 0 0 0;
  display: inline-block;
  padding: 5px;
  font-size: 15px;
  border: solid 1px #000;
  border-radius: 3px;
  cursor: pointer;
}
.button a:hover{
  background-color: white;
}
/*ポップアップボタン*/



/*ポップアップここから*/
.popup_wrap input {
  display: none;
}

.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.popup_content {
  text-align: center;
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 1000px;
  padding: 30px 40px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.7em;
  transition: 0.5s;
	font-size: 14px;
border-radius: 9px;
}
.popup_content img{
  border: #fff;
}

.close_btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
	color: #000000;
	font-weight: bold;
}

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.open_btn:hover{
    background: #BABABA;
    color:#fff;
    transition: .3s ease;
}

.popup-close{
  cursor: pointer;
}


/*ポップアップココまで*/