<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.popup_wrap input {
  display: none;
}
.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  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_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.popup_content {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 1100px;
  padding: 30px 40px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.6em;
  transition: 0.5s;
  text-align: justify;
}
.close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  cursor: pointer;
  padding: 8px;
  background: #013990;
  color: #fff;
  border-radius: 15px;
  line-height: 14px;
  font-weight: bold;
}
.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.popup_wrap input:checked ~ .popup_overlay .popup_content {
  transform: translateY(50px);
}
.open_btn {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #FFF;
  padding-right: 1.2em;
  border: none;
  cursor: pointer;
}
.open_btn:before{
  position: absolute;
  font-family: FontAwesome;/*å¿˜ã‚Œãšã«*/
  content: "\f0da";
  top: -3px;
  right:0;
}
.open_btn:hover {
}
.pop-up .contentArea {
  display: flex;
  flex-wrap: wrap;
  width: 100%
}
label {
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width:768px) {
  .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%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.5s, transform 0s 0.5s;
    transform: scale(0);
  }
  .popup_trigger {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .popup_content {
    position: relative;
    align-self: flex-start;
    width: 90%;
    max-width: 90%;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.4em;
    transition: 0.5s;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(94, 94, 94, 0.7);
    padding: 40px 10px 10px;
    top: 4%;
    display: flex;
    flex-wrap: wrap;
  }
  .close_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #555;
  }
  .popup_wrap input:checked ~ .popup_overlay {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
  }
  .open_btn {}
  .open_btn:hover {
    color: rgba(42, 115, 142, 0.8);
    transition: .3s ease;
  }
  .pop-up .contentArea {
    width: 100%
  }
}

/*å†…å®¹*/
.popup_content h2 {
  text-align: center;
  font-size: 20px;
}
.popup_content ol {
  margin: 1.5em 0;
}
.popup_content ol li{
  text-indent: -2em;
  padding-left: 2em;
  list-style: none;
}
.popup_content .indent1{
  text-indent: -1em;
  padding-left: 1em;
}
.popup_content ul {
  margin: 0 0 0 1em;
}
.popup_content ul li{
  list-style: disc;
  margin-left: 1.5em;
}
.popup_content .t_marg{
  margin-top: 1.5em;
}
</pre></body></html>