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

    30% {
        opacity: 1
    }

    100% {
        transform: scale(5);
        opacity: 0
    }
}


body.show #opening .ttl {
    opacity: 1;
}

body.active #opening .floor img {
    animation: zoomOut 2s linear
}

body.active #opening::before {
    animation: zoomOut 2s linear;
}

body.active #opening .ttl {
    opacity: 0
}

body.active #opening .btn-skip {
    opacity: 0;
}

body.visible #opening {
    display: none;
}

body.visible #header>* {
    opacity: 1 !important;
}

#keyvisual.bg-show::before {
    opacity: 1
}

body.visible main {
    height: auto;
    overflow: visible;
}

main {
    height: 100vh;
    overflow: hidden
}

main.show {
    height: auto;
    overflow: visible
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: url('../img/shared/bg1.jpg') repeat center;
    transition: opacity 0.3s linear;
}

.overlay.hide {
    opacity: 0;
    z-index: -1;
}

body.intro .overlay {
    opacity: 0;
    z-index: -1;
}

main.show .overlay {
    opacity: 0;
    z-index: -1;
}

#opening {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

#opening::before {
    content: '';
    position: absolute;
    background: url('../img/shared/bg1.jpg') repeat center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    clip-path: polygon(0% 0%, 0% 100%, 22% 100%, 22% 22%, 78% 22%, 78% 78%, 22% 78%, 22% 100%, 100% 100%, 100% 0%);
}

#opening.hide .floor,
#opening.hide::before {
    opacity: 0;
}

#opening .floor {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

#opening .ttl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 17%;
    right: 17%;
    height: 86vw;
    opacity: 0;
    transition: 1s linear
}

#opening .ttl h2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #000;
    width: 100%
}

#opening .ttl h2 span {
    display: block;
    line-height: 1.5277777778
}

#opening .ttl h2 span:nth-child(1) {
    font-size: 4vw
}

#opening .ttl h2 span:nth-child(2) {
    font-size: 4.8vw
}

#opening .btn-skip {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    border: 1px solid #000;
    color: #000;
    max-width: 80%;
    text-align: center;
    margin: 0 auto;
    font-size: 15px;
    line-height: 50px;
    letter-spacing: 0.3em;
    transition: 0.3s linear;
}

#opening .btn-skip::before {
    content: "";
    width: 27px;
    height: 5px;
    border-bottom: 1px solid;
    border-right: 2px solid;
    -webkit-transform: skewX(60deg) translateY(-50%);
    transform: skewX(60deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
}

@media screen and (min-width: 768px) {
    #opening::before {
        clip-path: polygon(0% 0%, 0% 100%, 15% 100%, 15% 15%, 85% 15%, 85% 85%, 15% 85%, 15% 100%, 100% 100%, 100% 0%);
    }

    #opening .floor {
        width: auto;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }

    #opening .ttl {
        position: absolute;
        right: 0;
        left: 0;
        max-width: 830px;
        height: auto;
        margin: 0 auto
    }

    #opening .ttl h2 {
        display: block;
        height: auto;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 50px 94px auto
    }

    #opening .ttl h2 span {
        line-height: 53px
    }

    #opening .ttl h2 span:nth-child(1) {
        font-size: 24px
    }

    #opening .ttl h2 span:nth-child(2) {
        font-size: 30px;
        margin-top: 104px
    }

    #opening .btn-skip {
        cursor: pointer;
        bottom: 20px;
        max-width: 300px;
    }

    #opening .btn-skip:hover {
        opacity: 0.8;
    }
}

@media (min-width: 1536px) and (max-width: 1536px) {
    #opening::before {
        clip-path: polygon(0% 0%, 0% 100%, 15% 100%, 15% 15%, 85% 15%, 85% 85%, 15% 85%, 15% 100%, 100% 100%, 100% 0%);
    }

    #opening .floor {
        width: 75%;
    }

    #opening .floor img {
        width: 100%;
    }
}

@media screen and (min-width: 768px)and (max-width: 1366px) and (max-height: 768px) {
    #opening .ttl h2 {
        margin-bottom: 0;
    }

    #opening .ttl h2 span:nth-child(1) {
        font-size: 20px;
    }

    #opening .ttl h2 span:nth-child(2) {
        font-size: 26px;
    }

    #opening .floor {
        width: 72%;
    }

    #opening .floor img {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1200px) and (orientation: portrait) {
    #opening::before {
        clip-path: polygon(0% 0%, 0% 100%, 30% 100%, 30% 30%, 70% 30%, 70% 70%, 30% 70%, 30% 100%, 100% 100%, 100% 0%);
    }
}


