.l-header.-salad_fair {
    border: none;
    height: auto;
    position: relative;
    z-index: 99;
    .inner {
        width: 1500px;
        padding: 30px 0 25px;
        display: flex;
        align-items: center;
        height: auto;
        p {
            position: relative;
            z-index: 2;
            margin-left: auto;
        }
        .w-btn-sp_menu {
            width: 44px;
            aspect-ratio: 1/1;
        }
        .btn-sp_menu {
            width: 44px;
            aspect-ratio: 1/1;
            position: fixed;
        }
    }
    @media (max-width:1600px) {
        .inner {box-sizing: border-box;
            width: 100%;
            padding-left: 2vw;
            padding-right: 2vw;
        }        
    }
    @media (max-width:768px) {
        .inner {
            padding: calc((24 / 768) * 100vw) calc((35 / 768) * 100vw);
            height: auto;
        }
        h1 {
            img {
                position: relative;
                z-index: 2;    
                width: calc((208 / 828) * 100vw);
                height: auto;
            }
        }
        p {
            img {
                width: calc((361 / 828) * 100vw);
                height: auto;
            }
        }
    }
}

.btn-sp_menu {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}
.btn-sp_menu span {
    position: absolute;
    display: block;
    width: 75%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    top: calc(50% - 1px);
    left: 50%;
    transform: translate(-50%, 0);
    transition: .3s all ease;
}
.btn-sp_menu span:nth-of-type(1) {
    top: 20%;
}
.btn-sp_menu span:nth-of-type(3) {
    top: 75%;
}
.btn-sp_menu.is-active span:nth-of-type(1) {
    top: calc(50% - 2px);
    transform: translate(-50%, 0) rotate(45deg);
}
.btn-sp_menu.is-active span:nth-of-type(3) {
    top: calc(50% - 2px);
    transform: translate(-50%, 0) rotate(-45deg);
}
.btn-sp_menu.is-active span:nth-of-type(2) {
    width: 0;
}
@media screen and (max-width: 750px) {
    .btn-sp_menu {}
}

.l-navigation {
    position: fixed;
    height: 100vh;
    background: rgba(242,242,242,.9);
    top: 0;
    right: 0;
    padding-top: 126px;
    width: 100%;
    max-width: 450px;
    transition: .5s scale;
    overflow: clip;
    scale: 0 1;
    transform-origin: right center;
    .is-active + & {
        scale: 1 1;
    }
    @media (max-width:768px) {
        max-width: none;
    }    
}
.l-navigation__list {
    font-size: 18px;
    line-height: 1;
    display: grid;
    gap: 5px;
    padding: 0 4%;
    width: 92%;
    margin: 0 auto;
    a {
        display: block;
        background: #fff;
        padding: 1em 1.5em;
        span {
            display: flex;
            align-items: center;
            justify-content: space-between;
            &::after {
                content: '';
                width: 1em;
                aspect-ratio: 1/1;
                background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22ai%20ai-ChevronRight%22%3E%3Cpath%20d%3D%22M8%204l8%208-8%208%22%2F%3E%3C%2Fsvg%3E')50% 50% no-repeat;
                background-size: contain;
                transition: .3s background;
                rotate: 90deg;
            }
        }
        &.is-disabled {
            pointer-events: none;
            filter: grayscale(.5) opacity(.2);
        }
        @media (hover:hover) {
            &:hover {
                span {
                    &::after {
                        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23e5006e%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22ai%20ai-ChevronRight%22%3E%3Cpath%20d%3D%22M8%204l8%208-8%208%22%2F%3E%3C%2Fsvg%3E');
                    }    
                }
            }    
        }
    }
}



/* セクションルールcssの共通化  */
.l-section-common {
    padding: 5em 0;
    @media (max-width: 768px) {
        padding: 3em 0;
    }
    &.-pink {
        background: #fdf3f8;
    }
    &:not(.-event) {
        @media (max-width: 768px) {
            .inner {
                width: 90.625%;
            }
        }
    }
    &.-event {
        @media (max-width: 768px) {
            .inner {
                width: 100%;
            }
        }
    }
}
.c-list-recipes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: min(calc((16 / 1240) * 100vw), 16px);
    @media (max-width:768px) {
        grid-template-columns: auto;
    }
}
.c-list-recipes__item {
    &:is(.-salad_fair li) {
        display: block;
        padding-bottom: 0;
    }
    a {
        display: block;
        background: #fff;
        border-radius: 5px;
        overflow: clip;
        filter: drop-shadow(0 0 16px rgba(0,0,0,.1));
    }
    .c-list-recipes__item__img {
        img {
            width: 100%;
            height: auto;
        }
    }
    .c-list-recipes__item__name {
        padding: 1.2em 1em;
        span {
            display: flex;
            justify-content: space-between;
            &::after {
                content: '';
                width: 1em;
                aspect-ratio: 1/1;
                background: url(/shared/img/arrow_b.png) no-repeat left center;
                background-size: contain;
            }
        }
    }
}

