<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*繧ｯ繝√さ繝溘�繝｢繧ｶ繧､繧ｯ陦ｨ遉ｺ*/
.c_mosaic {
    display: flex;
    width: 90%;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 8px;
    border: 1px solid #e7eded;
    background: #fff;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
  }
.c_mosaic .title{
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    color: #2d3636;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
}
.c_mosaic .title span{
    white-space: nowrap;
}
.c_mosaic .tagList{
    display: flex;
    justify-content: space-between;
    align-items: center;
   flex-wrap: nowrap;
   gap: 6px;
}
.c_mosaic .tagList .tag,
.c_mosaic .tagList .tag-group &gt; .tag{
    display: flex;
    height: 36px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    border: 1px solid #0f9ca7;
    background: #fff;
    color: #0f9ca7;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 150%;
}
.c_mosaic .tag-group{
    display: flex;
    align-items: center;
    gap: 6px;
    align-self: stretch;
}
.c_mosaic .BTNList{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}
.c_mosaic .BTNList .BTN1{
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
}
.c_mosaic .BTNList .BTN2{
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
}
.c_mosaic .BTNList .BTN1 &gt; li{
    width: 45%;
    display: block;
}
.c_mosaic .BTNList .BTN2 &gt; li{
    width: 45%;
    display: block;
}
.c_mosaic .BTNList .BTN1 li &gt; a{
    width: 100%;
    display: block;
    pointer-events: auto;
    z-index: 1;
    position: relative;
}
.c_mosaic .BTNList .BTN2 li &gt; a{
    width: 100%;
    display: block;
    pointer-events: auto;
    z-index: 1;
    position: relative;
}
.c_mosaic .comment{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}    
.c_mosaic .comment .subTitle{
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    color: #2d3636;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}
.c_mosaic .comment .subTitle span{
    white-space: nowrap;
}
.c_mosaic .comment .box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}
.c_mosaic .comment .box .contents{
    display: flex;
    width: 100%;
    padding: 16px 8px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    border-radius: 8px;
    background: #fafafa;
}
.c_mosaic .comment .box .caption{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
    color: #596161;
    font-size: 10px;
    font-weight: 400;
    line-height: 150%;
}
.c_mosaic .comment .box .contents .li{
    display: flex;
    width: 100%;
    gap: 2px;
}
.c_mosaic .comment .box .contents .li .txt{
    color: #596161;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    width: 282px;

}
.c_mosaic .comment .box .contents .li .txt::before{
    content: "繝ｻ";
    display: inline-block;
    color: #596161;
}
.c_mosaic .comment .box .contents .li .highLight{
    color: #0f9ca7;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .c_mosaic{
        width: 95%;
        padding: 24px 16px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        top: 50%;
    }
    .c_mosaic .title{
        font-size: 4.27vw;
        flex-direction: column;
    }
    .c_mosaic .title span .break-sp{
        white-space: normal;
    }
    .c_mosaic .tagList{
        justify-content: center;
        align-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    .c_mosaic .tagList .tag,
    .c_mosaic .tagList .tag-group &gt; .tag{
        height: 24px;
        font-size: 3.2vw;
        padding: 0px 8px;
        gap: 8px;
        width: fit-content;
    }
    .c_mosaic .tag-group{
        display: flex;
        gap: 8px;
        flex-basis: 100%;
        justify-content: center;
    }
    .c_mosaic .BTNList{
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 16px;
    }
    .c_mosaic .BTNList .BTN1{
        gap: 16px;
    }
    .c_mosaic .BTNList .BTN1 &gt; li{
        width: -webkit-fill-available;
    }
    .c_mosaic .BTNList .BTN2 &gt; li{
        width: 100%;
    }
    .c_mosaic .comment{
        gap: 8px;
    }
    .c_mosaic .comment .subTitle{
        font-size: 3.73vw;
        flex-direction: column;
    }
    .c_mosaic .comment .subTitle span .break-sp{
        white-space: normal;
    }
    .c_mosaic .comment .box{
        gap: 2px;
    }
    .c_mosaic .comment .box .contents{
        padding: 12px 8px;
        flex-direction: column;
        align-self: stretch;
    }
    .c_mosaic .comment .box .contents .li{
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .c_mosaic .comment .box .contents .li .txt{
        width: 100%;
        font-size: 3.2vw;
    }
}
/* @media screen and (max-width:767px) {
    .c_blockBlur__container{
        height: 160vw;
    }
} */
@media screen and (min-width:768px),print {
    .c_blockBlur__container{
        height: 540px;
    }
}
@media screen and (min-width:769px) {
    .c_mosaic .comment .subTitle{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .c_mosaic .comment .subTitle .line1,
    .c_mosaic .comment .subTitle .line2{
        white-space: nowrap;
    }
    .c_mosaic .comment .subTitle .line3{
        white-space: normal;
    }
}</pre></body></html>