@charset "UTF-8";
@import url("reset.css");

body {
    height: 100%;
    /* overflow: hidden;*/

}

p {
    color: #FFF;
    font-weight: 800;
    font-size: 62.5%;
}

input {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -moz-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);


}


div::-webkit-scrollbar {

    width: 10px;
    height: 8px;
}

div::-webkit-scrollbar-track {

    background: #333;
    border: none;
    border-radius: 10px;
    box-shadow: inset 0 0 2px #DDD;
}

div::-webkit-scrollbar-thumb {
    background: #f7c662;
    border-radius: 10px;
    box-shadow: none;
}

#iframe {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
}


ul::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}

ul::-webkit-scrollbar-track {
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: inset 0 0 2px #DDD;
}

ul::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
    box-shadow: none;
}

#under_area::-webkit-scrollbar {}

#under_area::-webkit-scrollbar-track,
#under_area2::-webkit-scrollbar-track,
#group_area::-webkit-scrollbar-track {
    background: #333;
    border: none;
    border-radius: 10px;
    box-shadow: inset 0 0 2px #DDD;
}

#under_area::-webkit-scrollbar-thumb,
#under_area2::-webkit-scrollbar-thumb,
#group_area::-webkit-scrollbar-thumb {

    background: #f7c662;
    border-radius: 10px;
    box-shadow: none;
}


#contextmenu,
#contextmenu2 {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 200px;
    height: 82px;
    border: 1px solid #DDD;
    background-color: #fff;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 2px 2px 4px;
    z-index: 30;
}

#contextmenu2 {
    width: 240px;
    height: 47px;
}

#contextmenu li {
    cursor: pointer;
    list-style: none;

}

#contextmenu2 li {
    cursor: pointer;
    list-style: none;

}

#context_edit:hover,
#context_del:hover,
#context_del_timeline:hover {

    background: #f5d492;
}

#context_edit {
    border-bottom: 2px solid #DDD;
    height: 35px;
    background: #fff;
}

#context_del,
#context_del_timeline {
    height: 35px;
    background: #fff;
}

#context_edit img,
#context_del img {
    margin-left: 40px;
}


#context_del_timeline img {
    margin-left: 20px;
}




#contextmenu_header {
    display: block;
    height: 10px;
    background-color: #19beb0;
    border-radius: 5px 5px 0px 0px;

}

#video {
    display: none;
}

#deleteIcon {
    display: none;
    position: absolute;
    z-index: 20;
    width: 100%;
    height: 100%;
    background-color: #000;

}

.d_icon {
    z-index: 30;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000FFF;
    opacity: 0;
}

.d_icon ui {

    width: 100%;
    height: 100%;
}

#deleteIcon img {


    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}



#topBar {
    width: 100%;
    background-color: #23C0B3;
    height: 40px;

}

#topE {
    display: flex;
    width: 100%;
    max-width: 1056px;
    margin-right: auto;
    margin-left: auto;


}

#topE #logo {
    display: block;
    margin-top: 5px;
    width: 100%;
    margin-left: 20px;

}





#topE #setting {
    margin-top: 3px;

}

#dashboard img {
    margin-top: 2px;
    width: 30px;
    height: 30px;
}

#topE #info {
    display: block;
    margin-top: 15px;
    white-space: nowrap;
    margin-right: 10px;
    color: #FFF;
}

#topE #info p {
    white-space: nowrap;
}

#topBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background-color: #FFF;
    border-bottom: solid 2px #333;

}

#topBtn:hover {
    background-color: #bec1cb;
}

#topBtn img {
    width: 156px;
    height: 54px;
}




#under_area li,
#under_area2 li,
#top_area li {
    position: relative;
}

#under_area li::before,
#under_area2 li::before,
#under_area li::after,
#under_area2 li::after,
#top_area li::before,
#top_area li::after {
    position: absolute;
    transition: all 0.3s ease 0;
    opacity: 0;
    z-index: 10;
    white-space: nowrap;
}

#under_area li::before,
#under_area2 li::before,
#top_area li::before {
    content: "";
    border: 10px solid transparent;
    border-bottom-color: #000;
    top: -50px;
    left: 10px;
}

#under_area li::after,
#under_area2 li::after,
#top_area li::after {
    content: attr(data-tooltip);
    display: block;
    padding: 15px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    top: 10px;
    left: 10px;
    font-size: 0.6rem;
}

#under_area li:hover::before,
#under_area2 li:hover::before,
#top_area li:hover::before {
    top: 0px;
    opacity: 1;
}

#under_area li:hover::after,
#under_area2 li:hover::after,
#top_area li:hover::after {
    top: 0px;
    opacity: 1;
}



#edit {
    display: none;
}

#pre_time {
    display: block;
}



#cover {
    display: block;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.85);
}

#cover_loder,
#cover_play {
    display: none;
    position: absolute;
    z-index: 30;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}


#cover_play {

    justify-content: center;
    align-content: center;

}


