.modal__bg {
  position: fixed;
  z-index: 10009;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity .6s ease, visibility .6s ease;
}

.modal__bg.is-active {
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
}

.modal__inner {
  position: fixed;
  z-index: 10010;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 0 10px;
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity .6s ease, visibility .6s ease;
}

.modal__inner.is-active {
  opacity: 1;
  visibility: visible;
  background: #6a6a6abf;
  height: 100vh !important;
  width: 100vw !important;
  position: fixed;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.modal-card {
  /* width: 290px; */
  max-height: 90%;
  background: #93e5b6db;
  /* filter: drop-shadow(0 0 10px rgba(0 ,0, 0, 0.4)); */
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  position: absolute;
  z-index: 1;
  transform: translate3d(0, 48px, 0);
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 初期状態で非表示 */
  transition: opacity .6s ease, visibility .6s ease, transform .3s ease-in-out;
  /* overflow-y: scroll; */
}

.modal-card.is-active {
  position: relative;
  z-index: 2;
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
  transform: translate3d(0, 0, 0);
  overflow-y: scroll;
  -ms-overflow-style: none;
}

.modal-card__heading {
  margin: 0;
  font-size: 100px;
  line-height: 1.6;
  font-weight: bold;
  color: #ffffff;
}

.modal-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.modal-card__close {
  width: 15px;
  height: 15px;
  position: fixed;
  top: 16px;
  right: 13px;
}

.modal-card__close::before,
.modal-card__close::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 3px;
  background: #fff;
  cursor: pointer;
}

.modal-card__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-card__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

a.modal_button {
  background: #27ae60;
  color: white;
  font-size: 11px;
  border-radius: 100vh;
  font-weight: 600;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.popup_img_line {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.popup_outer {
  max-width: 1200px;
}

.popup_img_line img{
  width:30%;
}


html.is-active {
  position: fixed;
  width: 100%;
  overflow: hidden;
}


@media screen and (max-width:1000px){
.modal-card__heading {
  font-size: 40px;
}}


@media screen and (max-width:769px){
.entry-contents .contact__form th {
  padding: 10px 10px 10px 10px!important;
  background: #ffffff6b;
  display: flex;
  align-items: center!important;
}}



.modal-card.is-active::-webkit-scrollbar {
  display: none;
}

.header-main .contact-box a {
  width: 60px;
  height: 60px;
  padding: 10px 15px;
}