@font-face {
    font-family: "Grand Stage";
    src: url("https://www.abc-mart.com/gs-about/fonts/Grand-Stage.otf") format("opentype");
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    color: #fff;
    background-color: #1b1f27;
    overflow-x: hidden;
}

.gs-about-first-view {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    transition: height 0.8s ease;
    display: flex;
    flex-direction: column;
}

.gs-about-first-view::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(75, 75, 75, 0) 0%, #1B1F27 92.5%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
}

.gs-language-selector {
    position: absolute;
    top: 60px;
    right: 20px;
    z-index: 6;
    font-family: sans-serif;
}

.gs-language-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 164px;
    height: 40px;
    padding: 11px 0 11px 8px;
    background-color: #000;
    border: 1px solid #CCC;
    border-radius: 32px;
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.gs-language-text {
    flex: 1;
    text-align: center;
}

.gs-language-button::after {
    content: "";
    position: absolute;
    top: 0;
    right: 48px;
    width: 1px;
    height: 38px;
    background-color: #CCC;
}

.gs-language-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 40px;
}

.gs-language-arrow img {
    width: 12px;
    height: auto;
}

.gs-language-arrow.active {
    transform: rotate(180deg);
}

.gs-language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 164px;
    margin-top: 8px;
    background-color: #000;
    border: 1px solid #CCC;
    border-radius: 32px;
    overflow: hidden;
    z-index: 1001;
}

.gs-language-dropdown.active {
    display: block;
}

.gs-language-option {
    display: flex;
    align-items: center;
    padding: 11px 0 11px 8px;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.gs-language-option span[lang="zh-Hant"],
.gs-language-option span[lang="zh-Hans"] {
    font-weight: 400;
}

.gs-language-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.gs-language-check {
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    min-width: 24px;
}

.gs-language-active .gs-language-check::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 9px;
    width: 6px;
    height: 12px;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    transform: rotate(45deg);
}

.gs-about-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 740px;
    z-index: 0;
    display: none;
}

.gs-about-video-container video {
    width: 100%;
    height: 740px;
    object-fit: cover;
}

.gs-about-dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 740px;
    background-image: url("../images/first-view/dot_pattern_sp.webp");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

.gs-about-screen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 98%;
    background: linear-gradient(to bottom,
            rgba(27, 31, 39, 0) 0%,
            #000 98%);
    z-index: 2;
    opacity: 1;
}

