.hero__about {
    min-height: 480px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* overlay */
.hero__about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero__about .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 1074px;
}

/* text */
.hero__about .container span {
    color: #EE1C23;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: 1%;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero__about .container h1 {
    color: #FFFFFF;
    font-family: "SVN-Sigokae";
    font-weight: 400;
    font-size: 48px;
    line-height: 124%;
    letter-spacing: 2%;
    text-align: center;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.hero__about .container p {
    color: #E0E0E0;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* story */
.story {
    background-color: #161616;
}

.story .container {
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding: 72px 0;
}

.story__text,
.promotion__text,
.inspiration__text,
.connect__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.story__text span,
.promotion__text span,
.inspiration__text span,
.connect__text span {
    color: #EE1C23;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: 1%;
    text-align: center;
}

.story__text h2,
.promotion__text h2,
.inspiration__text h2,
.connect__text h2 {
    text-align: center;
}

.story__text p,
.promotion__text p,
.inspiration__text p,
.connect__text p {
    color: #E0E0E0;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
}

.story__list {
    display: flex;
    flex-direction: column;
    gap: 72px;
    align-items: center;
    justify-content: center;
}

.story__list__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 856px;
    align-items: center;
}

.story__list__item:nth-child(even) {
    grid-template-areas: "image content";
}

.story__list__item:nth-child(odd) {
    grid-template-areas: "content image";
}

.story__list__item .content {
    grid-area: content;
}

.story__list__item img {
    grid-area: image;
}

.story__list__item .content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story__list__item .content h3 {
    color: #FFFFFF;
    font-family: "SVN-Sigokae";
    font-size: 32px;
    line-height: 136%;
    letter-spacing: 1%;
}

.story__list__item .content p {
    color: #E0E0E0;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
}

.story__list__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.promotion {
    background-color: #131313;

}

.promotion .container {
    padding: 72px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.promotion__info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.promotion__info__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #141414;
    border: 1px solid #212121;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.promotion__info__card img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.promotion__info__card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promotion__info__card__content h3 {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 24px;
    line-height: 135%;
    letter-spacing: 1%;
    text-align: center;
    font-family: "SVN-Sigokae";
}

.promotion__info__card__content p {
    color: #BDBDBD;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
}

.view__promotion {
    padding: 12px 20px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 2%;
    background-color: #EE1C23;
    display: flex;
    margin: 0 auto;
}

.inspiration {
    background-color: #161616;
}

.inspiration .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 72px 0;
}

.inspiration__card {
    width: 100%;
    height: 458px;
}

.inspiration__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspiration__card.card__even {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.inspiration__card.card__even img {
    height: 50%;
}
/*  */

.connect {
    min-height: 480px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* overlay */
.connect::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.connect .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.social__yakiniku {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social__yakiniku a {
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.social__yakiniku a img {
    width: 48px;
    height: 48px;
}

.social__yakiniku a span {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 24px;
    line-height: 135%;
    letter-spacing: 1%;
    text-align: center;
    font-family: "SVN-Sigokae";
}

@media screen and (max-width:1290px) {
    .hero__about .container h1 {
        font-size: 36px;
    }
}

@media screen and (max-width:1024px) {
    .hero__about .container h1 {
        font-size: 28px;
    }

    .story__list {
        gap: 56px;
    }

    .story__list__item .content h3 {
        font-size: 24px;
    }

    .promotion__info {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {

    .story .container,
    #promotion .container {
        padding: 48px 10px;
        gap: 48px;
    }

    .social__yakiniku a span {
        font-size: 20px;
    }

    .story__list__item {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "image" !important;
    }

    .promotion__info {
        grid-template-columns: 1fr;
    }

    .story__list__item .content h3 {
        font-size: 22px;
    }

    .inspiration .container {
        padding: 48px 10px;
    }
}

@media screen and (max-width:560px) {
    .story__list__item {
        gap: 24px;
    }
}