@charset "UTF-8";

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

.text-lg {
    font-size: 2.6rem;
}
@media (max-width: 767px) {
    .text-lg {
        font-size: 1.8rem;
    }
}

.font-bold {
    font-weight: bold;
}

.lp_shade {
    background: #FFF080;
    padding: 35px 0;
}

.text-red {
    color: #BA0C15;
}

.text-black {
    color: #000;
}

.appDownload--btn {
    border: none!important;
}

.grid {
    display: grid;
    grid-template-columns: 62% 36%;
    gap: 4%;
}
@media (max-width: 767px) {
    .grid {
        display: block;
    }

    .grid div:last-child {
        margin-top: 20px;
    }
}

.menu__list {
    list-style: none;
}

.menu__list li:first-child {
    margin-top: 0;
}

.menu__list li {
    margin-top: 20px;
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .menu__list li {
        margin-top: 10px;
    }
}

.menu__list li img {
    margin-right: 10px;
}

.lp_main_content {
    padding-top: 0;
}

.intro__section {
    padding-top: 70px;
    position: relative;

    &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: min(24%, 272px);
        height: 190px;
        background-image: url(/wp-content/themes/mngtr_basic/img/lp/natsumatsuricp/deco01.webp);
        background-size: contain;
        background-position: center top;
        z-index: -1;
    }
    &:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: min(24%, 272px);
        height: 190px;
        background-image: url(/wp-content/themes/mngtr_basic/img/lp/natsumatsuricp/deco02.webp);
        background-size: contain;
        background-position: center top;
        z-index: -1;
    }
}
@media (max-width: 767px) {
    .intro__section {
        padding-top: 35px;
    }
    .intro__section:before,
    .intro__section:after{
        width: 34%;
    }
}