@charset "UTF-8";

.hero-img{
    clip-path: inset(0);
    width: 100%;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img::after{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    width:100%;
    height:100vh;
    background-image: url(../img/top_hero-img.jpg);
    background-size: cover;
}
.hero-text{
    position: fixed;
}
.hero-scroll{
    position: fixed;
    bottom: 0;
    height: 70px;
}
.hero-scroll p{
    background:rgba(255,255,255,0.7);
    padding: 5px 8px;
}
.hero-scroll::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 30px;
    background: #202020;
    animation: pathmove 1.4s ease-in-out infinite;
}

.photography-section{
    margin-top: 120px;
}
.photo-links{
    display: flex;
    row-gap: 50px;
    justify-content: center;
    flex-flow: column;
    width: 70%;
    margin: 0 auto;
}
.photo-banner{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.photo-banner::after{
    position: absolute;
    inset: 0;
    content: "";
    border: 2px solid transparent;
}
.photo-banner:hover::after{
    border: 2px solid #202020;
}
.photo-banner img{
    height: auto;
    transition: transform .6s ease;
}
.photo-banner:hover img{
    transform: scale(1.1);
}
.photo-banner picture{
    opacity: 0.7;
}
.photo-banner_link{
    position: absolute;
    background:rgba(255,255,255,0.8);
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.photo-banner_link-allow{
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
}
.photo-banner_link-title{
    display: inline-block;
    flex: 1;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0;
}

.pro_con-section{
    background: linear-gradient(#EFEFEF,#fff);
    margin-top: 120px;
    padding-bottom: 60px;
}
.pro_con-links{
    display: flex;
    justify-content: space-around;
}
.pro-con_linkWrap{
    text-align: center;
}
.pro-con_link-text{
    position: relative;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
}
.pro-con_link-text::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #202020;
    transition: all 0.4s;
}
.pro-con_link-text:hover::after{
    width: 100%;
}

/*　SPビュー　*/
@media screen and (max-width: 480px) {

    .hero-img, .hero-img::after{
        height: 80vh;
    }
    .photography-section{
        margin-top: 0;
    }
    .photo-links{
        width: 80%;
    }
    .photo-banner_link{
        width: 50%;
    }
    .photo-banner_link-allow{
        width: 10px;
        height: 10px;
        margin: 0;
    }
    .photo-banner_link-title{
        font-size: 1.3rem;
        letter-spacing: 0;
    }
    .pro_con-links{
        flex-flow: column;
        gap: 30px;
    }
    .pro-con_link-text{
        padding-left: 1rem;
    }
    .pro-con_link-text::after{
        width: 100%;
    }

}