/*===============================

	コンテンツページ共通
	contents_common.css

================================*/
#DivTopTitle {
    animation: topTitleAnimation 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes topTitleAnimation {
    0% {
        transform: translateX(180px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/*　トップ写真　*/
.firstview-photo {
    margin-top: 1.5vw;
    position: relative;
    z-index: 300;
    padding-right: 0;
    display: flex;
    justify-content: end;
}
.home-photo {
    animation: photoAnimation 3s;
    width: 90%;
    height: 64vh;
    overflow: hidden;
}
.home-photo img {
    width: 100%;
    height: auto;
    transform: scale(1.05);
    animation: zoomIn 5s ease-in-out;
    aspect-ratio: auto;
}
@keyframes photoAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}
.second-image {
    width: 24vw;
    height:24vw;
    margin: 1vw auto 1vw auto;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}
.second-image img{
    width:24vw;
    height:24vw;
    object-fit:cover;

}

@media screen and (min-width:320px ) and (max-width:1079px) {
    .home-photo img {
        height: 100%;
        object-fit: cover;
    }
    .second-image {
        width: 45vw;
        height: 45vw;
        margin: 1vw auto 1vw auto;
        box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .2);
        margin-bottom: 5vw;
    }
    .second-image img{
        width:45vw;
        height:45vw;
        object-fit:cover;
    }
}