@charset "utf-8";

#loading {
    color: #165f5c;
}

body {
    font-family: "Noto Sans JP", "Verdana", sans-serif;
    font-weight: 500;
    color: #666;
    line-height: 2;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

body.bg_on {
    background: transparent url(../img/bg.jpg) 0 0;
}

body.bg_on.nighttime {
    background: #222 !important;
    background-image: unset !important;
}

input,
textarea {
    font-family: inherit !important;
    caret-color: #165f5c;
}

input[type="text"],
input[type="password"],
textarea,
select,
option {
    color: inherit !important;
}

option:hover {
    cursor: pointer;
}

select,
option {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

a {
    opacity: 1;
}

a:hover {
    text-decoration: underline;
    -webkit-text-decoration-color: #165f5c;
    text-decoration-color: #165f5c;
    opacity: 0.8;
}

a:not(.btn, .dropdown-item, .dropdown-toggle) {
    color: #165f5c;
    transition: all 0.3s ease;
}

/* a:active {
	color: #fff;
} */

a:not(.dropdown-item):hover {
    color: #165f5c;
}

.nighttime a:not(.dropdown-item):hover {
    color: #165f5c;
}

h2 {
    font-weight: 500 !important;
}

h3,
h4 {
    font-size: inherit;
}

h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

h3 {
    margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 24px;
    }

    .big {
        font-size: 18px !important;
    }
}

section {
    background-color: #fff;
}

input[type="date"],
input[type="text"],
input[type="password"],
textarea:not(.zp_editor) {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    padding: 15px;
    background-color: #fff;
    vertical-align: middle;
    font-size: 16px;
    border: 1px solid rgb(0 0 0 / 15%);
    max-width: 99.9%;
}

select {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    padding: 5px 15px;
    background-color: #fff;
    vertical-align: middle;
    font-size: 16px;
    border: 1px solid rgb(0 0 0 / 15%);
    max-width: 99.9%;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:not(.zp_editor):focus,
select:focus,
#post_editor_box.glow {
    border: 1px solid #165f5c !important;
    background-color: #fff;
    box-shadow: 0 0 5px #dddddd;
    -moz-box-shadow: 0 0 5px #dddddd;
    -webkit-box-shadow: 0 0 5px #dddddd;
}

.img-bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.none {
    display: none !important;
}

.yellow {
    color: yellow !important;
}

/* ***********************************
		btn
	*********************************** */
.btn {
    position: relative;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    overflow: hidden;
    background-color: #165f5c;
    /* 指定なしの場合 */
    box-shadow: 0px 0px 3px rgba(100, 100, 100, 0.5);
    transition: all 0.3s ease;
}

input.btn,
button.btn {
    color: #fff !important;
}

.btn:hover,
.btn:focus,
button.btn:hover,
button.btn:focus {
    color: #fff !important;
    box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
}

input.btn:disabled {
    background-color: #777 !important;
}

.btn:before,
label.submit_ok:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0px 0px 3px rgb(100 100 100 / 50%);
    transition: all 0.3s ease;
}

.btn:hover:before,
label:hover:before {
    opacity: 1;
    cursor: pointer;
    box-shadow: 0px 0px 3px rgb(100 100 100 / 50%);
    transition: all 0.3s ease;
}

.cnt_danger {
    color: #d60002;
}

#edit_admin_btn,
#each_edit_btn {
    position: fixed;
    top: 90px;
    right: 20px;
    color: #fff !important;
    z-index: 8;
}

#edit_admin_btn:not(.disabled) {
    background-color: #165f5c;
}

#edit_admin_btn.disabled {
    background-color: #ccc !important;
}

#edit_admin_btn_after {
    background-color: #fff;
    position: fixed;
    top: 90px;
    right: 20px;
    width: 85px;
    height: 45px;
    display: inline-block;
    vertical-align: middle;
    user-select: none;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 5;
    z-index: 9996;
    opacity: 1 !important;
}


/* ***********************************
		scroll top
	*********************************** */
.scroll-top {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    background: #165f5c;
    border-radius: 5px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    opacity: 0.5;
    color: #fff;
}

.fa-solid {
    margin-left: 0.1em !important;
    margin-right: 0 !important;
    color: #fff;
}

a.out {
    margin: 0 5px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 20px;
    min-height: 64px;
    background-color: #f30;
    z-index: 98;
    color: #fff;
    justify-content: space-between;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.justify-content-end {
    align-items: center;
}

#logo {
    color: #fff !important;
    text-decoration: none !important;
}

#logo:hover {
    opacity: 0.7 !important;
}

.menu_title {
    padding: 10px 16px 5px;
    color: #666;
    font-size: 14px;
}

.bb1 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 10px;
}

.menu_icon {
    display: inline-block;
    width: 25px;
    text-align: center;
}

#wc {
    position: fixed;
    display: flex;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    z-index: 98;
    opacity: 1;
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
    background: unset !important;
    border: unset !important;
}

#wc:hover {
    cursor: pointer;
}

#wc:before,
#wc:after {
    content: "";
    display: block;
    height: 3px;
    width: 20px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    z-index: 98;
}

#wc:before {
    top: 10px;
    transform: rotate(45deg);
}

#wc:after {
    top: 10px;
    transform: rotate(-45deg);
}

/*  ***********************************
		sideber
***********************************  */
#menu-btn-check {
    position: fixed;
    top: -100px;
    left: -100px;
}

.menu-btn {
    position: fixed;
    top: -100px;
    display: flex;
    height: 45px;
    width: 45px;
    background: #165f5c;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    opacity: 1;
    box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    transition: all 0.3s ease;
}

#menu-btn-check:checked~.menu-btn {
    top: 64px;
    right: 0px;
    background: rgba(256, 256, 256, 0);
    border-radius: 5px;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.menu-btn:focus:before,
#menu-btn-check:checked~.menu-btn:hover:before {
    background: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.menu-btn:hover {
    cursor: pointer;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 5px;
    background-color: #fff;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    background-color: #165f5c;
    transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    background-color: #165f5c;
    transform: rotate(-45deg);
}

