body {
    background-color: var(--color-light-brown);
}

.header {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    display: none;
    top: 0;
    left: 0;
    right: 0;

    .header-logo-container {
        @media (width >= 1024px) {
            position: absolute;
            top: 2rem;
            left: 5rem;
            flex-direction: column;
            gap: 1.875rem;
            align-items: flex-start;
        }
    }
    
    .header-logo-text {
        @media (width >= 1024px) {
            display: block;
            font-size: var(--text-en-10);
            color: var(--color-brown);
        }
    }
    
    &.is-fixed {
        opacity: 1;
        visibility: visible;
        display: block;

        .header-logo-container {
            position: static;
        }

        @media (width >= 1024px) {
            .header-logo-text {
                display: none;
            }
        }
        
    }
}

.header-inner {
    @media (width >= 1024px) {
        justify-content: right;
    }
}

.static-header {
    padding: 0.625rem 1.25rem;
  
    @media (width >= 1024px) {
      padding: 1.3125rem 1.25rem;
    }

    .header-inner {
        position: relative;
        justify-content: space-between;
        
        .header-logo-text {
            @media (width >= 1024px) {
                position: absolute;
                top: calc(108px - 1.3125rem);
                left: 0;
                display: block;
            }
        }
    }

    .header-nav-list {
        @media (1200px >= width >= 768px) {
            gap: 0 2rem;
        }
    }
}

.fv-section {
    position: relative;
    display: grid;
    grid-template: "fv-title fv-image-container" 1fr / 60px auto;
    max-width: 1280px; 
    height: 85svh;
    margin:auto;
    overflow: hidden;

    video {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    @media (width >= 768px) {
        grid-template: "fv-image-container" 1fr / 1fr;
        width: 94%;
        height: auto;
    }
}

.fv-section-bg{
    background-color: var(--color-light-brown);
    padding-bottom: 30px;
    height: 100svh;
    @media (width >= 768px) {
        padding-bottom: 53px;
        height: auto   ;
    }
}

.fv-sub-title,.fv-image-container {
    grid-area: fv-image-container;
}

.fv-title,.fv-sub-title {
    width: fit-content;
    color: var(--color-dark-brown);
}

.fv-title {
    z-index: 2;
    display: flex;
    grid-area: fv-title;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: var(--text-en-44);
    white-space: nowrap;
    writing-mode: vertical-rl;

    @media (width >= 768px) {
        position: absolute;
        top: 20svh;
        display: unset;
        grid-area: fv-image-container;
        height: fit-content;
        height: 60px;
        overflow: hidden;
        writing-mode: unset;

        &.text-brown span,&.text-white span {
            position: absolute;
        }

        &.text-brown {
            width: 25%;
    
            span {
                width: 400%;
            }
        }

        &.text-white {
            width: 100%;
            margin-left: 25%;
            color: var(--color-white);
    
            span {
                left:-25%;
            }
        }
    }
}

.fv-sub-title {
    z-index: 2;
    height: fit-content;
    margin: auto auto 1rem;
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-white);

    @media (width >= 768px) {
        position: relative;
        top: 27svh;
        margin: 0;
        font-size: var(--text-ja-24);
        color: var(--color-dark-brown);
        
    }
}

.fv-scroll{
    position: absolute;
    bottom: 10px;
    left: 0;
    display:none;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
        text-align: center;
    cursor: pointer;
    background: none;
    border: none;

    span{
        margin-bottom: 8px;
    }

    @media (width >= 768px) {
        display: flex;
    }
}

.fv-image-container {
    position: relative;
    display: grid;
    grid-template: "fv-image" 1fr / 1fr;
    width: 100%;
    margin-right: 0;
    margin-left:auto;
    overflow: hidden;
    border-radius:  16px 0 0 16px;
    
    @media (width >= 768px) {
        width: 75%;
        border-radius: 16px;
        aspect-ratio: 1 / 0.56;
    }

    .fv-image {
        position: relative;
        z-index: 1;
        grid-area: fv-image;
        height: 100%;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (width >= 768px) {
            display: none;
        }

        &.fv-pc{
            display: none;

            @media (width >= 768px) {
                display: block;
            }
        }
    }
}