#header {
    height: calc(100vh - 60px)
}

#header>* {
    opacity: 0;
    transition: opacity .5s linear
}

#header .hd-right {
    bottom: 11vw;
}

#header h1 {
    bottom: 2.5vw
}

#header.show>* {
    opacity: 1
}

@media screen and (min-width: 768px) {
    #header {
        height: 100vh
    }
}

#keyvisual {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh !important;
    width: 100%;
    opacity: 1;
}

#keyvisual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(101, 77, 51, .7);
    transition: .6s ease-in-out;
    opacity: 0;
}

#sec1 .wrap {
    padding: 0
}

#sec1 .group-txt {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 12vw 4%
}

#sec1 .group-txt h3 span {
    display: block;
    text-align: center;
    line-height: 1.375;
    letter-spacing: .05em
}

#sec1 .group-txt h3 span.jp {
    font-size: 4.8vw
}

#sec1 .group-txt h3 span.jp i {
    font-size: 6.4vw;
    font-weight: 600;
    letter-spacing: .05em
}

#sec1 .group-txt h3 span.en {
    margin-top: 1.5vw;
    font-size: 2.67vw
}

#sec1 .group-txt .txt {
    margin-top: 8vw
}

#sec1 .group-photo li {
    position: relative;
    transition: .2s;
    opacity: 0
}

#sec1 .group-photo li:nth-child(1) {
    margin: 14vw 10.5% 0 36%
}

#sec1 .group-photo li:nth-child(2) {
    margin: 7vw 48% 0 4%
}

#sec1 .group-photo li:nth-child(3) {
    margin: 5vw 0 0 20%
}

#sec1 .group-photo li:nth-child(4) {
    margin: 5.5vw 31.3% 0
}

#sec1 h2 {
    padding: 40.5vw 0 50vw
}

#sec1 h2 span {
    text-align: center;
    display: block;
    line-height: 1;
    letter-spacing: 0
}

#sec1 h2 span:nth-child(1) {
    font-size: 4.8vw
}

#sec1 h2 span:nth-child(2) {
    margin-top: 1.5vw;
    font-size: 16vw
}

@media screen and (min-width: 768px) {
    #sec1 {
        position: relative
    }

    #sec1 .wrap {
        max-width: 1300px
    }

    #sec1 .group-txt {
        padding: 139px 0 0
    }

    #sec1 .group-txt h3 span {
        line-height: 43px
    }

    #sec1 .group-txt h3 span.jp {
        font-size: 24px
    }

    #sec1 .group-txt h3 span.jp i {
        font-size: 30px
    }

    #sec1 .group-txt h3 span.en {
        margin-top: 0;
        font-size: 16px
    }

    #sec1 .group-txt .txt {
        text-align: center;
        margin-top: 42px
    }

    #sec1 .group-txt .txt li+li {
        margin-top: 35px
    }

    #sec1 .group-photo li:nth-child(1) {
        text-align: right;
        margin: 100px 20px 0 0
    }

    #sec1 .group-photo li:nth-child(2) {
        margin: 182px 0 0
    }

    #sec1 .group-photo li:nth-child(3) {
        text-align: right;
        margin: -32px 50px 0 0
    }

    #sec1 .group-photo li:nth-child(4) {
        margin: 54px 0 0 260px
    }

    #sec1 h2 {
        padding: 203px 0 283px
    }

    #sec1 h2 span:nth-child(1) {
        font-size: 24px
    }

    #sec1 h2 span:nth-child(2) {
        margin-top: 13px;
        font-size: 120px
    }
}

.section-js {
    position: relative;
    z-index: 2;
    background: url("../img/shared/bg1.jpg") repeat center;
    width: 100%;
    height: 100vh;
    overflow: hidden
}

.section-js .section-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 1.3333333333vw;
    transition: .7s ease-in-out
}

.section-js .section-item .inner {
    position: relative;
    height: 100%;
}

.section-js .section-item .inner .bg {
    position: absolute;
    inset: 0;
    z-index: -1
}

.section-js .section-item .inner .bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.section-js .section-item.active {
    transform: translateY(-100%)
}

.section-js .section-item:nth-child(1) {
    z-index: 3
}

.section-js .section-item:nth-child(2) {
    z-index: 2
}

.section-js .section-item:nth-child(3) {
    z-index: 1
}

@media screen and (max-width: 767px) {
    .section-js .section-item .inner {
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        flex-direction: column;
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 768px) {
    .section-js .section-item {
        padding: 20px
    }
}

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
    .section-js .txt {
        font-size: 12px;
        line-height: 28px;
    }
}

#sec2 .catch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 29% 0 15.5%
}

