/* picocaplusapp専用スタイル */

/* /picocaplusapp のみ非表示 */
.menu-fixed-bottom,
.menu-fixed-bottom-sp {
    display: none;
}

.picoca {
    overflow: hidden;
    font-family: "Noto Sans JP", serif;
}

@media screen and (max-width: 768px) {
    main.picoca {
        padding-bottom: 0;
    }
}

/* mv */
.picoca-mv {
    padding: 45px 0 0;
    position: relative;
    height: 790px;
    box-sizing: border-box;
    background: #F1F5F4;
}

.picoca-mv::before {
    content: "";
    display: block;
    width: 100%;
    height: 356px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.50) 75%);
    z-index: 1;
}

.picoca-mv::after {
    content: "";
    display: block;
    width: 100%;
    height: 680px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #67B26F 0%, #4CA2CD 50%, #67B26F 100%);
    background-size: 200% 200%;
    animation: GradMove 20s linear infinite;
    clip-path: polygon(0 0, 100% 0, 100% 76%, 0 100%);
}

@keyframes GradMove {
    0% { background-position: 200% 50%; }
    100% { background-position: -200% 50%; }
}

.picoca-mv__inner {
    display: flex;
    gap: 80px;
    position: relative;
    z-index: 2;
    width: 1050px;
    margin: 0 auto;
}

.picoca-mv__content {
    color: #FFF;
    margin-top: 75px;
}

.picoca-mv__title {
    font-size: 44px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 67px;
}

.picoca-mv__logo {
    width: 623px;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    position: relative;
}

.picoca-mv__logo-text {
    width: 447px;
    height: auto;
}

.picoca-mv__logo-app {
    position: absolute;
    width: 139px;
    height: auto;
    right: 24px;
    top: -27px;
    transform: rotate(0deg);
    animation: shake 3s infinite;
}

@keyframes shake {
    0%   { transform: rotate(0deg); }
    3%   { transform: rotate(6deg); }
    6%  { transform: rotate(-6deg); }
    9%  { transform: rotate(6deg); }
    12%  { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.picoca-mv__btn {
    color: #009068;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 110px;
    background: #FFF;
    box-shadow: 2px 2px 30px 0 rgba(0, 0, 0, 0.10);
    width: 372px;
    height: 80px;
    box-sizing: border-box;
    text-align: center;
    line-height: 80px;
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.picoca-mv__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #009068;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.picoca-mv__btn:hover {
    color: #FFF;
}

.picoca-mv__btn:hover::before {
    transform: translateX(0);
}

.picoca-mv__btn-sp {
    display: none;
}

.picoca-mv__device {
    flex-shrink: 0;
    width: 720px;
    height: auto;
}

.picoca-mv__device img {
    display: block;
    width: 100%;
    height: auto;
}

.scroll_down {
    position: absolute;
    width: 20px;
    height: 180px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    right: 32px;
    bottom: 80px;
}

.scroll_down::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(180deg,rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
}

.scroll_down a {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 20px;
    padding: 0px 2px 110px;
    color: #009068;
    writing-mode: vertical-lr;
    transition: .2s;
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.25px;
}

.scroll_down a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 92px;
    background: #ddd;
}

.scroll_down a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 92px;
    background: #009068;
}

