@charset "UTF-8";
/* =====================
  共通のリセット
===================== */
.wp-editor *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.wp-editor body,
.wp-editor div,
.wp-editor iframe,
.wp-editor h1,
.wp-editor h2,
.wp-editor h3,
.wp-editor h4,
.wp-editor h5,
.wp-editor h6,
.wp-editor p,
.wp-editor blockquote,
.wp-editor address,
.wp-editor img,
.wp-editor small,
.wp-editor strong,
.wp-editor sub,
.wp-editor sup,
.wp-editor i,
.wp-editor dl,
.wp-editor dt,
.wp-editor dd,
.wp-editor ol,
.wp-editor ul,
.wp-editor li,
.wp-editor fieldset,
.wp-editor form,
.wp-editor label,
.wp-editor legend,
.wp-editor article,
.wp-editor aside,
.wp-editor canvas,
.wp-editor embed,
.wp-editor figure,
.wp-editor figcaption,
.wp-editor footer,
.wp-editor header,
.wp-editor nav,
.wp-editor section,
.wp-editor time,
.wp-editor video,
.wp-editor a,
.wp-editor span,
.wp-editor button{
    margin      : 0;
    padding     : 0;
    border      : 0;
    font-size   : inherit;
    font-weight : inherit;
    font-family : inherit;
    text-align  : inherit;
    font-style  : inherit;
    color       : inherit;
}
.wp-editor body{
    height: 100%;
}
.wp-editor main,
.wp-editor article,
.wp-editor aside,
.wp-editor details,
.wp-editor figcaption,
.wp-editor figure,
.wp-editor footer,
.wp-editor header,
.wp-editor nav,
.wp-editor section,
.wp-editor svg,
.wp-editor g,
.wp-editor path{
    display: block;
}
.wp-editor ol,
.wp-editor ul{
    list-style: none;
}
.wp-editor table{
    border-collapse: collapse;
    border-spacing: 0;
}
.wp-editor a{
    outline:none;
    text-decoration: none;
    color: inherit;
}
.wp-editor img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
.wp-editor img[width="0"]{
    display: none;
}
.wp-editor iframe{
    vertical-align: bottom;
}
.wp-editor button{
    cursor: pointer;
    background: transparent;
    outline-style: none;
}
.wp-editor input:not([type="file"]),
.wp-editor button,
.wp-editor textarea,
.wp-editor select,
.wp-editor option {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline:none;
    font-family: inherit;
    font-weight: inherit;
}
.wp-editor textarea{
    resize:vertical;
}
.wp-editor select::-ms-expand {
    display: none;
}
.wp-editor strong{
    font-weight: bold;
}
.wp-editor em{
    font-style: italic;
}
.wp-editor hr{
    clear: both;
    margin: 0;
    outline-style: none;
    border: none;
}

/* =====================
  入力中リセット
===================== */
/* 入力エリア */
.mce-content-body{
    padding: 0em 0.25em;
}
/* aタグ選択中 */
.mce-content-body a[data-mce-selected]{
    margin: auto;
    border-radius: inherit;
    box-shadow: none;
    background: inherit;
}

/* =====================
  固有のリセット
===================== */
.wp-editor *{
    line-height: 2;
}
.wp-editor{
    font-size: var(--fz-middle);
    font-weight: 500;
    font-family:
    "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    color: #1e1e1e;
}
.wp-editor::after{
    content: '';
    display: block;
    clear: both;
}

/* =====================
  表
===================== */
.wp-editor table th,
.wp-editor table td{
    padding: 0.5em;
    vertical-align: top;
}