.gs-about-text-loop-container {
    position: absolute;
    top: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 10px 0;
    z-index: 5;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.gs-about-text-loop {
    display: inline-block;
    animation: none;
    /* アニメーションを無効化し、JavaScriptから制御 */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

@keyframes textLoop {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

.gs-about-text-loop-item {
    display: inline-flex;
    align-items: center;
    margin-right: 27.5px;
}

.gs-about-text-loop-text {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.gs-about-text-loop-line {
    margin-left: 27.5px;
    width: 15px;
    height: 1px;
    background-color: #63c13e;
}

.gs-about-logo {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 5;
}

.gs-about-logo img {
    margin: 0 auto;
    width: 270px;
    height: auto;
    display: block;
    object-fit: contain;
}

.gs-about-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 100%;
    width: 100%;
    z-index: 5;
    padding: 0 20px;
    top: 280px;
}

.gs-about-content-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gs-about-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.gs-about-heading-sub {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: #fff;
}

.gs-about-heading-main {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: #78d64b;
    white-space: nowrap;
}

.gs-about-heading-main-en {
    font-size: 16px;
}

.gs-about-description-accordion {
    position: relative;
    width: 100%;
}

.gs-about-description-text {
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    color: #fff;
}

.gs-about-description-text .gs-about-first-line {
    width: 100%;
    opacity: 0.5;
    display: block;
    overflow: hidden;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    transition: opacity 0.8s ease;
    font-size: 14px;
    line-height: 1.8;
}

.gs-about-description-text .gs-about-hidden-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
    color: #fff;
    font-weight: 500;
    line-height: 1.8;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    word-break: break-word;
    font-size: 14px;
    line-height: 1.8;
}

.gs-about-accordion-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.gs-about-accordion-toggle-text {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: #999;
    text-align: center;
}

.gs-about-accordion-toggle-button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gs-about-accordion-toggle-button img {
    width: 12px;
    height: auto;
}

.gs-about-description-accordion.open .gs-about-description-text .gs-about-first-line {
    opacity: 1;
    height: auto;
    transition: none;
}

.gs-about-description-accordion.open .gs-about-description-text .gs-about-hidden-content {
    max-height: 200px;
}

.gs-about-description-accordion.open .gs-about-accordion-toggle-button img {
    transform: rotate(180deg);
}

.gs-about-description-accordion.open .gs-about-accordion-toggle-text {
    font-size: 0;
}

.gs-about-description-accordion.open .gs-about-accordion-toggle-text::after {
    content: "Close";
    font-family: "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: #999;
    text-align: center;
}

.gs-about-products {
    background-color: #f5f5f5;
    padding: 40px 20px 80px;
}

.gs-about-pickup-title {
    font-family: "Grand Stage", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-align: center;
    color: #000;
}

.gs-about-products-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gs-about-products-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.gs-about-products-list {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 20px 0 20px;
    margin: 0 -20px;
    scroll-padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gs-about-products-list::-webkit-scrollbar {
    display: none;
}

.gs-about-product-item {
    flex: 0 0 190px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.gs-about-product-card {
    width: 200px;
    height: 380px;
    background: #fff;
    box-shadow: 0px 0px 8px 0px #99999926;
    border-radius: 120px;
    position: relative;
}

.gs-about-product-card:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.gs-about-product-image {
    width: 170px;
    height: 170px;
    position: relative;
    top: 13px;
    left: 15px;
    border-top-left-radius: 160px;
    border-top-right-radius: 160px;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.gs-about-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gs-about-product-info {
    padding: 32px 20px;
}

.gs-about-product-badge {
    display: flex;
    flex-direction: column;
    padding: 2px;
    color: #000;
    margin-bottom: 4px;
    text-align: left;
}

.gs-about-product-badge .gs-about-product-type {
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
}

.gs-about-product-badge .gs-about-product-brand {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0;
}

.gs-about-product-brand {
    color: #000;
    font-size: 10px;
    font-weight: 700;
    text-align: left;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
}

.gs-about-product-name {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    padding: 2px;
    margin-bottom: 4px;
    text-align: left;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
}

.gs-about-product-price {
    color: #000;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 2px;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
}

.gs-about-price-amount {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}

.gs-about-price-tax {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
}

.gs-about-products-button {
    text-align: center;
    margin-bottom: 40px;
}

.gs-about-view-all-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 27px 40px;
    background-color: #000000;
    color: #ffffff;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease;
    border: none;
}

.gs-about-view-all-button:hover {
    opacity: 0.7;
}

.gs-about-products-note {
    color: #000;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
}

.gs-about-pickup-image {
    width: 70%;
    height: auto;
    max-width: 335px;
}

.gs-about-your-stage {
    background-color: #fff;
    color: #252525;
    padding: 80px 0;
}

.gs-about-title-image {
    width: 56px;
    flex-shrink: 0;
}

.gs-about-your-stage-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.gs-about-your-stage-image {
    margin-right: 40px;
    width: calc(100% - 40px);
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 0 500px 500px 0;
}

.gs-about-your-stage-title {
    position: relative;
    transform: translateY(-10px);
}

.gs-about-your-stage-heading-container {
    display: flex;
    align-items: center;
    gap: 2.6vw;
}

.gs-about-title-circle {
    width: 46px;
    height: auto;
    object-fit: contain;
}

.gs-about-title-circle-inner {
    border: 2px solid #ffffff;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 20px;
    min-width: 100px;
}

.gs-about-fashion-circle {
    width: 16px;
    height: 16px;
    margin-bottom: 10px;
}

.gs-about-title-text {
    font-family: "Grand Stage", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

.gs-about-your-stage-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 0 20px;
}

.gs-about-your-stage-heading {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.11em;
    color: #252525;
    text-align: left;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
}

.gs-about-your-stage-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #252525;
    text-align: justify;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
}

.gs-about-popup-event {
    background-color: #fff;
    color: #252525;
    padding: 0 0 80px;
}

.gs-about-popup-event-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.gs-about-popup-event-image {
    margin-left: 40px;
    width: calc(100% - 40px);
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 500px 0 0 500px;
}

.gs-about-popup-event-title {
    position: relative;
    transform: translateY(-10px);
}

.gs-about-popup-event-heading-container {
    display: flex;
    align-items: center;
    gap: 2.6vw;
}

.gs-about-popup-event-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 0 20px;
}

.gs-about-popup-event-heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.11em;
    color: #252525;
    text-align: left;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
}

.gs-about-popup-event-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #252525;
    text-align: justify;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
}

