/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.cdnfonts.com/css/new-walt-disney-font');

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #FF3366;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-pixel: 'Silkscreen', cursive;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    cursor: none;
    border: none;
    background: none;
    outline: none;
}

/* --- CURSOR --- */
.cursor-wand {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 10000;
    margin-top: -4px;
    margin-left: -4px;
}

.wand-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.3));
}

.cursor-wand.active .wand-svg {
    transform: rotate(-15deg) scale(1.1);
    transition: transform 0.2s ease;
}

.magic-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background-color: #FFD700;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 4px rgba(255, 215, 0, 0.8);
}

/* --- LOADING --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    font-family: var(--font-pixel);
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.1em;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* --- HERO --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    display: block;
}

.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 50;
    color: #fff;
    mix-blend-mode: overlay;
}

.brand-logo {
    font-family: 'New Walt Disney Font', sans-serif;
    font-weight: 800;
    font-size: 24px;
    /* text-transform: lowercase; */
}

nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

nav li {
    font-family: var(--font-pixel);
    font-size: 10px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav li a:hover {
    color: var(--accent-color);
}

.hero-ui {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 20;
}

.about-btn {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.about-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.scroll-down-btn {
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

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

    60% {
        transform: translateY(3px);
    }
}

/* --- CONTENT --- */
.content {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 10;
}

.look-item {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: block;
    background: #000;
}

.look-img-container {
    width: 100%;
    height: 100%;
}

.look-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 0.5s ease;
    opacity: 0.9;
}

.look-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s ease;
    color: #fff;
}

.look-number {
    font-family: var(--font-pixel);
    font-size: 12px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.look-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    transform: translateY(30px);
    transition: transform 0.4s ease 0.05s;
}

.look-view {
    margin-top: 20px;
    font-family: var(--font-pixel);
    font-size: 12px;
    letter-spacing: 0.2em;
    border: 1px solid #fff;
    padding: 8px 24px;
    transform: translateY(30px);
    transition: transform 0.4s ease 0.1s;
}

.look-item:hover .look-img-container img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.look-item:hover .look-overlay {
    opacity: 1;
}

.look-item:hover .look-number,
.look-item:hover .look-title,
.look-item:hover .look-view {
    transform: translateY(0);
}

/* --- CONTACT SECTION (Refined & Pop) --- */
#contact {
    background: #000;
    color: #fff;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* 魔法陣のような背景装飾 */
#contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vw;
    height: 150vw;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateBg 60s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.contact-wrapper {
    width: 100%;
    max-width: 800px;
    z-index: 10;
}

.contact-header {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.contact-header span {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-pixel);
    -webkit-text-stroke: 0;
    color: var(--accent-color);
    margin-top: 10px;
}

.form-grid {
    display: grid;
    gap: 40px;
}

.input-box {
    position: relative;
}

.input-box input,
.input-box textarea {
    width: 100%;
    background: transparent;
    border: 2px solid #333;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    /* 巨大文字入力 */
    font-weight: 700;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.input-box textarea {
    min-height: 200px;
    font-size: 1.5rem;
    resize: none;
}

/* ラベル */
.input-label {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #000;
    padding: 0 10px;
    font-family: var(--font-pixel);
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

/* Focus Effects */
.input-box input:focus,
.input-box textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 5px 5px 0px #fff;
    transform: translate(-2px, -2px);
}

.input-box input:focus+.input-label,
.input-box textarea:focus+.input-label {
    color: var(--accent-color);
}

/* Submit Button */
.submit-area {
    text-align: right;
    margin-top: 20px;
}

.magic-btn {
    font-family: var(--font-pixel);
    font-size: 18px;
    background: #fff;
    color: #000;
    padding: 20px 60px;
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.1s;
}

.magic-btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-color);
    transform: scale(1.05);
}

footer {
    padding: 30px 20px;
    text-align: center;
    font-family: var(--font-pixel);
    font-size: 10px;
    background: #000;
    color: #555;
    text-transform: uppercase;
    border-top: 1px solid #111;
}

@media (max-width: 768px) {
    .contact-header {
        font-size: 2.5rem;
    }

    .input-box input {
        font-size: 1.2rem;
    }
}

/* --- LOOK PAGE STYLES --- */
.back-btn {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 100;
    font-family: var(--font-pixel);
    font-size: 12px;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: 0.3s;
}

.back-btn:hover {
    background: #000;
    color: #fff;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.item-image {
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

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

.item-info {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.item-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 60px;
    max-width: 400px;
}

.buy-btn {
    font-family: var(--font-pixel);
    font-size: 16px;
    background: #000;
    color: #fff;
    padding: 20px 0;
    width: 100%;
    max-width: 300px;
    text-transform: uppercase;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #FF3366;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    .item-image {
        height: 60vh;
    }

    .item-info {
        padding: 40px 20px;
    }

    .item-title {
        font-size: 2rem;
    }
}

/* --- ABOUT PAGE STYLES --- */
.about-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    position: relative;
}

.about-title {
    font-family: var(--font-display);
    font-size: 8vw;
    font-weight: 800;
    text-align: center;
    line-height: 0.9;
    text-transform: uppercase;
}

.about-content {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

.about-content p {
    margin-bottom: 40px;
}

.highlight {
    color: #FF3366;
    font-weight: 700;
}