#sec2 .group h2 {
    margin: -9vw 9% 0 39%
}

#sec2 .group .txt {
    margin: 3vw 10% 0
}

#sec2 .group .btn-shared {
    margin: 5.5vw 9% 0
}

@media screen and (min-width: 768px) {
    #sec2 .inner {
        display: flex;
        align-items: flex-end;
        justify-content: space-between
    }

    #sec2 .catch {
        position: unset;
        padding: 0 0 182px
    }

    #sec2 .group {
        width: 363px;
        margin-right: 60px;
        padding-bottom: 50px
    }

    #sec2 .group h2 {
        margin: 0
    }

    #sec2 .group .txt {
        margin: 18px 0 0
    }

    #sec2 .group .btn-shared {
        margin: 30px 0 0
    }
}

@media screen and (min-width: 768px)and (max-width: 1366px)and (max-height: 768px) {
    #sec2 .group {
        padding-bottom: 20px
    }

    #sec2 .group h2 {
        width: 208px;
        margin: 0 auto
    }

    #sec2 .group h2 img {
        width: 100%
    }

    #sec2 .group .txt {
        margin-top: 15px;
        line-height: 32px
    }

    #sec2 .group .btn-shared {
        margin-top: 15px
    }
}

@media (min-width: 1536px) and (max-width: 1536px) {
    #sec2 .group {
        padding-bottom: 20px
    }

    #sec2 .group .txt {
        margin-top: 15px;
        line-height: 32px
    }

    #sec2 .group .btn-shared {
        margin-top: 15px
    }
}

@media screen and (min-device-width: 1440px) and (max-device-width: 1920px) {
    #sec2 .group h2 {
        width: 268px;
        margin: 0 auto;
    }

    #sec2 .group h2 img {
        width: 100%;
    }
}

#sec3 .inner::before {
    content: "";
    position: absolute;
    background: #1b0a01;
    inset: 1.3333333333%;
    z-index: -2
}

#sec3 .ttl {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    column-gap: 6vw;
    margin-left: 8%;
}

#sec3 h2 span {
    display: block;
    font-size: 21.33vw;
    font-weight: bold;
    line-height: .69;
    letter-spacing: -0.015em
}

#sec3 .sub-ttl {
    margin-bottom: -2vw;
    font-size: 4.8vw;
    line-height: 1.8055555556;
    letter-spacing: .12em;
}

#sec3 .txt {
    margin: 3vw 9% 0
}

#sec3 .group {
    width: 100%;
}

#sec3 .group .btn-shared {
    margin: 3vw 9% 0
}

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
    #sec3 .ttl {
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    #sec3 h2 span {
        font-size: 16vw;
    }
}

@media screen and (max-width: 767px) {
    .section-js #sec3 .inner .bg img {
        height: auto;
    }
}

@media screen and (min-width: 768px) {
    #sec3 .inner {
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        padding: 0 20px 0 0
    }

    #sec3 .ttl {
        display: block;
        margin: 0;
    }

    #sec3 h2 {
        order: 1;
        margin: 172px 0 0 -7px
    }

    #sec3 h2 span {
        font-size: 160px;
        line-height: 110px
    }

    #sec3 .txt {
        order: 3;
        max-width: 622px;
        margin: 0 0 43px 49px
    }

    #sec3 .group {
        order: 2;
        width: auto;
        margin: 0 0 51px 59px
    }

    #sec3 .sub-ttl {
        position: unset;
        margin: 0;
        font-size: 24px;
        line-height: 45px
    }

    #sec3 .group .btn-shared {
        margin: 17px 0 0
    }
}

@media screen and (min-width: 768px)and (max-width: 1300px) {
    #sec3 h2 span {
        font-size: 12.3076923077vw;
        line-height: .6875
    }

    #sec3 .txt {
        margin-left: 30px
    }

    #sec3 .group {
        margin-left: 30px
    }
}

@media screen and (min-width: 768px)and (max-width: 1366px)and (max-height: 768px) {
    #sec3 h2 span {
        font-size: 120px;
        line-height: .7
    }
}

@media (min-width: 1536px) and (max-width: 1536px) {
    #sec3 h2 span {
        font-size: 146px;
        line-height: .7
    }
}

#sec4 h2 {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 2vw;
    margin: 0 auto;
    text-align: center
}

#sec4 h2 span {
    display: block
}

#sec4 h2 span.en {
    font-style: italic;
    border-bottom: 1px solid #fff;
    padding-bottom: 4.5vw;
    margin-bottom: 4vw;
    font-size: 9.6vw;
    line-height: .7;
    font-weight: 900;
    letter-spacing: 0
}