/* =====================
  画像
==================== */
.wp-editor img.alignleft{
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 1em;
    float: left;
}
.wp-editor img.alignright{
    margin-top: 0;
    margin-bottom: 0;
    float: right;
}
.wp-editor img.aligncenter{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* =====================
  リンク
==================== */
.wp-editor a:not([href$=".pdf"]),
.wp-editor :not(.editor-button) a{
    font-size: var(--fz-small);
    color: var(--darkblue);
    -ms-word-break: break-all;
    word-break: break-all;
    text-decoration: underline;
    padding: 0;
    display: inline-block;
}
.wp-editor a::before,
.wp-editor :not(.editor-button) a::before{
    content: '';
    display: inline-block;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom:auto;
    outline: none;
    z-index: 1;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
/* ==== pdf以外 ==== */
.wp-editor a:not([href$=".pdf"])::before,
.wp-editor :not(.editor-button) a:not([href$=".pdf"])::before{
    width: 12px;
    height: 8px;
    background-image: var(--i-right);
    vertical-align: .1em;
}
.wp-editor a:hover{
    text-decoration: none;
}

/* ==== pdf ==== */
a[href$=".pdf"]{
    display: inline-flex!important;
}
a[href$=".pdf"]::before{
    background-image: var(--i-pdf);
    width: 5vw;
    height: 6vw;
    vertical-align: -1.5vw;
    flex: none;
}

/* =====================
  テキスト
==================== */
.wp-editor p{
    -ms-word-break: break-all;
    word-break: break-all;
    clear: both;
    line-height: 2;
}
/* 背景色付き*/
.wp-editor span[style^="background-color:"]{
    display: inline-block;
    padding: 0 0.25em;
}

/* 大文字 */
.wp-editor .editor-fz-large{
    font-size: 24px;
    display: inline;
    clear: both;
}
/* 小文字 */
.wp-editor .editor-fz-small{
    font-size: 12px;
    display: inline;
    clear: both;
}

/* =====================
  UL
==================== */
.wp-editor .editor-list li{
    text-indent: -1em;
    padding-left: 1em;
    -ms-word-break: break-all;
    word-break: break-all;
}
.wp-editor .editor-list li::before{
    content: "●";
    color: var(--semisky);
    font-weight: bold;
    font-size: .6em;
    margin-right: .6em;
}
.wp-editor ol li{
    text-indent: -1.25em;
    padding-left: 1.25em;
}

/* =====================
  リンク
==================== */
.wp-editor .my-table{
    width: 100%;
    margin-top: 5vw;
    margin-bottom: 5vw;
}
.wp-editor .my-table th,
.wp-editor .my-table td{
    line-height: 1.8;
}
.wp-editor .my-table tr td:first-child,
.wp-editor .my-table th{
    font-weight: bold!important;
    width: 32%!important;
    border-top: 1px solid var(--semisky)!important;
    border-bottom: 1px solid var(--semisky)!important;
    padding: 1em 0!important;
}
.wp-editor .my-table td{
    border-top: 1px solid #dae5eb;
    border-bottom: 1px solid #dae5eb;
    padding: 1em 2vw;
}
.wp-editor .my-table li{
    line-height: 1.85;
}

/* =====================
  独自スタイル
===================== */
/* ==== テキスト用h2 ==== */
.wp-editor .editor-single-head2{
    font-size: 6.4vw;
    font-weight: bold;
    margin-bottom: 11vw;
}
.wp-editor .editor-single-head2 span{
    border-bottom: 1.333333333vw solid var(--ltblue);
    position: relative;
    display: inline-block;
    line-height: 1.4;
    padding-bottom: 1.333333333vw;
}
.wp-editor .editor-single-head2 span::before{
    position: absolute;
    content: "";
    width: 5.33333333vw;
    height: 1.333333333vw;
    bottom: -1.333333333vw;
    left: 0;
    background-color: var(--blue);
}

/* ==== テキスト用h3 ==== */
.wp-editor .editor-single-head3{
    font-size: 5.8666666666vw;
    font-weight: bold;
    background-color: #eef8fe;
    border-left: 4px solid var(--semisky);
    margin-bottom: 6vw;
    margin-top: 15vw;
    line-height: 1.45;
}
.wp-editor .editor-single-head3 span{
    background-color: var(--white);
    display: inline-block;
    line-height: 1.45;
    padding: 0 .8em;
    max-width: 62.7vw;
}
.wp-editor .editor-single-head2 + .editor-single-head3{
    margin-top: 14vw;
}

/* ==== テキスト用h4 ==== */
.wp-editor .editor-single-head4{
    font-size: 4vw;
    line-height: 1.5;
    font-weight: bold;
    color: var(--sky);
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 0.25em;
    margin-bottom: 3vw;
    margin-top: 4vw;
}

/* ==== テキスト用h5 ==== */
.wp-editor .editor-single-head5{
    font-size: 3.8vw;
    font-weight: bold;
    margin-top: 4vw;
}

/* ==== 囲みテキスト ==== */
.wp-editor .editor-notes{
    margin: 1em auto;
    border-width: 1px;
    border-color: rgb(218, 229, 235);
    border-style: solid;
    background-color: rgb(250, 250, 250);
    padding: 1em 1.5em;
    line-height: 2.125;
}