 /* ----
  * 解体実績・費用例ページ - CSS 
  * ----
  */
#casePage-item_container {
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.item-wide {
    display: flex;
    justify-content: center;
    width: 100%;

}

.item-row2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

/* カード */
.casePage-items {
    position: relative;
    list-style: none;

    /* 浮き上がり演出 初期状態 */
    opacity: 0;
    transform: translateY(80px) scale(0.94);
    filter: blur(6px);

    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.9s ease,
        filter 0.9s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 表示されたとき */
.casePage-items.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.item-wide .casePage-items {
    width: 100%;
    height: auto;
}

.item-row2 .casePage-items {
    width: 47%;
    height: auto;
}

.casePage-items figure {
    overflow: hidden;
    border-radius: 8px;
    -webkit-mask-image: linear-gradient(0deg, #0000006b 0%, rgb(0 0 0) 80%);
    position: relative;
}

.item-wide .casePage-items figure {
    aspect-ratio: 16 / 9;
}

.item-row2 .casePage-items figure {
    aspect-ratio: 4 / 3;
}

.casePage-items figure img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: bottom;
}

.casePage-items>div {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #072803;
    font-size: 1.3rem;
    background-color: #ffffffe3;
    padding: 10px;
    border-radius: 2px;
}

.casePage-items>div h3 {
    font-size: 1.6rem;
}

.casePage-items>div .case-price {
    font-size: 1.875rem;
    font-weight: bold;
    color: #2563eb;
}

#casePage-item_container {
    gap: 30px;
    display: flex;
    flex-direction: column;
    padding: 0;
}
 /* レスポンシブ - タブレット */
@media screen and (max-width: 782px) {
	.item-row2{
		flex-direction: column;
	}
	
	.item-row2 .casePage-items{
		width: 100%;
	}
	
	.item-wide .casePage-items figure{
		aspect-ratio: 4 / 3;
	}
	
	.casePage-items>div{
		font-size: 1rem;
	}
	
	.casePage-items>div h3{
		font-size: 1.2rem;
	}
	
	.casePage-items>div .case-price{
		font-size: 1.5rem;
	}
}