.scroll_down a:after {
    animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

@media screen and (max-width: 768px) {
    .picoca-mv {
        padding: 37px 0 0;
        height: 722px;
    }

    .picoca-mv::after {
        height: 496px;
        clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
    }

    .picoca-mv::before {
        height: 188px;
    }

    .picoca-mv__inner {
        flex-direction: column;
        width: 100%;
        margin-left: calc((100vw - 315px) / 2);
        gap: 4px;
    }

    .picoca-mv__content {
        margin-top: 0;
        max-width: 100%;
    }

    .picoca-mv__title {
        font-size: 24.4px;
        line-height: 130%;
        letter-spacing: 1.42px;
        margin-bottom: 55px;
    }

    .picoca-mv__logo {
        width: 315.5px;
        margin-bottom: 0;
    }

    .picoca-mv__logo {
        margin-bottom: 3px;
    }

    .picoca-mv__logo-text {
        width: 227px;
    }

    .picoca-mv__logo-app {
        width: 70px;
        right: 10px;
        top: -27px;
    }

    .picoca-mv__device {
        width: 351px;
        height: auto;
        margin-left: 17%;
    }

    .picoca-mv__btn {
        display: none;
    }

    .picoca-mv__btn-sp {
        display: block;
        width: 330px;
        height: 59px;
        border-radius: 105.6px;
        background: #009068;
        color: #FFF;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.887px;
        text-align: center;
        line-height: 59px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: color 0.3s ease;
    }

    .picoca-mv__btn-sp::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #FFF;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
        z-index: -1;
    }

    .picoca-mv__btn-sp:hover {
        color: #009068;
    }

    .picoca-mv__btn-sp:hover::before {
        transform: translateX(0);
    }

    .scroll_down {
        width: 21px;
        height: 112px;
        right: 9px;
        bottom: 180px;
    }

    .scroll_down a {
        font-size: 14px;
        width: 21px;
        padding: 0px 2px 64px;
        letter-spacing: 0.736px;
    }

    .scroll_down a:before,
    .scroll_down a:after {
        height: 54px;
    }
}

/* 固定ダウンロードボタン */
.picoca-download-btn {
    position: fixed;
    bottom: 30px;
    right: 21px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.picoca-download-btn.is-visible {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 768px) {
    .picoca-download-btn {
        right: 10px;
    }
}

.download-btn {
    position: relative;
    z-index: 1;
}

.bird {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0;
}

/* hover時に鳥がバウンス */
.download-item:hover .bird {
    animation: birdBounce 1s ease-in-out;
}

.dl-btn-normal,
.dl-btn-hover {
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 7.78px;
}

.dl-btn-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.download-item:hover .dl-btn-normal {
    transform: scale(0.9);
}

.download-item:hover .dl-btn-hover {
    opacity: 1;
    z-index: 1;
    box-shadow: 0.119px 0.238px 0.238px 0 rgba(5, 78, 60, 0.10);
    transform: scale(0.9);
}

/* 鳥専用のバウンスアニメーション - より高く跳ねる */
@keyframes birdBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    40% {
        transform: translateY(-60px);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    }
    60% {
        transform: translateY(-30px);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    }
}

@media screen and (max-width: 768px) {
    .bird {
        top: -35px;
        width: 53px;
        height: 53px;
    }
}

/* feature */
.picoca-feature {
    background: #F1F5F4;
    padding: 121px 0 120px;
}

.picoca-feature__header {
    text-align: center;
    margin-bottom: 66px;
}

.picoca-feature__lead {
    color: #054E3C;
    font-size: 30px;
    font-weight: 700;
    line-height: 145%;
    margin-bottom: 6px;
}

.picoca-feature__title {
    color: #009068;
    font-size: 45px;
    font-weight: 700;
    line-height: 145%;
}

.picoca-feature__title span {
    color: #1AAAA0;
}

