@charset "UTF-8";

/* ==========================================================================
   Neuhaus Brand Page Styles
   ========================================================================== */

/* Top Section */
.nh-top {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 390px;
    max-width: none;
    margin: 0;
    padding-left: max(0px, calc((100vw - 1440px) / 2));
    box-sizing: border-box;
    background-color: #fff;
}

.nh-intro {
    flex: 0 0 min(42.7vw, 614.88px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.nh-intro__inner {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
}

.nh-intro__logo {
    width: 200px;
}

.nh-intro__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.nh-intro__text {
    font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #383838;
    letter-spacing: 0;
}

.nh-fv {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    --nh-fv-slide-width: 1059px;
    --nh-fv-scroll-duration: 15s;
}

.nh-fv__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
}

.nh-fv__track {
    position: absolute;
    inset: 0;
    display: flex;
    width: calc(var(--nh-fv-slide-width) * 3);
    height: 100%;
    animation: nh-fv-scroll var(--nh-fv-scroll-duration) linear infinite;
}

.nh-fv__picture {
    display: block;
    flex: 0 0 var(--nh-fv-slide-width);
    width: var(--nh-fv-slide-width);
    height: 100%;
}

.nh-fv__picture--duplicate {
    display: block;
}

.nh-fv__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1024px) {
    .nh-top {
        flex-direction: column;
        height: auto;
        padding-left: 0;
    }

    .nh-intro {
        flex: none;
    }

    .nh-fv {
        width: 100%;
    }

    .nh-fv__inner {
        aspect-ratio: 1059 / 390;
        height: auto;
    }

    .nh-fv__track,
    .nh-fv__picture {
        height: 100%;
    }

    .nh-fv__picture img {
        max-width: none;
        height: 100%;
    }
}

@media screen and (max-width: 768px) {
    .nh-top {
        min-height: 0;
    }

    .nh-fv {
        --nh-fv-slide-width: 684px;
        --nh-fv-scroll-duration: 15s;
    }

    .nh-fv__inner {
        aspect-ratio: 684 / 252;
        height: 252px;
    }

    .nh-intro {
        padding: 30px 20px;
    }

    .nh-intro__inner {
        gap: 30px;
    }

    .nh-intro__logo {
        width: 155px;
    }

    .nh-intro__text {
        font-size: 14px;
        line-height: normal;
    }

    .nh-fv__picture img {
        width: 100%;
    }
}

@keyframes nh-fv-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(var(--nh-fv-slide-width) * -1));
    }
}

/* Valentine Banner */
.nh-banner {
    background-color: #fff;
    padding-top: 60px;
    margin: auto 10px;
}

.nh-banner__inner {
    position: relative;
    max-width: 1202px;
    height: 200px;
    margin: 0 auto;
    padding: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nh-banner__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/neuhaus/banner-bg.jpg");
    background-repeat: no-repeat;
    background-size: 127.08% auto;
    background-position: 0.21% 55.4%;
    z-index: 1;
}

.nh-banner__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 17px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(252, 48, 48, 0.36);
    pointer-events: none;
    z-index: 2;
}

.nh-banner__content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.nh-banner__titles {
    color: #fff;
    text-align: center;
}

.nh-banner__sub-en {
    font-family: "YuMincho", "Yu Mincho", "MS Mincho", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 21px;
}

.nh-banner__main-ja {
    font-family: "YuMincho", "Yu Mincho", "MS Mincho", serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: 0.263em;
    margin-bottom: 16px;
}

.nh-banner__sub-ja {
    font-family: "YuMincho", "Yu Mincho", "MS Mincho", serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: 0.3em;
}

.nh-banner__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    height: 52px;
    padding: 0 16px;
    background-color: #ad0021;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: background-color 0.3s ease;
}

.nh-banner__btn:hover {
    background-color: #8a001a;
}

