/* style.css - Refactored responsive layout */

html {
    scroll-behavior: smooth;
}

/* Base & Typography */
body {
    /* Styles moved to .page-container to avoid affecting global header */
}

.page-container {
    font-family: var(--take2-body-font-family, "Yu Gothic", sans-serif);
    color: var(--design-guideline-brandcolor-primary);
    background-color: var(--design-guideline-neutral-white, #fff);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
}

.page-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

sup {
    vertical-align: super;
    font-size: 0.6em;
}

sup.pc-sup{
    vertical-align: inherit;
    font-size: inherit;
}

sub {
    vertical-align: baseline;
    font-size: 0.7em;
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    line-height: 1;
}

.nowrap {
    white-space: nowrap;
}

.highlight {
    font-weight: bold;
    color: var(--design-guideline-brandcolor-primary, #0B113E);
}

.text-gold {
    font-weight: bold;
    color: var(--design-guideline-brandcolor-secondary, #A18C68);
}

.launching-box {
    display: inline-block;
    padding: 24px 48px;
    background: var(--design-guideline-brandcolor-primary, #0B113E);
    border: 1px solid var(--design-guideline-brandcolor-secondary, #A18C68);
    margin-bottom: 24px;
}

.launching-text {
    font-size: var(--take2-l-font-size, 42px);
    font-weight: bold;
    background: linear-gradient(135deg, #A18C68 0%, #e6d7b8 50%, #A18C68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.event-ended-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(100, 100, 100, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e60012;
    font-size: 48px;
    font-weight: bold;
    z-index: 100;
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 48px 16px 32px;
    background-color: var(--design-guideline-brandcolor-blue-scale-normal, #1E4491);
    color: var(--design-guideline-neutral-white, #FFF);
    text-decoration: none !important;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
    width: 280px;
}

.btn-disabled {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(100%);
}

.btn-primary::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transition: transform 0.3s ease;
}

.btn-icon {
    display: none;
}

.btn-primary.btn-white {
    background-color: var(--design-guideline-neutral-white);
    color: var(--design-guideline-brandcolor-blue-scale-normal);
}

.btn-noarrow {
    padding: 16px 32px;
}

.btn-primary.btn-noarrow::after {
    display: none;
}

.btn-primary:hover {
    background-color: var(--design-guideline-brandcolor-primary, #0B113E);
    color: var(--design-guideline-neutral-white);
    border-color: var(--design-guideline-brandcolor-primary, #0B113E);
    text-decoration: none !important;
    opacity: 1;
}

.btn-primary:hover::after {
    transform: translateY(-50%) translateX(4px) rotate(45deg);
}

.btn-primary.btn-white:hover {
    background-color: #f0f0f0;
    color: var(--design-guideline-brandcolor-blue-scale-normal);
}

/* Gold Button with Shine Animation */
@keyframes shine {
    0% {
        transform: skewX(-20deg) translateX(-150%);
    }

    20% {
        transform: skewX(-20deg) translateX(300%);
    }

    100% {
        transform: skewX(-20deg) translateX(300%);
    }
}

.btn-primary.btn-gold {
    background-color: var(--design-guideline-brandcolor-secondary, #A18C68);
    color: var(--design-guideline-neutral-white, #FFF);
    overflow: hidden;
}

.btn-primary.btn-gold:hover {
    background-color: #725b39;
    color: var(--design-guideline-neutral-white, #FFF);
}

.btn-primary.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    animation: shine 4s infinite;
    pointer-events: none;
    z-index: 1;
}

.btn-block {
    width: 100%;
}

/* Header Banners */
.header-banners,
.footer-banners {
    width: 100%;
}

.banner-img {
    width: 100%;
    object-fit: cover;
}

/* KV Section */
.kv-section {
    position: relative;
    width: 100%;
    padding: 40px 20px 60px;
    background: url('../img/kv-bg.jpg') center/cover no-repeat;
    background-color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* Animation applied to the whole section */
    opacity: 0;
    animation: kvCinematicReveal 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.kv-content {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.kv-top {
    width: 100%;
    display: flex;
    justify-content: center;
}

.kv-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.kv-left {
    flex: 0 0 auto;
    /* 必要な幅だけを確保する */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.kv-right {
    flex: 0 1 auto;
    /* 必要な幅を確保しつつ、画面が小さい時は縮むようにする */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* KV Cinematic Reveal Animation */
@keyframes kvCinematicReveal {
    0% {
        opacity: 0;
        filter: blur(30px);
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

.kv-logo {
    width: 180px;
    margin: 0 auto;
}

.kv-title {
    font-size: clamp(48px, 5vw, 92px);
    color: var(--design-guideline-brandcolor-blue-scale-normal);
    margin-bottom: 0;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}

.kv-subtitle-wrapper {
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.kv-subtitle {
    font-size: var(--take2-m-font-size, 30px);
    color: var(--design-guideline-brandcolor-secondary);
    font-weight: bold;
}

.vector-line {
    width: 40px;
    height: auto;
}

.kv-description {
    font-size: var(--take2-body-font-size, 16px);
    color: var(--design-guideline-brandcolor-primary, #0B113E);
    font-weight: bold;
    line-height: 2;
    text-align: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--design-guideline-brandcolor-primary, #0B113E);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
    z-index: 10;
    opacity: 0;
    animation: fadeInScroll 1s 2s forwards, bounceScroll 2s 3s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: var(--design-guideline-brandcolor-primary, #0B113E);
}

.scroll-indicator::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 5px solid var(--design-guideline-brandcolor-primary, #0B113E);
}

@keyframes fadeInScroll {
    to {
        opacity: 1;
    }
}

@keyframes bounceScroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Nav Section */
.nav-section {
    background-color: var(--design-guideline-brandcolor-primary-scale-100, #F3F4F8);
    padding: 100px 20px;
    background-image: url('../img/mountains.png');
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.nav-card {
    flex: 1 1 200px;
    min-width: 200px;
    background: var(--design-guideline-neutral-white, #fff);
    padding: 32px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-decoration: none !important;
}

.nav-arrow {
    margin-top: auto;
}

.nav-arrow img {
    transition: transform 0.3s ease;
}

.nav-card:hover .nav-arrow img {
    transform: translateY(4px);
}

.nav-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatgpt-icon-wrapper {
    position: relative;
}

.chatgpt-icon-wrapper .icon-fg {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-label {
    font-size: 14px;
    color: var(--design-guideline-brandcolor-secondary, #A18C68);
    margin-bottom: 8px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-heading {
    font-size: 16px;
    font-weight: bold;
    color: var(--design-guideline-brandcolor-blue-scale-normal);
    margin-bottom: 24px;
    height: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Campaign Sections Base */
.campaign-section {
    padding: 80px 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.campaign-section:not(.fireworks-bg)::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: url('../img/detailing-01.png') top right / contain no-repeat;
    pointer-events: none;
    z-index: 0;
}

.campaign-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    position: relative;
}

.campaign-header {
    margin-bottom: 16px;
}

.campaign-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.campaign-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--design-guideline-brandcolor-secondary);
    font-weight: bold;
}

.campaign-subtitle .subtitle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-subtitle .subtitle-icon img {
    height: 24px;
    width: auto;
}

.campaign-title {
    font-size: var(--take2-l-font-size, 42px);
    font-weight: bold;
    color: var(--design-guideline-brandcolor-blue-scale-normal);
}

.campaign-desc {
    font-size: 16px;
    line-height: 2;
    text-align: left;
    font-weight: 500;
}

.campaign-desc.align-left {
    text-align: left;
}

.campaign-image-placeholder {
    width: 100%;
    max-width: 1120px;
    height: auto;
    aspect-ratio: 1120 / 300;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-bottom: 24px;
}

.campaign-image-placeholder.empty-placeholder {
    background: #ccc;
}

.campaign-image-placeholder.horizontal {
    aspect-ratio: 21/9;
}

/* Custom Campaign Elements */
.page-container .reborn-kv-image {
    height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 24px;
    border-radius: 8px;
}

.reborn-banner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin-top: 32px;
}

.page-container .reborn-banner-image {
    max-width: 100%;
    height: auto;
}

.btn-nowrap {
    width: 302px;
    white-space: nowrap;
}

.sub-col-text {
    margin-bottom: 32px;
    text-align: center;
}

.sub-col-text h4 {
    font-size: 20px;
    color: var(--design-guideline-brandcolor-primary);
    margin-bottom: 12px;
    font-weight: bold;
}

.shop-banner-wrapper {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
}

.page-container .shop-banner-image {
    max-width: 60%;
    height: auto;
    object-fit: cover;
    padding: 0 30px;
}

.shop-banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.shop-banner-content .sub-col-text {
    text-align: left;
}

.shop-banner-content .sub-col-text h4 {
    text-align: left;
}

.corporate-kv-image {
    width: 100%;
    margin-bottom: 24px;
}

.novelty-kv-image {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 8px;
}

/* Specific Sections */
.fireworks-bg {
    position: relative;
    color: #fff;
    background: transparent;
    clip-path: inset(0 0 0 0);
}

.fireworks-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #006FB7 0%, #004A80 100%);
    z-index: -2;
}

.fireworks-bg::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../img/section-firework-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.fireworks-bg .split-col {
    border-color: #fff;
}

.fireworks-bg .campaign-title {
    color: #fff;
}

.fireworks-bg .campaign-desc {
    color: #fff;
}

.fireworks-bg .campaign-subtitle {
    color: #fff;
}

.countdown-area {
    margin: 24px 0;
}

.countdown-label {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: bold;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--design-guideline-brandcolor-secondary, #A18C68);
}

.timer-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    background: var(--design-guideline-brandcolor-primary, #0B113E);
    padding: 16px 0;
    width: 340px;
}

.timer-box:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.timer-num {
    font-size: 56px;
    font-weight: bold;
    line-height: 1;
}

.timer-unit {
    font-size: 20px;
    margin-left: 8px;
    color: var(--design-guideline-brandcolor-secondary);
}

.campaign-info {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    list-style: disc;
}

.quiz-bg {
    background: url('../img/bg-green.jpg') center/cover no-repeat;
    background-color: #E6F3FA;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.split-col {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--design-guideline-brandcolor-secondary, #A18C68);
    padding: 40px;
}

.main-col {
    flex: 2;
    align-items: center;
}

.sub-col {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
}

.sub-col .sub-col-text {
    margin-bottom: 32px;
    text-align: center;
}

.sub-col-text h4 {
    font-size: 20px;
    color: var(--design-guideline-brandcolor-primary);
    margin-bottom: 12px;
    font-weight: bold;
}

.info-box {
    margin: 24px 0;
}

.info-date {
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 20px;
}

.info-price {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--design-guideline-brandcolor-secondary, #A18C68);
}

.price-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--design-guideline-brandcolor-secondary, #A18C68);
}

.info-note,
.small-note {
    font-size: 14px;
    font-weight: normal;
}

.shop-notes {
    text-align: left;
    margin: 24px 0;
    width: 100%;
}

.store-list-area {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 40px;
    text-align: left;
}

.store-list-highlight {
    background: rgb(255 255 255 / 60%);
    padding: 32px;
}

.store-list-title {
    font-weight: bold;
    margin-bottom: 16px;
}

.store-list-grid {
    display: flex;
    gap: 32px;
}

.store-col {
    flex: 1;
}

.store-group {
    margin-bottom: 24px;
    line-height: 1.8;
}

.store-group a {
    color: var(--design-guideline-brandcolor-primary);
    text-decoration: underline;
    transition: opacity 0.2s;
    background-image: none !important;
}

.store-group a img {
    display: inline-block !important;
}

.store-group a::after,
.store-group a::before {
    display: none !important;
}

.store-group a:hover {
    opacity: 0.7;
}

.corporate-bg {
    background: url('../img/bg-blue.jpg') center/cover no-repeat;
}

.corporate-info {
    margin-bottom: 32px;
}

.corporate-date {
    margin-top: 16px;
    font-weight: bold;
    font-size: 20px;
}

/* Footer Info Section */
.footer-info-section {
    background-color: #fff;
    background-image: url('../img/mountains.png');
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.footer-banner-full img {
    width: 100%;
    display: block;
    height: auto;
}

#reborn {
    background: url('../img/bg-blue.jpg') center/cover no-repeat;
}

#shop {
    background: url('../img/bg-purple.jpg') center/cover no-repeat;
}

.footer-info-container {
    padding: 80px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.more-vaio-block {
    text-align: center;
}

.world-first {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 12px;
}

.wellness-desc {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.wellness-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
}

.wellness-notes {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.wellness-note-main {
    line-height: 1.8;
}

.wellness-note-sub {
    font-size: 12px;
    margin-bottom: 32px;
    margin-top: 16px;
    line-height: 1.6;
}

.wellness-link-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0 auto 40px auto;
    max-width: 1000px;
}

.page-container .wellness-img {
    max-width: 100%;
    margin-bottom: 0;
}

.more-links-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.products-block {
    text-align: center;
    padding: 40px;
}

.products-title {
    font-size: 30px;
    font-weight: bold;
    color: var(--design-guideline-brandcolor-primary);
    margin-bottom: 32px;
}

.products-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* SNS Share */
.sns-share-section {
    padding: 40px 20px;
    text-align: center;
    background: var(--design-guideline-brandcolor-blue-scale-normal);
}

.sns-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.sns-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.sns-icons img {
    width: 72px;
    height: 72px;
}

/* Scroll Reveal Effect */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Impressive Title Reveal */
.reveal .campaign-title {
    opacity: 0;
    transform: translateY(30px) scale(1.05);
    filter: blur(8px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
        transform 1s cubic-bezier(0.25, 1, 0.5, 1),
        filter 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible .campaign-title {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.3s;
}

/* Add slight delay staggering for nav cards if they appear at the same time */
.nav-card:nth-child(2) {
    transition-delay: 0.1s;
}

.nav-card:nth-child(3) {
    transition-delay: 0.2s;
}

.nav-card:nth-child(4) {
    transition-delay: 0.3s;
}

.nav-card:nth-child(5) {
    transition-delay: 0.4s;
}

/* Media Queries for SP (Smartphone) */
@media screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .btn-primary {
        width: 300px;
    }

    .kv-section {
        padding: 104px 16px;
        background-image: url('../img/kv-bg_sp.png');
    }

    .nav-section {
        padding: 40px 16px 60px;
        background-size: 800px auto;
    }

    .footer-info-section {
        background-size: 800px auto;
    }

    .kv-content {
        flex-direction: column;
        gap: 40px;
    }

    .kv-bottom {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .kv-left,
    .kv-right {
        align-items: center;
        text-align: center;
    }

    .kv-logo {
        width: 180px;
        margin: 0 auto;
    }

    .kv-subtitle-wrapper {
        justify-content: center;
    }

    .kv-title {
        font-size: 28px;
        text-align: center;
    }

    .kv-subtitle {
        font-size: 24px;
    }

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

    .nav-container {
        flex-direction: column;
    }

    .nav-card {
        width: 100%;
    }

    .nav-label,
    .nav-heading {
        height: auto;
    }

    .campaign-section {
        padding: 40px 16px;
    }

    .campaign-section:not(.fireworks-bg)::before {
        top: -30px;
        right: -80px;
        width: 270px;
    }

    .campaign-title, .launching-text {
        font-size: 26px;
    }

    .launching-box {
        padding: 16px 24px;
    }

    .event-ended-overlay {
        font-size: 32px;
        padding: 0 16px;
    }

    .split-container {
        flex-direction: column;
    }

    .split-col {
        padding: 60px 16px;
    }

    .store-list-grid {
        flex-direction: column;
        gap: 12px;
    }

    .timer-box {
        width: 152px;
    }

    .timer-num {
        font-size: 32px;
    }

    .reborn-banner-wrapper {
        flex-direction: column;
    }

    .page-container .reborn-banner-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .campaign-info {
        font-size: 18px;
        margin-left: 1rem;
    }

    .store-list-highlight {
        padding: 20px;
    }

    .shop-banner-wrapper {
        flex-direction: column;
    }

    .page-container .shop-banner-image {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .shop-banner-content {
        align-items: center;
    }

    .shop-banner-content .sub-col-text {
        width: 100%;
    }

    .footer-info-container {
        padding: 60px 16px;
    }

    .wellness-desc {
        font-size: 18px;
    }

    .wellness-title {
        font-size: 24px;
    }

    .wellness-link-area {
        flex-direction: column;
    }

    .page-container .wellness-img {
        max-width: 100%;
        width: 100%;
    }

    .more-links-grid {
        flex-direction: column;
        align-items: center;
    }

    .products-title {
        font-size: 24px;
    }

    .products-block {
        padding: 0;
    }

    .products-links {
        flex-direction: column;
        align-items: center;
    }

    .sns-title {
        font-size: 20px;
    }

    .sns-icons img {
        width: 50px;
        height: 50px;
    }
}