.menu-btn span:before,
.menu-btn span:after {
    background-color: #fff;
}

/*@media only screen and (min-width: 992px) and (max-width: 1199px){

}*/

@media (max-width: 991px) {
    #main {
        padding-left: 0px !important;
    }

    #sideber {
        right: -100% !important;
        width: 100%;
    }

    #menu-btn-check:checked~#sideber {
        right: 0% !important;
    }

    .menu-btn {
        position: fixed;
        top: 78px;
        right: 20px;
    }
}

.gm {
    padding: 30px 0 20px;
    min-width: 165px !important;
    border-bottom: 1px solid #ccc;
}

.gm.nb {
    padding: 20px 0 0 0;
    border-bottom: none;
}

.gm a {
    color: unset;
}

.gm li {
    position: relative;
    padding-right: 30px;
}

.gm li:not(.selected) span.link_text {
    color: #666;
}

.selected_inner span.link_text {
    color: #dc143c !important;
    font-style: italic
}

.gm li i.toggle {
    position: absolute;
    right: 10px;
    top: 7px;
    padding: 5px;
}

.gm li i.toggle.pink,
.gm li i.toggle:hover {
    cursor: pointer;
    color: #dc143c !important;
}

.pink {
    color: #dc143c;
}

.gm li:not(.selected) {
    color: #165f5c;
    padding-left: 10px;
    background-color: unset;
    line-height: 36px;
}

.gm li:not(.selected):hover {
    background-color: #fff !important;
    box-shadow: 0 3px 5px rgb(0 0 0 / 3%);
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 3%);
    color: #165f5c;
    opacity: 1;
}

.gm li.selected {
    padding-left: 10px;
    background-color: #165f5c;
    color: #fff;
    line-height: 36px;
}

.selected_inner {
    background-color: #fff !important;
    box-shadow: 0 3px 5px rgb(0 0 0 / 3%);
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 3%);
    color: #165f5c;
}

.gm li a,
.gm li span {
    line-height: 36px;
    border: none;
    vertical-align: middle;
}

.gm li a:not(.selected):hover {
    text-decoration: none;
}

li.selected {
    text-decoration: none;
}

li.selected a {
    -webkit-text-decoration-color: rgba(255, 255, 255, 0.3);
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

li.selected:hover,
li.selected a:hover {
    color: #fff !important;
    opacity: 1 !important;
}

.cursor_default:hover {
    cursor: default;
}

.cursor_pointer:hover {
    cursor: pointer;
}

.cursor_text:hover {
    cursor: text;
}

#sideber {
    padding: 64px 0 0 0;
    background-color: rgb(240, 242, 245, 0.97);
    z-index: 6;
    width: 285px;
    position: fixed;
    top: 0%;
    right: -webkit-calc(100% - 285px);
    right: calc(100% - 285px);
    box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    /* border-left: 1px solid rgb(0, 0, 0, 0.1); */
    height: 100%;
    transition: all 0.3s ease-in-out;
}

#sideber.en {
    padding-top: 235px;
}

#sideber li {
    position: relative;
}

#sideber li.indent {
    padding-left: 20px;
    position: relative;
    background-color: unset;
    line-height: 18px;
}

#sideber li.indent i {
    font-size: 12px;
}

#sideber li.indent a:hover {
    text-decoration: none;
}

#sideber span.icon,
#sideber span.link_text {
    display: table-cell;
}

#sideber span.icon {
    width: 30px;
    text-align: center;
}

#sideber span.link_text {
    position: relative;
}

#menu-btn-check:checked~#sideber {
    right: 0%;
}

#menu-btn-check:checked~#main {
    padding-left: 0 !important;
}

#sideber h1 {
    font-size: 24px;
    padding: 23px 0 0 20px;
}

.docs:not(.selected) {
    margin-bottom: 10px;
    display: none;
}

.docs.selected {
    display: block;
}

/*  ***********************************
		main
***********************************  */
#main {
    max-width: 100%;
    padding: 64px 0 60px 285px;
    overflow-x: hidden;
    z-index: 1;
}

#main i {
    margin-right: 5px;
}

.breadcrumb {
    align-items: center;
    padding-left: 12px;
}

.breadcrumb i {
    margin-right: 10px !important;
}

body .in_panel {
    padding: 30px;
}

.in_panel .box_wrap {
    padding: 20px 0;
}

.in_panel .box_in_wrap {
    position: relative;
    height: 100%;
}

.in_panel .up_box_head {
    margin-bottom: 0;
    font-size: 28px;
}

.in_panel .up_box {
    padding: 0;
}

.in_panel .up_box .svg-inline--fa {
    margin-right: 5px;
    position: relative;
    /*top: 3px;*/
}

.in_panel .up_box label .svg-inline--fa {
    position: relative;
    top: 0;
}

h2 .fa-solid {
    color: #f30;
    font-size: inherit !important;
}

.in_panel .svg-inline--fa {
    margin-right: 5px;
}

.in_panel h2 a,
.in_panel h2 span,
.in_panel h2 i {
    font-size: 16px;
}

.in_panel h2 span,
.in_panel h2>i {
    color: #666 !important;
}

.in_panel h2 .fa-angle-right {
    margin: 0 10px !important;
}

.in_panel h2 i {
    margin-right: 5px;
}

.in_panel .up_btn_label:hover {
    cursor: default;
}

.in_panel .switch {
    display: inline-block;
    width: 200px;
    height: 44px;
    margin-right: 20px;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 28px;
}

.in_panel .switch label {
    float: left;
    width: 50%;
    height: 42px;
    line-height: 42px;
    border-radius: 28px;
    color: #999;
    text-align: center;
    letter-spacing: normal;
    background-color: #fff;
    cursor: pointer;
}

form[alt="vf_switch"] {
    align-items: center;
}

form[alt="vf_switch"] label:not(.none_hover) {
    position: relative;
    top: -14px;
}

.in_panel .switch label:hover {
    cursor: pointer;
}

.in_panel .switch input[type="radio"] {
    display: none;
}

