/* index.css — WEBO ONLINE STORE homepage styles */
:root {
--color-bg: #F8F6F3;
--color-text: #2C2C2C;
--color-text-light: #6B6560;
--color-accent: #8B7355;
--color-accent-light: #B8A88A;
--color-divider: #D4CEC6;
--color-white: #FFFFFF;
--color-dark: #1A1A1A;
--font-en: 'Cormorant Garamond', serif;
--font-jp: 'Noto Serif JP', serif;
--font-sans: 'Inter', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-jp);
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.announce-bar a {
    color: rgba(255,255,255,0.95);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 8px;
    font-size: 0.72rem;
}
.announce-bar a:hover {
    color: #fff;
}
.announce-bar .announce-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px 8px;
    line-height: 1;
}
.announce-bar .announce-close:hover {
    color: rgba(255,255,255,0.9);
}

/* Nav styles moved to header.css */

  /* ─── HERO SECTION ─── */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url('/pickup/202506/001.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
}
.hero-title-en {
    font-family: var(--font-en);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.2;
}
.hero-title-jp {
    font-family: var(--font-jp);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.hero-scroll-text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.hero-scroll-icon {
    width: 20px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}
.hero-scroll-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 1px;
    animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
0%, 100% {
opacity:1;
}
50% {
opacity:0.3;
}
}
/* ─── NEW ARRIVALS ─── */
section {
    padding: 110px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-title-en {
    font-family: var(--font-en);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.2;
}
.section-title-jp {
    font-family: var(--font-jp);
    font-size: 0.88rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
}
.section-divider {
    width: 50px;
    height: 1px;
    background: var(--color-accent-light);
    margin: 22px auto 0;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.product-card {
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.product-card .image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #fff;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.product-card .image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s;
}
.product-card:hover .image img {
    transform: scale(1.04);
}
.product-card-body {
    padding: 9px 18px 18px;
}
.product-card-body .brand {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 6px;
    font-weight: 500;
}
.product-card-body .name {
    font-family: var(--font-en);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.4;
}
.product-card-body .price {
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text);
}
/* ─── MORE LINK ─── */
.section-more {
    text-align: center;
    margin-top: 48px;
}
.more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-jp);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-text);
    text-decoration: none;
    padding: 12px 36px;
    border: 1px solid var(--color-divider);
    border-radius: 40px;
    transition: all 0.3s;
}
.more-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(139,115,85,0.04);
}
.more-link svg {
    transition: transform 0.3s;
}
.more-link:hover svg {
    transform: translateX(4px);
}
/* ─── IMAGE BAND ─── */
.image-band {
    position: relative;
    width: 100%;
    height: 250px;
    margin: 0 0;
    overflow: hidden;
    /* 左下が明るく、右上が深い。純黒のまま不透明度だけで濃淡付与 */
    background:
        linear-gradient(225deg,
            rgba(0, 0, 0, 0.38) 0%,
            rgba(0, 0, 0, 0.32) 55%,
            rgba(0, 0, 0, 0.26) 100%);
}

.image-band-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.image-band-title-en {
    font-family: var(--font-en);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 6px;
    line-height: 1.2;
}
.image-band-title-jp {
    font-family: var(--font-jp);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
}
.band-scroll {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    margin-top: 18px;
    cursor: pointer;
}
/* ─── REVIEW SECTION ─── */
.review-section {
    background: var(--color-white);
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}
.review-card {
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.review-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #EDEBE8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.review-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.review-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.review-quote {
    border-left: 3px solid var(--color-accent);
    padding-left: 18px;
    margin-bottom: 16px;
    flex: 1;
}
.review-quote-text {
    font-family: var(--font-jp);
    font-size: 0.85rem;
    color: var(--color-text);
    line-height: 1.8;
    font-style: italic;
}
.review-attr {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 4px;
    font-weight: 500;
}
.review-attr-name {
    font-family: var(--font-jp);
    font-size: 0.82rem;
    color: var(--color-text-light);
}
/* ─── HOT ITEMS SECTION ─── */
.hot-items-section {
    background: #F0EFEA;
}
.promo-banner {
    width: 100%;
    border-radius: 6px;
    margin: 60px 0;
    padding: 0;
    overflow: hidden;
    transition: opacity 0.3s;
	display: block
}
.promo-banner a {
    display: block;
    text-decoration: none;
}
.promo-banner a:hover {
    opacity: 0.92;
}
.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
}
/* ─── RECOMMEND SECTION ─── */
.recommend-section {
    background: var(--color-white);
}
/* ─── STANDARD SECTION ─── */
.standard-section {
    background: #F0EFEA;
}
/* ─── BRAND SECTION ─── */
.brand-section {
    background: var(--color-white);
}
.brand-table {
    width: 100%;
    border-collapse: collapse;
}
.brand-table tr {
    border-bottom: 1px solid var(--color-divider);
}
.brand-table td {
    padding: 18px 0;
    vertical-align: middle;
}
.brand-letter {
    width: 48px;
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    padding-right: 24px;
    letter-spacing: 0.05em;
}
.brand-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
}
.brand-links a {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--color-text-light);
    text-decoration: none;
    padding: 5px 14px;
    border: 1px solid var(--color-divider);
    border-radius: 20px;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.brand-links a:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(139,115,85,0.04);
}
/* ─── DARK INFO SECTION ─── */
.info-section {
    background: #2C2C2C;
    color: rgba(255,255,255,0.7);
    padding: 60px 0;
}
.info-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.info-block h3 {
    font-family: var(--font-jp);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}