.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transform: translateY(20px);

  &.visible{
    opacity: 1;
    transform: translateY(0);
  }
}
  
.about-section {
    display: grid;
    grid-template: 1fr / 1fr;
}

.about-section-content {
    grid-row: 1;
    grid-column: 1;
    width: fit-content;
    max-width: 1000px;
    padding: 0 2%;
    margin: auto;
    color: var(--color-white);

    @media (width >= 768px) {
        width: 100%;
    }

    .about-link{
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: center;

        @media (width >= 768px) {
            justify-content: flex-start;
            margin-top: 30px;
        }
    }

    *{
        letter-spacing: 0.08em;
    }
}

.about-section-sub-title {
    margin-bottom: 6px;
    font-size: var(--text-en-12);
    text-align: center;

    @media (width >= 768px) {
        text-align: left;
    }
}

.about-section-title {
    margin-bottom: 24px;
    font-size: var(--text-ja-24);

    @media (width >= 768px) {
        margin-bottom: 40px;
    }
}

.about-section-description {
    margin-bottom: 20px;
    font-size: var(--text-ja-13);
    line-height: 2;

    .on-sp{
        display: block;

        @media (width >= 768px) {
            display: none;
        }
    }

    @media (width >= 768px) {
        margin-bottom: 10px;
        font-size: var(--text-ja-15);
    }
}

.about-section-bg-container {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: 100svh;
    object-fit: cover;

    .about-section-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.about-section-link-wrapper {
    place-self: center;

    @media (width >= 768px) {
        place-self: start;
    }

}

.studio-section {
    padding: 5rem 0;
    overflow: hidden;
    background-color: var(--color-beige);

    @media (width >= 768px) {
        padding: 10rem 0;
    }
}

.studio-section-inner {
    margin-left: 1.25rem;

    @media (width >= 768px) {
        margin-left: 5rem;
    }
}

.studio-section-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    text-align: center;

    @media (width >= 768px) {
        flex-direction: row;
        justify-content: flex-start;
        margin-bottom: 7.5rem;
        text-align: left;
    }
}

.studio-section-title {
    font-size: var(--text-ja-24);
    font-weight: 400;
}

.studio-section-title-accent {
    margin-top: -0.75em;
    font-family: var(--font-family-holland);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-purple);
    letter-spacing: -0.02em;
    opacity: 0.5;

    @media(width >= 768px) {
        margin-top: 0;
        margin-left: -0.5em;
        font-size: 40px;
    }
}
.on-sp{
    display: block;
    @media(width >= 768px) {
        display: none;
    }
}
.studio-image-container {
    overflow: hidden;
}

.studio-image-container-text {
    margin-bottom: 0.5rem;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.08em;

    @media (width >= 768px) {
        margin-bottom: 1rem;
        font-size: 16px;
        text-align: left;
    }
}

.studio-image {
    height: 160px;
    object-fit: cover;
     @media (width >= 768px) {
        height: 320px;
     }
}
.studio-image-slider{
    overflow: hidden;
  width: 100%;
  display: flex;
  gap: 6.5px;
  @media (width >= 768px) {
    gap: 13px;
  }
}
.studio-image-track {
  animation: infinity-scroll-left 80s linear infinite;
}
@keyframes infinity-scroll-left {
    from {
    transform: translateX(0);
    }
    to {
    transform: translateX(-100%);
    }
}

.studio-section-content-container {
    padding:1rem 0 1rem 1rem;
}