.in_panel .switch input[type="radio"]:checked+label {
    color: #fff;
    background-color: #165f5c;
    cursor: pointer;
    box-shadow: 0px 0px 3px rgb(100 100 100 / 50%);
    transition: all 0.3s ease;
}

.switch {
    display: inline-block;
    width: 200px;
    height: 44px;
    margin-right: 20px;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 28px;
}

.switch label {
    float: left;
    width: 50%;
    height: 42px;
    line-height: 42px;
    border-radius: 28px;
    color: #999;
    text-align: center;
    letter-spacing: normal;
    background-color: #fff;
    cursor: pointer;
}

.switch label:not(.none_hover) {
    position: relative;
    top: -14px;
}

.switch label:hover {
    cursor: pointer;
}

.switch input[type="radio"] {
    display: none;
}

.switch input[type="radio"]:checked+label {
    color: #fff;
    background-color: #165f5c;
    cursor: pointer;
    box-shadow: 0px 0px 3px rgb(100 100 100 / 50%);
    transition: all 0.3s ease;
}

.switch input[type="radio"]:checked+label.gray {
    background-color: #ccc;
    color: #fff !important;
}

.switch_disabled {
    display: inline-block;
    width: 200px;
    height: 44px;
    margin-right: 20px;
    box-sizing: border-box;
    background: url("../img/switch_disabled2.png") 50% 50% no-repeat;
    border: 1px solid transparent;
}

.in_panel .after_switch {
    position: relative;
}

.in_panel .none_hover {
    margin-bottom: 20px;
}

.input_min {
    width: 76% !important;
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
}

.input_line {
    width: 30% !important;
    margin-bottom: 0px !important;
}

.color_preset {
    width: 40% !important;
}

.input_like {
    padding: 5px 0 !important;
    margin-right: 10px;
    font-size: 14px;
    vertical-align: middle;
}

.input_full {
    width: 100%;
}

input[type="text"]:read-only {
    color: inherit !important;
}

input[type="text"]:read-only:hover {
    cursor: text !important;
}

input[type="text"]:read-only:focus {
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid transparent !important;
    background-color: unset !important;
    border-radius: 5px !important;
    box-shadow: unset !important;
}

.btn.disabled,
.btn:disabled {
    background-color: rgb(0 0 0 / 50%);
}

.shadow_red {
    box-shadow: 0px 0px 3px red;
}

input[type="date"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button {
    -webkit-appearance: none;
}

input[type="date"]::-webkit-datetime-edit {
    cursor: text;
}

select,
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    margin: 0;
}

.vform label:hover {
    cursor: pointer;
}

input[type="radio"].vf {
    vertical-align: baseline;
    margin-bottom: 0;
}

.sipn {
    font-size: 12px !important;
    margin-right: 3px;
    margin-bottom: 3px;
    color: inherit !important;
    padding: 0 10px 0 8px;
    border: 1px solid #ccc;
    background-color: rgb(255 255 255 / 95%);
    border-radius: 14px;
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
    -khtml-border-radius: 14px;
    box-shadow: 0px 0px 0px rgb(255 255 255 / 0%);
}