.gs-about-event-schedule {
    background-color: #fff;
    padding: 0 20px 100px;
}

.gs-about-event-schedule-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.gs-about-event-schedule-header {
    text-align: center;
}

.gs-about-event-schedule-title {
    font-family: "Grand Stage", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.03em;
    color: #000;
}

.gs-about-event-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.gs-about-event-item {
    display: grid;
    grid-template-columns: 124px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 16px;
    grid-template-areas:
        "image meta"
        "description description";
    width: 100%;
}

.gs-about-event-image {
    width: 124px;
    height: 82px;
    flex-shrink: 0;
    grid-area: image;
}

.gs-about-event-image-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gs-about-event-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #F0F0F0;
}

.gs-about-event-logo {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs-about-event-logo-image {
    width: 100%;
    height: auto;
    max-height: 25px;
    object-fit: contain;
}

.gs-about-event-content {
    display: contents;
}

.gs-about-event-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    grid-area: meta;
}

.gs-about-event-date {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
    text-align: left;
}

.gs-about-event-name {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    text-align: left;
}

.gs-about-event-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-area: description;
    width: 100%;
}

.gs-about-event-text {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    color: #000;
    text-align: left;
}

.gs-about-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gs-about-event-tag {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #78D64B;
    border: 1px solid #78D64B;
    padding: 4px 12px;
}

.gs-about-jordan {
    background-color: #1b1f27;
    color: #fff;
    padding: 80px 0;
}

.gs-about-jordan-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.gs-about-jordan-image {
    margin-right: 40px;
    width: calc(100% - 40px);
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 0 500px 500px 0;
}

.gs-about-jordan-title {
    position: relative;
    transform: translateY(-10px);
}

.gs-about-jordan-heading-container {
    display: flex;
    align-items: center;
    gap: 2.6vw;
}

.gs-about-jordan-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 0 20px;
}

.gs-about-jordan-heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.11em;
    color: #fff;
    text-align: left;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
}

.gs-about-jordan-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #fff;
    text-align: justify;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
}

.gs-about-mural-art {
    background-color: #1b1f27;
    color: #fff;
    padding: 0 0 80px;
}

.gs-about-mural-art-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.gs-about-mural-art-image {
    margin-left: 40px;
    width: calc(100% - 40px);
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 500px 0 0 500px;
}

.gs-about-mural-art-title {
    position: relative;
    transform: translateY(-10px);
}

.gs-about-mural-art-heading-container {
    display: flex;
    align-items: center;
    gap: 2.6vw;
}

.gs-about-mural-art-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 0 20px;
}

.gs-about-mural-art-heading {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.11em;
    color: #fff;
    text-align: left;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
}

.gs-about-mural-art-description {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #fff;
    text-align: justify;
    align-self: flex-start;
}

.gs-about-about-grand-stage {
    background-color: #1b1f27;
    color: #fff;
    padding: 40px 20px;
}

.gs-about-about-grand-stage-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 40px 0;
}

.gs-about-about-title-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: center;
}

.gs-about-about-title {
    font-family: "Grand Stage", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-align: center;
    color: #fff;
}

.gs-about-about-image {
    width: 100%;
    aspect-ratio: 2 / 1;
    background-image: url("../images/about-grand-stage/about-grand-stage.webp");
    background-size: cover;
    background-position: center center;
    position: relative;
}

.gs-about-about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.gs-about-about-label {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: #999;
    text-align: center;
}

.gs-about-about-concept-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.gs-about-about-concept-heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.11em;
    color: #fff;
    text-align: center;
}

.gs-about-about-concept-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.gs-about-about-concept-text {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
}

.gs-about-about-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #000;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease;
    border: 1px solid #000;
    width: 100%;
    height: 70px;
    border: none;
}

.gs-about-about-button:hover {
    opacity: 0.7;
}