.studio-section-content-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: var(--text-en-32);

    @media (width >= 768px) {
        margin-bottom: 1rem;
        font-size: var(--text-en-44);
    }

    .ja-label {
       margin-left: 1rem;
       font-size: var(--text-ja-13);


        @media (width >= 768px) {
            font-size: var(--text-ja-20);
        }
    }
}

#pickup-studio-slide {
    padding-left: 10px;

    @media (width >= 768px) {
        padding-left: 2rem;
    }
}

.studio-section-studio-list {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid var(--color-dark-brown);
}

.pickup-studio-card {
    display: grid;
    height: 100%;
    padding-right: 1rem;
    padding-bottom:  1rem;
    padding-left: 1rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    transition: box-shadow 0.3s ease;

    &:hover {
        box-shadow: 2px 2px 20px rgb(65 46 28 / 16%);
        opacity: inherit;
    }
}

.pickup-studio-card-head {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--color-dark-brown);
}

.pickup-studio-card-body{
    padding: 1rem 0;

    .access {
        margin-bottom: 2rem;
    }
}

.pickup-studio-slide-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px; 
    height: 90px;
    background: #DDD7E7;

    @media (width >= 768px) {
        width: 4px;
        height: 120px;
    }

    /* stylelint-disable-next-line selector-class-pattern */
    .splide__progress__bar {
        width: 100%;
        height: 0%; 
        background: #9F8FCA;
        transition: height 0.3s ease;
    }
}

.pickup-studio-card-label-container {
    display: flex;
    grid-area: 1/1;
    gap: 0.5rem;
    place-self: start end;
    margin-right: -1rem;
}

