/* CSS Document */
#Detail {
    margin-top: 4rem;
}
#Detail p {
    font-size: 1.5rem;
}
#Detail p.bigtxt {
    font-size: 2.5rem;
}

#Detail .leftTxt {
	text-align: left!important;
}
#Detail .black_waku {
	padding: 1rem;
	border: 4px solid #333;
}
#Detail .correctBox {
	display: flex;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #ccc;
}
#Detail .correctBox .leftBox{
	width: 40%;
	padding-right: 20px;
}
#Detail .correctBox .rightBox{
	width: 60%;
}
.cardPopupList a {
	position: relative;
}
.cardPopupList a .enlargement {
    pointer-events: none;
    content: '';
    width: 200px;
    height: 280px;
    position: absolute;
    transition: 0.3s;
    z-index: 100;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-shadow: 0px 8px 24px rgb(0 0 0 / 50%);
    box-shadow: 0px 8px 24px rgb(0 0 0 / 50%);
    border-radius: 18px;
}
.cardPopupList a:hover .enlargement {
    content: '';
    width: 450px;
    height: 630px;
    opacity: 1;
    transition: 0.1s;
}
.cardPopupList.wide a:hover .enlargement {
    width: 580px;
    height: 326px;
    border-radius: 0px;
}
.cardPopupList.side a:hover .enlargement {
	width: 560px;
    height: 400px;
}


@media screen and (max-width: 639px) {
#Detail p {
    font-size: 1.2rem;
    }
.cardPopupList a .enlargement {
    display: none;

}

}