#sec4 h2 span.en i {
    font-size: 24vw;
    letter-spacing: 0
}

#sec4 h2 span.jp {
    font-size: 6.67vw;
    line-height: 1;
    letter-spacing: .05em
}

#sec4 h2 span.jp small {
    font-size: 5.33vw;
    letter-spacing: .05em
}

#sec4 .group {
    margin: 13vw 9% 0
}

#sec4 .group .btn-shared {
    margin-top: 6vw
}

@media screen and (min-width: 768px) {
    #sec4 .inner {
        display: flex;
        align-items: flex-end;
        padding: 0 52px 76px 50px
    }

    #sec4 h2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 12px
    }

    #sec4 h2 span.en {
        padding-bottom: 35px;
        margin-bottom: 28px;
        font-size: 60px
    }

    #sec4 h2 span.en i {
        font-size: 180px
    }

    #sec4 h2 span.jp {
        font-size: 40px;
        letter-spacing: .12em
    }

    #sec4 h2 span.jp small {
        font-size: 30px;
        letter-spacing: .12em
    }

    #sec4 .group {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        width: 100%;
        margin: 0 0 0
    }

    #sec4 .group .txt {
        order: 1;
        width: 360px
    }

    #sec4 .group .btn-shared {
        order: 2;
        margin: 0 0 10px
    }
}

@media screen and (min-width: 768px)and (max-width: 1366px)and (max-height: 768px) {
    #sec4 .inner {
        padding-bottom: 20px
    }
}

#sec5 {
    position: relative;
    background: url("../img/shared/bg1.jpg") repeat center;
    padding: 1.3333333333vw
}

#sec5 .box-parallax {
    z-index: 1
}

#sec5 #shopinfo {
    padding-top: 26.5vw
}

#sec5 #shopinfo .logo {
    width: 27%;
    margin: 0 auto
}

#sec5 #shopinfo h2 {
    margin: 11vw 40% 0 9%
}

#sec5 #shopinfo .info {
    margin: 0 9%
}

#sec5 #shopinfo .info dl {
    border-top: 1px solid #fff;
    padding: 9px 0;
    line-height: 21px
}

#sec5 #shopinfo .info dl dd span {
    font-size: 10px
}

#sec5 #shopinfo .info dl:last-child {
    border-bottom: 1px solid #fff
}

#sec5 #shopinfo .cancel {
    padding-top: 11.5vw
}

#sec5 #shopinfo .cancel dt {
    text-align: center;
    font-size: 4.8vw;
    line-height: 1.7142857143;
    letter-spacing: .12em
}

#sec5 #shopinfo .cancel dd {
    margin: 3vw 16% 0;
    line-height: 21px
}

#sec5 #gmap {
    padding: 12.5vw 9% 28vw
}

#sec5 #gmap .map {
    height: 100vw
}

#sec5 #gmap .left {
    margin-top: 9.5vw
}

#sec5 #gmap .left h2 {
    width: 44%;
    margin: 0 auto
}

#sec5 #gmap .left .group-link {
    margin-top: 9vw
}

@media screen and (min-width: 768px) {
    #sec5 {
        padding: 20px
    }

    #sec5 #shopinfo {
        box-sizing: content-box;
        max-width: 610px;
        margin-left: auto;
        padding: 153px 51px 0 0
    }

    #sec5 #shopinfo .logo {
        width: 161px
    }

    #sec5 #shopinfo h2 {
        width: 311px;
        margin: 55px 0 -2px
    }

    #sec5 #shopinfo .info {
        margin: 0 0 0 10px
    }

    #sec5 #shopinfo .info dl {
        padding: 13px 22px 13px 25px;
        font-size: 15px;
        line-height: 27px
    }

    #sec5 #shopinfo .info dl dd span {
        font-size: 15px
    }

    #sec5 #shopinfo .cancel {
        padding-top: 68px
    }

    #sec5 #shopinfo .cancel dt {
        font-size: 20px;
        line-height: 45px
    }

    #sec5 #shopinfo .cancel dd {
        text-align: center;
        margin: 8px 0 0;
        line-height: 27px
    }

    #sec5 #gmap {
        display: flex;
        justify-content: flex-end;
        padding: 74px 51px 147px
    }

    #sec5 #gmap .map {
        order: 2;
        flex: 1;
        height: 450px
    }

    #sec5 #gmap .left {
        order: 1;
        max-width: 460px;
        width: 100%;
        margin-top: 140px
    }

    #sec5 #gmap .left h2 {
        width: 222px
    }

    #sec5 #gmap .left .group-link {
        margin-top: 70px
    }

    #sec5 #gmap .left .group-link .btn-shared {
        margin: 0 auto
    }

    #sec5 #gmap .left .group-link .print-map {
        text-align: center;
        margin-top: 18px
    }

    #sec5 #gmap .left .group-link .print-map a {
        text-decoration: underline;
        text-underline-offset: 8px
    }

    #sec5 #gmap .left .group-link .print-map a:hover {
        text-decoration: none
    }
}