.picoca-feature__list {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.picoca-feature__item {
    position: relative;
}

.picoca-feature__content {
    background: #FFF;
    padding: 42px 47px 43px;
    position: absolute;
    top: 11px;
    width: 600px;
    box-sizing: border-box;
    filter: drop-shadow(0 3.754px 75.077px rgba(5, 78, 60, 0.15));
    border-radius: 56px;
    z-index: 1;
}

.picoca-feature__item--reverse .picoca-feature__content {
    right: 0;
}

.picoca-feature__content::before {
    content: "";
    position: absolute;
    right: -87px;
    top: 160px;
    width: 150px;
    height: 74px;
    background-image: url('../images/picocaplusapp/icon_arrow_1.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.picoca-feature__item--reverse .picoca-feature__content::before {
    right: auto;
    left: -40px;
    width: 106px;
    height: 215px;
    background-image: url('../images/picocaplusapp/icon_arrow_2.svg');
}

.picoca-feature__label {
    color: #054E3C;
    font-size: 20px;
    font-weight: 700;
    line-height: 145%;
    margin-bottom: 17px;
}

.picoca-feature__label span {
    font-size: 30px;
}

.picoca-feature__item-title {
    color: #262626;
    font-size: 33px;
    font-weight: 700;
    line-height: 145%;
    margin-bottom: 27px;
    position: relative;
    z-index: 1;
}

.picoca-feature__item-title span {
    color: #009068;
}

.picoca-feature__desc {
    color: #262626;
    font-size: 18px;
    line-height: 165%;
}

.picoca-feature__image {
    margin-left: auto;
    margin-right: 0;
    width: 694px;
}

.picoca-feature__item--reverse .picoca-feature__image {
    margin-left: 0;
    margin-right: auto;
}

.picoca-feature__image img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .picoca-feature {
        padding: 0 0 80px;
    }

    .picoca-feature__header {
        margin-bottom: 30px;
    }

    .picoca-feature__lead {
        font-size: 18px;
    }

    .picoca-feature__title {
        font-size: 26px;
    }

    .picoca-feature__list {
        gap: 50px;
    }

    .picoca-feature__item--reverse .picoca-feature__card {
        flex-direction: column;
    }

    .picoca-feature__content {
        position: relative;
        padding: 15px 27px 23px 25px;
        width: 320px;
        margin-left: auto;
        margin-right: 24px;
        border-radius: 30px;
    }

    .picoca-feature__content::before {
        width: 46px;
        height: 93px;
        left: auto;
        right: 20px;
        top: auto;
        bottom: -54px;
        background-image: url('../images/picocaplusapp/sp_icon_arrow_1.svg');
        z-index: -1;
    }

    .picoca-feature__item--reverse .picoca-feature__content::before {
        width: 46px;
        height: 93px;
        left: 20px;
        right: auto;
        bottom: -54px;
        background-image: url('../images/picocaplusapp/sp_icon_arrow_2.svg');
        z-index: -1;
    }

    .picoca-feature__label {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .picoca-feature__label span {
        font-size: 25px;
    }

    .picoca-feature__item-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .picoca-feature__desc {
        font-size: 14px;
    }

    .picoca-feature__image {
        width: calc(100% - 20px);
        margin-right: 20px;
    }

    .picoca-feature__item--reverse .picoca-feature__image {
        margin-right: 0;
        margin-left: 20px;
    }
}

/* register */
.picoca-register {
    background: #F1F5F4;
    padding: 80px 20px 205px;
}

.picoca-register__inner {
    max-width: 1220px;
    margin: 0 auto;
}

.picoca-register__header {
    text-align: center;
    margin-bottom: 59px;
}

.picoca-register__lead {
    color: #054E3C;
    font-size: 30px;
    font-weight: 700;
    line-height: 145%;
    margin-bottom: 6px;
}

.picoca-register__title {
    color: #009068;
    font-size: 45px;
    font-weight: 700;
    line-height: 145%;
}

.picoca-register__title span {
    color: #1AAAA0;
}

.picoca-register__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 46px;
    margin-bottom: 44px;
}

.picoca-register__card {
    background: #FFF;
    border-radius: 25px;
    padding: 50px 52px 51px;
}

.picoca-register__card--wide {
    width: 100%;
    margin-bottom: 44px;
}

.picoca-register__step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 45px;
}

.picoca-register__step-num {
    width: 47px;
    height: 47px;
    background: #009068;
    color: #FFF;
    font-size: 29px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 44px;
    text-align: center;
}

.picoca-register__step-title {
    color: #262626;
    font-size: 8px;
    font-size: 26px;
    font-weight: 700;
    line-height: 145%;
}

.picoca-register__desc {
    color: #262626;
    font-size: 18px;
    line-height: 165%;
    margin-bottom: 27px;
}

.picoca-register__desc .text-green {
    color: #009068;
    font-weight: 700;
}

.picoca-register__image {
    text-align: center;
}

.picoca-register__image img {
    max-width: 100%;
    height: auto;
}

.picoca-register__image--double {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.picoca-register__image--double img {
    width: calc((100% - 108px) / 2);
}

.picoca-register__image--double img.picoca-register__arrow {
    display: block;
    width: 32px;
    height: auto;
    flex-shrink: 0;
}

.picoca-register__columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 108px;
}

.picoca-register__column {
    position: relative;
}

.picoca-register__column:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: -55px;
    width: 1.8px;
    height: 100%;
    background: #D9D9D9;
}

.picoca-register__column-title {
    color: #009068;
    font-size: 24px;
    font-weight: 700;
    line-height: 165%; 
    margin-bottom: 10px;
    text-align: center;
}