@media screen and (max-width: 1024px) {
    .nh-banner {
        padding-top: 20px;
    }

    .nh-banner__inner {
        height: auto;
    }

    .nh-banner__content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    .nh-banner__inner {
        padding: 8px;
    }

    .nh-banner__inner::after {
        border-width: 8px;
    }

    .nh-banner__sub-en {
        font-size: 13px;
        letter-spacing: 0.1em;
        margin-bottom: 8px;
    }

    .nh-banner__main-ja {
        font-size: 18px;
        letter-spacing: 0.263em;
        margin-bottom: 10px;
    }

    .nh-banner__sub-ja {
        font-size: 12px;
        letter-spacing: 0.3em;
    }

    .nh-banner__btn {
        width: 100%;
        max-width: 247px;
        height: 36px;
        padding: 0 10px;
        font-size: 11px;
    }
}

/* Page Navigation */
.nh-nav {
    background-color: #fff;
    margin-top: 60px;
}

.nh-nav .l-inner {
    padding: 0 20px;
}

.nh-nav__list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nh-nav__item {
    width: 300px;
    height: 60px;
    background-color: #f3f3f3;
}

.nh-nav__item a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-bottom: 5px;
    color: #383838;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.11em;
    text-align: center;
}

.nh-nav__icon {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 8px;
    height: 4px;
}

.nh-nav__icon img {
    display: block;
    width: 8px;
    height: 4px;
    object-fit: contain;
}

#nh-items {
    scroll-margin-top: 107px;
}

#nh-beyond {
    scroll-margin-top: 127px;
}

#nh-concept {
    scroll-margin-top: 127px;
}

@media screen and (max-width: 1024px) {
    .nh-nav__list {
        gap: 10px;
    }

    .nh-nav__item {
        width: calc((100% - 20px) / 3);
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .nh-nav {
        margin-top:20px;
    }

    .nh-nav__list {
        gap: 8px;
    }

    .nh-nav__item {
        width: calc((100% - 16px) / 3);
        height: 70px;
    }

    .nh-nav__item a {
        font-size: 13px;
        line-height: 1.3;
        letter-spacing: 0.05em;
    }

    .nh-nav__icon {
        bottom: 8px;
    }

    #nh-items {
        scroll-margin-top: 60px;
    }

    #nh-beyond {
        scroll-margin-top: 100px;
    }

    #nh-concept {
        scroll-margin-top: 100px;
    }
}

/* Items Section */
#nh-items {
    padding-top: 60px;
    padding-bottom: 60px;
}

#nh-items .btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 52px;
    margin: 40px auto 0;
    background-color: var(--button-gold01);
    border-radius: 5px;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease;
}

#nh-items .btn-more:hover {
    background-color: var(--greige05);
}

@media screen and (max-width: 768px) {
    #nh-items {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    #nh-items .btn-more {
        width: 100%;
        max-width: 320px;
        height: 48px;
        font-size: 14px;
    }
}

/* Valentines Section */
.nh-valentines {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background-color: #000;
}

.nh-valentines__bg {
    position: absolute;
    inset: 0;
    background-image: url("../assets/neuhaus/valentine-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 48%;
    z-index: 1;
}

.nh-valentines__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(252, 48, 48, 0.36);
}

.nh-valentines__inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-valentines__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.nh-valentines__card {
    position: relative;
    width: 483px;
    height: 360px;
    flex-shrink: 0;
    padding: 62px 40px 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #383838;
    text-align: center;
}

.nh-valentines__card::before,
.nh-valentines__card::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.nh-valentines__card::before {
    width: 463px;
    height: 342px;
    border: 4px solid #910b0b;
}

.nh-valentines__card::after {
    width: 447px;
    height: 326px;
    border: 1px solid #910b0b;
}

.nh-valentines__card-titles,
.nh-valentines__card-btn-area {
    position: relative;
    z-index: 3;
}

.nh-valentines__card-titles {
    width: 100%;
}

.nh-valentines__card-sub-en {
    font-family: "YuMincho", "Yu Mincho", "MS Mincho", serif;
    font-size: 24.876px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 27px;
    text-box: normal;
}