.sipn:hover {
    cursor: default;
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    2% {
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    6% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.cnt_area {
    margin-top: 5px;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0 10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    display: inline-block;
}

.ajax_area_inset {
    line-height: 25px;
    height: 32px;
    display: none;
}

.ajax_area_inset.ng {
    background-color: #cc0000;
    position: relative;
    left: 10px;
    top: -10px;
    color: #fff;
    padding: 3px 10px 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    animation: flash 5s linear infinite;
}

.ajax_area_inset.ng:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -22px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #cc0000;
}

.ajax_area_inset.ok {
    position: relative;
    left: 10px;
    top: -7px;
    display: inline-block;
    background-color: #0c9;
    color: #fff;
    padding: 3px 10px 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.ajax_area_inset.ok:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -22px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #0c9;
}

input[type="date" i]::-webkit-calendar-picker-indicator {
    margin: 0 !important;
}

#display_none {
    display: none;
    opacity: 0;
    visibility: visible;
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.clear {
    clear: both;
}

.relative {
    position: relative;
}

.image_loading {
    color: #165f5c;
    margin: 20px auto 0 25%;
    position: relative;
    top: 60px;
    animation: 1s linear infinite rotation2;
}

@media only screen and (max-width: 767px) {
    .image_loading {
        margin: 25px auto;
        top: 0;
    }
}

@keyframes rotation2 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

h3 form,
h4 form {
    display: inline-block;
}

h3 button,
h4 button {
    border: unset;
    background-color: unset;
}

.in_panel form button {
    margin-left: 10px;
    color: #165f5c;
}

.in_panel form button:hover {
    color: #dc143c;
}

/* ---------------------------------------
	エディター
----------------------------------------*/
.zp_editor_wrap {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    transition: none !important;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border: 1px solid transparent;
    z-index: unset;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
}

.zp_editor_wrap.fullscreen {
    width: calc(100vw - 35px) !important;
    width: -webkit-calc(100vw - 35px) !important;
    width: -moz-calc(100vw - 35px) !important;
    height: calc(100vh - 64px) !important;
    height: -webkit-calc(100vh - 64px) !important;
    height: -moz-calc(100vh - 64px) !important;
    border: unset;
    overflow: scroll;
    position: fixed !important;
    top: 64px !important;
    left: unset;
    right: 0;
    z-index: 7;
    background: #fff url("../img/editor_bg.png") 0 0 repeat-y;
}

.zp_editor_wrap:before {
    content: "";
    position: fixed;
    top: 0;
    left: -35px;
    width: 35px;
    height: 100vh;
    background: transparent url("../img/footer.png") 0 0;
}

.zp_editor_wrap.fullscreen:before {
    left: 0;
}

.zp_editor_wrap:after {
    content: attr(data-editor-kind);
    display: inline;
    position: fixed;
    top: 66px;
    right: 40px;
    font-size: 64px;
    font-weight: 900;
    color: rgba(4, 169, 244, 0.1);
    text-align: center;
    border: 1px solid transparent;
    z-index: 1;
}

.zp_editor_wrap.round5:after {
    position: fixed;
    top: 260px;
    right: 75px;
    height: 64px;
}

.zp_editor_wrap.is_focus:not(.fullscreen) {
    box-shadow: 0 0 5px #165f5c !important;
    -moz-box-shadow: 0 0 5px #165f5c !important;
    -webkit-box-shadow: 0 0 5px #165f5c !important;
    border: 1px solid #165f5c !important;
}

.zp_editor_wrap.fullscreen .zp_editor,
.zp_editor_wrap.fullscreen .preview_area {
    height: 100%;
}

.round5 {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
}

.round5.def {
    border-radius: 5px 0 5px 5px;
    -moz-border-radius: 5px 0 5px 5px;
    -webkit-border-radius: 5px 0 5px 5px;
    -khtml-border-radius: 5px 0 5px 5px;
}

.zp_editor {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    padding: 0 5px;
    background-color: transparent !important;
    z-index: 2;
    font-size: 16px;
    line-height: 24px;
    tab-size: 2;
    -moz-tab-size: 2;
    letter-spacing: 1px;
    color: transparent !important;
    transition: none !important;
    resize: none !important;
    font-family: "Roboto Mono", "Noto Sans JP", monospace !important;
    white-space: nowrap;
    overflow-y: visible;
    overflow-x: hidden;
}

#check_ooverlapping,
.tn,
.tnp,
.ipk,
.ck_html {
    display: none;
}



.cp_wrap {
    position: relative;
    top: 0;
}

.cp_inner {
    display: none;
    opacity: 0;
}

.cp_inner.active {
    display: block;
    opacity: 1;
    transition: all 0.3s ease;
}

.cp_title {
    color: #165f5c;
}

.cp_title .fa-asterisk {
    vertical-align: super;
}

.ins_box {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: rgba(4, 169, 244, 0.1);
}

.ins_box_red {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: rgba(255, 0, 55, 0.1);
}

.radio_box {
    display: inline-block;
    padding: 10px 0 10px 20px;
    border-radius: 5px;
    background-color: #eef2f6;
}

.cp_nav_area {
    position: fixed;
    top: 110px;
    left: 20px;
    padding: 20px;
    display: inline-block;
    border-radius: 5px;
    background-color: rgba(4, 169, 244, 0.1);
    z-index: 6;
    transition: all 0.3s ease;
}

.cp_nav_area a {
    display: block;
    padding: 0 10px 0 10px;
    border-radius: 5px;
}

.cp_nav_area a:hover {
    background-color: #fff;
    cursor: pointer;
    transition: all 0s;
}

.cp_nav_area .plus_zpdb_btn,
.cp_nav_area .plus_zpbs_btn {
    border-top: 1px solid #165f5c;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
}

.cp_nav_area .plus_zpdb_btn a,
.cp_nav_area .plus_zpbs_btn a {
    font-size: 14px;
    padding: 5px 0;
}

.cp_nav_area .plus_zpdb_btn a:hover,
.cp_nav_area .plus_zpbs_btn a:hover {
    background-color: #165f5c;
}

.cp_nav_area .changed {
    display: none;
}

.full:not(.fullscreen) {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    min-width: calc(100% - 20px);
}

.transparent {
    color: transparent;
    visibility: hidden;
}

.cp_nav_area a:hover .transparent {
    color: #0c9 !important;
    visibility: visible;
}

.zp_editor,
.preview_area {
    border: none !important;
}

pre code {
    font-family: "Roboto Mono", "Noto Sans JP", monospace !important;
    /* white-space: nowrap !important; */
    word-break: unset !important;
    background-image: url("../img/editor_bg.png") !important;
    background-repeat: repeat !important;
    overflow: visible;
}

/* ---------------------------------------
	ドラッグ＆ドロップ処理
----------------------------------------*/
#drop_zone {
    width: 100%;
    height: 100%;
    padding: 20px;
    border: 2px dashed rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.25s cubic-bezier(0.21, 0.51, 0.51, 1);
}

#drop_zone.dragover {
    border: 2px dashed rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.2);
}

#drop_zone input[type="file"] {
    display: none;
}

#drop_zone label {
    position: relative;
    display: inline-block;
    background-color: #165f5c;
    border: 0 !important;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    color: #fff;
    text-shadow: 0 -1px 1px rgb(0 0 0 / 25%);
    padding: 5px 15px !important;
    margin-bottom: 20px;
    font-size: 14px;
    vertical-align: middle;
    cursor: pointer;
}

#drop_zone label:hover {
    opacity: 0.8;
}

/*  ***********************************
		tab
***********************************  */
.tab-menu {
    display: flex;
    padding: 0 15px 15px 15px;
}

@media (max-width: 767px) {
    .tab-menu {
        padding: 0 10px 10px 0;
    }
}

.tab-menu_item {
    box-sizing: border-box;
}

.tab-menu_item:hover {
    cursor: pointer;
}

.tab-trigger {
    margin-right: 20px;
}

#zpdb_box .tab-trigger {
    margin-right: 5px;
}

.insert_inner .tab-trigger {
    margin-right: unset;
}

.tab-trigger.is-active {
    color: #0c9 !important;
}

.tab-content_item:not(.is-active) {
    display: none;
}

.tab-content_item.is-active {
    display: block;
    animation: fade 0.5s ease;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ***********************************
		modal
	*********************************** */
.window_box {
    display: none;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    overflow-x: hidden;
    background: unset !important;
}

.window_box .inner {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
}

.window_box .inner .box {
    position: relative;
    padding: 20px;
    background-color: #fff !important;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.ajax_area {
    width: 90%;
    font-size: 24px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
    color: #dc143c;
    text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff,
        0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff,
        0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff,
        0 0 3px #fff, 0 0 3px #fff;
    z-index: 9999;
}

.modal-title {
    color: #165f5c;
}

.nighttime .modal-title {
    color: #efefef;
}

#upload_form .modal-body {
    text-align: center;
    padding: 20px;
}

.modal span {
    word-break: break-all;
    display: block;
    padding-left: 10px;
    line-height: 24px !important;
    margin-right: 1px;
    width: 50%;
    float: left;
    text-align: left;
}

