/* ===================================================
   ARCANA - Design CSS (Figma準拠版)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500&display=swap');

:root {
    --black: #000000;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-navy: #001f3f;
    --dark-cta: #282f39;
    --footer-bg: #45413d;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --warm-gray: #e5e4e2;
    --text-dark: #333333;
    --text-body: #444444;
    --text-gray: #666666;
    --light-gray: #cccccc;
    --price-blue: #4b75b5;
    --orange: #fb8456;
    --red: #ff0a0a;
    --font-gothic: 'ヒラギノ角ゴ ProN W3', Arial, sans-serif;
    --font-mincho: 'ヒラギノ明朝 ProN W6', 'Yu Mincho', 'YuMincho', serif;
    --font: var(--font-mincho);
}

/* ===================================================
   Reset & Base
   =================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
a:hover { opacity: 0.7; }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===================================================
   Header / Navigation
   =================================================== */

#arcana-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #202020;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.header-inner {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.header-logo img {
    height: 32px;
    width: auto;
    display: block;
}
.header-logo:hover { opacity: 0.8; }

.header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.header-nav a {
    color: var(--white);
    font-size: 14px;
    padding: 0 10px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: rgba(255,255,255,0.6);
    opacity: 1;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--black);
    z-index: 999;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    font-family: var(--font-gothic);
    display: block;
    color: var(--white);
    font-size: 14px;
    padding: 12px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a:hover {
    background: rgba(255,255,255,0.05);
    opacity: 1;
}

/* Page offset */
.page-body { padding-top: 64px; }

/* ===================================================
   Footer
   =================================================== */

#arcana-footer {
    background: #0d0d0d;
    color: var(--white);
    padding: 60px 60px 50px;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 280px 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-col-logo .footer-logo {
    display: block;
}
.footer-col-logo .footer-logo img {
    width: 180px;
    height: auto;
}
.footer-col-logo .footer-logo:hover { opacity: 0.8; }

.footer-shop-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-info-list {
    font-family: var(--font-gothic);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
}
.footer-info-list dt {
    color: rgba(255,255,255,0.45);
    margin-top: 12px;
}
.footer-info-list dt:first-child { margin-top: 0; }
.footer-info-list dd { margin: 0; }

.footer-tel {
    color: #c0392b;
    text-decoration: none;
    font-weight: 600;
}
.footer-tel:hover { opacity: 0.8; }

.footer-col-nav,
.footer-col-nav2 nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-col-nav a,
.footer-col-nav2 nav a {
    font-family: var(--font-gothic);
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}
.footer-col-nav a::before,
.footer-col-nav2 nav a::before {
    content: '—';
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
}
.footer-col-nav a:hover,
.footer-col-nav2 nav a:hover { color: var(--white); }

.footer-col-nav2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    justify-content: flex-end;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 0.7; }

/* ===================================================
   Layout Utilities
   =================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.section { padding: 80px 0; }

/* ===================================================
   Buttons
   =================================================== */

.btn {
    display: inline-block;
    padding: 12px 36px;
    font-family: var(--font-gothic);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
}

.btn-navy {
    background: var(--dark-navy);
    color: var(--white);
}
.btn-navy:hover { background: #002a52; opacity: 1; }

.btn-dark {
    background: var(--text-dark);
    color: var(--white);
}
.btn-dark:hover { background: var(--black); opacity: 1; }

.btn-outline-white,
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 12px 36px;
}
.btn-outline-white:hover,
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); opacity: 1; }

.btn-outline-dark {
    background: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}
.btn-outline-dark:hover { background: var(--text-dark); color: var(--white); opacity: 1; }

/* ===================================================
   TOP PAGE
   =================================================== */

/* Hero */
.top-hero {
    position: relative;
    min-height: calc(100vh - 64px);
    background: var(--dark);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.top-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero.jpg');
    background-size: cover;
    background-position: center top;
}