.button.-wide_style {
    max-width: 800px;
    margin: 0 auto;
    span {
        display: block;
        width: 98.5%;
        padding: 0 24px;
        background-position: right center;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        height: auto;
        line-height: 1.4;
        padding: 8px;
    }
}
.c-blk-movie {
    display: inline-flex;
    gap: 2em;
    align-items: center;
    .c-blk-movie-row {
        &.-img {
            position: relative;
            &::after {
                content: '';
                display: block;
                width: 40px;
                aspect-ratio: 1/1;
                background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23e60817%22%20stroke-width%3D%222%22%20class%3D%22ai%20ai-CircleTriangleRightFill%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12%201C5.925%201%201%205.925%201%2012s4.925%2011%2011%2011%2011-4.925%2011-11S18.075%201%2012%201zm-2%207.8c0-.295.152-.566.396-.705a.71.71%200%200%201%20.77.04l4.5%203.2A.815.815%200%200%201%2016%2012a.815.815%200%200%201-.334.666l-4.5%203.2a.71.71%200%200%201-.77.04A.809.809%200%200%201%2010%2015.2V8.8z%22%2F%3E%3C%2Fsvg%3E') 50% 50% no-repeat;
                background-size: contain;
                position: absolute;
                left: 50%;
                top: 50%;
                translate: -50% -50%;
            }
            img {
                transition: .3s filter;
            }
        }
        &.-text {
            flex: 1;
            .-label {
                font-family: 'Noto Sans Japanese', sans-serif;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                color: #e5006e;
                padding: 5px 2em;
                background: #fff;
                border-radius: 30px;
                font-weight: normal;
                font-size: 14px;
            }
            p {
                font-size: 14px;
                line-height: 1.7;
                *+& {
                    margin-top: 1em;
                }
            }
            @media (max-width: 768px) {
                text-align: center;
            }        
        }
    }
    @media (hover:hover) {
        &:hover {
           img {
            filter: brightness(.9);
           } 
        }
    }
    @media (max-width: 768px) {
        display: flex;
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
    }    
}

.c-list-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    @media (max-width: 768px) {
        grid-template-columns: auto;    
        gap: 1em;
    }
}
.c-list-columns__item {
    display: grid;
    grid-template-columns: 200px auto;
    gap: 10px;
    height: 100%;
    position: relative;
    &::after {
        content: '';
        width: 14px;
        aspect-ratio: 1/1;
        background: url(/shared/img/arrow_b.png) 50% 50% no-repeat;
        background-size: contain;
        position: absolute;
        right: 12px;
        bottom: 12px;
    }
    .c-list-columns__item__img {
        display: flex;
        overflow: clip;
        align-items: center;
        justify-content: center;
        img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
    }    
    .c-list-columns__item__text {
        display: flex;
        align-items: center;
        border-top: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        padding: 1.2em 0;
        h4 {
            font-weight: 400;
            font-family: 'Noto Sans Japanese', sans-serif;
            .-small {
                font-size: 14px;
            }
            .-title {
                display: block;
                font-size: 16px;
                color: #e5006e;
            }
        }
        p {
            font-size: 14px;
            line-height: 1.6;
            display: -webkit-box;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 2;
            margin-top: 1em; 
        }
    }
    @media (max-width: 768px) {
        grid-template-columns: 20vw auto;
        .c-list-columns__item__text {
            padding-right: 2em;
            h4 {
                .-small {
                    font-size: 12px;
                }
                .-title {
                    font-size: 14px;
                }
            }    
            p {
                display: none;
            }    
        }
    }
}
.c-grid-features {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.6em;
    .c-grid-features__row {
        &.-text {
            padding: 1em auto;
            p {
                line-height: 1.7;
            }
        }
    }
    @media (max-width: 768px) {
        grid-template-columns: auto;
        .c-grid-features__row.-img {
            text-align: center;
        }
    }
}