#sec6 {
    background: url("../img/shared/bg1.jpg") repeat center;
    color: #000;
    padding: 0 1.3333333333vw 1.3333333333vw
}

#sec6 .wrap {
    background: url("../img/shared/bg2.jpg") repeat center/150px auto;
    padding: 17.5vw 6.5%
}

#sec6 .lead {
    display: flex;
    justify-content: space-between
}

#sec6 .lead h2 span {
    display: block;
    line-height: 1;
    letter-spacing: .05em
}

#sec6 .lead h2 span.en {
    font-size: 9.6vw
}

#sec6 .lead h2 span.en i {
    font-size: 12.8vw;
    letter-spacing: .05em
}

#sec6 .lead h2 span.jp {
    margin-top: 3.5vw;
    font-size: 5.33vw
}

#sec6 .lead .more {
    margin: 4.5vw 2% 0 0
}

#sec6 .lead .more a {
    display: block;
    padding-bottom: 8px;
    border-bottom: 1px solid #000;
    line-height: 1
}

#sec6 #feed {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin-top: 8vw;
    padding: 9vw 0
}

#sec6 #feed .item {
    display: flex
}

#sec6 #feed .item .rss-img {
    width: 44vw;
    height: 33vw
}

#sec6 #feed .item .rss-img span {
    width: 100% !important;
    height: 100% !important
}

#sec6 #feed .item dl {
    flex: 1;
    padding: 1.5vw 0% 0 8%
}

#sec6 #feed .item dl dt {
    border-bottom: 1px solid #000;
    margin: 0 21% 2.5vw 0;
    padding-bottom: 2.5vw;
    font-size: 20px;
    line-height: 25px
}

#sec6 #feed .item dl dd {
    font-size: 12px;
    line-height: 21px
}

#sec6 #feed .item:not(:first-child) {
    display: none
}

@media screen and (min-width: 768px) {
    #sec6 {
        padding: 0 20px 20px
    }

    #sec6 .wrap {
        background-size: auto;
        max-width: 100%;
        padding: 115px 0 190px
    }

    #sec6 .inner {
        max-width: 900px;
        margin: 0 auto
    }

    #sec6 .lead {
        align-items: flex-end;
        padding: 0 31px 0 38px
    }

    #sec6 .lead h2 span.en {
        font-size: 60px
    }

    #sec6 .lead h2 span.en i {
        font-size: 84px
    }

    #sec6 .lead h2 span.jp {
        margin-top: 21px;
        font-size: 36px;
        letter-spacing: .12em
    }

    #sec6 .lead .more {
        margin: 0 0 4px
    }

    #sec6 .lead .more a:hover {
        border-color: rgba(0, 0, 0, 0)
    }

    #sec6 #feed {
        display: flex;
        justify-content: space-between;
        margin-top: 48px;
        padding: 62px 30px 55px
    }

    #sec6 #feed .item {
        max-width: 240px;
        width: 100%;
        display: block
    }

    #sec6 #feed .item .rss-img {
        width: 100%;
        height: 180px
    }

    #sec6 #feed .item dl {
        max-width: 200px;
        margin: 0 auto;
        padding: 32px 0 0
    }

    #sec6 #feed .item dl dt {
        text-align: center;
        margin: 0;
        padding-bottom: 22px;
        font-size: 24px;
        line-height: 27px
    }

    #sec6 #feed .item dl dd {
        margin: 12px 11px 0;
        font-size: 15px;
        line-height: 27px
    }

    #sec6 #feed .item:not(:first-child) {
        display: block
    }
}

@media screen and (max-width: 768px) {
#sec1 .phpto{
position: relative;
z-index: 1;
}

#sec1 .phpto1{
    width:50%;
    position: absolute;
    right: 2vw;
    
}
#sec1 .phpto2{
        width: 40%;
        position: absolute;
        left: 4vw;
    top: 18vw;
}
#sec1 .phpto3{
    width:50%;
        position: absolute;
    right: 4vw;
    top: 62vw;
    
}
#sec1 .phpto4{
width: 32%;
        position: absolute;
        left: 8vw;
        top: 69vw;
    
}
#sec1 h2 {
position: relative;
z-index: 10;
 padding: 40.5vw 0 62vw;
}

}
