@charset "utf-8";@charset "UTF-8";

#header, .keyword-box, .crumbsList, 
#header .header__nav, #header .header__inner, #header .header__nav--bottom {
    display: none;
}

/* =========================================
   TOP
========================================= */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
    background-color: #000000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.logo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none; 
}

.brand-logo-img {
    width: 80%;
    max-width: 400px;
    opacity: 0;
    transform: translateY(15px) scale(0.98); 
    filter: blur(16px); 
    animation: fadeUpJiwari 3.5s ease-in-out 0.5s forwards; 
}

@keyframes fadeUpJiwari {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
        filter: blur(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* =========================================
   グリッドセクション
========================================= */
.image-grid {
    display: flex;
    flex-wrap: wrap; 
    width: 100%;
}

.grid-item {
    position: relative; 
    width: 50%; 
    aspect-ratio: 3 / 4; 
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.6s ease; 
}

@media (hover: hover) and (pointer: fine) {
    .grid-item:hover img {
        transform: scale(1.03); 
    }
}

/* =========================================
   クレジット情報
========================================= */
.credit-info {
    position: absolute; 
    top: 24px; 
    left: 24px;
    z-index: 5; 
    color: #ffffff; 
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.credit-item {
    margin-bottom: 20px; 
    font-family: "helvetica-lt-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.credit-item:last-child {
    margin-bottom: 0;
}

.buy-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold; 
    transition: opacity 0.3s ease;
}

.buy-link:hover {
    opacity: 0.6; 
}

/* =========================================
   ボトムリンクセクション
========================================= */
.bottom-links-container {
    width: 100%;
    padding-top: 80px;
    padding-right: 40px;
    padding-bottom: 160px;
    padding-left: 40px;
    background-color: #ffffff;
}

.bottom-links-list {
    list-style-type: none; 
    max-width: 1200px; 
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}

.bottom-links-list li {
    margin-bottom: 12px; 
}

.bottom-links-list li:last-child {
    margin-bottom: 0;
}

.bottom-links-list a {
    display: inline-flex;
    align-items: center;
    text-decoration: none; 
    color: #000000;
    font-size: 16px;
    font-weight: bold; 
    letter-spacing: 0.05em; 
    transition: opacity 0.3s ease; 
}

.bottom-links-list a:hover {
    opacity: 0.5; 
}

.bottom-links-list .arrow {
    margin-right: 16px; 
    font-family: sans-serif; 
    font-weight: normal; 
}

.bottom-links-list .text {
    font-family: "helvetica-lt-pro", sans-serif;
    font-weight: 700; 
}

/* =========================================
   レスポンシブ対応 
========================================= */
@media (max-width: 768px) {
    .grid-item {
        width: 100%; 
    }

    .brand-logo-img {
        max-width: 250px; 
    }

    .credit-info {
        top: 16px;
        left: 16px;
        font-size: 11px; 
    }

    .credit-item {
        margin-bottom: 16px;
    }

    .bottom-links-container {
        padding-top: 60px;
        padding-right: 20px;
        padding-bottom: 150px;
        padding-left: 20px;
    }
    
    .bottom-links-list a {
        font-size: 15px; 
    }
}