* + .h3_line {
    margin-top: 2.5em;
}
.h3_line + * {
    margin-top: 2em;
}

.c-list-feature_cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, calc((20 / 1240) * 100vw), 20px);
    *+& {
        margin-top: 20px;
    }
    @media (max-width:768px) {
        grid-template-columns: auto;
    }
}
.c-list-feature_cards__item {
    background: #fdf3f8;
    padding: 32px;
    border-radius: 5px;
    .c-grid-box {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1em;
        .c-img {}
        p {
            line-height: 1.7;
        }
    }
    @media (max-width:768px) {
        padding: calc((40 / 768) * 100vw) calc((24 / 768) * 100vw);
    }
}
.hl-feature_cards__item {
    font-size: 20px;
    font-weight: normal;
    padding-bottom: 16px;
    margin-bottom: 1em;
    border-bottom: 2px solid #d8d8d8;
    position: relative;
    &::after {
        content: '';
        display: block;
        background: #e5006e;
        height: 2px;
        width: 4em;
        position: absolute;
        bottom: -2px;
    }
    @media (max-width:768px) {
        font-size: calc((32 / 768) * 100vw);
    }
}

.-pink {
    color:#e5006e!important;
}

.hl-section_sub {
    font-size: 24px;
    line-height: 1;
    font-weight: normal;
    letter-spacing: .1em;
    font-family: 'Noto Sans Japanese', sans-serif;
    margin-bottom: 1em;
    @media (max-width: 768px) {
        .ttl-withlabel {
            font-size: 20px;
        }
    }
    *+& {
        margin-top: 3em;
    }
}
.tbl-analysis {
    border-top:1px solid #afafaf;
    border-left:1px solid #afafaf;
    width: 100%;
    box-sizing: border-box;
}
.tbl-analysis th,
.tbl-analysis td {
    border-right:1px solid #afafaf;
    border-bottom:1px solid #afafaf;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2;
}
.tbl-analysis thead th {
    padding: 20px 0;
    background: #f7ede0;
    font-weight: normal;
    width: calc(100% / 8);
}
.tbl-analysis thead th:first-of-type {
    background: #fff;
    width: 90px;
}
.tbl-analysis td {
    padding: 10px 0;
    width: calc(100% / 8);
}
.tbl-analysis tbody th span {
    padding: 20px 0;
    display: block;
}
.tbl-analysis tr:nth-of-type(1) th span {
    border-left:6px solid #e5006e;
}
.tbl-analysis tr:nth-of-type(2) th span {
    border-left:6px solid #daa665;
}
.tbl-analysis .-label {
    display: inline-flex;
    color:#fff;
    background: #e5006e;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .ttl-withlabel {
        display: block;
        margin: 16px 0;
        gap: 12px;
    }
    .box-scroll {
        overflow-x: auto;
    }
    .tbl-analysis {
        width: 600px;
        font-size: 1.3rem;
    }
    .tbl-analysis td {
        padding: 16px 10px;
    }
    .tbl-analysis th {
        padding: 0;
    }
    .tbl-analysis thead th {
        padding: 16px 10px;
    }    
}

.text-link {
        display: flex;
        gap: 1em;
        color: #e5006e;
        &::before {
            content: '';
            display: block;
            width: 1em;
            aspect-ratio: 1/1;
            background: url(/shared/img/arrow_p.png) no-repeat left 30%;
            background-size: contain;
        }
        @media(hover:hover) {
            &:hover {
                text-decoration: underline;
            }
        }
}

