/*
 * user.css
 *
 * Since:   2024-03-06
 * Update:  2025-09-11
 *
 */
.mt-block-editor .mt-be-block-list-wrapper {
	left: calc(25% - 140px);
}
.mt-block-editor .mt-be-block-list-wrapper .mt-be-block-list {
    grid-template-columns: repeat(9,1fr);
    width: 750px;
}

.mt-block-editor .mt-be-block-list-wrapper .mt-be-block-list li button {
    font-size: 15px;
}
.mt-block-editor .mt-be-block-list-wrapper .mt-be-block-list li button img {
    display: none;
}

.mt-block-editor .mt-be-block-list-wrapper .mt-be-block-list li {
    outline: 1px solid #b1afaf;
	height: 135px;
    width: 106.5px;
}
.mt-block-editor .mt-be-block-list-wrapper .mt-be-block-list {
    outline: 1px solid #b1afaf;
}

.mt_iframe_img {
    max-width: 200px;
    max-height: 200px;
}
iframe {
    width: 100%;
    height: 200px;
}

/* 開くボタン */
.button-open {
  cursor: pointer;
}
/* モーダルウィンドウ */
.modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 35%;
  background-color: #fff;
  border-radius: 5px;
  z-index: 11;
  padding: 2rem;
}
/* 閉じるボタン */
.button-close {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  padding: 0.5em;
  background-color: #333;
  color: #eaeaea;
  border-radius: 10rem;
  border-color:#333;
  cursor: pointer;
}
/* オーバーレイ */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
.modal-window {
  width: 80%;
  height: 80%;
}
}