/* Hero center logo overlay */
.top-hero-title-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.top-hero-logo {
    width: clamp(200px, 40vw, 600px);
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Hero bottom labels */
.top-hero-labels {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: end;
    width: 60%;
    margin: 0 auto;
    padding-bottom: 36px;
}

.top-hero-label-item {
    font-family: var(--font-mincho);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}
.top-hero-label-item:hover { opacity: 1; }

.top-hero-label-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.top-hero-label-en {
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.12em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    line-height: 1.3;
}

.top-hero-label-ja {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.06em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    line-height: 1.3;
}

.top-hero-label-arrow {
    display: block;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 20px solid rgba(255,255,255,0.9);
}

/* Brand + Products (white bg) */
.top-brand-section {
    background: var(--white);
    padding: 100px 40px 80px;
}

.top-brand-text-wrap {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.top-brand-heading {
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.4;
}

.top-brand-desc {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-gothic);
    color: var(--text-body);
    line-height: 2;
    max-width: 680px;
    margin: 0 auto;
}

.top-jackets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto 40px;
    max-width: 1200px;
}

.top-jacket-item {
    display: block;
}

.top-jacket-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.top-jacket-item:hover img { opacity: 0.8; }

.top-jacket-name {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 0.02em;
}

.top-basemodel-link-wrap {
    max-width: 1200px;
    margin: 16px auto 0;
    padding: 0 40px;
    text-align: right;
}

.top-basemodel-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mincho);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-dark);
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    position: relative;
    transition: opacity 0.2s;
}
.top-basemodel-link::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
}
.top-basemodel-link:hover { opacity: 0.6; }

.top-basemodel-link-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #bbb;
    flex-shrink: 0;
}
.top-basemodel-link-circle::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #999;
    border-right: 1.5px solid #999;
    transform: rotate(45deg) translateX(-2px);
}

/* Photo Grid */
.top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
        "purpose leather about about"
        "interview interview about about"
        "interview interview order repair";
    background: var(--dark);
    margin-bottom: 50px;
}

.top-grid-purpose   { grid-area: purpose; }
.top-grid-leather   { grid-area: leather; }
.top-grid-about     { grid-area: about; }
.top-grid-interview { grid-area: interview; }
.top-grid-order     { grid-area: order; }
.top-grid-repair    { grid-area: repair; }

.top-grid-cell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.top-grid-cell--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: transform 0.5s ease, opacity 0.3s ease;
    position: absolute;
    inset: 0;
}
.top-grid-cell--photo:hover img {
    transform: scale(1.04);
    opacity: 0.65;
}

.top-grid-cell--black {
    background: #111;
    display: flex;
    align-items: flex-start;
}

.top-grid-cell-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px;
    background: rgba(128, 128, 128, 0.05);
    color: var(--white);
    z-index: 1;
}

.top-grid-cell-body-inner {
    padding: 28px 28px;
    color: var(--white);
}


.top-grid-cell-en {
    font-family: var(--font-mincho);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 6px;
    display: block;
    line-height: 1.4;
}

.top-grid-cell-ja {
    font-size: 25px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.4;
    display: block;
}

.top-grid-about .top-grid-cell-ja,
.top-grid-interview .top-grid-cell-ja {
    font-size: 35px;
}

.top-grid-order .top-grid-cell-en,
.top-grid-repair .top-grid-cell-en {
    font-size: 22px;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.top-grid-more {
    font-family: var(--font-gothic);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.top-grid-more::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.top-grid-pickup-label {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font-mincho);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--white);
    background: rgba(60, 60, 60, 0.92);
    padding: 8px 20px;
    z-index: 2;
}

.top-grid-cell-title {
    font-family: var(--font-mincho);
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.3;
    display: block;
}

.top-grid-cell-desc {
    font-family: var(--font-mincho);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.top-grid-pickup-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.top-grid-pickup-card {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.85);
}
.top-grid-pickup-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    flex-shrink: 0;
}
.top-grid-pickup-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

/* Service intro (white bg) */
.top-service-intro {
    background: var(--white);
    padding: 80px 200px;
}

.top-service-intro-sub {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
}

.top-service-intro-heading {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.top-service-intro-desc {
    font-family: var(--font-gothic);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.8;
}

/* Service Banners (3 horizontal) */
.top-service-banners {
    display: flex;
    flex-direction: column;
}

.top-service-banner {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.top-service-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.top-service-banner:hover > img { transform: scale(1.03); }

.top-service-banner-body {
    position: relative;
    z-index: 1;
    padding: 56px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    width: 55%;
}

.top-service-banner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.top-service-banner-label {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 4px;
}

.top-service-banner-en {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 1.3;
}

.top-service-banner-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
    background-color: #494949;
}
.top-service-banner-circle::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid rgba(255,255,255,0.9);
    border-right: 1.5px solid rgba(255,255,255,0.9);
    transform: rotate(45deg) translateX(-2px);
}