.c-list-faq {
    > *+* {
        margin-top: 1.5em;
        @media (max-width:768px) {
            margin-top: .65em;
        }
    }
    *+& {
        margin-top: 3em;
    }
    
}
.c-list-faq__item {
    .c-list-faq__item__toggle {
        background: #f3f1ec;
        padding: 16px 32px;
        cursor: pointer;
        transition: .3s color;
        span {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 16px;
            &::after {
                content: '';
                width: 12px;
                aspect-ratio: 2/1;
                clip-path: polygon(0 0, 100% 0, 50% 100%);
                background: #e5006e;
                transition: .3s rotate;
            }
        }
        @media (max-width:768px) {
            padding: 14px 20px;            
            span {
                font-size: 14px;
            }
        }
        &.is-open {
            span {
                &::after {
                    rotate: 180deg;
                }
            }
        }
        @media (hover:hover) {
            &:hover {
                color: #e5006e;
            }
        }
    }
    dd {
        background: #fdf3f8;
        padding: 0 32px;
        overflow: hidden;
        max-height: 0;
        transition: .3s padding;
        p {
            line-height: 1.7;
        }
        @media (max-width:768px) {
            padding: 0 20px;
        }    
        .is-open + & {
            padding: 16px 32px;
            max-height: none;
            @media (max-width:768px) {
                padding: 14px 20px;
            }    
        }
    }
}
.sec-pickup {
    position: relative;
    @media (max-width:768px) {
        width: 90.625%;
        margin: 0 auto;
    }
    
}
.c-btn-more {
    position: absolute;
    left: 50%;
    translate: -50% 0;
    background: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    padding: 5px 10px;
    border-radius: 50px;
    border: none;
    bottom: -20px;
    z-index: 10;
    cursor: pointer;
    transition: .3s filter, .3s box-shadow;
    span {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        position: relative;
        &::before {
            content: '一覧を全て見る';
        }
        &::after {
            content: '';
            width: 1em;
            aspect-ratio: 1/1;
            background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22ai%20ai-Plus%22%3E%3Cpath%20d%3D%22M12%2020v-8m0%200V4m0%208h8m-8%200H4%22%2F%3E%3C%2Fsvg%3E') 50% 50% no-repeat;
            background-size: contain;
            position: absolute;
            right: 5px;
            transition: .3s rotate;
        }
    }
    @media (hover:hover) {
        &:hover {
            filter: invert(1);
            box-shadow: 0 0 10px rgba(0,0,0,.1);

        }
    }
    &.is-open {
        bottom: -40px;
        span {
            &::before {
                content: '一覧を閉じる';
            }
            &::after {
                rotate: 45deg;
            }    
        }
    }
}
.c-blk-output-pickup {
    *+& {
        margin-top: 2.5em;
    }
}
.c-blk-output-pickup {
    max-height: 14em;
    overflow: hidden;
    position: relative;
    transition: .3s max;
    &::after {
        content: '';
        width: 100%;
        height: 50%;
        position: absolute;
        left: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, #fff 90%);
        z-index: 2;
        transition: scale;
        transform-origin: center bottom;
    }
    .is-open + & {
        max-height: none;
        &::after {
            scale: 1 0;
        }    
    }
}