.modal img {
    max-width: 49%;
    float: right;
    margin-bottom: 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.modal #test_image {
    margin: 0 auto 20px;
    float: none;
}

.modal-body .ajax_area {
    width: unset;
    font-size: inherit;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    text-align: left;
    display: none;
    color: #dc143c;
    text-shadow: none;
    vertical-align: super;
}

.modal-body button {
    display: inline-block;
}

.modal-body button.none,
.modal-body a.none {
    display: none !important;
}

.ajax_area_inset {
    position: relative;
}

.modal-body .readonly {
    width: 45%;
    position: relative;
    left: 10px;
    margin-bottom: 10px;
    padding: 0px 5px;
    font-size: 12px;
}

.popup_tips {
    margin-bottom: 10px !important;
    color: #f93;
    text-align: right;
}

.btn_area {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
    .btn_area {
        text-align: center;
        padding-top: 0 !important;
    }

    .image_list img {
        width: 100%;
    }

    .modal img {
        max-width: 100%;
        float: none;
        margin: 0 auto 20px;
    }

    .modal span {
        float: none;
        width: 100%;
        text-align: left;
    }

    .modal-body {
        text-align: center;
    }

    .modal-body .readonly {
        width: 98%;
        text-align: left;
        left: 0;
    }
}

.image_del_form {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px dotted rgba(0, 0, 0, 0.1);
}

.image_del_form .submit_ok {
    background-color: #cc0000;
}

.modal-content i.fa-duotone {
    margin-right: 5px;
}

/* ***********************************
		indicator
*********************************** */
.indicator_wrap {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    height: 32px;
    line-height: 32px;
    width: 200px;
    overflow: hidden;
}

.indicator {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    text-align: inherit;
    height: 32px;
}

.indicator_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: inline-block;
    background: none;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    color: #fff;
}

/* ***********************************
		mask
	*********************************** */

#mask {
    background: rgba(0, 0, 0, 0.8) url(../img/x.png) right 20px top 20px no-repeat;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9998;
    display: none;
    top: 0;
}

#mask:hover {
    cursor: pointer;
}

#mask:before,
#mask:after {
    display: none !important;
}

/* ***********************************
		drop
	*********************************** */
#drop_wrap {
    position: fixed;
    opacity: 0;
    bottom: -100%;
    left: 50%;
    max-width: 95%;
    transform: translate(-50%, 0);
    border-radius: 5px 5px 0 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    z-index: 9999;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
    #drop_wrap {
        width: 95%;
        text-align: center;
    }

    #drop {
        text-align: inherit;
    }
}

#drop_wrap:before,
#drop_wrap:after {
    content: "";
    display: block;
    height: 3px;
    width: 20px;
    border-radius: 3px;
    background-color: #165f5c;
    position: absolute;
    top: 15px;
    right: 7px;
}

#drop_wrap:before {
    transform: rotate(45deg);
}

#drop_wrap:after {
    transform: rotate(-45deg);
}

#drop_wrap.slide_in {
    bottom: 0;
    opacity: 1;
    transition: all 0.3s ease;
}

#drop_wrap:hover {
    cursor: pointer;
}

#drop_wrap.drop_red {
    background-color: #cc0000;
}

#drop {
    padding: 20px 35px 20px 35px;
}

.balloon-right {
    position: relative;
    display: inline-block;
    color: #555;
    background: #fff;
    border-radius: 5px;
    vertical-align: inherit;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
}

.balloon-right:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    margin-top: -6px;
    border: 6px solid transparent;
    border-left: 6px solid #fff;
    z-index: 2;
}

/* バッジ */
a[data-badge] {
    position: relative;
}

a[data-badge]:before {
    position: absolute;
    display: inline-block;
    color: #fff !important;
    font-weight: bold;
    background-color: #f30;
    border-radius: 50%;
    font-size: 10px;
    line-height: 16px;
    width: 20px;
    height: 20px;
    text-align: center;
    border: 2px solid #fff;
    box-shadow: 0px 0px 3px #999;
    top: 3px;
    right: 0;
    transform: translate(50%, -50%);
    content: attr(data-badge) "";
}

a[data-badge]:hover:before {
    color: #fff !important;
}

.ads {
    width: 200px !important;
    height: 200px !important;
    position: fixed !important;
    bottom: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.5);
    color: #165f5c;
    line-height: 200px;
    text-align: center;
}

i {
    text-shadow: none !important;
}

/* input 成形 */
input[type="checkbox"] {
    vertical-align: text-bottom;
    position: relative;
    top: -3px;
}

.checkbox {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}

.checkbox::before {
    background: transparent;
    border: 1px solid #165f5c;
    content: "";
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
    border-radius: 5px;
}

.checkbox::after {
    border-right: 3px solid #165f5c;
    border-bottom: 3px solid #165f5c;
    content: "";
    display: block;
    height: 9px;
    left: 11px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 54%;
    transform: rotate(45deg);
    width: 5px;
}

input[type="checkbox"]:checked+.checkbox::after {
    opacity: 1;
}

.checkbox.nc::before {
    border: 1px solid #ccc;
}

.checkbox.nc::after {
    border-right: 3px solid #ccc;
    border-bottom: 3px solid #ccc;
}

.nc {
    color: #ccc;
}

.item.multiple {
    position: relative;
    z-index: 1;
    opacity: 1;
}

.im_close,
.im_re_enable {
    position: absolute;
    z-index: 2;
    color: #ccc;
}

.im_re_enable {
    font-size: 12px !important;
}

.im_re_enable:hover {
    color: #0c9;
    cursor: pointer;
}

.im_close:hover {
    color: #d60002;
    cursor: pointer;
}

.pre_none {
    opacity: 0.5 !important;
}

.pre_none:hover {
    cursor: default !important;
}

.radio {
    display: inline-block !important;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0 0 0 30px;
    position: relative;
    left: -5px;
    width: auto;
    margin: 0 5px;
}

.radio::before {
    background: transparent;
    border: 1px solid #165f5c;
    border-radius: 50%;
    content: "";
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}