.picoca-register__card--final {
    padding: 50px 52px;
}

.picoca-register__final-inner {
    display: flex;
    gap: 53px;
}

.picoca-register__final-content {
    flex: 1;
}

.picoca-register__final-content .picoca-register__desc {
    margin-bottom: 0;
}

.picoca-register__final-image {
    flex-shrink: 0;
    width: 45%;
}

.picoca-register__final-image img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .picoca-register {
        padding: 0 20px 50px;
    }

    .picoca-register__header {
        margin-bottom: 34px;
    }

    .picoca-register__lead {
        font-size: 18px;
    }

    .picoca-register__title {
        font-size: 26px;
    }

    .picoca-register__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .picoca-register__card {
        padding: 25px;
        border-radius: 15px;
    }

    .picoca-register__card--wide {
        margin-bottom: 20px;
    }

    .picoca-register__step {
        gap: 6px;
        margin-bottom: 13px;
    }

    .picoca-register__step-num {
        width: 27px;
        height: 27px;
        font-size: 21px;
        line-height: 27px;
    }

    .picoca-register__step-title {
        font-size: 20px;
    }

    .picoca-register__desc {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .picoca-register__image--double {
        flex-direction: column;
        gap: 10px;
    }

    .picoca-register__image--double img {
        width: 100%;
    }

    .picoca-register__image--double img.picoca-register__arrow {
        width: 19px;
    }

    .picoca-register__arrow {
        width: 30px;
        transform: rotate(90deg);
    }

    .picoca-register__columns {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .picoca-register__column-title {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .picoca-register__column:first-child::after {
        width: 100%;
        height: 2px;
        top: auto;
        left: 0;
        right: auto;
        bottom: -25px;
    }

    .picoca-register__card--final {
        padding: 25px 20px;
    }

    .picoca-register__final-inner {
        flex-direction: column;
        gap: 15px;
    }

    .picoca-register__final-image {
        width: 100%;
    }
}

/* notice */
.picoca-notice {
    max-width: 1220px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    padding: 45px 57px 51px 51px;
}

.picoca-notice__title {
    color: #262626;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 145%;
    margin-bottom: 26px;
}

.picoca-notice__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 99px;
}

.picoca-notice__item {
    position: relative;
}

.picoca-notice__item:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: -44px;
    width: 1.8px;
    height: 100%;
    background: #D9D9D9;
}

.picoca-notice__item-title {
    color: #F68E43;
    font-size: 18px;
    font-weight: 700;
    line-height: 165%;
}

.picoca-notice__desc {
    color: #262626;
    font-size: 16px;
    font-weight: 500;
    line-height: 165%;
    letter-spacing: -0.48px;
}

.picoca-notice__desc .text-link {
    color: #009068;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .picoca-notice {
        padding: 25px 22px;
        border-radius: 15px;
    }

    .picoca-notice__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .picoca-notice__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .picoca-notice__item-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .picoca-notice__desc {
        font-size: 13px;
    }

    .picoca-notice__item:first-child::after {
        width: 100%;
        height: 1px;
        top: auto;
        bottom: -15px;
        left: 0;
    }
}

/* faq */
.picoca-faq {
    background: #FFF;
    padding: 177px 20px 200px;
}

.picoca-faq__inner {
    max-width: 1188px;
    margin: 0 auto;
}

.picoca-faq__title {
    color: #009068;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 89px;
    margin-bottom: 40px;
}

.picoca-faq__list {
    display: flex;
    flex-direction: column;
}

.picoca-faq .faq-drop-content {
    border-top: 2px solid #F3F3F3;
    padding: 40px 0 70px;
}

.picoca-faq .faq-drop-content:last-child {
    border-bottom: 1px solid #D9D9D9;
}

.picoca-faq .faq-drop-content h4 {
    color: #262626 !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 0;
    display: flex;
    gap: 9px;
}

.picoca-faq .faq-drop-content .plus-left::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 41px;
    transform: translateY(-50%);
    width: 21px;
    height: 3px;
    background: #009068;
    border-radius: 10px;
}

.picoca-faq .faq-drop-content .plus-left::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    width: 3px;
    height: 21px;
    background: #009068;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.picoca-faq .faq-drop-content.active .plus-left::before {
    transform: translateY(-50%) scaleY(0);
}