.pickup-studio-card-label {
    --border-radius: 4px;

    padding: 10px 6px;
    font-size: 14px;
    font-weight: 400;

    &:not(:last-child) {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    &:last-child {
        border-radius: 0 var(--border-radius);
    }

    &.purple {
        color: var(--color-white);
        background-color: var(--color-purple);
    }

    &.green {
        color: var(--color-white);
        background-color: var(--color-green);
    }

    &.blank {
        visibility: hidden;
    }

    .en-label {
        font-family: var(--font-family-en);
        font-size: 14px;
        font-weight: 700;

        &.thin {
            font-size: 12px;
        }

        .strong {
            font-size: 20px;
        }
    }
}


.delayed-scroll-container {
    position: relative;
    display: grid;
    width: 100%;
    padding: 100px 50px;
    overflow: hidden;

    @media(width >= 768px) {
        padding: 160px 50px;
    }
}

.delayed-scroll-bg {
    position: absolute;
    top: -25%;
    left:0;
    z-index: -1;
    width: 100%;
    height: 125%;
    background-image: url('./img/top/parallax-bg-sp.webp');
    background-position: center 50%;
    background-size: cover;

    @media (width >= 768px) {
        top: -50%;
        height: 150%;
        background-image: url('./img/top/parallax-bg-pc.webp');
        background-size: cover;
    }
}

.delayed-scroll-main {
    grid-row: 1;
    grid-column: 1;
    max-width: 1080px;
    margin: auto;

    .parallax-main-image {
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

.studio-section-search {
    padding: 2rem 1.25rem 2.5rem;

    .studio-section-content-title {
        font-size: var(--text-en-24);

        @media (width >= 768px) {
            font-size: var(--text-en-44);
        }

        img {
            width: 1.3125rem;
            margin-right: 4px;

            @media (width >= 768px) {
                width: 2.5rem;
            }
        }

        span {
            font-size: var(--text-ja-13);

            @media (width >= 768px) {
                font-size: var(--text-ja-20);
            }
        }
    }

    .studio-section-studio-list {
        flex-wrap: wrap;
        gap: 0.5rem 1.5rem;
        padding-bottom: 1.25rem;
        font-size: var(--text-ja-18);

        @media (width >= 768px) {
            gap: 1rem 2.5rem;
            width: max-content;
            padding: 0 1rem 1rem;
            font-size: var(--text-ja-16);
        }

        li {
            padding-left: 1rem;
            background-image: url('../img/icon/search-arrow-icon.svg');
            background-repeat: no-repeat;
            background-position: left center;
        }
    }
}

.instagram-feed-container {
    
    /* stylelint-disable-next-line selector-id-pattern */
    #sb_instagram {
        /* プラグインのデフォルトのpadding-bottomを削除 */
        padding-bottom:0 !important;

        /* stylelint-disable-next-line selector-id-pattern */
        #sbi_images {
            padding: 0;
        }
    }

    display: grid;
    grid-template: "feed" "button" 1fr / 1fr;
    margin: 10px auto;

    .instagram-feed {
        grid-area: feed;
    }

    .instagram-feed-more-button {
        position: relative;
        grid-area: button;
        place-self: end center;
        width: 85%;
        height: 80px;
        margin-top: -40px;
        font-size: var(--text-en-16);
        color: var(--color-white);
        background: url("../img/top/instagram-bg.webp") no-repeat center center/cover;

        @media (width >= 768px) {
            place-self: center;
            width: 80%;
            height: 100%;
            max-height: 200px;
            margin-top: 0;
        }

        span{
            position: relative;

            &::before{
                display: block;
                width: 20px;
                height: 20px;
                margin: 0 auto 8px;
                content: "";
                background: url("../img/top/instagram-icon.svg") no-repeat center center/100% auto;
            }
        }
    }

    @media (width >= 768px) {
        grid-template: "feed button" 1fr / 1fr 264px;
    }
}

.text-loop-container {
    --loop-speed: 40s;
    --loop-delay:calc(-1 * var(--loop-speed) * 0.5);

    display: flex;
    width: 100%;
    overflow: hidden;
    font-family: var(--font-family-en);
    font-size: 12px;
    color: var(--color-brown);

    @media (width >= 768px) {
        --loop-speed: 30s
    }
    
    .loop {
        flex: 0 0 auto;
        padding-left: 0.5em;
        overflow: hidden;
        white-space: nowrap;

        &:nth-child(odd) {
            animation: loop var(--loop-speed) var(--loop-delay) linear infinite;
        }

        &:nth-child(even) {
            animation: loop2 var(--loop-speed) linear infinite;
        }
    }

    .loop-reverse {
        flex: 0 0 auto;
        padding-left: 0.5em;
        overflow: hidden;
        white-space: nowrap;

        &:nth-child(odd) {
            animation: loop-reverse var(--loop-speed) linear infinite;
        }

        &:nth-child(even) {
            animation: loop-reverse2 var(--loop-speed) var(--loop-delay) linear infinite;
        }
    }

}

@keyframes loop {
    0%{
      transform: translateX(100%);
    }

    100% {
      transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0%{
      transform: translateX(0);
    }

    100%{
      transform: translateX(-200%);
    }
}

@keyframes loop-reverse{
    0%{
      transform: translateX(-100%);
    }

    100%{
      transform: translateX(100%);
    }
}

@keyframes loop-reverse2{
    0%{
      transform: translateX(-200%);
    }

    100%{
      transform: translateX(0);
    }
}

.cta-block-separate {
    display:none;

    @media (width >= 768px) {
        display: block;
        margin-bottom: 80px;
        border-color: var(--color-light-grayish-green);
    }
}

.column-section {
    padding-bottom: 5rem;

    @media (width >= 768px) {
        padding-bottom: 10rem;
    }
}

.column-section-text-container {
    margin-bottom: 2rem;
    text-align: center;

    @media (width >= 768px) {
        margin-bottom: 7rem;
        text-align: left;
    }

    h2 {
        font-size: var(--text-en-32);
    }

    .column-section-sub-title {
        margin-top: 1rem;
        font-size: var(--text-ja-15);

        @media (width >= 768px) {
            margin-top: 1.25rem;
            font-size: var(--text-ja-24);
        }
    }

    p {
        font-size: var(--text-en-16);

        @media (width >= 768px) {
            font-size: var(--text-en-20);
        }
    }
}

.column-section-inner {
    .link-wrapper {
        place-self: center;
        margin-top: 2.5rem;

        @media (width >= 768px) {
            place-self: end;
            margin-top: 3.5rem;
            
        }
    }
}

.bg-medium-brown-2-wrapper {
    background: var(--color-medium-brown-2);
}

.information-container {
    --border-radius: 40px;

    background-color: var(--color-beige);
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    
    @media (width >= 768px) {
        --border-radius: 80px;
    }
}

.topics-section {
    margin-top: 5rem;
    @media (width >= 768px) {
        max-width: 1098px;
    }   
    .splide__track--draggable{
        @media (width >= 768px) {
            height: 344px !important;
        }
    }
}

.topics-section-text-container {
    display: flex;
    flex-direction: column;
    gap:1rem;
    width: fit-content;
    margin: auto;
    margin-bottom: 2rem;
    text-align: center;

    @media (width >= 768px) {
        gap:1.25rem;
        margin-bottom: 2.5rem;
    }

}

.topics-section-title {
    font-size: var(--text-en-32);
}

.topics-section-description {
    font-size: var(--text-ja-13);

    @media (width >= 768px) {
        font-size: var(--text-ja-15);
    }
}

.topics-slide-banner-container{
    height: 100%;

    img{
        height: 100%;
        object-fit: cover;
        border-radius: 8px;

        @media (width >= 768px) {
            border-radius: 4px;
        }
    }
}

/* news-section */
.news-section {
    padding-bottom: 80px;
    margin-top: 5rem;

    @media (width >= 768px) {
        padding: 80px 0;
        margin-top: 0;
        max-width: 1200px;
    }
}

.news-section-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;

    @media (width >= 768px) {
        flex-direction: row;
        gap: 3.5rem;
    }
}

.news-section-title {
    font-size: var(--text-en-32);
}

.news-list-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;

    .news-list-item {
        padding: 1.25rem 0;

        &:not(:last-child) {
            border-bottom: 1px solid var(--color-light-brown);
        }

        &:first-child {
            padding-top: 0;
        }

        &:last-child {
            padding-bottom: 0;
        }

        @media (width >= 768px) {
            padding: 1rem 0;

            &:not(:last-child) {
                border-bottom: none;
            }
        }
    }
}