.radio::after {
    background: #165f5c;
    border-radius: 50%;
    content: "";
    display: block;
    height: 10px;
    left: 8px;
    margin-top: -5px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}

input[type="radio"]:checked+.radio::after {
    opacity: 1;
}

.zp_checkbox,
.zp_radio,
.zp_cb_style {
    display: none;
}

label.radio:hover {
    color: #165f5c;
}

.sts_color_0 {
    color: red;
}

.sts_color_1 {
    color: #f93;
}

.sts_color_2 {
    color: #165f5c;
}

.sts_color_3 {
    color: #0c9;
}

.sts_color_4 {
    color: #63f;
}

.sts_color_5 {
    color: #32cd32;
}

.sts_color_6 {
    color: #9ba100;
}

.sts_color_7 {
    color: #aa00cc;
}

.sts_color_8 {
    color: #ff1493;
}

.sts_color_9 {
    color: #d60002;
}

/* bg */

.sts_bg_color_0 {
    background-color: red;
}

.sts_bg_color_1 {
    background-color: #f93;
}

.sts_bg_color_2 {
    background-color: #165f5c;
}

.sts_bg_color_3 {
    background-color: #0c9;
}

.sts_bg_color_4 {
    background-color: #63f;
}

.sts_bg_color_5 {
    background-color: #32cd32;
}

.sts_bg_color_6 {
    background-color: #9ba100;
}

.sts_bg_color_7 {
    background-color: #aa00cc;
}

.sts_bg_color_8 {
    background-color: #ff1493;
}

.sts_bg_color_9 {
    background-color: #d60002;
}

.sts_bg_color_docs {
    background-color: #165f5c;
}

.sts_color {
    background-color: #fff;
    font-size: 14px;
    padding: 0 10px;
    margin: 0 5px;
    vertical-align: inherit;
    line-height: 30px;
    height: 30px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
}

.display_none {
    display: none;
}

textarea {
    min-height: 168px;
}

.preview_area {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    padding: 0 0 0 35px;
    transition: none !important;
    font-family: "Roboto Mono", "Noto Sans JP", monospace !important;
    font-size: 16px;
    line-height: 24px;
    tab-size: 2;
    -moz-tab-size: 2;
    letter-spacing: 1px;
    margin: 0 !important;
    z-index: 1;
    color: #222 !important;
    white-space: nowrap;
    background: #e8e8e8 url("../img/editor_bg.png") 0 0 repeat;
}

.zp_editor_wrap {
    min-height: 259px;
}

pre code {
    font-family: "Roboto Mono", "Noto Sans JP", monospace !important;
    /* white-space: nowrap !important; */
    word-break: unset !important;
    background-image: url("../img/editor_bg.png") !important;
    background-repeat: repeat !important;
    overflow: visible;
}

.demo_area pre {
    padding: 0 !important;
}

.demo_area {
    float: right;
    width: 77%;
}

.demo_area code {
    display: block;
    padding: 24px !important;
    font-size: 16px;
    line-height: 24px;
    tab-size: 2;
    -moz-tab-size: 2;
    letter-spacing: 1px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border: 1px solid #165f5c !important;
}

.demo_area span {
    display: inline !important;
    vertical-align: baseline;
}

.revision_area {
    /* display: none; */
    position: absolute;
    bottom: -220px;
    width: 100%;
    border: 1px red;
    overflow-y: auto !important;
    height: 200px;
}

.revision_area .revision {
    padding: 5px 10px;
    background-color: #bfe0ff;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #f30;
    min-height: 24px;
}

.caret_pos_check {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
}

.width_check {
    display: block !important;
    width: 100%;
    height: 1px;
}

.ctr,
.shift,
.line_no,
.ck_html {
    display: none !important;
    visibility: visible;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.revision_area .revision.active {
    padding: 5px 10px;
    background-color: #ffb6c1;
}

.no_space {
    position: absolute;
    padding: 0 2px !important;
    text-align: right;
    margin: 0 !important;
    background: #fff url("../img/no_bg.png") 0 0 repeat-y;
    z-index: 3;
    transition: none !important;
    font-family: "Roboto Mono", monospace !important;
    overflow: visible;
    border-right: 1px solid rgb(0 0 0 / 7%);
}

.no_space b {
    display: block;
    padding: 0 5px;
    margin: 2px 0 0 0;
    line-height: 22px;
    height: 22px;
    text-align: right;
    font-weight: unset;
    letter-spacing: unset;
}

.no_space b:hover {
    cursor: pointer;
    color: #165f5c;
}

.no_space b::selection {
    color: #165f5c;
    background: transparent !important;
}

.cp_inner input[type="text"]:focus,
.cp_inner textarea:not(.zp_editor):focus {
    background-color: rgba(0, 0, 0, 0.05) !important;
    cursor: text;
    box-shadow: 0 0 5px #165f5c;
    -moz-box-shadow: 0 0 5px #165f5c;
    -webkit-box-shadow: 0 0 5px #165f5c;
    border: 1px solid #165f5c !important;
}

.preview_area .zp_space,
.zpl_sample_code .zp_space {
    display: inline-block !important;
    width: 19.2px;
    overflow: hidden;
    background: transparent url("../img/tab_bg.png") 50% 50% no-repeat;
}

.zpl_sample_code .zp_space {
    vertical-align: text-bottom;
}

.preview_area b,
.preview_area span,
.preview_area div {
    display: inline !important;
    vertical-align: bottom !important;
}

.color_zpl {
    color: #0c9;
}

.color_rc {
    color: #aa00cc;
}

.color_rc_tag {
    color: #63f;
}

.color_attr,
.color_attr .hljs-number {
    position: relative;
}

.color_sample {
    position: absolute;
    left: -10px;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 1px solid #888;
}

.color_color {
    position: relative;
}

.color_error {
    color: #666;
    text-decoration: underline dotted red;
    background-color: #fddce1;
}

.color_important {
    color: #d60002;
    font-style: italic;
}

.ra_box {
    display: inline-block;
    position: fixed;
    right: 51px;
    top: 247px;
    z-index: 3;
    height: 24px;
    line-height: 24px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    background: transparent url(../img/footer.png) 0 0;
    padding-right: 10px;
}

.ra_box.def {
    border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -khtml-border-radius: 5px 5px 0 0;
}

.ra_box.fixed {
    position: fixed;
    width: 35px;
    padding: 5px 0 0 0;
    height: unset;
    right: unset;
    left: 0;
    top: 64px;
    background: unset;
    border-top: 1px solid #333;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    text-align: center;
}

.ra_box i {
    margin-right: 0;
}

.ra_box label,
.ra_btns {
    margin-left: 10px;
    opacity: 0.8;
    color: #fff;
}

.ra_box.fixed label,
.ra_box.fixed .ra_btns {
    margin: 5px;
    height: 16px;
}

.ra_box label:hover,
.ra_btns:hover {
    cursor: pointer;
}

.ra_box label:hover,
.ra_btns:hover {
    color: #165f5c;
    opacity: 1;
    transition: 0s;
}

.ra_box input:checked+label {
    color: #ffd700;
    opacity: 1;
    transition: 0s;
}

.ra_box input:checked+label:hover {
    color: #999;
    opacity: 0.5;
    transition: 0s;
}

#sbc {
    height: 200vh;
}