.top-service-banner-line {
    border: none;
    border-top: 1px solid rgb(255, 255, 255);
    margin: 20px 0;
}

.top-service-banner-ja {
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.4;
    display: block;
    letter-spacing: 0.02em;
}

.top-service-banner-desc {
    font-family: var(--font-gothic);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    line-height: 1.9;
    padding-left: 3px;
}

/* YouTube */
.top-youtube {
    background: var(--off-white);
    padding: 80px 0;
}

.top-youtube-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.youtube-item iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
}

.youtube-more-link-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ccc;
}
.youtube-more-link-wrap::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
}
.youtube-more-link {
    font-family: var(--font-gothic);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.2s;
}
.youtube-more-link:hover { opacity: 0.6; }
.youtube-more-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #aaa;
    font-size: 16px;
    color: #888;
    flex-shrink: 0;
}

/* CTA Section (TOP) */
.top-cta {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/cta-contact.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.top-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(50, 58, 68, 0.68);
}
.top-cta > .container {
    position: relative;
    z-index: 1;
}
.top-cta-sub {
    font-family: var(--font-gothic);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    display: block;
}
.top-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.top-cta-link:hover { opacity: 0.75; }
.top-cta-heading {
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 8px;
    margin: 0;
}
.top-cta-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.top-cta-circle::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transform: rotate(45deg) translateX(-2px);
}

/* Shared - pickup cards */
.pickup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.pickup-card { display: block; }
.pickup-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #eee;
    margin-bottom: 14px;
}
.pickup-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.pickup-card:hover .pickup-card-img img { transform: scale(1.05); }
.pickup-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--text-gray);
}
.category-badge { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; }
.category-badge.news { color: var(--dark-navy); }
.category-badge.order_repair { color: var(--text-dark); }
.category-badge.others { color: var(--orange); }
.pickup-card h3 { font-size: 14px; font-weight: 600; line-height: 1.5; color: var(--text-dark); }

/* Shared - product cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.product-card { text-align: center; }
.product-card-img {
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f0f0f0;
    margin-bottom: 16px;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.product-card .price { font-size: 14px; color: var(--price-blue); }

/* Contact CTA (used on order/repair pages) */
.section-cta {
    background: var(--dark-navy);
    padding: 80px 0;
    text-align: center;
}
.section-cta h2 { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.section-cta p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }

/* ===================================================
   REPAIR PAGE
   =================================================== */

.repair-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
    background: var(--dark);
}
.repair-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    background-image: url('/images/the-end.jpg');
}
.repair-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    color: var(--white);
}
.repair-hero-content h1 {
    font-size: clamp(60px, 10vw, 150px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 20px;
}
.repair-hero-content .sub {
    font-size: 16px;
    font-weight: 400;
    max-width: 560px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

/* Problem */
.repair-problem {
    background: var(--dark);
    padding: 80px 0;
}
.repair-problem-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.repair-problem-text h2 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 32px; line-height: 1.6; }
.repair-problem-list { display: flex; flex-direction: column; gap: 20px; }
.repair-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.6;
}
.repair-problem-list li .num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.6);
}

/* Why section */
.repair-why {
    background: var(--black);
    padding: 80px 0;
}
.repair-why-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.repair-why h2 { font-size: 13px; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 8px; }
.repair-why h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 48px; line-height: 1.6; }
.repair-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.repair-feature { position: relative; height: 320px; overflow: hidden; }
.repair-feature img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.repair-feature-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--white);
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}
.repair-feature-body h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.repair-feature-body p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* Repair sample */
.repair-sample { background: var(--white); padding: 80px 0; }
.repair-sample-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }

