@charset "utf-8";
#liebraryContentWrap{
    position: relative;
    margin-top: 16px;
}

.liebraryContent.hidden {
    visibility: hidden;
}

.liebraryContent.visible {
    visibility: visible;
    transition: 300ms;
}

.liebraryContent{
    margin-top: 8px;
}

.liebraryTitle{
    font-size: 1.25rem;
}

.liebraryText{
    font-variation-settings: "wght" 400;
    font-size: 0.8rem;
    white-space: pre-wrap;
}

.liebraryImage{
    width: 100%;
    height: auto;
    margin-top: 24px;
}

.lTable{
    display: table;
    border-collapse: collapse;
    justify-content: center;
    margin: auto;
}

.lRow{
    display: table-row;
}

.lCell{
    display: table-cell;
    border: solid 2px #000;
    padding: 10px;
    padding: 4.5vw 5vw;
    font-variation-settings: "wght" 500;
}

/* Ajax読み込み中のローダーここから */
#overlay{
    position: absolute;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background-color: #fff; 
}

  .cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
}
  .spinner {
    width: 20px;
    height: 20px;
    border: 2px #000 solid;
    border-bottom: 2px #fff solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% { 
      transform: rotate(360deg); 
    }
}

.is-hide{
    display:none;
}
/* Ajax読み込み中のローダーここまで */

.d-none{
    display: none;
}

@media screen and (min-width: 768px){
    .liebraryImage{
        width: 450px;
        height: auto;
    }

    .lTable{
        display: flex;
        width: auto;
        flex-direction: row-reverse;
    }
    
    .lRow{
        display: flex;
        flex-direction: column;
    }
    
    .lCell{
        display: block;
        padding: 1.5vw 2vw;
        margin: -1px;
    }
}