.news-card-date {
    margin-bottom: 0.5rem;
    font-size: var(--text-en-10);
    color: var(--color-brown);

    @media (width >= 768px) {
        font-size: var(--text-en-12);
    }
}

.news-card-title {
    display: -webkit-box;
    overflow: hidden;
    font-size: var(--text-ja-15);
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;

    @media (width >= 768px) {
        font-size: var(--text-ja-16);
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
}

.news-section-link-wrapper {
    margin-top: 2.5rem;

    @media (width >= 768px) {
        justify-self: end;
        margin-top: 5rem;
    }
}

.top-pilates-k-smart{
    padding-bottom: 70px;

    @media (width >= 768px) {
        padding: 80px 0;
    }

    .wide-wrapper{
        @media (width >= 768px) {
            max-width: 850px;
        }
    }

    img{
        max-width: 100%;
    }

    .btn-list{
        gap: 10px;
        margin-top: 40px;
        text-align: center;

        .btn-list-box{
            display: inline-block;

            @media (width >= 768px) {
                display: flex;
                gap: 50px;
                align-items: center;
                justify-content: center;
            }

            .link{
                margin-bottom: 10px;

                @media (width >= 768px) {
                        margin: 0;
                }
            }
        }

        .flexibility-arrow-text{
            min-width: 70px;
            text-align: left;

            @media (width >= 768px) {
                min-width: auto;
            }
        }
    }
}

.top-appeal{
    padding: 0 0 88px;

    @media (width >= 768px){
        padding-bottom: 160px;
    }

    img{
        max-width: 100%;
    }

    .wide-wrapper{
        @media (width >= 768px){
            max-width: 1280px;
            margin: 0 auto;
        }
    }

    .top-appeal-box{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding-top: 55px;
       border-top: 1px solid var(--color-brown);

        @media (width >= 768px) {
            gap: 40px;
            align-items: center;
            max-width: 1022px;
            padding: 80px 0 0;
            margin: 0 auto;
        }

        .featured{
            width: 100%;
            max-width: 200px;

            @media (width >= 768px) {
                width: 382px;
                max-width: 100%;
            }
        }

        .information{
            width: 100%;
            color: var(--color-dark-brown);

            @media (width >= 768px) {
                width: calc(100% - 422px);
            }

            .title{
                margin-bottom: 8px;
                font-family: var(--font-family-en);
                font-size: var(--text-en-20);
                line-height: 1.1;
                letter-spacing: 0.08em;

                @media (width >= 768px) {
                    margin-bottom: 16px;
                    font-size: var(--text-en-24);
                }
            }

            .description{
                margin-bottom: 0;
                font-size: var(--text-ja-13);
                line-height: 1.7;
                letter-spacing: 0.08em;

                @media (width >= 768px) {
                    font-size: var(--text-ja-15);
                }
            }
        }
    }
}

.top-columns{
    .cta-block-top-message-image-container{
        @media (width < 768px) {
            top: 45px;
        }
    }

    .background-full{
        @media (width < 768px) {
            display: none;
        }
    }

    .cta-block-content{
        @media (width < 768px) {
            gap: 40px;
            width: 100%;
            padding-top: 104px;
            padding-bottom: 104px;
            margin: 0;
            background: url("../img/top/column-bg.webp") no-repeat center center / cover;
            border-radius: 12px 12px 0 0;
        }
    }

    .cta-block-header .en-label{
        @media (width < 768px) {
            margin-bottom: 6px;
        }
    }
}

.top-column-slider{
    @media (width < 768px) {
        padding: 80px 0;
        background: url("../img/background/leaf.webp") no-repeat center center/cover;
    }

    .wide-wrapper{
        @media (width < 768px) {
            width: 100%;
        }
    }

    .column-slide{
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease;
        transform: translateX(-30px);

        &.show{
            opacity: 1;
            transform: translateX(0);
        }
    }
}

.top-instagram{
    padding-top: 24px;

    @media (width >= 768px) {
        padding-top: 160px;
    }
}

.column-card {
    display: block;
    padding: 1.25rem;
    border-radius: 8px;
    transition: box-shadow,background-color 0.3s ease;

    @media(width >= 768px) {
        padding: 2rem;
    }

    &:hover {
        background-color: var(--color-medium-grayish-green);
        box-shadow: 2px 2px 20px rgb(65 46 28 / 16%);
        opacity: inherit;
    }
}

.column-card-image-container{
    width: 100%;

    img {
        width: 100%;
        height: auto;
        aspect-ratio: 5 / 3;
    }
}

.column-card-body {
    display: flex;
    flex-direction: column;
    gap:0.5rem;
    width: 100%;
    margin-top: 0.625rem;
    font-size: var(--text-ja-13);

    @media(width >= 768px) {
        margin-top: 1.25rem;
        font-size: var(--text-ja-16);
    }
}

.tag {
    padding: 4px 8px;
    font-size: 12px;
    color:white;
    background-color: rgb(255 255 255 / 50%);
    border-radius: 4px;

    @media(width >= 768px) {
        color:#5E857D;
    }
}

.column-card-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.annotation{
    font-size: var(--text-ja-14);
    margin-bottom: 10px;
    margin-top: -10px;
    @media(width >= 768px) {
         margin-top: -20px;
    }
}