.gs-about-grand-stage-lineup {
    margin-top: 100px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gs-about-grand-stage-lineup-title {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.04em;
    text-align: center;
    color: #000;
    margin-bottom: 40px;
}

.gs-about-brand-logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 22px;
    width: 335px;
    position: relative;
    overflow: hidden;
    max-height: 160px;
    transition: max-height 0.8s ease;
    padding: 8px;
}

.gs-about-brand-logo-container.open {
    /* 全てのロゴが表示される高さ（63px * 5 + gap 22px * 5 + 8px * 2） */
    max-height: 441px;
}

/* もっと見るボタンのスタイル */
.gs-about-brand-logo-button {
    margin-top: 20px;
    text-align: center;
}

.gs-about-more-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gs-about-more-button-text {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.gs-about-more-button-icon svg {
    stroke: #000;
}

.gs-about-more-button-icon svg path {
    stroke: #000;
}

.gs-about-more-button.open .gs-about-more-button-icon svg {
    transform: rotate(90deg);
}

.gs-about-brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gs-about-brand-logo:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.gs-about-brand-logo-circle {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 8px 0px rgba(153, 153, 153, 0.15);
    position: relative;
}

.gs-about-brand-logo-circle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 50%;
    border: 1px solid #78d64b;
    box-sizing: border-box;
}

.gs-about-brand-logo-circle::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid #ffffff;
    z-index: -1;
}

.gs-about-brand-logo-circle img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    z-index: 1;
}

.gs-about-jordan-logo .gs-about-brand-logo-circle img {
    max-width: 55%;
    max-height: 55%;
    position: relative;
    top: -1.5px;
}

/* iOS Safari向けのフォールバックアニメーション */
.gs-about-ios-animation {
    -webkit-animation: textLoopIOS 30s linear infinite;
    animation: textLoopIOS 30s linear infinite;
}

@-webkit-keyframes textLoopIOS {
    0% {
        -webkit-transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
    }
}

@keyframes textLoopIOS {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gs-about-coordinate {
    background-color: #1b1f27;
    color: #fff;
    padding: 100px 0;
}

.gs-about-coordinate-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

.gs-about-coordinate-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    max-width: 1420px;
    margin: 0 auto;
}

.gs-about-coordinate-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.6vw;
}

.gs-about-coordinate-title-image-container {
    width: 46px;
    flex-shrink: 0;
}

.gs-about-coordinate-title-image {
    width: 46px;
    height: 122px;
    object-fit: contain;
}

.gs-about-coordinate-heading {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.11em;
    color: #fff;
    padding-top: 5px;
    text-align: left;
}

.gs-about-coordinate-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #fff;
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    text-align: justify;
    align-self: flex-start;
}

.gs-about-coordinate-slider {
    width: 100%;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gs-about-coordinate-slider::-webkit-scrollbar {
    display: none;
}

.gs-about-coordinate-slider-title {
    font-family: "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 40px;
}

.gs-about-coordinate-slide {
    display: flex;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: max-content;
    animation: infinite-scroll 20s linear infinite;
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Translate by the width of the original set of items */
        transform: translateX(calc(-1 * (130px + 20px) * 8));
        /* 8 items */
    }
}

/* Keyframes for PC infinite scroll */
@keyframes infinite-scroll-pc {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Translate by the width of the original set of items */
        transform: translateX(calc(-1 * (220px + 50px) * 8));
        /* 8 items */
    }
}

.gs-about-coordinate-item {
    flex: 0 0 130px;
    height: 265px;
    overflow: hidden;
    border-radius: 65px;
    background-color: #fff;
}

.gs-about-coordinate-item img,
.gs-about-coordinate-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    /* iOS Safariでの上部余白対策 */
}

.gs-about-section-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.gs-about-section-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gs-about-section-slide.gs-about-active {
    opacity: 1;
}

/* メディアクエリセクション */

/* モバイル全般向け (最大768px) */
@media screen and (max-width: 768px) {

    .gs-about-more-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        cursor: pointer;
        margin-top: 20px;
        transition: all 0.8s ease;
    }

    .gs-about-more-button-text {
        font-size: 14px;
        font-weight: 500;
        transition: all 1s ease;
    }

    .gs-about-more-button-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gs-about-more-button.open .gs-about-more-button-icon {
        transform: rotate(90deg);
    }

    .gs-about-coordinate-title-image-container {
        width: 56px;
    }

    .gs-about-coordinate-title-image {
        width: 46px;
        height: auto;
        margin: 0 auto;
    }
}

