body.front {
    background: #fcfcfc;
    color: #1a1a1a;
    overflow-x: hidden;
}

.front-top {
    background: #ffffff;
}

.container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 1000px) {
    .container {
        padding: 0 20px;
    }
}

.site-hero {
    position: relative;
    z-index: 3;
    overflow: visible;
    background: #ffffff;
}

.site-hero__band {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 113px;
    background: #ffde2f;
    z-index: 0;
}

.site-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 400px;
}

.site-hero__title {
    display: block;
    position: relative;
    z-index: 2;
    width: 42%;
    max-width: 420px;
    padding-top: 80px;
}

.site-hero__title img {
    width: 100%;
    height: auto;
}

.site-hero__illust {
    position: absolute;
    top: -37px;
    right: -160px;
    height: 510px;
    width: auto;
    z-index: 1;
    pointer-events: none;
}

.site-hero__lang {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 3;
}

.langselect {
    position: relative;
    width: 150px;
}

.langselect__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #171717;
    border-radius: 6px;
    font-size: 14px;
    color: #171717;
    cursor: pointer;
}

.langselect__arrow {
    flex-shrink: 0;
    transition: transform 0.2s var(--ease);
}

.langselect.is-open .langselect__arrow {
    transform: rotate(180deg);
}

.langselect__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    padding: 6px 0;
    background: #ffffff;
    border: 1px solid #171717;
    border-radius: 6px;
    list-style: none;
    overflow: hidden;
}

.langselect__menu[hidden] {
    display: none;
}

.langselect__option {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 15px;
    font-size: 14px;
    color: #171717;
    cursor: pointer;
    transition: background-color 0.15s var(--ease);
}

.langselect__option:hover,
.langselect__option.is-selected {
    background: #f0f1f3;
}

.intro {
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 0;
}

.intro__couponbook {
    position: absolute;
    top: 240px;
    right: -88px;
    width: 210px;
    height: auto;
    transform: rotate(90deg);
    pointer-events: none;
}

.intro__title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
}

.intro__desc {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #1a1a1a;
}

.intro__coupon-title {
    margin-top: 40px;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.intro__coupon-body {
    margin-top: 14px;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
}

.intro__coupon-body .accent {
    color: var(--color-primary);
}

.mapband {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.mapband img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.mapband__text {
    position: absolute;
    left: 32px;
    bottom: 30px;
    color: #1a1a1a;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.15;
}

.mapband__cta {
    position: absolute;
    top: 22%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.btn--coupon {
    height: auto;
    padding: 15px 24px;
    background: #db4139;
    color: #ffffff;
    border: 3px solid #000000;
    border-radius: 18px;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.btn--coupon:hover {
    background: #c8352e;
}

.stores {
    background: #f5f6f7;
    padding-bottom: 70px;
}

.stores__bar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    transition: box-shadow 0.2s var(--ease);
}

.stores__bar.is-stuck {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.stores__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
}

.stores__title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
}

.catfilter {
    display: flex;
    gap: 24px;
}

.catfilter__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    opacity: 0.4;
    transition: opacity 0.2s var(--ease);
}

.catfilter__item.is-active,
.catfilter__item:hover {
    opacity: 1;
}

.catfilter__item img {
    width: 41px;
    height: 41px;
}

.stores__empty {
    padding: 80px 0;
    text-align: center;
    color: #868a92;
    font-size: 15px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px 23px;
    margin-top: 32px;
}

.card {
    display: flex;
    flex-direction: column;
    color: inherit;
    min-width: 0;
}

.card.is-hidden {
    display: none;
}

.card__thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 7px;
    overflow: hidden;
    background: #f0f1f3;
    margin-bottom: 10px;
}

.card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.card:hover .card__thumb img {
    transform: scale(1.05);
}

.card__cat {
    font-size: 12px;
    font-weight: 700;
    color: #868a92;
    line-height: 16px;
}

.card__name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    line-height: 18px;
    overflow-wrap: anywhere;
    word-break: break-word;
    padding-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card__benefit-label {
    margin-top: 5px;
    padding-top: 10px;
    padding-bottom: 5px;
    border-top: 1px solid #eeeeee;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #b3261e;
}

.card__benefit {
    font-size: 16px;
    line-height: 22px;
    color: #1a1a1a;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.card__benefit b {
    font-weight: 700;
}

.more {
    display: flex;
    justify-content: center;
    padding-top: 44px;
}

.btn--more {
    height: 50px;
    padding: 0 42px;
    background: #bfbfc2;
    color: #ffffff;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
}

.btn--more:hover {
    background: #a9a9ad;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
}

.site-footer__brand {
    font-size: 18px;
    font-weight: 800;
}

.site-footer__copy {
    margin-top: 8px;
    font-size: 13px;
    color: #999999;
}

@media (max-width: 1023px) {
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .site-hero__illust {
        height: 450px;
        right: -10px;
    }
    .site-hero__title {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .site-hero__band {
        height: 74px;
    }
    .site-hero__inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        padding-bottom: 22px;
    }
    .site-hero__illust {
        position: static;
        order: 1;
        align-self: flex-end;
        height: 280px;
        width: auto;
        margin: -30px -70px -10px auto;
        top: auto;
        right: auto;
    }
    .site-hero__title {
        order: 2;
        width: auto;
        max-width: 240px;
        padding-top: 0;
    }
    .site-hero__lang {
        position: absolute;
        right: 20px;
        bottom: 20px;
        top: auto;
        z-index: 3;
    }
    .site-hero__lang .langselect {
        width: 140px;
    }
    .intro__couponbook {
        display: none;
    }
    .intro {
        padding-top: 24px;
        padding-bottom: 0;
    }
    .intro__title {
        font-size: 32px;
    }
    .intro__desc {
        font-size: 16px;
        line-height: 26px;
    }
    .intro__coupon-title {
        margin-top: 34px;
        font-size: 22px;
    }
    .intro__coupon-body {
        font-size: 12px;
    }
    .mapband {
        margin-bottom: 0;
    }
    .mapband__text {
        font-size: 20px;
        left: 20px;
        bottom: 18px;
    }
    .btn--coupon {
        padding: 13px 20px;
        font-size: 20px;
        border-width: 2.5px;
    }
    .stores {
        background: #ffffff;
    }
    .stores__bar {
        border-bottom: none;
    }
    .stores__bar.is-stuck {
        box-shadow: none;
    }
    .stores__head {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .stores__title {
        font-size: 20px;
    }
    .catfilter {
        flex: 1 1 100%;
        justify-content: space-between;
        gap: 6px;
    }
    .catfilter__item {
        flex-direction: row-reverse;
        align-items: center;
        gap: 6px;
        font-size: 12px;
    }
    .catfilter__item img {
        width: 28px;
        height: 28px;
    }
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 15px;
        margin-top: 0;
    }
    .card__thumb {
        margin-bottom: 8px;
    }
    .card__name {
        font-size: 14px;
    }
    .card__benefit-label {
        margin-top: 3px;
        padding-top: 8px;
        padding-bottom: 3px;
        font-size: 12px;
    }
    .card__benefit {
        font-size: 12px;
        line-height: 18px;
    }
    .btn--more {
        height: 45px;
        padding: 0 27px;
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .site-hero__inner {
        padding-bottom: 16px;
    }
    .site-hero__illust {
        height: 250px;
        margin: -48px -82px -18px auto;
    }
    .site-hero__lang {
        position: static;
        order: 3;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 18px;
    }
    .site-hero__lang .langselect {
        width: 100%;
    }
}