@charset "UTF-8";

/*
 *Enable Fonts

font-family: 'Kosugi', sans-serif;
font-family: 'Kosugi Maru', sans-serif;
font-family: 'M PLUS 1p', sans-serif;
font-family: 'M PLUS Rounded 1c', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
font-family: 'Sawarabi Gothic', sans-serif;
font-family: 'Sawarabi Mincho', sans-serif;

*/

/*
 * 全体設定
 */
body, pre {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
}


pre {
    white-space: pre-wrap !important;
    word-break: break-all !important;
}


/*
 * 個別設定
 */

/*
 * 汎用クラス
 */
/* drag-and-drop.js用 */
.drag-and-drop {
    position: absolute;
}

.hover-dark:hover {
    background-color: #999;
    cursor: pointer;
}

/* flex系 */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-justify-center {
    display: flex;
    justify-content: center;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

/* modal */
.modal {
    display: none;
    background-color: rgba(50, 50, 50, .8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9998;
}

.modal-body {
    background-color: #fff;
    max-width: 90%;
    min-width: 50%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    margin: auto;
    z-index: 9999;
    border-radius: .75rem;
}

.modal-message .modal-body {
    min-width: 10%;
}

.modal-header, .modal-content, .modal-footer {
    padding: .5rem 1.5rem;
}

.modal-header {
    height: 3rem;
    font-size: 1.25rem;
    font-weight: 300;
    display: flex;
    align-items: center;
}

.modal-content {
    max-height: calc(100% - 7rem);
    overflow: scroll;
}

.modal-message .modal-content {
    max-height: calc(100% - 4rem);
    padding: 1.5rem 2rem .5rem;
}

.modal-footer {
    height: 4rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.modal-footer button {
    margin-right: 1em;
}

.modal-footer button:last-child {
    margin-right: 0 !important;
}

/* フォント(大) */
.font-accent {
    font-size: 1.5em;
    font-weight: 700;
}

.font-accent-thin {
    font-size: 1.5em;
    font-weight: 300;
}

/* フォント(中) */
.font-midsize {
    font-size: 1.25em;
    font-weight: 400;
}

/* フォント(小) */
.font-small {
    font-size: .75em;
    font-weight: 300;
}

.font-small, .font-small .material-icons {
    font-size: 16px !important;
}

.header-img {
    height: 45px;
}

/* input */
.input-group {
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    border-radius: .5rem;
    border: #aaa 1px solid;
}

.input-group label {
    padding: .3rem .75rem;
    height: 100%;
    background-color: #ec407a;
    color: #fff;
    border-radius: .5rem 0 0 .5rem;
    font-size: 1.25rem;
    line-height: 2rem;
}

.input-group .input-area {
    padding: .3rem .5rem;
    border-radius: 0 .5rem .5rem 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.btn-mtv, .btn-mtv-min {
    transition: .1s;
    padding: .5em 1em;
    background-color: #e91e63;
    color: #fff;
    font-weight: 500;
    border-radius: .5em;
    border: #e91e63 1px solid;
    cursor: pointer;
}

.btn-mtv:active, .btn-mtv-min:active {
    transition: .1s;
    background-color: #ec407a;
}

.btn-mtv-min {
    padding: .3em !important;
    font-weight: 900 !important;
}

.btn-mtv-head {
    padding: .25em;
    font-size: 2.25em;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

/* Table */
table {
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    width: 100%;
}

thead th {
    padding: .5em .25em;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
    background-color: #f6f6f6;
    vertical-align: middle;
}

tbody tr {
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

tbody tr:hover {
    background-color: #eee;
}

tbody td {
    padding: .5em .3em;
    vertical-align: middle;
}