.c-list-events {
    &.-salad_fair {
        margin-top: 90px;
        grid-template-columns: repeat(2, 1fr);
        @media (max-width: 768px) {
            grid-template-columns: 1fr;
            gap: 2.4em;
            margin: 6em 0 2em;
        }
        a {
            gap: 0;
            @media (hover:hover){
                &:hover {
                    .c-list-events__item__text {
                        box-shadow: 0 0 30px rgba(5,58,128,.2);
                        border-color: #e5006e;
                        &::after {
                            background-color: #e5006e!important;
                        }
                    }
                }
            }            
        }
        .c-list-events__item {
            display: grid;
            grid-template-rows: subgrid;
            grid-row: span 2;
            position: relative;
            gap: 0;
            &.-nolink {
                pointer-events: none;
            }
            &.-nowon::before {
                content: '';
                display: block;
                width: 90px;
                height: 95px;
                background: url(/salad_fair/parts/img/icon_event_nowon.webp) 50% 50% no-repeat;
                background-size: contain;
                position: absolute;
                left: -20px;
                top: -25px;
                z-index: 3;
                @media(max-width: 768px) {
                    width: calc((90 / 600) * 100vw) ;
                    height: calc((95 / 600) * 100vw) ;
                    left: 5px;
                    top: -15px;
                }
            }
            *+p {
                margin-top: .5em;
            }
            @media(max-width: 768px) {
                p {
                    display: block;
                    font-size: 13px;
                }
            }
        }
        .c-list-events__item__img {
            position: relative;
            z-index: 1;
            img {
                width: 100%;
                height: auto;
            }
        }        
        .c-list-events__item__text {
            transition: .3s box-shadow, .3s color, .3s border-color;
            width: 92.3%;
            margin: -1em auto 0;
            background: #fff;
            border: 1px solid #053a7b;
            padding: 20px 32px;
            box-sizing: border-box;
            position: relative;
            z-index: 2;
            &:is(a:not(.-nolink) div) {
                &::after {
                    content: '';
                    width: 32px;
                    aspect-ratio: 1/1;
                    background: #053a7b url(/shared/img/arrow.png) 50% 50% no-repeat;
                    background-size: 12px auto;
                    position: absolute;
                    right: 0;
                    bottom: 0;
                    transition: .3s background;
                }                
            }
            @media(max-width: 768px) {
                padding: calc((32 / 768) * 100vw) calc((24 / 768) * 100vw);
            }
        }
    }
}
.hl-event-item {
    &::before { display: none;}
    padding: 0;
    line-height: 1.3;
    padding-bottom: 18px;
    border-bottom: 1px dotted currentColor;
    margin-bottom: 20px;
    .-sub { font-size: 16px; display: block; line-height: 24px;
        @media(max-width: 768px) {
            font-size: 12px;
        }
    }
    .-title { 
        font-size: 20px; color: #e5006e; display: block;
        @media(max-width: 768px) {
            font-size: 16px;
        }
        &.-small {
            font-size: 18px;
            @media(max-width: 768px) {
                font-size: 16px;
            }    
        }
     }
    .-img { text-align: center; display: block;}
    @media(max-width: 768px) {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }    
}
#sec-campaign {
    background: #f0eee8;
}
.mv.-salad_fair {
    .inner {
        @media (max-width: 768px){
            padding: 2em 0;

        }
    }
    &::after {
        background: #f8f7f3;
    }
    .c-leartext {
        text-align: center;
        background-color: #f8f7f3; /* 背景色 */
        background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #f8f7f3 50%, #f8f7f3 100%), /* 点線1の色 */
                          linear-gradient(180deg, #ccc 1px, transparent 1px); /* 点線2の色と太さ */
        background-size: 8px 100%,
                         100% 3em;
        line-height: 3em;
        padding-bottom: 1px;
        @media (max-width: 768px){
            background-size: 8px 100%, 100% 2.4em;
            line-height: 2.4em;
            text-align: left;
            br {
                display: none;
            }
        }
    }
    .hl-mv-copy {
        position: absolute;
        width: 866px;
        top: 132px;
        left: -10px;
        @media (max-width: 768px) {
            width: calc((258 / 768) * 100vw );
            top: calc((20 / 768) * 100vw);
            left: auto;
            right: calc((32 / 768) * 100vw);
            display: flex;
            flex-direction: row-reverse;
            gap: 5px;
        }
        span {
            display: inline-block;
            position: relative;
            img {
                position: relative;
                z-index: 1;
            }
            &.c-icon {
                position: absolute;
                left: -70px;
                top: -100px;
                z-index: 0;
                @media (max-width: 768px) {
                    display: none;
                }
            }
            &.c-copy1,
            &.c-copy2,
            &.c-copy3 {
                text-align: center;
                padding: 5px 20px;
                @media (max-width: 768px) {
                    padding: calc((24 / 768) * 100vw) calc((10 / 768) * 100vw);
                }
                &::before {
                    content: '';
                    display: block;
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    left: 0;
                    top: 0;
                    background: rgba(255,255,255,.9);
                    z-index: 0;
                }
            }
            &.c-copy1 {
                @media (max-width: 768px) {
                    height: calc((727 / 828) * 100vw);
                    img {
                        width: calc((71 / 828) * 100vw);
                        height: auto;
                    }
                }
            }
            &.c-copy2 {
                margin: 12px 0 0 56px;
                @media (max-width: 768px) {
                    margin: 2.5em 0 0 0;
                    img {
                        width: calc((71 / 828) * 100vw);
                        height: auto;
                    }
                }
            }
            &.c-copy3 {
                padding: 10px 20px;
                margin: 12px 0 0 24px;
                @media (max-width: 768px) {
                    margin: 1em 0 0 0;
                    padding: calc((20 / 768) * 100vw) calc((10 / 768) * 100vw);
                    height: calc((605 / 828) * 100vw);
                    img {
                        width: calc((35 / 828) * 100vw);
                        height: auto;
                    }
                }
            }
        }
    }
    .mv_inner {
        width: 1500px;
        height: 590px;
        position: relative;
        box-shadow: none;
        @media (max-width: 1600px) {
            width: 100%;
        }
        @media (max-width: 768px) {
            width: 100%;
            height: calc((1200 / 828) * 100vw);
        }
        img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
    }
    .catch-common {
        height: 590px;
    }
}
.-marker {
    background:linear-gradient(transparent 60%, #ff6 60%);
}