/* PC向け (769px以上) */
@media screen and (min-width: 769px) {

    .gs-about-first-view {
        height: calc(100vh - 110px);
        min-height: 800px;
    }

    .gs-about-video-container,
    .gs-about-video-container video {
        height: 100%;
    }

    .gs-about-text-loop-container {
        padding: 12px 0;
    }

    .gs-about-logo {
        top: calc(50svh - 300px);
    }

    .gs-about-logo img {
        width: 740px;
        height: auto;
    }

    .gs-about-content {
        justify-content: end;
        bottom: 0;
        margin-bottom: 5%;
        top: auto;
        /* SP用のtop指定を打ち消す */
    }

    .gs-about-heading {
        gap: 12px;
    }

    .gs-about-heading-sub {
        font-size: 24px;
    }

    .gs-about-heading-main {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .gs-about-description-text .gs-about-first-line {
        opacity: 1;
        white-space: normal;
        font-size: 18px;
    }

    .gs-about-description-text .gs-about-hidden-content {
        max-height: 500px;
        /* 十分な高さで常に表示 */
        overflow: visible;
        font-size: 18px;
    }

    .gs-about-first-line-br-only-sp {
        display: none;
    }

    .gs-about-accordion-toggle {
        display: none;
        /* PCではアコーディオンボタンを非表示 */
    }

    .gs-about-description {
        max-width: 1420px;
        margin: 0 auto;
    }

    /* Products セクション */
    .gs-about-products {
        padding: 100px 20px 180px;
    }

    .gs-about-pickup-title {
        font-size: 80px;
    }

    .gs-about-products-inner {
        margin: 0 auto;
        gap: 90px;
    }

    .gs-about-price-amount {
        font-size: 16px;
    }

    .gs-about-price-tax {
        font-size: 14px;
    }

    .gs-about-products-button {
        margin-bottom: 50px;
    }

    .gs-about-pickup-image {
        width: 60%;
        max-width: 650px;
    }

    .gs-about-products-header {
        gap: 40px;
    }

    .gs-about-title-circle {
        width: 56px;
        height: auto;
    }

    .gs-about-your-stage-heading-container {
        align-items: flex-start;
    }

    .gs-about-your-stage {
        padding: 140px 0;
    }

    .gs-about-your-stage-inner {
        flex-direction: row;
        align-items: center;
        gap: 5.2vw;
        padding: 0 40px 0 0;
        max-width: 1920px;
        margin: 0 auto;
    }

    .gs-about-your-stage-image {
        width: 55%;
        height: 600px;
        border-radius: 0 500px 500px 0;
        flex-shrink: 0;
        margin-right: 0;
    }

    .gs-about-title-circle-inner {
        padding: 10px 20px 30px;
        min-width: 160px;
    }

    .gs-about-title-circle-inner::before {
        width: 24px;
        height: 24px;
        margin-bottom: 15px;
    }

    .gs-about-title-text {
        font-size: 18px;
    }

    .gs-about-your-stage-content {
        padding: 0;
        gap: 50px;
        flex: 1;
    }

    .gs-about-your-stage-heading-container {
        align-items: center;
    }

    .gs-about-your-stage-heading {
        font-size: 40px;
        line-height: 1.7;
        letter-spacing: 0.11em;
    }

    .gs-about-your-stage-description {
        padding-left: calc(56px + 2.6vw);
    }

    .gs-about-popup-event {
        padding: 0 0 100px;
    }

    .gs-about-popup-event-inner {
        flex-direction: row-reverse;
        align-items: center;
        gap: 5.2vw;
        padding: 0 0 0 40px;
        max-width: 1920px;
        margin: 0 auto;
    }

    .gs-about-popup-event-image {
        width: 55%;
        height: 600px;
        border-radius: 500px 0 0 500px;
        flex-shrink: 0;
        margin-left: 0;
    }

    .gs-about-popup-event-content {
        padding: 0;
        gap: 50px;
        flex: 1;
    }

    .gs-about-popup-event-heading {
        font-size: 40px;
        line-height: 1.7;
        letter-spacing: 0.11em;
    }

    .gs-about-popup-event-description {
        padding-left: calc(56px + 2.6vw);
    }

    .gs-about-event-schedule {
        padding: 80px 0 140px;
    }

    .gs-about-event-schedule-inner {
        max-width: 1420px;
        margin: 0 auto;
        gap: 90px;
    }

    .gs-about-event-schedule-title {
        font-size: 80px;
        letter-spacing: 0.03em;
    }

    .gs-about-event-schedule-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 60px 30px;
        justify-content: center;
        margin: 0 40px;
    }

    .gs-about-event-item {
        display: flex;
        grid-template-columns: none;
        grid-template-rows: none;
        grid-template-areas: none;
        gap: 30px;
        align-items: flex-start;
        max-width: 1050px;
    }

    .gs-about-event-image {
        width: 240px;
        height: 160px;
        grid-area: auto;
    }

    .gs-about-event-image-inner {
        height: 100%;
    }

    .gs-about-event-logo {
        left: 20px;
        top: 20px;
        width: 45px;
        height: 45px;
    }

    .gs-about-event-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;
    }

    .gs-about-event-meta {
        gap: 10px;
        grid-area: auto;
    }

    .gs-about-event-description {
        grid-area: auto;
        width: auto;
    }

    .gs-about-event-tag {
        font-size: 16px;
    }

    .gs-about-jordan {
        padding: 200px 0 140px;
    }

    .gs-about-jordan-inner {
        flex-direction: row;
        align-items: center;
        gap: 5.2vw;
        padding: 0 40px 0 0;
        max-width: 1920px;
        margin: 0 auto;
    }

    .gs-about-jordan-image {
        width: 55%;
        height: 600px;
        border-radius: 0 500px 500px 0;
        flex-shrink: 0;
        margin-right: 0;
    }

    .gs-about-jordan-content {
        padding: 0;
        gap: 50px;
        flex: 1;
    }

    .gs-about-jordan-heading {
        font-size: 40px;
        line-height: 1.7;
        letter-spacing: 0.11em;
    }

    .gs-about-jordan-description {
        padding-left: calc(56px + 2.6vw);
    }

    .gs-about-mural-art {
        padding: 0 0 100px;
    }

    .gs-about-mural-art-inner {
        flex-direction: row-reverse;
        align-items: center;
        gap: 5.2vw;
        padding: 0 0 0 40px;
        max-width: 1920px;
        margin: 0 auto;
    }

    .gs-about-mural-art-image {
        width: 55%;
        height: 600px;
        border-radius: 500px 0 0 500px;
        flex-shrink: 0;
        margin-left: 0;
    }

    .gs-about-mural-art-content {
        padding: 0;
        gap: 50px;
        flex: 1;
    }

    .gs-about-mural-art-heading {
        font-size: 40px;
        line-height: 1.7;
        letter-spacing: 0.11em;
    }

    .gs-about-mural-art-description {
        padding-left: calc(56px + 2.6vw);
    }

    .gs-about-mural-art-description {
        padding-left: calc(56px + 2.6vw);
    }

    .gs-about-about-grand-stage {
        padding: 0 0 80px;
    }

    .gs-about-about-grand-stage-inner {
        max-width: 1420px;
        margin: 0 auto;
        padding: 100px 0 0;
    }

    .gs-about-about-title {
        font-size: 80px;
    }

    .gs-about-about-image {
        width: 74vw;
        height: 0;
        padding-bottom: 37vw;
    }

    .gs-about-about-content {
        width: 100%;
        max-width: 1260px;
        gap: 20px;
    }

    .gs-about-about-label {
        font-size: 24px;
    }

    .gs-about-about-concept-container {
        gap: 20px;
    }

    .gs-about-about-concept-heading {
        font-size: 40px;
    }

    .gs-about-about-concept-text {
        font-size: 16px;
    }

    .gs-about-about-concept-text-only-sp {
        display: none;
    }

    .gs-about-about-button {
        width: auto;
        padding: 27px 40px;
    }

    .gs-about-grand-stage-lineup {
        margin-top: 180px;
    }

    .gs-about-brand-logo-circle {
        width: 90px;
        height: 90px;
    }

    .gs-about-brand-logo-button {
        display: none;
    }

    .gs-about-brand-logo-container {
        width: auto;
        max-width: 850px;
        gap: 25px;
        justify-content: center;
        margin: 0 auto;
        max-height: none;
        overflow: visible;
    }

    .gs-about-coordinate-slider {
        width: 100%;
        overflow: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 40px;
    }

    .gs-about-coordinate-slider-title {
        margin-bottom: 50px;
    }

    .gs-about-coordinate-slider::-webkit-scrollbar {
        display: none;
    }

    .gs-about-coordinate-title-image-container {
        width: 56px;
    }

    .gs-about-coordinate-title-image {
        width: 56px;
        height: 187px;
    }

    .gs-about-coordinate-heading {
        font-size: 40px;
        padding-top: 0;
    }

    .gs-about-coordinate-description {
        width: 31vw;
    }


    .gs-about-coordinate-slide {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 50px;
        padding: 0;
        animation: infinite-scroll-pc 20s linear infinite;
    }

    .gs-about-coordinate-item {
        flex: 0 0 220px;
        height: 440px;
        border-radius: 110px;
    }

    .gs-about-coordinate {
        padding: 140px 0;
    }

    .gs-about-coordinate-inner {
        flex-direction: column;
        gap: 80px;
        max-width: 1920px;
        margin: 0 auto;
    }

    .gs-about-coordinate-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2.6vw;
    }

    .gs-about-dot-pattern {
        background-image: url("../images/first-view/dot_pattern_pc.webp");
        background-position: 0 -60px;
        height: 100%;
    }

    .gs-about-screen-overlay {
        height: 98%;
        background: linear-gradient(to bottom,
                rgba(27, 31, 39, 0) 0%,
                #000 98%);
    }
}

