.mv {
    aspect-ratio: auto
}

.mv .inner {
    margin-top: -20%;
    position: relative;
    z-index: 1
}

.general-section .inner {
    max-width: 1270px
}

.sec .inner .lead {
    font-size: 3rem
}

.image-section {
  position: relative;
  overflow: hidden;
}

.image-wrapper {
  position: relative;
    max-height: 745px;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; 
}
.general-section{
    background-color: #f5ebe8;
}
.general-section .inner{
    z-index: 3;
    text-align: center;
}
.general-section .section-bg{
    position: relative;
}
.general-section .section-bg::before{
    	content: "";
    background-image: url(../images/access/access-bg.webp);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 0;
    background-position: bottom;
}
.next-section {
    background-color: #f5ebe8;
    padding: 0px 0px 80px;
    text-align: center;
    margin-top: -7vh;
    position: relative;
    z-index: 2;
}
.next-section p{
    color: #b37b7a;
}
.next-section p.tertiary-heading{
    color: #604c3f;
}
.caption{
    position: absolute;
    bottom: 13vh;
    right: 1vw;
}
.caption2{
    position: absolute;
    bottom: 7vh;
    right: 0;
    left: -70px;
    margin: auto;
    width: fit-content;
}
.vertical-line:after{
    content: unset;
}
.vertical-line:before{
content: '';
    display: block;
    width: 2px;
    height: 80px;
    background: #b37b7a;
    margin: 30px auto 10px;
    position: relative;
    top: -30px;
}
.inner img{
    width: 90%;
    margin-top: -270px;
}
@media screen and (max-width: 767px) {
    .sec .inner .lead {
        font-size:2rem
    }
    .image-wrapper img {
        height: 100vh;
        max-height: 250px;
        object-fit: cover;
    }
    .curve {
        left: -50%;
        width: 200%;
        height: 100px;
    }
    .vertical-line:before {
        height: 50px;
        top: -10px;
    }
    .inner img {
        width: 100%;
        margin-top: -130px;
    }
    .hamburger, .sp-tel-btn{
        display: flex;
    }
    .caption{
        bottom: 17vw;
    }
}

@keyframes blurZoomIn {
	from {
		opacity: 0;
		filter: brightness(1.8) blur(20px);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	50% {
		filter: brightness(1) blur(0);
		opacity: 1;
	}
}
.blurZoomIn {
	animation-name: blurZoomIn;
}
@keyframes blurFadeIn {
	from {
		opacity: 0;
		filter: blur(20px);
	}
	50% {
		filter: blur(0);
		opacity: 1;
	}
}