/* Repair CTA (dark navy) */
.repair-cta {
    background: var(--dark-cta);
    padding: 80px 0;
}
.repair-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}
.repair-cta-text h2 { font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.5; }
.repair-cta-text p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 2; margin-bottom: 24px; }
.repair-cta-phone {
    text-align: center;
    color: var(--white);
}
.repair-cta-phone .tel-label { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.repair-cta-phone .tel-num { font-size: 32px; font-weight: 700; color: var(--red); letter-spacing: 0.05em; margin-bottom: 4px; }
.repair-cta-phone .tel-hours { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ===================================================
   ORDER PAGE
   =================================================== */

.order-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
    background: var(--dark);
}
.order-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    background-image: url('/images/banner-images/ayakashi.jpg');
}
.order-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    color: var(--white);
}
.order-hero-content h1 {
    font-size: clamp(48px, 9vw, 120px);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 20px;
}
.order-hero-content p { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 520px; line-height: 1.8; }

/* Order features (warm gray bg) */
.order-features {
    background: var(--warm-gray);
    padding: 80px 0;
}
.order-features h2 { font-size: 26px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.order-features .sub { font-size: 13px; color: var(--text-gray); margin-bottom: 48px; }
.order-feature-list { display: flex; flex-direction: column; gap: 40px; }
.order-feature-item { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start; }
.order-feature-item .num { font-size: 48px; font-weight: 700; color: var(--dark-navy); opacity: 0.2; line-height: 1; }
.order-feature-item h4 { font-size: 16px; font-weight: 700; color: var(--dark-navy); margin-bottom: 8px; }
.order-feature-item p { font-size: 14px; color: var(--text-body); line-height: 1.9; }

/* Order flow */
.order-flow {
    background: var(--white);
    padding: 80px 0;
}
.order-flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.order-flow-step {
    background: var(--dark-navy);
    padding: 40px 32px;
    color: var(--white);
    position: relative;
}
.order-flow-step:nth-child(even) { background: #002952; }
.order-flow-step .step-num { font-size: 48px; font-weight: 700; color: rgba(255,255,255,0.15); line-height: 1; margin-bottom: 16px; }
.order-flow-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.order-flow-step p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.8; }

/* Base models */
.order-models {
    background: var(--off-white);
    padding: 80px 0;
}
.order-models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.order-model-card { text-align: center; }
.order-model-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 12px; }
.order-model-card h4 { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.order-model-card .price { font-size: 13px; color: var(--price-blue); }

/* ===================================================
   ABOUT PAGE
   =================================================== */

.about-hero { background: var(--black); padding: 100px 0; }

/* About intro 2-col layout */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-intro-text h2 {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.about-intro-text h3 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.5;
}
.about-intro-text p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 2; }

/* Shared heading pattern used in about/the-end */
.section-heading { margin-bottom: 48px; }
.section-heading h2 { font-size: 28px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.section-heading h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-top: 8px; }
.section-heading.center { text-align: center; }

/* Gold accent bar (about/the-end dark sections) */
.gold-bar { width: 40px; height: 3px; background: #c4a35a; margin-top: 12px; }
.section-heading.center .gold-bar,
.section-heading .gold-bar { margin-left: auto; margin-right: auto; }

.about-story { background: var(--dark); padding: 80px 0; }
.about-story-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.about-story-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.about-story-item:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
.about-story-item.reverse { direction: rtl; }
.about-story-item.reverse > * { direction: ltr; }
.about-story-text h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.about-story-text p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; }

.price-highlight { padding: 36px; border-left: 3px solid var(--dark-navy); margin-bottom: 20px; background: rgba(255,255,255,0.04); }
.price-highlight .price-num { font-size: 44px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.price-highlight .price-label { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ===================================================
   THE END PAGE
   =================================================== */

.the-end-services { background: var(--black); }
.the-end-service { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.the-end-service:nth-child(even) { direction: rtl; }
.the-end-service:nth-child(even) > * { direction: ltr; }
.the-end-service-img { overflow: hidden; position: relative; }
.the-end-service-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.the-end-service-body {
    padding: 60px;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}
.the-end-service-body .label { font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 6px; }
.the-end-service-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; line-height: 1.5; }
.the-end-service-body p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; margin-bottom: 24px; }

.the-end-access { background: var(--off-white); padding: 80px 0; }
.the-end-access .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.access-info h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.access-info dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; font-size: 13px; margin-bottom: 24px; }
.access-info dt { font-weight: 600; color: #555; white-space: nowrap; }
.access-info dd { color: var(--text-dark); }
.access-map iframe { width: 100%; height: 300px; border: 0; }

/* ===================================================
   PRODUCTS PAGE
   =================================================== */

.products-page { background: var(--white); padding: 60px 0 80px; }
.products-intro { text-align: center; margin-bottom: 48px; }
.products-intro .sub { font-size: 11px; letter-spacing: 0.2em; color: var(--text-gray); text-transform: uppercase; margin-bottom: 8px; }
.products-intro h3 { font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.products-intro p { font-size: 13px; color: var(--text-gray); max-width: 480px; margin: 0 auto; line-height: 1.9; }

.products-all-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 60px; }

.products-services { display: grid; grid-template-columns: repeat(3, 1fr); }
.products-service-item { position: relative; height: 300px; overflow: hidden; }
.products-service-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: transform 0.3s ease; }
.products-service-item:hover img { transform: scale(1.05); }
.products-service-item-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--white);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.products-service-item-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.products-service-item-body p { font-size: 12px; color: rgba(255,255,255,0.8); margin-bottom: 14px; }