/* メッセージエリア */
#mes_area_wrap {
    position: fixed;
    top: 64px;
    width: 100%;
    z-index: 9;
}

.mes_area {
    height: 0;
    line-height: 32px;
    background-color: rgb(50 180 120 / 95%);
    text-align: center;
    color: #fff;
    opacity: 0;
    z-index: 0;
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
}

.mes_area:hover,
.mes_area *:hover {
    cursor: pointer;
}

.mes {
    position: relative;
    top: 5px;
    opacity: 0;
    font-size: 12px;
    line-height: 32px;
    vertical-align: bottom;
    margin-left: 5px;
    color: transparent;
}

.mes_x {
    margin-left: 5px;
}

.mes_area.e_mes {
    background-color: rgb(255, 0, 0, 95%);
}

.mes_area.e_mes_cf {
    background-color: rgba(255, 162, 23, 0.95);
}

.mes_area.e_mes_cf b {
    font-size: 14px;
    margin: 0 5px;
}

.mes_area.show_mes {
    top: 64px;
    opacity: 1;
    z-index: 1;
    height: 32px;
    border-top: 1px solid rgb(255 255 255 / 20%);
    transition: 0.3s;
}

.mes_area.show_mes .mes {
    top: 0;
    opacity: 1 !important;
    height: 32px;
    color: inherit;
    transition: all 0.3s 0.1s ease;
}

.shake {
    animation: shake 0.1s both;
}

@keyframes shake {
    0% {
        transform: translate(0px, 0px) rotateZ(0deg);
    }

    25% {
        transform: translate(2px, 2px) rotateZ(1deg);
    }

    50% {
        transform: translate(0px, 2px) rotateZ(0deg);
    }

    75% {
        transform: translate(2px, 0px) rotateZ(-1deg);
    }

    100% {
        transform: translate(0px, 0px) rotateZ(0deg);
    }
}

.ib_box label.checkbox {
    position: relative;
    top: 3px;
}

/* ドキュメント */
.add_cf {
    position: absolute;
    right: 20px;
    font-size: 1rem;
}

.add_cf:focus {
    font-size: 1rem;
}

.cf_basic_settings {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: rgba(4, 169, 244, 0.1);
}

#ins_line {
    margin-top: 20px;
    display: block;
    width: 100%;
    height: 6px;
    border: 0;
    background-color: #165f5c;
    border-radius: 3px;
}

.ib_box:hover {
    cursor: grab;
}

.ui-sortable-helper:hover {
    background-color: rgba(4, 169, 244, 0.3);
    border-radius: 10px;
    cursor: move;
}

.ng_mt {
    border: 1px solid #d60002 !important;
    background-color: rgba(255, 0, 0, 0.1) !important;
}

.ib_box {
    position: relative;
    margin-top: 20px;
    padding: 20px 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ib_box p span.popup_tips {
    font-weight: 500 !important;
    color: #0c9;
    margin: 0 0 0 16px !important;
}

.ib_box p span.red {
    color: #d60002;
}

.ib_box i.close {
    position: absolute;
    top: 25px;
    right: 10px;
    font-size: 22px;
}

.ib_box input {
    width: unset !important;
}

.ib_box i.close:hover {
    color: #d60002;
    cursor: pointer;
}

.multiple {
    margin-bottom: 10px;
}

#plus_cf_item,
.plus_cf_option {
    font-size: 28px;
    position: relative;
}

#plus_cf_item:hover,
.plus_cf_option:hover {
    cursor: pointer;
    color: #165f5c;
}

#plus_cf_item {
    top: 7px;
}

.plus_cf_option {
    top: 3px;
}

#add_cf_btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.up_btn_box .btn {
    font-size: 14px;
    padding: 5px 10px;
}

.plus_btn {
    font-size: 28px;
    text-align: center;
}

.plus_btn i {
    color: inherit;
    transition: all 0.3s;
}

.plus_btn i:hover {
    cursor: pointer;
    color: #165f5c;
    transition: all 0.3s;
}

.btn i,
.red i {
    margin-right: 5px;
}

/* placeholder */
::placeholder,
option:disabled {
    color: #ccc;
}

/* ステータスチェック用 */
#dsc {
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: #165f5c;
    color: #fff;
    padding: 0 10px;
}

pre.test {
    font-size: 10px;
    line-height: 10px;
    overflow-y: hidden;
    border: 1px solid #165f5c;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

#cac {
    font-size: 12px;
    padding: 0 10px;
    border: 1px solid #165f5c;
}

#cac.hidecac {
    height: 0px;
    border: none;
}

#cac input {
    padding: 5px;
    font-size: 10px;
    min-height: 15px;
    display: block;
    margin: 0 0 5px 0;
    width: 100%;
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.5);
}

#cac input:focus {
    background-color: #fff;
    border: 1px solid #dc143c !important;
}

#cac .cat_box:hover,
#cac .doc_box:hover {
    cursor: move;

}

