@charset "UTF-8";
/*------------------------
  landing
------------------------*/
.landing-content .wp-block-table {
  border-top: 2px solid;
  border-color: rgba(242, 139, 170, 0.8);
}
.landing-content .wp-block-table .has-fixed-layout td,
.landing-content .wp-block-table .has-fixed-layout th {
  border-width: 0 0 1px;
  border-color: #ddd;
  padding: 0.75rem 0;
}
.landing-content mark {
  padding: 0;
}
@media (max-width: 781px) {
  .landing-content h3.wp-block-heading span {
    display: block;
    margin-top: 0.5em;
  }
}

/*------------------------
  modal
------------------------*/
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999; /* 一番手前に表示 */
  justify-content: center;
  align-items: center;
}

.modal-overlay.is-active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  max-width: 640px;
  width: 90%;
  height: 90%;
  overflow: scroll;
}
.modal-content hr {
  width: 100%;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}