body {
    /* background-color: whitesmoke; */
    padding-top: 50px;
    font-size: 1.2em;
    margin-left: 2%;
    margin-right: 2%;
}

p {
    font-size: 1.25em;
}

.title_top p {
    font-size: 1rem;
}

table.videoTable {
    width: 50%;
    padding-left: 10%;
    table-layout: fixed;
    border-collapse: initial;
}

h2 {
    clear: both;
}

td {
    padding-top: 2%;
    padding-bottom: 2%;
}

input.input_url, textarea {
    width: 150%;
}

textarea {
    resize: vertical;
}

.input_kind {
    width: 15%;
    vertical-align: top;
}

.movieBox {
    background-color: whitesmoke;
    border-radius: 10px;
    z-index: 1;
    position: relative;
    height: 150px;
    margin-top: 1em;
    margin-bottom: 1em;
    clear: both;
    border: 1px solid #000000;
}

.thums {
    z-index: 2;
    width: 120px;
    height: 90px;
    position: relative;
    float: left;
    margin: 30px 0 0 0;
}

.thums img, span.duration {
    position: absolute;
}

span.duration {
    z-index: 3;
    color: white;
    background-color: rgba(50, 50, 50, 0.8);
    right: 0;
    bottom: 0;
    padding-left: 0.5ex;
    padding-right: 0.5ex;
}

.chkbox {
    margin: 0;
    z-index: 4;
    float: left;
    width: 2em;
    height: 100%;
    padding: 0.5em;
}

.video_description {
    padding: 0.5em;
    width: 100%;
    font-size: 0.8em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movieLink {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.description {
    padding-left: 0.5em;
    width: 65%;
    height: 100%;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.channelThumb {
    width: 44px;
    height: 44px;
    float: left;
}

.channelTitle {
    width: 80%;
    height: 44px;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.resultButton {
    float: right;
    position: relative;
    top: 40%;
    margin-right: 5%;
}

input.selectVideo {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

textarea.resultURL {
    width: 94%;
    margin-left: 3%;
}

.sortBox {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.sortBox#sortableArea1 {
    border-top: solid 5px #ff8e8e;
}

.sortBox#sortableArea2 {
    border-top: solid 5px #75acff;
}

.sortBox#sortableArea3 {
    border-top: solid 5px #6d6d6d;
}

/* モーダルウィンドウのcss設定 */
/* 一番上に表示させるdiv */
#modal-content {
    /* ボックスの重なりの順序を指定 */
    z-index: 2;
    /* divをブロック表示します。何も表示しないときは、none */
    display: none;
    /* 位置の固定 */
    position: fixed;
    /* 位置 */
    top: 10%;
    left: 25%;
    /* 幅・高さ */
    width: 50%;
    height: auto;
    /* 外側の余白 */
    margin: auto;
    /* 内側の余白 */
    padding: 10px 20px;
    /* 線 */
    border: 2px solid #aaa;
    /* 背景の色 */
    background: #fff;
}

/* 2番目に表示させるdiv半透明の膜 */
#modal-overlay {
    /* ボックスの重なりの順序を指定 */
    z-index: 1;
    /* divをブロック表示します。何も表示しないときは、none */
    display: none;
    /* 位置の固定 */
    position: fixed;
    /* 位置 */
    top: 0;
    left: 0;
    /* 幅・高さ */
    width: 100%;
    height: 100%;
    /* 背景の色（半透明） */
    background-color: rgba(51, 51, 51, 0.6);
    /* 外側の余白 */
    margin-top: 0px;

}