/* PC (低い画面高さ) 向け */
@media screen and (min-width: 769px) and (max-height: 800px) {
    .gs-about-logo {
        top: 150px;
    }
}

/* PC (中型画面幅) 向け */
@media screen and (min-width: 769px) and (max-width: 919px) {

    .gs-about-coordinate-heading,
    .gs-about-your-stage-heading,
    .gs-about-popup-event-heading,
    .gs-about-jordan-heading,
    .gs-about-mural-art-heading {
        font-size: 32px;
    }
}

/* 大画面向け (1441px以上) */
@media screen and (min-width: 1441px) {
    .gs-about-your-stage-inner {
        padding: 0 calc((100vw - 1440px) / 2 + 40px) 0 0;
    }

    .gs-about-popup-event-inner {
        padding: 0 0 0 calc((100vw - 1440px) / 2 + 40px);
    }

    .gs-about-jordan-inner {
        padding: 0 calc((100vw - 1440px) / 2 + 40px) 0 0;
    }

    .gs-about-mural-art-inner {
        padding: 0 0 0 calc((100vw - 1440px) / 2 + 40px);
    }
}

/* 超大画面向け (1921px以上) - vwによるレイアウト崩れ防止 */
@media screen and (min-width: 1921px) {
    .gs-about-your-stage-heading-container {
        gap: 50px;
        /* 1920px * 0.026 */
    }

    .gs-about-your-stage-inner {
        gap: 100px;
        /* 1920px * 0.052 */
    }

    .gs-about-your-stage-description {
        padding-left: 106px;
        /* 56px + 1920px * 0.026 */
    }

    .gs-about-popup-event-heading-container {
        gap: 50px;
        /* 1920px * 0.026 */
    }

    .gs-about-popup-event-inner {
        gap: 100px;
        /* 1920px * 0.052 */
    }

    .gs-about-popup-event-description {
        padding-left: 106px;
        /* 56px + 1920px * 0.026 */
    }

    .gs-about-jordan-heading-container {
        gap: 50px;
        /* 1920px * 0.026 */
    }

    .gs-about-jordan-inner {
        gap: 100px;
        /* 1920px * 0.052 */
    }

    .gs-about-jordan-description {
        padding-left: 106px;
        /* 56px + 1920px * 0.026 */
    }

    .gs-about-mural-art-heading-container {
        gap: 50px;
        /* 1920px * 0.026 */
    }

    .gs-about-mural-art-inner {
        gap: 100px;
        /* 1920px * 0.052 */
    }

    .gs-about-mural-art-description {
        padding-left: 106px;
        /* 56px + 1920px * 0.026 */
    }

    .gs-about-coordinate-header {
        gap: 50px;
        /* 1920px * 0.026 */
    }

    .gs-about-coordinate-content {
        gap: 192px;
        /* 1920px * 0.1 */
    }

    .gs-about-coordinate-description {
        width: 595px;
        /* 1920px * 0.31 */
    }

    /* 大画面向けpadding調整の上書き */
    .gs-about-your-stage-inner {
        padding: 0 calc((1920px - 1440px) / 2 + 40px) 0 0;
        /* calc((100vw - 1440px) / 2 + 40px) at 1920px */
    }

    .gs-about-popup-event-inner {
        padding: 0 0 0 calc((1920px - 1440px) / 2 + 40px);
        /* calc((100vw - 1440px) / 2 + 40px) at 1920px */
    }

    .gs-about-jordan-inner {
        padding: 0 calc((1920px - 1440px) / 2 + 40px) 0 0;
        /* calc((100vw - 1440px) / 2 + 40px) at 1920px */
    }

    .gs-about-mural-art-inner {
        padding: 0 0 0 calc((1920px - 1440px) / 2 + 40px);
        /* calc((100vw - 1440px) / 2 + 40px) at 1920px */
    }

    .gs-about-about-image {
        width: 1420px;
        padding-bottom: 710px;
        margin: 0 auto;
    }
}