.nh-valentines__card-main-ja {
    font-family: "YuMincho", "Yu Mincho", "MS Mincho", serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: 0.15em;
    margin-bottom: 21px;
    text-box: normal;
}

.nh-valentines__card-sub-ja {
    font-family: "YuMincho", "Yu Mincho", "MS Mincho", serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: 0.21em;
    text-box: normal;
}

.nh-valentines__card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    height: 52px;
    padding: 0 16px;
    background-color: #ad0021;
    border-radius: 5px;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: background-color 0.3s ease;
}

.nh-valentines__card-btn:hover {
    background-color: #8a001a;
}

.nh-valentines__deco-ribbon {
    position: absolute;
    left: -91px;
    top: -167px;
    width: 360px;
    height: 385px;
    background-image: url("../assets/neuhaus/valentine-ribbon.png");
    background-repeat: no-repeat;
    background-size: 305px auto;
    background-position: center;
    transform: rotate(-63.45deg);
    transform-origin: center;
    z-index: 4;
    pointer-events: none;
}

.nh-valentines__brand {
    width: 650px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.nh-valentines__brand-logo {
    width: 202px;
    height: 75px;
    aspect-ratio: 202 / 75;
}

.nh-valentines__brand-title {
    width: 446px;
    height: 44px;
    aspect-ratio: 446 / 44.358;
}

.nh-valentines__brand-year {
    width: 107px;
    height: 37px;
    aspect-ratio: 107.04 / 36.7356;
}

.nh-valentines__brand img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1024px) {
    .nh-valentines {
        height: auto;
        padding: 60px 0;
    }

    .nh-valentines__inner {
        padding: 0 20px;
    }

    .nh-valentines__content {
        flex-direction: column-reverse;
        gap: 60px;
    }

    .nh-valentines__card {
        width: 90%;
        max-width: 483px;
        height: auto;
        min-height: 360px;
        padding: 44px 20px 44px;
    }

    .nh-valentines__brand {
        width: 90%;
        max-width: 446px;
    }

    .nh-valentines__brand-logo {
        width: 45.3%;
        height: auto;
    }

    .nh-valentines__brand-title {
        width: 72%;
        max-width: 446px;
        height: auto;
    }

    .nh-valentines__brand-year {
        width: 17.2%;
        height: auto;
    }

    .nh-valentines__brand img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .nh-valentines__brand-logo img,
    .nh-valentines__brand-title img,
    .nh-valentines__brand-year img {
        height: 100%;
    }
}

@media screen and (max-width: 768px) {
    .nh-valentines {
        padding: 56px 0;
    }

    .nh-valentines__card {
        gap: 26px;
        min-height: 227px;
    }

    .nh-valentines__card::before {
        width: calc(100% - 20px);
        height: calc(100% - 18px);
    }

    .nh-valentines__card::after {
        width: calc(100% - 36px);
        height: calc(100% - 34px);
    }

    .nh-valentines__card-sub-en {
        font-size: 15px;
        letter-spacing: 0.1em;
        margin-bottom: 18px;
        text-box: normal;
    }

    .nh-valentines__card-main-ja {
        font-size: 18px;
        letter-spacing: 0.15em;
        margin-bottom: 14px;
        text-box: normal;
    }

    .nh-valentines__card-sub-ja {
        font-size: 12px;
        letter-spacing: 0.21em;
        text-box: normal;
    }

    .nh-valentines__card-btn {
        width: 100%;
        max-width: 247px;
        height: 36px;
        padding: 0 10px;
        font-size: 11px;
    }
    .nh-valentines__brand {
        gap: 14px;
    }
    .nh-valentines__brand-logo {
        width: 101px;
    }
    .nh-valentines__brand-title {
        width: 243px;
    }
    .nh-valentines__brand-year {
        width: 58px;
    }

    .nh-valentines__deco-ribbon {
        left: -130px;
        top: -105px;
        width: 385px;
        height: 249px;
        background-size: 200px auto;
    }
}
@media screen and (max-width: 600px) {
    .nh-valentines__bg {
        background-size: auto 160%;
        background-position: 0% 75%;
    }
}