/* ===================================================
   PIC UP (Blog)
   =================================================== */

.pickup-page { background: var(--white); padding: 60px 0 80px; }
.pickup-page-header { margin-bottom: 32px; }
.pickup-page-header h1,
.pickup-page h1 { font-size: 28px; font-weight: 700; color: var(--text-dark); letter-spacing: 0.05em; padding-bottom: 16px; border-bottom: 1px solid #ddd; margin-bottom: 24px; }
.pickup-card-body { padding-top: 2px; }

.pickup-tabs { display: flex; border-bottom: 1px solid #ddd; margin-bottom: 40px; }
.pickup-tab {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}
.pickup-tab:hover { color: var(--text-dark); opacity: 1; }
.pickup-tab.active { color: var(--white); background: var(--text-dark); border-bottom-color: var(--text-dark); }

.pickup-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }

.pagination-wrap { display: flex; justify-content: center; align-items: center; gap: 6px; }
.pagination-wrap a,
.pagination-wrap span { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; font-size: 13px; color: #333; border: 1px solid #ddd; }
.pagination-wrap a:hover { background: #333; color: var(--white); border-color: #333; opacity: 1; }
.pagination-wrap span.current { background: #333; color: var(--white); border-color: #333; }

/* ===================================================
   CONTACT PAGE
   =================================================== */

.contact-page { background: var(--white); padding: 60px 0 80px; }
.contact-page-header { text-align: center; margin-bottom: 48px; }
.contact-page-header h1 { font-size: 36px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.contact-page-header .bar { width: 40px; height: 2px; background: var(--dark-navy); margin: 0 auto; }

.contact-form-wrap { max-width: 900px; margin: 0 auto; }
.contact-form table { width: 100%; border-collapse: collapse; }
.contact-form tr { border-bottom: 1px solid #ddd; }
.contact-form tr:first-child { border-top: 1px solid #ddd; }
.contact-form th {
    background: var(--dark-navy);
    color: var(--white);
    padding: 20px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    width: 240px;
    vertical-align: middle;
}
.contact-form th .required {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: middle;
    border-radius: 2px;
}
.contact-form td { padding: 14px 20px; vertical-align: middle; }

.contact-form select,
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font);
    border: 1px solid #ddd;
    background: var(--white);
    color: var(--text-dark);
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    transition: border-color 0.2s ease;
    border-radius: 0;
}
.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--dark-navy); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form-note { font-size: 13px; color: var(--text-gray); text-align: center; margin: 24px 0; line-height: 1.8; }
.contact-form-submit { text-align: center; margin-top: 24px; }
.contact-form-submit input[type="submit"] {
    background: var(--text-dark);
    color: var(--white);
    border: none;
    padding: 14px 60px;
    font-size: 14px;
    font-family: var(--font);
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: background 0.2s ease;
}
.contact-form-submit input[type="submit"]:hover { background: var(--black); }

.contact-success { background: #e8f5e9; color: #2e7d32; padding: 16px 24px; margin-bottom: 24px; border-left: 3px solid #2e7d32; font-size: 14px; }

/* Section heading common */
.sec-heading { margin-bottom: 48px; }
.sec-heading .sub { font-size: 11px; letter-spacing: 0.2em; color: var(--text-gray); text-transform: uppercase; margin-bottom: 6px; }
.sec-heading h2 { font-size: 28px; font-weight: 700; color: var(--text-dark); }
.sec-heading.white .sub { color: rgba(255,255,255,0.5); }
.sec-heading.white h2 { color: var(--white); }
.sec-heading.center { text-align: center; }

/* ===================================================
   Responsive
   =================================================== */

@media (max-width: 1024px) {
    .header-nav { display: none; }
    .nav-hamburger { display: flex; margin-left: auto; }
    .products-grid,
    .products-all-grid,
    .order-models-grid,
    .youtube-grid { grid-template-columns: repeat(2, 1fr); }
    .about-hero-inner,
    .repair-problem-inner,
    .the-end-access .container { grid-template-columns: 1fr; gap: 40px; }
    .the-end-service,
    .the-end-service:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
    .the-end-service-img { height: 280px; }
    .the-end-service-body { padding: 40px; }
    .repair-cta-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .order-flow-grid { grid-template-columns: repeat(2, 1fr); }
    /* TOP: service banners */
    .top-service-banner,
    .top-service-banner:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
    .top-service-banner > img { height: 280px; }
    /* TOP: grid */
    .top-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "purpose leather"
            "interview interview"
            "interview interview"
            "about about"
            "order repair";
    }
}

@media (max-width: 768px) {
    #arcana-header { padding: 0 20px; }
    .container, .container-narrow { padding: 0 20px; }
    .section { padding: 60px 0; }
    /* TOP brand section */
    .top-brand-section { padding: 60px 20px; }
    .top-jackets { grid-template-columns: 1fr; }
    /* TOP grid pickup label */
    .top-grid-pickup-label { font-size: 10px; padding: 5px 12px; }
    /* TOP hero labels: 縦積みリスト */
    .top-hero-labels {
        grid-template-columns: 1fr;
        justify-items: stretch;
        width: 100%;
        padding: 0;
        gap: 0;
    }
    .top-hero-label-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
        border-top: 1px solid rgba(255,255,255,0.2);
        gap: 12px;
    }
    .top-hero-label-item:last-child {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .top-hero-label-text {
        align-items: flex-start;
        text-align: left;
    }
    .top-hero-label-en { font-size: 11px; letter-spacing: 0.15em; }
    .top-hero-label-ja { font-size: 15px; white-space: nowrap; }
    .top-hero-label-arrow {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 11px solid rgba(255,255,255,0.9);
        flex-shrink: 0;
    }
    /* TOP grid */
    .top-grid-cell-body-inner { padding: 24px; }
    .top-grid-cell-en { font-size: 14px; }
    .top-grid-cell-ja { font-size: 18px; }
    .top-grid-about .top-grid-cell-ja,
    .top-grid-interview .top-grid-cell-ja { font-size: 24px; }
    .top-grid-order .top-grid-cell-en,
    .top-grid-repair .top-grid-cell-en { font-size: 16px; }
    .top-grid-cell-desc { font-size: 12px; }
    .top-grid-more { font-size: 12px; }
    /* TOP service intro */
    .top-service-intro { padding: 60px 20px; }
    /* TOP CTA */
    .top-cta { min-height: 300px; }
    /* Other pages */
    .pickup-grid, .pickup-list,
    .repair-sample-grid,
    .repair-features,
    .products-services { grid-template-columns: 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .about-story-item,
    .about-story-item.reverse { grid-template-columns: 1fr; direction: ltr; }
    .order-flow-grid { grid-template-columns: 1fr; }
    .contact-form th, .contact-form td { display: block; width: 100%; }
    .contact-form tr { display: block; }
    .repair-hero-content h1 { font-size: 56px; }
    .order-hero-content h1 { font-size: 52px; }
    #arcana-footer { padding: 40px 20px 32px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-col-logo { grid-column: 1 / -1; }
    .footer-social { justify-content: flex-start; }
    .top-service-banner-body { padding: 40px 24px; }
    .top-service-banner-ja { font-size: 22px; }
}

@media (max-width: 480px) {
    .products-all-grid,
    .order-models-grid,
    .youtube-grid { grid-template-columns: 1fr; }
    .top-jackets { grid-template-columns: 1fr; }
    .pickup-tabs { flex-wrap: wrap; }
    .pickup-tab { flex: 1; min-width: 50%; text-align: center; font-size: 11px; }
    .top-hero-label-ja { font-size: 15px; }
}