a.gs-about-product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.gs-about-brand-logo {
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mid-size screens - 769px to 1200px */
@media screen and (min-width: 769px) and (max-width: 1200px) {

    .gs-about-coordinate-heading,
    .gs-about-your-stage-heading,
    .gs-about-popup-event-heading,
    .gs-about-jordan-heading,
    .gs-about-mural-art-heading {
        font-size: 30px;
    }
}

@media screen and (min-width: 1215px) {

    .gs-about-products-list {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 40px;
        scroll-snap-type: x mandatory;
    }
}

/* Apply sans-serif font for Chinese (Simplified) */
:lang(zh-Hans) body,
:lang(zh-Hans) .gs-about-heading-sub,
:lang(zh-Hans) .gs-about-heading-main,
:lang(zh-Hans) .gs-about-description-text .gs-about-first-line,
:lang(zh-Hans) .gs-about-description-text .gs-about-hidden-content,
:lang(zh-Hans) .gs-about-view-all-button,
:lang(zh-Hans) .gs-about-your-stage-heading,
:lang(zh-Hans) .gs-about-your-stage-description,
:lang(zh-Hans) .gs-about-popup-event-heading,
:lang(zh-Hans) .gs-about-popup-event-description,
:lang(zh-Hans) .gs-about-jordan-heading,
:lang(zh-Hans) .gs-about-jordan-description,
:lang(zh-Hans) .gs-about-mural-art-heading,
:lang(zh-Hans) .gs-about-mural-art-description,
:lang(zh-Hans) .gs-about-about-label,
:lang(zh-Hans) .gs-about-about-concept-text,
:lang(zh-Hans) .gs-about-about-button,
:lang(zh-Hans) .gs-about-grand-stage-lineup-title,
:lang(zh-Hans) .gs-about-coordinate-heading,
:lang(zh-Hans) .gs-about-coordinate-description,
:lang(zh-Hans) .gs-about-coordinate-slider-title {
    font-family: "Helvetica Neue", sans-serif;
}

:lang(zh-Hans) body,
:lang(zh-Hans) .gs-about-description-text .gs-about-first-line,
:lang(zh-Hans) .gs-about-description-text .gs-about-hidden-content,
:lang(zh-Hans) .gs-about-view-all-button,
:lang(zh-Hans) .gs-about-your-stage-description,
:lang(zh-Hans) .gs-about-popup-event-description,
:lang(zh-Hans) .gs-about-jordan-description,
:lang(zh-Hans) .gs-about-mural-art-description,
:lang(zh-Hans) .gs-about-about-label,
:lang(zh-Hans) .gs-about-about-concept-text,
:lang(zh-Hans) .gs-about-about-button,
:lang(zh-Hans) .gs-about-grand-stage-lineup-title,
:lang(zh-Hans) .gs-about-coordinate-description,
:lang(zh-Hans) .gs-about-coordinate-slider-title {
    font-weight: 400;
}