.picoca-faq__answer {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-top: 20px;
    margin-bottom: -30px;
}

.picoca-faq__answer-label {
    color: #009068;
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    flex-shrink: 0;
}

.picoca-faq__answer-content {
    color: #262626;
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
    max-width: 900px;
}

.picoca-faq__answer-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.picoca-faq__answer-content ul li {
    list-style: disc;
    margin-bottom: 5px;
}

.picoca-faq__link {
    margin-top: 15px;
}

.picoca-faq__link a {
    color: #F68E43;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .picoca-faq {
        padding: 31px 20px 50px;
    }

    .picoca-faq__title {
        font-size: 26px;
        margin-bottom: 10px;
        line-height: 64.32px; 
    }

    .picoca-faq .faq-drop-content {
        padding: 40px 0 44px;
    }

    .picoca-faq .faq-drop-content.line {
        padding: 40px 0 65px;
    }
    
    .picoca-faq .faq-drop-content.line .picoca-faq__answer {
        margin-bottom: -50px;
    }

    .picoca-faq .faq-drop-content h4 {
        font-size: 14px;
        line-height: 24px;
        padding-right: 40px;
    }

    .picoca-faq .faq-drop-content .plus-left::before {
        top: 13px;
        right: 6.5px;
        width: 2px;
        height: 15px;
    }

    .picoca-faq .faq-drop-content .plus-left::after {
        top: 13px;
        right: 0;
        width: 15px;
        height: 2px;
    }

    .picoca-faq__answer {
        margin-top: 14px;
        line-height: 24px;
    }

    .picoca-faq__answer-label {
        font-size: 16px;
    }

    .picoca-faq__answer-content {
        font-size: 14px;
        line-height: 24px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 484px) {
    .picoca-faq .faq-drop-content {
        padding: 40px 0 55px;
    }
    .picoca-faq .faq-drop-content.line {
        padding: 40px 0 60px;
    }
}

@media screen and (max-width: 426px) {
    .picoca-faq .faq-drop-content {
        padding: 25px 0 44px;
    }
    .picoca-faq .faq-drop-content.line {
        padding: 25px 0 70px;
    }
}

/* download */
.picoca-download {
    padding-top: 100px;
    margin-top: -100px;
    position: relative;
}

.picoca-download__inner-wrapper {
    background: linear-gradient(90deg, #67B26F 0%, #4CA2CD 50%, #67B26F 100%);
    background-size: 200% 200%;
    animation: GradMove 20s linear infinite;
}

.picoca-download::before {
    content: "";
    display: block;
    width: 100%;
    height: 356px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.00) 75%);
    z-index: 1;
}

.picoca-download__inner {
    max-width: 1220px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.picoca-download__content {
    text-align: center;
    padding: 90px 0 115px;
    margin-left: 0;
    margin-right: auto;
    width: 782px;
    color: #FFF;
}

.picoca-download__lead {
    font-size: 26px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 4px;
}

.picoca-download__title {
    font-size: 33px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 34px;
}

.picoca-download__qr {
    margin-bottom: 38px;
}

.picoca-download__qr img {
    width: 197px;
    height: auto;
    margin: 0 auto;
}

.picoca-download__buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.picoca-download__button img {
    width: auto;
    height: 56px;
    display: block;
}

.picoca-download__device {
    position: absolute;
    top: 0;
    right: 0;
}

@media screen and (max-width: 768px) {
    .picoca-download {
        padding-top: 52px;
        margin-top: -52px;
    }

    .picoca-download__inner-wrapper {
        padding: 30px 0 0;
    }

    .picoca-download__inner {
        flex-direction: column;
        align-items: center;
        max-width: 390px;
    }

    .picoca-download__content {
        padding-top: 0;
        padding-bottom: 38px;
        width: 100%;
    }

    .picoca-download__lead {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .picoca-download__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .picoca-download__qr {
        margin-bottom: 32px;
    }

    .picoca-download__qr img {
        width: 80px;
        height: 80px;
        margin-left: 65px;
    }

    .picoca-download__buttons {
        gap: 12px;
        flex-direction: column;
        margin-left: 40px;
    }

    .picoca-download__button img {
        width: 130px;
        height: auto;
    }

    .picoca-download__device {
        margin-top: 83px;
    }
}