#centerForm_nomal {
    display: block;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    height: 800px;
    max-width: 500px;


}




#centerForm {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#previewBOX {
    display: none;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: #000;
}

#pb {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 90%;


}

#p_close {
    display: none;
    position: fixed;
    z-index: 30;
    right: 0;
    top: 0;
    padding: 5%;
    padding-top: 20px;

}

#preview_img,
#preview_frame,
#preview_video {
    display: none;
}

#preview_img {
    width: 85%;
    height: auto;
    padding: 20px;

    /* 高さを幅の75%に固定 */
}

#preview_video {
    width: 85%;
    height: auto;
    padding: 20px;

    /* 高さを幅の75%に固定 */
}

#my_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


#my_form p {
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

#dBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 30px;
    width: 450px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid #fff;
}

#dBox p {
    margin-top: 20px;
    font-size: 16px;
}

#drag_area {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#app_menu {
    display: flex;
    justify-content: center;
}

#app_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px;
}


#app_item p {
    margin-top: 5px;
    font-size: 14px;
}

#cnl {

    display: block;
    margin: 0 auto;
    margin-top: 40px;
}

#upload_btn {
    margin-top: 10px;
    margin-bottom: 10px;
}

#timeline_form {
    width: 450px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: auto;
    margin-left: auto;
}

.timeline_name {

    width: 300px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#timeline_form p {
    text-align: left;


}

#timeline_form p::before {
    content: '';
    display: inline-block;
    background: #009a9a;
    height: 15px;
    width: 4px;
    margin-right: 4px;
}

.delBtn {
    display: block;
    margin-left: 10px;
    margin-top: 10px;
    float: right;

}

#urlInput {
    width: 90%;
    display: block;
    margin: auto;
    margin-top: 20px;
    margin-bottom: -10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 120%
}

hr {
    margin: auto;
    border-top: 1px dashed #8c8b8b;
    width: 90%;
    margin-top: 20px;
    margin-bottom: 40px;
}

#fileBtn {
    display: flex;
    justify-content: center;

    margin: 0 auto;
    margin-top: 20px;
}


#fileBtn_group {
    display: none;
    justify-content: center;

    margin: 0 auto;
    margin-top: 10px;
}

#fileBtn img {
    margin-right: 10px;
    margin-left: 10px;
}

#footer {
    width: 100%;
    height: 60px;
    background-color: #dfe1e7;
}

#header {

    width: 100%;
    overflow: auto;
    background-color: #6d6f7b
}

#playTime {
    display: flex;
    align-items: center;
    margin: 0 auto;
    margin-top: 20px;
    width: 150px;
}



#item_area {
    height: 100px;
    max-width: 1080px;
    margin: 0 auto;
}


#header ul {

    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;


}


#header li {

    cursor: pointer;
    display: block;
}



#header li .item {
    width: 100px;
    height: 100px;
    margin: 10px;
    background-color: #696969;
    position: relative;
    border-radius: 5px;
    box-shadow: 2px 2px 4px #333;

}

#header li .item #bg {
    width: 100px;
    height: 100px;
    padding: 0;
    margin: 0;
    border-radius: 5px;
}

#header li .item #icon {

    position: absolute;
    top: 0;
    left: 0;

}


#header li #btn {

    width: 100px;

    background-image: url("../images/add_btn.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #fff;
    border: none;
}

#header li #btn a {

    display: inline-block;
    width: 100%;


}

#header li #btn a:hover {

    text-decoration: none;
    border: #999 solid 5px;

}



#timeline,
#timeline_group {
    border-top: solid 2px #333;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #FFF;
    white-space: nowrap;

}

#timeline_group {
    background-color: #000;
    display: none;

}



#tab_set {
    margin-top: 10px;
    display: flex;
}

.tab {
    margin-right: 3px;
    width: 128px;
    height: 31px;

    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    /* 必要であればリンク要素の重なりのベース順序指定 */
}

.tab a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 2;
    /* 必要であればリンク要素の重なりのベース順序指定 */

}

.tab p {
    color: #333;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 15px;
}

#tab p {
    color: #FFF;
}

#tab {
    background-image: url("../images/tab.png");
}

#tab_off {
    background-image: url("../images/tab_off.png");
}


#t_tag,
#t_tag_g {
    display: block;
    margin-top: 15px;
    margin-left: 0px;
}

#t_tag p {
    color: #000;
    font-size: 0.8rem;
}

#t_tag_g p {
    color: #fff;
    font-size: 0.8rem;
}

#under_area,
#under_area2,
#group_area {
    display: flex;
    align-items: center;
    padding: 5px;

    height: 100px;
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    background-color: #999;

    overflow: auto;
}

#group_area {
    margin-bottom: 15px;
}

#under_area2 {
    margin-top: 0px;
    margin-bottom: 0px;
}




#timeline li,
#timeline_group li {
    display: inline-block;

}




#under_area li div,
#under_area2 li div,
#group_area li div {
    width: 80px;
    height: 80px;

    margin-right: 5px;
    background-color: #696969;
    position: relative;
    top: 0px;


    background-size: 80px auto;
}