/* Beyond Collection */
.nh-beyond {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    background-color: #fee6d1;
}

.nh-beyond::before,
.nh-beyond::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.nh-beyond::before {
    inset: 0;
    background-image: url("../assets/neuhaus/beyond-bg-product.jpg");
    background-repeat: no-repeat;
    background-size: 142.94% auto;
    background-position: 50% 12%;
    opacity: 0.2;
    z-index: 1;
}

.nh-beyond::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 361px;
    background-image: url("../assets/neuhaus/beyond-bg-diagonal.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 2;
}

.nh-beyond__inner {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    min-height: 650px;
    margin: 0 auto;
    padding: 58px 120px 48px;
}

.nh-beyond__heading {
    margin: 0 0 39px;
    color: #ce7d56;
    font-family: "Antonio", sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
}

.nh-beyond__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 98px;
}

.nh-beyond__gallery {
    flex: 1 1 0;
    min-width: 0;
    max-width: 543px;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 40px;
    row-gap: 26px;
    padding-top: 20px;
}

.nh-beyond__photo {
    overflow: hidden;
}

.nh-beyond__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nh-beyond__photo--main {
    grid-row: 1 / 3;
    width: 100%;
    height: auto;
    aspect-ratio: 229 / 407;
}

.nh-beyond__photo--main img {
    width: 100%;
    max-width: 100%;
    transform: none;
}

.nh-beyond__photo--chocolate {
    width: 100%;
    height: auto;
    aspect-ratio: 228 / 230;
    margin-top: 20px;
}

.nh-beyond__photo--chocolate img {
    width: 100%;
    max-width: 100%;
    transform: none;
}

.nh-beyond__photo--bite {
    width: 77.6%;
    height: auto;
    aspect-ratio: 177 / 172;
    margin-top: 20px;
}

.nh-beyond__photo--bite img {
    width: 100%;
    max-width: 100%;
    transform: none;
}

.nh-beyond__text {
    flex-shrink: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.nh-beyond__lead {
    margin: 0;
    color: #ce7d56;
    font-family: "Zen Old Mincho", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}

.nh-beyond__description {
    margin: 0;
    color: #383838;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.08em;
}

.nh-beyond__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    min-height: 52px;
    padding: 18px 16px;
    border-radius: 5px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: background-color 0.3s ease;
}

@media screen and (max-width: 1200px) {
    .nh-beyond__inner {
        padding-right: 60px;
        padding-left: 60px;
    }

    .nh-beyond__content {
        gap: 56px;
    }

    .nh-beyond__text {
        width: 48%;
    }
}

