@charset "UTF-8";

/* --------------------
一覧レイアウト
-------------------- */
.comic-ss-box {
    display: flex;
    flex-wrap: wrap;
}

.comic-ss-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% / 2) - 6px);
    margin: 3px;
    padding: 1rem 0.5rem;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.5);
}

.comic-caption {
    flex: 1;
    box-sizing: border-box;
    width: 100%;
}

.comic-ss-item h3 {
    flex: 1;
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
}

.comic-ss-list {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.comic-ss-list a {
    border: none;
}

.comic-ss-list ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style-type: none;
    align-items: center;
    height: 50px;
    overflow-y:hidden;
}

.comic-ss-list li {
    box-sizing: border-box;
    width: calc((100% / 2) - 1px);
}

.comic-ss-list li:first-child {
    height: 50px;
    width: 100%;
}

.comic-ss-list li:nth-child(n+2) {
    display: none;
}

.comic-ss-list img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.comic-ss-list li:not(:nth-of-type(3n)) {
    margin-right: 1px;
}

.comic-caption ol {
    margin-left: 1rem;
    margin-top: 0.5rem;
    text-align: left;
}

/* レスポンシブデザイン用 */
/* スマホ */
@media only screen and (max-width: 767px) {

}
/* ipadなど */
@media only screen and (min-width: 768px) {

}
/* PC */
@media only screen and (min-width: 1001px) {

}

/* --------------------
キャプション
-------------------- */
.acd-caption{
    display: none;
}
.acd-caption-label{
    height: auto;
    max-width: 800px;
    color: #444;
    display: block;
    margin: 0 auto;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    padding-left: 0;
    position: relative;
    background-color: rgba(255, 255, 255, 0);
    font-weight: bold;
    text-align: center;
    border-bottom: 1px dotted rgba(255,255,255,0.5);
}

.acd-caption-label:after{
    background: rgba(255, 255, 255, 0);
    color: #444;
    box-sizing: border-box;
    content: '\2b';
    display: block;
    font-family: "Font Awesome 5 Free";
    padding: 0.55rem 0.8rem;
    position: absolute;
    right: 0;
    top: 0px;
}
.acd-caption-content{
    border: 0 solid #333;
    display: block;
    height: 0;
    opacity: 0;
    margin: 0;
    padding: 0.5rem;
    transition: .5s;
    visibility: hidden;
}

.acd-caption:checked + .acd-caption-label:after{
    content: '\f068';
}
.acd-caption:checked + .acd-caption-label + .acd-caption-content {
    height: auto;
    opacity: 1;
    padding: 0.5rem;
    padding-bottom: 0;
    visibility: visible;
}

.acd-caption-content p{
    display: block;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1rem;
    text-align: left;
}

.acd-caption-content .note {
    display: block;
    margin: 0;
    padding: 0.5rem 1rem;
    padding-top: 0.5rem;
    background: #EEE;
    color: #222;
}