@charset "utf-8";
/**
 * 案件ごとに特殊なスタイルが必要な場合はココに記述する
 */

.manga-info-wrap {
}
.manga-info-wrap .on {
    display: none;
}

.manga-info_row {
    display: table;
}
.manga-info_row .image,
.manga-info_row .info,
.manga-info_row .text {
    display: table-cell;
    vertical-align: middle;
}
.manga-info_row .image {
    width: 100px;
    padding-right: 10px;
    text-align: center;
}
#content .manga-info_row p.ph img {
    width: 100px !important;
}
.manga-info_row .info {
    padding-right: 30px;
}
.manga-info_row .info li {
    margin: 0;
}

/**
 *
 */
#content .archive-list .photo_thumb {
    cursor: default;
    position: relative;
}
#content .archive-list .photo_thumb .ph {
    margin-bottom: 0;
}
#content .archive-list .photo_thumb p.name {
    margin: 10px 0 0;
}
#content .archive-list .photo_thumb ul {
    margin: 0;
}
#content .archive-list .photo_thumb li {
    position: absolute;
}
#content .archive-list .photo_thumb li.priority {
    left: 10px;
    top: 10px;
}
#content .archive-list .photo_thumb li.visible {
    right: 10px;
    top: 10px;
}

#content .archive-list .photo_thumb li small {
    display: block;
    text-align: center;
    font-size: 0.6em;
}

#content .archive-list .photo_thumb input[type="checkbox"] {
    display: none;
}
#content .archive-list .photo_thumb label {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    margin: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #f6f7f8;
    vertical-align: middle;
    cursor: pointer;
}
#content .archive-list .photo_thumb label:hover {
    background-color: #e2edd7;
}
#content .archive-list .photo_thumb label:hover:after {
    border-color: #53b300;
}
#content .archive-list .photo_thumb label:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    margin: auto;
    width: 16px;
    height: 16px;
    border: 2px solid #bbb;
    border-radius: 6px;
    content: "";
}
#content .archive-list .photo_thumb label:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 3px;
    display: block;
    margin: auto;
    width: 5px;
    height: 9px;
    border-right: 3px solid #53b300;
    border-bottom: 3px solid #53b300;
    content: "";
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
#content
    .archive-list
    .photo_thumb
    input[type="checkbox"]:checked
    + label:before {
    opacity: 1;
}

#archive-list .photo_thumb {
    min-height: 270px;
}
#manga_artist-list .photo_thumb {
    min-height: 270px;
}

/**
 * Hash
 */
#parent-post-info {
    margin-bottom: 20px;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
#parent-post-info .picture {
    width: 80px;
    height: 80px;
    margin-right: 20px;
}
#parent-post-info h2 {
    margin-top: 0;
}

/**
 * トグルスイッチ
 */
/* The switch - the box around the slider */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

/* Hide default HTML checkbox */
.toggle-switch__input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.toggle-switch__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border-radius: 24px;
}

.toggle-switch__slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border-radius: 50%;
}

.toggle-switch__input:checked + .toggle-switch__slider {
    background-color: #2196f3;
}

.toggle-switch__input:focus + .toggle-switch__slider {
    box-shadow: 0 0 1px #2196f3;
}

.toggle-switch__input:checked + .toggle-switch__slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}