.info-block p {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}
.info-block .masked {
    letter-spacing: 0.1em;
}
.sns-row {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}
.sns-row a {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.05em;
}
.sns-row a:hover {
    color: rgba(255,255,255,0.9);
}
/* ─── POPULAR SECTION ─── */
.popular-section {
    background: var(--color-white);
}
.popular-grid, .hot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.popular-grid a, .hot-grid a {
    border: 1px solid var(--color-divider)
}
/* ─── STORY BAND ─── */
.story-band { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.story-card { position: relative; overflow: hidden; background: #555; }
.story-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.6s ease; }
.story-card:hover img { transform: scale(1.04); opacity: 0.85; }
.story-card a {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    justify-content: flex-end; align-items: flex-start;
    padding: 10% 8%; text-decoration: none; color: #fff; z-index: 1;
    background: linear-gradient(0deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.10) 50%, transparent 100%);
    transition: background 0.4s ease;
}
.story-card:hover a { background: linear-gradient(0deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); }
.story-label {
    font: 300 0.62rem/1 'Inter', sans-serif; letter-spacing: 0.18em; text-transform: uppercase;
    opacity: 0.8; margin-bottom: 6px;
}
.story-title {
    font: 400 1.35rem/1.25 'Cormorant Garamond', 'Noto Serif JP', serif;
    letter-spacing: 0.04em; margin-bottom: 10px;
}
.story-cta {
    font: 400 0.65rem/1 'Inter', sans-serif; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.5);
    transition: border-color 0.3s ease, letter-spacing 0.3s ease;
}
.story-card:hover .story-cta { border-color: #fff; letter-spacing: 0.18em; }
/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:900px) {
.story-band { grid-template-columns: 1fr 1fr; }
.story-title { font-size: 1.15rem; }
.story-card a { padding: 8% 6%; }
.story-band .story-card:nth-child(3) { grid-column: span 2; }
.hero {
    background-attachment: scroll;  /* iOS Safari does not support fixed */
    height: 70vh;
}
.container {
    padding: 0 20px;
}
section {
    padding: 70px 0;
}
.product-grid, .popular-grid, .hot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.review-grid {
    grid-template-columns: 1fr;
    gap: 28px;
}
.hero-title-en {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
}
.section-title-en {
    font-size: clamp(1.6rem, 3vw, 2rem);
}
.section-title-jp {
    font-size: 0.76rem;
}
.hero-title-jp {
    font-size: clamp(0.85rem, 2vw, 1rem);
}
.image-band {
    height: 280px;
    margin: 0;
}
.image-band-title-en {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}
.product-card-body {
    padding: 16px 14px;
}
.product-card-body .name {
    font-size: 0.92rem;
}
.product-card-body .price {
    font-size: 1rem;
}
.info-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
}
.info-block h3 {
    font-size: 0.88rem;
}
.info-block p {
    font-size: 0.76rem;
}
.sns-row {
    flex-direction: column;
    gap: 8px;
}
.promo-banner {
    margin:  40px 0;
}
.brand-table td {
    padding: 14px 0;
}
.brand-links {
    gap: 6px 8px;
}
.brand-links a {
    font-size: 0.72rem;
    padding: 4px 11px;
}
}

@media(max-width:480px) {
.product-grid, .popular-grid, .hot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.brand-letter {
    width: 32px;
    font-size: 0.85rem;
    padding-right: 12px;
}
.brand-links a {
    font-size: 0.68rem;
    padding: 3px 9px;
}
}