#timeline li #bg,
#timeline_group li #bg {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0px;


}


#timeline li #icon,
#timeline_group li #icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
}

#timeline_main {
    display: flex;

    margin-bottom: 10px;
    flex-direction: column;
}

#timeline_setting {
    display: flex;
    align-items: center;
}

#sel {
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 10px;
    width: 250px;
    height: 25px;
}

#timeline_add {
    margin-top: 12px;


}


#selfile {
    display: none;
}

#selfile2 {
    display: none;
}

#canvas,
#canvas2 {
    display: none;
}


#sendBtn {
    background-color: #FFF;
    text-align: center;



}

#sendBtn img {

    margin-bottom: 5px;
}

#pre {
    margin: 0 auto;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

#pre p {
    font-size: 1.0rem;
}



#name_set {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 500px;
    margin-bottom: 30px;
}



.pname {
    margin-right: 5px;
}

.gname {
    margin-right: 5px;
    color: #fff;
}

#name_set #name,
#name_set_group #name {
    width: 400px;
}


#name_set_group {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 500px;
    margin-top: 10px;
}

#preImg,
#preVideo {
    display: block;
    height: 150px;
    margin-right: auto;
    margin-left: auto;

}

#preFrame {
    display: none;
    width: 75%;
    height: 75%;
    margin: 0 auto;
    margin-top: 7.5%;
}

#preTitle {
    margin-top: 20px;
    margin-left: 20px;
}







#addPlayer {
    display: block;
    width: 120px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
}

#timelineTitle {
    display: block;
    margin: 10px;
    width: 90%;
    margin-left: 15px;
}

#timelineTitle #time_title2 {
    display: block;
    margin: 0 0 0 auto;
    float: right;

}

#urlBtn {
    display: block;
    margin-left: 0px;
    margin-top: 20px;
    float: right;
}

#url_set {

    display: flex;
    align-items: center;
    width: 550px;
    height: 40px;
    margin-bottom: 10px;
}

#url_set input {
    float: left;
    display: block;
    width: 420px;
    height: 30px;
    margin-top: 10px;

}

#url_set img {
    margin-top: 5px;
    margin-left: 10px;
}


input#timeNum {
    width: 60px;
}


#sep_select {
    width: 300px;
    display: block;
    margin: 0 auto;
    margin-bottom: 0px;
}



#sep_img,
    {

    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
}

#sep_img2 {


    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
}

#sep_area1,
#sep_area2 {
    display: block;
    width: 100px;
    height: 200px;
    background-color: #DDD;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    background-image: url(../images/dd.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
}

#sep_area3,
#sep_area4 {
    display: block;
    width: 110px;
    height: 180px;
    margin: 0 auto;
    background-color: #DDD;
    margin-bottom: 5px;
    border-radius: 5px;
    background-image: url(../images/dd.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
}

#sep_area4 {
    height: 60px;
}

table {
    margin-top: 50px;
    color: #FFF;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

table tr {
    border-bottom: solid 1px #eee;
    cursor: pointer;
}

table tr:hover {
    background-color: #d4f0fd;
}

table th,
table td {
    text-align: center;
    width: 33.3%;
    padding: 15px 0;
}

table td.icon {
    background-size: 35px;
    background-position: left 5px center;
    background-repeat: no-repeat;
    padding-left: 30px;
}

table td.icon.ng {
    background-image: url(../images/ng.png)
}

table td.icon.whale {
    background-image: url(icon-whale.png)
}

table td.icon.crab {
    background-image: url(icon-crab.png)
}

.checkbox01 {
    width: 450px;
    padding-top: 25px;
    display: block;
    border: 2px solid #999;
    border-radius: 4px;


    display: block;


    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

#preview_btn,
#editor_run {
    display: none;
    margin-top: 10px;
    margin-bottom: 10px;
}



#time_span {}

/* css checkbox01 */
.checkbox01-input {
    display: none;
}

.checkbox01-parts {
    padding-left: 20px;
    position: relative;
    margin-right: 20px;
    color: #fff;
}

.checkbox01-parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #FFF;
    border-radius: 4px;
    color: #fff;
}

.checkbox01-input:checked + .checkbox01-parts {
    color: #009a9a;
}

.checkbox01-input:checked + .checkbox01-parts::after {
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: 5px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 3px solid #009a9a;
    border-right: 3px solid #009a9a;
}

#chk {
    margin-left: 15px;
    margin-bottom: 20px;
}

input#span {

    height: 20px;


}

#spanBox {
    display: inline-flex;
    margin-bottom: 10px;

}

#spanBox input {

    font-size: 100%;
    width: 150px;
    line-height: 16px;

}

#spanBox label {
    margin-left: 15px;
    font-size: 10pt;
    color: #FFF;
    margin-top: 15px;
}

.spanBox {
    width: 80px;
    display: block;
    list-style: none;
    text-align: right;
    font-size: 10pt;
}
