@charset "UTF-8";

/*******************************************************************************
**
**  白抜きボックス
**
*******************************************************************************/


/* デフォルト */

.editor-styles-wrapper .wp-block.blank-box,
.blank-box {
  border-width: 1px;
  border-radius: 0;
  position: relative;
}


/* 二重線 */

.editor-styles-wrapper .blank-box.is-style-border-double,
.blank-box.is-style-border-double {
  border-width: 4px;
}


/* ストライプ */

.editor-styles-wrapper .blank-box.is-style-stripe-box,
.blank-box.is-style-stripe-box {
  border-width: 0;
}


/* 包含 */

.editor-styles-wrapper .blank-box.is-style-section-paper-box,
.blank-box.is-style-section-paper-box {
  border-width: 0;
}


/* チェック */

.editor-styles-wrapper .blank-box.is-style-checkered-box,
.blank-box.is-style-checkered-box {
  background-image: linear-gradient(90deg, rgb(238 238 238 / 50%) 50%, transparent 50%), linear-gradient(rgb(238 238 238 / 30%) 50%, transparent 50%);
  border-width: 0;
}


/* ステッチ */

.editor-styles-wrapper .blank-box.is-style-stitch-box,
.blank-box.is-style-stitch-box {
  border-width: 0;
  box-shadow: none;
  position: relative;
}

.editor-styles-wrapper .blank-box.is-style-stitch-box:before,
.blank-box.is-style-stitch-box:before {
  border: 1px dashed;
  border-color: inherit;
  bottom: auto;
  box-sizing: border-box;
  content: '';
  display: block;
  height: calc(100% - 8px);
  left: 4px;
  position: absolute;
  right: auto;
  top: 4px;
  width: calc(100% - 8px);
}


/* かぎ括弧 */

.editor-styles-wrapper .blank-box.is-style-square-brackets-box,
.blank-box.is-style-square-brackets-box {
  border-width: 0;
}

.editor-styles-wrapper .blank-box.is-style-square-brackets-box:after,
.editor-styles-wrapper .blank-box.is-style-square-brackets-box:before,
.blank-box.is-style-square-brackets-box:after,
.blank-box.is-style-square-brackets-box:before {
  border-color: inherit;
}


/* 角括弧 */

.editor-styles-wrapper .blank-box.is-style-parenthetic-box,
.blank-box.is-style-parenthetic-box {
  border-width: 0;
}

.editor-styles-wrapper .blank-box.is-style-parenthetic-box:before,
.editor-styles-wrapper .blank-box.is-style-parenthetic-box:after,
.blank-box.is-style-parenthetic-box:before,
.blank-box.is-style-parenthetic-box:after {
  border-color: inherit;
}


/* 交差線 */

.editor-styles-wrapper .blank-box.is-style-cross-line,
.blank-box.is-style-cross-line {
  border-left: 0;
  border-right: 0;
}

.editor-styles-wrapper .blank-box.is-style-cross-line:after,
.editor-styles-wrapper .blank-box.is-style-cross-line:before,
.blank-box.is-style-cross-line:after,
.blank-box.is-style-cross-line:before {
  background-color: transparent;
  border-left: 1px solid;
  border-color: inherit;
}


/* ずれ二重線 */

.editor-styles-wrapper .blank-box.is-style-p-style-08:after,
.blank-box.is-style-p-style-08:after {
  border-color: inherit;
}


/* 角三角 */

.editor-styles-wrapper .blank-box.is-style-triangle-box:before,
.blank-box.is-style-triangle-box:before {
  border-left-color: inherit;
}

.editor-styles-wrapper .blank-box.is-style-triangle-box:after,
.blank-box.is-style-triangle-box:after {
  border-bottom-color: inherit;
}


/* 上線 */

.editor-styles-wrapper .blank-box.is-style-border-top-box,
.blank-box.is-style-border-top-box {
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-top-width: 3px;
  border-left-width: 3px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}


/* 付箋 */

.editor-styles-wrapper .blank-box.is-style-border-left-box,
.blank-box.is-style-border-left-box {
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left-width: 3px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}


/* 手書き風 */

.editor-styles-wrapper .blank-box.is-style-handwritten-box,
.is-style-handwritten-box {
  border-radius: 30px 60px / 60px 30px !important;
  border-width: 8px!important;
}