@media screen and (max-width: 1024px) {
    .nh-beyond {
        min-height: 0;
    }

    .nh-beyond__inner {
        min-height: 0;
        padding: 58px 32px 72px;
    }

    .nh-beyond__content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nh-beyond__gallery {
        width: 100%;
        flex: none;
    }

    .nh-beyond__text {
        width: 100%;
        max-width: 559px;
        padding-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .nh-beyond {
        min-height: 1054px;
    }

    .nh-beyond::before {
        background-image: url("../assets/neuhaus/beyond-bg-product-sp.jpg");
        background-size: cover;
        background-position: center;
    }

    .nh-beyond::after {
        height: 578px;
        background-image: url("../assets/neuhaus/beyond-bg-diagonal-sp.svg");
        background-size: 100% 100%;
    }

    .nh-beyond__inner {
        min-height: 1054px;
        padding: 62px 0 37px;
    }

    .nh-beyond__heading {
        margin-bottom: 52px;
        font-size: 36px;
        line-height: 1;
        letter-spacing: 0.08em;
    }

    .nh-beyond__content {
        gap: 52px;
    }

    .nh-beyond__gallery {
        position: relative;
        width: 100%;
        max-width: 375px;
        height: 343px;
        grid-template-columns: 175.245px 175.245px;
        grid-template-rows: 188.725px 144.608px;
        column-gap: 24.51px;
        row-gap: 31.25px;
        padding-top: 0;
    }

    .nh-beyond__photo--main {
        width: 175.245px;
        height: 312.5px;
        aspect-ratio: auto;
    }

    .nh-beyond__photo--chocolate {
        width: 175.245px;
        height: 188.725px;
        margin-top: 15.931px;
        aspect-ratio: auto;
    }

    .nh-beyond__photo--bite {
        position: absolute;
        left: 151.49px;
        top: 227.94px;
        width: 149.51px;
        height: 144.608px;
        margin-top: 0;
        aspect-ratio: auto;
    }

    .nh-beyond__text {
        align-items: center;
        gap: 33px;
        padding: 0 35px;
    }

    .nh-beyond__lead {
        width: 375px;
        font-size: 24px;
        line-height: 1.283;
        text-align: center;
        height: 32px;
    }

    .nh-beyond__description {
        font-size: 14px;
        line-height: 2.29;
        letter-spacing: 0.08em;
    }

    .nh-beyond__btn {
        width: 305px;
        max-width: 305px;
        min-height: 44px;
        margin: 0 auto;
        padding: 14px 16px;
        font-size: 17px;
    }
}

/* About NEUHAUS */
.nh-about {
    position: relative;
    overflow: hidden;
    color: #3a200d;
}

.nh-about__history {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding-top: 80px;
    background-image: url("../assets/neuhaus/about-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.nh-about__heading {
    position: relative;
    z-index: 2;
    margin: 0 auto 80px;
    color: #3a200d;
    text-align: center;
}

.nh-about__heading-en {
    margin: 0 0 26px;
    font-family: "Abhaya Libre", serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.15em;
    text-box: normal;
}

.nh-about__heading-ja {
    margin: 0;
    font-family: "YuMincho", "Yu Mincho", "Zen Old Mincho", serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    text-box: normal;
}

.nh-about__timeline {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1001px;
    height: 2112px;
    margin: 0 auto;
}

.nh-about__line {
    position: absolute;
    top: 0;
    left: 48.45%;
    width: 20px;
    height: 100%;
    pointer-events: none;
}

.nh-about__line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 9px;
    width: 3px;
    height: 100%;
    background-color: #a75a32;
}

.nh-about__event {
    position: absolute;
    width: 100%;
    min-height: 380px;
}

.nh-about__event::before {
    content: "";
    position: absolute;
    left: 48.75%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #a75a32;
    z-index: 3;
}

.nh-about__event--1857 {
    top: 9px;
    left: 0;
}

.nh-about__event--1857::before {
    top: 100px;
}

.nh-about__event--1912 {
    top: 577px;
    left: 0;
}

.nh-about__event--1912::before {
    top: 80px;
}

.nh-about__event--1915 {
    top: 1132px;
    left: 0;
}

.nh-about__event--1915::before {
    top: 76px;
}

.nh-about__event--2026 {
    top: 1676px;
    left: 0;
}

.nh-about__event--2026::before {
    top: 82px;
}

.nh-about__figure {
    position: absolute;
    width: 41.08%;
    height: auto;
    aspect-ratio: 411 / 379;
    margin: 0;
    padding: 0 10px;
}

.nh-about__event--1857 .nh-about__figure,
.nh-about__event--1915 .nh-about__figure {
    left: 0;
    top: 0;
}

.nh-about__event--1912 .nh-about__figure,
.nh-about__event--2026 .nh-about__figure {
    left: 57.84%;
    top: 0;
}

.nh-about__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nh-about__copy {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 46.85%;
    color: #a75a32;
}

.nh-about__event--1857 .nh-about__copy,
.nh-about__event--1915 .nh-about__copy {
    left: 52.05%;
    top: 90px;
}

.nh-about__event--1915 .nh-about__copy {
    top: 65px;
}

.nh-about__event--1912 .nh-about__copy,
.nh-about__event--2026 .nh-about__copy {
    left: 0;
    top: 71px;
    justify-content: flex-end;
    gap: 1.6%;
    text-align: right;
}

.nh-about__event--1912 .nh-about__year,
.nh-about__event--2026 .nh-about__year {
    order: 2;
}

.nh-about__event--1912 .nh-about__body,
.nh-about__event--2026 .nh-about__body {
    align-items: flex-end;
    order: 1;
    width: 83.3%;
}

.nh-about__year {
    margin: 0;
    flex-shrink: 0;
    font-family: "YuMincho", "Yu Mincho", "Zen Old Mincho", serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.41;
    letter-spacing: 0.1em;
    text-box: normal;
}

.nh-about__body {
    width: 82%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    text-box: normal;
}

.nh-about__title {
    width: 100%;
    margin: 0;
    color: #a75a32;
    font-family: "YuMincho", "Yu Mincho", "Zen Old Mincho", serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.46;
    letter-spacing: 0.1em;
    text-box: normal;
}

.nh-about__event--1912 .nh-about__title,
.nh-about__event--2026 .nh-about__title {
    width: 100%;
    font-size: 22px;
    line-height: 1.73;
}

.nh-about__text {
    width: 100%;
    margin: 0;
    color: #3a200d;
    font-family: "YuGothic", "Yu Gothic", "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 2.14;
    letter-spacing: 0.1em;
}

.nh-about__royal {
    position: relative;
    z-index: 2;
    min-height: 390px;
    background-color: #a75a32;
}

.nh-about__royal::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/neuhaus/about-bg-texture.jpg");
    background-repeat: repeat;
    background-size: 1892.5px 1261.5px;
    background-position: left top;
    mix-blend-mode: soft-light;
    opacity: 0.6;
    pointer-events: none;
}