pre.float {
    width: 49%;
    margin-right: 1%;
    padding: 10px 1%;
    float: left;
}

.insert_wrap {
    position: fixed;
    top: 95px;
    width: 100%;
    min-height: calc(100vh - 95px);
    height: calc(100vh - 95px);
    left: unset;
    bottom: unset;
    padding: 10px 0 20px 0;
    z-index: 9999;
    display: none;
}

#ins_block_area {
    background-color: #0c9;
}

#ins_img_area {
    background-color: #04a9f4;
}

.insert_wrap p {
    padding-left: 20px;
    color: #fff;
}

.insert_wrap p.title {
    margin-bottom: 0 !important;
    padding-top: 10px;
    font-size: 30px;
    font-weight: 900;
}

.insert_inner {
    position: relative;
    height: calc(100% - 145px);
    padding: 20px;
    margin: 30px;
    background-color: #fff;
    overflow-y: auto;
    outline: 10px solid #fff !important;
    outline-offset: -1px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.insert_inner {
    color: #666;
}

.insert_wrap img {
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.insert_wrap img:hover {
    opacity: 0.8;
}

.rbb {
    border: 1px solid #d60002;
    padding: 0 20px 20px 20px;
    margin-top: 50px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    background-color: #fff;
}

.rbb p {
    position: relative;
    top: -17px;
    display: inline-block;
    padding: 0 10px;
    background-color: #fff;
    color: #d60002;
    font-weight: 900;
}

.rbb input[type="text"] {
    padding: 5px 10px;
    margin-right: 20px;
}

.rbb button {
    margin-left: 0 !important;
}

.gbb {
    border: 1px solid #165f5c;
    padding: 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    position: relative;
    background-color: #fff;
}

.gbb p {
    position: absolute;
    top: -17px;
    left: 10px;
    padding: 0 10px;
    background-color: #fff;
    color: #165f5c;
    font-weight: 900;
}

.gbb input[type="text"],
.gbb textarea {
    padding: 5px 10px;
}

.gbb button {
    margin-left: 0 !important;
}

.zp_editor_wrap .hljs {
    background: unset !important;
}

.cl {
    position: absolute;
    right: 10px;
    top: -5px;
    padding: 5px;
    font-size: 20px;
}

.cl i {
    font-size: 20px !important;
}

.cl i:hover {
    color: #dc143c;
}

.up_box li span,
.text span {
    display: inline !important;
}

.fa-circle.pink {
    position: absolute;
    left: 38px;
    top: 10px;
    font-size: 4px !important;
}

.no {
    font-size: 20px !important;
    margin-top: 50px;
    margin-bottom: 10px;
}

.ar {
    margin-bottom: 10px;
}

.no i.fa-solid {
    margin: 0 !important;
    color: #165f5c;
}

.fa-period {
    margin-right: 5px !important;
    color: #165f5c;
}

.fa-caret-right {
    margin-right: 5px !important;
    color: #f93;
}

.up_box ul {
    padding: 20px 20px 20px 40px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
}

.up_box ul ul {
    background-color: #fff;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

ul.mb-30 ul,
ul.bg {
    background-color: #efefef !important;
}

ul.bg {
    display: inline-block;
    padding-right: 40px;
}

ul.bg .fa-angle-right {
    margin: 0 10px;
}

.up_box ul ul:not(.sortable) {
    margin-top: 10px;
    padding: 10px 20px 10px 40px;
}

.up_box ul:not(.sortable) li {
    list-style-type: circle;
    list-style-position: outside;
}

.flex_box_wrap {
    display: flex;
}

.flex_box_wrap .flex_box {
    position: relative;
}

.flex_box_wrap .flex_box:nth-child(1) {
    width: 24%;
    margin-right: 1%;
}

.flex_box_wrap .flex_box:nth-child(2) {
    width: 75%;
}

.flex_box i {
    margin-right: 2px !important;
}

li.cat_box {
    padding: 1%;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    position: relative;
    border: 1px solid transparent;
}

li.cat_box:hover {
    background-color: rgba(220, 20, 60, 0.1);
    border: 1px solid #dc143c;
}

li.cat_box i.fa-angles-up,
li.cat_box i.fa-angles-down {
    position: absolute;
    right: 10px;
    top: 0px;
    color: #165f5c;
    font-size: 16px;
    padding: 10px 5px 7px 96%;
}

li.cat_box i.fa-angles-up:hover,
li.cat_box i.fa-angles-down:hover {
    cursor: pointer;
    color: #dc143c;
}

ul.doc_box {
    display: none;
    margin: 10px 0 0 0;
    padding: 0 10px;
    border: 1px solid #165f5c;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

ul.doc_box li {
    padding: 10px;
    background-color: #eee;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border: 1px solid transparent;
}

ul.doc_box li:hover {
    background-color: rgba(220, 20, 60, 0.1);
    border: 1px solid #dc143c;
}

.ui-sortable-handle {
    background-color: rgb(240, 242, 245, 0.97);
    margin: 10px 0;
}

ul.doc_box li.ui-sortable-handle {
    padding-bottom: 5px !important;
}

.doc_box .ui-sortable-handle {
    background-color: #e3e3e3;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.doc_box .ui-sortable-handle {
    margin: 10px 0;
}

.up_box span.red {
    margin: 0 5px;
}

::marker {
    margin: unset;
}

.text {
    margin-bottom: 30px;
}

.cat_select {
    padding-right: 30px;
}

.sda {
    position: relative;
    top: -3px;
    left: -20px;
    color: #dc143c;
}

pre:not(.preview_area) code {
    font-family: "Roboto Mono",
        "Noto Sans JP",
        monospace !important;
    /* white-space: nowrap !important; */
    word-break: unset !important;
    background-image: url(../img/editor_bg.png) !important;
    background-repeat: repeat !important;
    overflow: visible;
    display: block;
    padding: 24px !important;
    font-size: 16px;
    line-height: 24px;
    tab-size: 2;
    -moz-tab-size: 2;
    letter-spacing: 1px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border: 1px solid #165f5c !important;
}