.nh-about__royal-inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    min-height: 390px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 81px;
}

.nh-about__royal-card {
    width: 307px;
    height: 243px;
    overflow: hidden;
    border-radius: 28px;
    background-color: #fff;
}

.nh-about__royal-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nh-about__royal-copy {
    width: 520px;
    color: #fff;
    text-align: center;
}

.nh-about__royal-title {
    width: 477px;
    height: 50px;
    margin: 0 auto 2px;
    font-family: "YuMincho", "Yu Mincho", "Zen Old Mincho", serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: 0.1em;
    text-box: normal;
}

.nh-about__royal-ornament {
    width: 301px;
    height: 21px;
    margin: 0 auto 24px;
}

.nh-about__royal-ornament img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nh-about__royal-text {
    margin: 0;
    font-family: "YuMincho", "Yu Mincho", "Zen Old Mincho", serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.87;
    letter-spacing: 0.5em;
    text-box: normal;
}

@media screen and (max-width: 768px) {
    .nh-about__history {
        padding-top: 50px;
    }

    .nh-about__heading {
        margin-bottom: 57px;
    }

    .nh-about__heading-en {
        margin-bottom: 11px;
        font-size: 28px;
        letter-spacing: 0.15em;
    }

    .nh-about__heading-ja {
        font-size: 16px;
        line-height: 1.88;
    }

    .nh-about__timeline {
        width: 342px;
        height: auto;
        margin: 0 auto;
    }

    .nh-about__line {
        top: 0;
        left: 0;
        width: 16px;
    }

    .nh-about__line::before {
        left: 7px;
        width: 3px;
    }

    .nh-about__event {
        position: relative;
        top: auto;
        left: auto;
        width: 276px;
        min-height: 0;
        margin-left: 49px;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .nh-about__event + .nh-about__event {
        margin-top: 50px;
    }

    .nh-about__event::before {
        left: -47px;
        top: 233px;
        width: 12px;
        height: 12px;
    }

    .nh-about__figure,
    .nh-about__event--1857 .nh-about__figure,
    .nh-about__event--1912 .nh-about__figure,
    .nh-about__event--1915 .nh-about__figure,
    .nh-about__event--2026 .nh-about__figure {
        position: relative;
        top: auto;
        left: auto;
        width: 210px;
        height: 193.555px;
        flex-shrink: 0;
    }

    .nh-about__copy,
    .nh-about__event--1857 .nh-about__copy,
    .nh-about__event--1912 .nh-about__copy,
    .nh-about__event--1915 .nh-about__copy,
    .nh-about__event--2026 .nh-about__copy {
        position: relative;
        top: auto;
        left: auto;
        width: 261px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        text-align: left;
    }

    .nh-about__event--1912 .nh-about__year,
    .nh-about__event--2026 .nh-about__year {
        order: 0;
    }

    .nh-about__event--1912 .nh-about__body,
    .nh-about__event--2026 .nh-about__body {
        align-items: flex-start;
        order: 0;
        width: 261px;
    }

    .nh-about__year {
        width: 100%;
        height: 44px;
        font-size: 23px;
        line-height: 1.65;
        letter-spacing: 0.1em;
    }

    .nh-about__year .u-show-sp {
        display: inline !important;
    }

    .nh-about__body {
        width: 261px;
        gap: 13px;
    }

    .nh-about__title,
    .nh-about__event--1912 .nh-about__title,
    .nh-about__event--2026 .nh-about__title {
        width: 100%;
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: 0;
    }

    .nh-about__title {
        min-height: 29px;
    }
    .nh-about__text {
        font-size: 14px;
        line-height: 1.71;
        letter-spacing: 0.1em;
    }

    .nh-about__royal {
        display: block;
        padding: 40px 0;
        min-height: 0;
    }

    .nh-about__royal::before {
        background-size: cover;
        opacity: 0.5;
    }

    .nh-about__royal-inner {
        flex-direction: column-reverse;
        gap: 35px;
        min-height: 0;
        padding: 0 20px;
    }

    .nh-about__royal-card {
        width: 300px;
        height: 237.5px;
    }

    .nh-about__royal-copy {
        width: 100%;
    }

    .nh-about__royal-title {
        width: 100%;
        height: 32px;
        font-size: 20px;
        letter-spacing: 0.1em;
        margin-bottom: 11px;
    }

    .nh-about__royal-ornament {
        width: 250px;
        height: 17.5px;
        margin-bottom: 11px;
    }

    .nh-about__royal-text {
        font-size: 13px;
        line-height: 1.37;
        letter-spacing: 0.5em;
    }

    .nh-about__event--2026 {
        padding-bottom: 57px;
    }
}

/* SNS */
.nh-sns {
    position: relative;
    width: 100%;
    min-height: 130px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    overflow: hidden;
}

.nh-sns::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #ce7d56;
    mix-blend-mode: multiply;
    z-index: 1;
}

.nh-sns::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/neuhaus/about-bg-texture.jpg");
    background-repeat: repeat;
    background-size: 1892.5px 1261.5px;
    background-position: left top;
    mix-blend-mode: soft-light;
    opacity: 0.3;
    z-index: 2;
}

.nh-sns__title {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0;
    color: #fff;
    font-family: "Zen Old Mincho", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
}

.nh-sns__links {
    position: relative;
    z-index: 3;
    width: 154px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nh-sns__link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.nh-sns__link:hover {
    opacity: 0.75;
}

.nh-sns__link--instagram {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
}

.nh-sns__link--instagram img {
    width: 30.62px;
    height: 30.62px;
    display: block;
}

.nh-sns__link--x {
    width: 50px;
    height: 50px;
}

.nh-sns__link--x img {
    width: 100%;
    height: 100%;
    display: block;
}

@media screen and (max-width: 768px) {
    .nh-sns {
        min-height: 126px;
        padding: 36px 20px;
        gap: 28px;
    }

    .nh-sns__title {
        font-size: 18px;
    }

    .nh-sns__links {
        width: 132px;
    }
}
