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

:root {
    --primary-color: #f7a8b8; /* Soft pink */
    --secondary-color: #8bb8e8; /* Soft June blue */
    --accent-color: #d4af37; /* Gold */
    --text-color: #333333;
    --bg-color: #fafafa;
    --white: #ffffff;
    --font-heading: 'メイリオ', serif;
    --font-body: 'メイリオ', serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('/assets/campaign/img/jb-main.png') center/cover no-repeat;
    color: var(--white);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-jb {
    display: inline-block;
    padding: 1rem 5rem;
    background-color: #fff;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.btn-jb:hover {
    background-color: transparent;
    color: #fff
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-jb-white {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid #fff;
    font-weight: bold;
}

.btn-jb-white:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

/* Section Common */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Campaign Overview */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.overview-card p {
    color: #666;
}

/* Presents Section */
.presents-section {
    background-color: #fcfcfc;
    width: 100%;
    max-width: 100%;
}

.presents-container {
    max-width: 1200px;
    margin: 0 auto;
}

.present-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.present-wrap.reverse {
    flex-direction: row-reverse;
}

.present-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.present-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.present-image:hover img {
    transform: scale(1.02);
}

.present-desc {
    flex: 1;
    min-width: 300px;
}

.target-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.present-desc h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.present-desc p {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Notes & Stores */
.info-section {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 3rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Call to Action */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    max-width: 100%;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.cta-phone {
    font-size: 3rem;
    font-weight: 700;
    margin: 2rem 0;
    display: block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-phone i {
    margin-right: 15px;
}

.cta-desc {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #222;
    color: #fff;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .present-wrap {
        flex-direction: column;
        gap: 2rem;
    }
    .present-wrap.reverse {
        flex-direction: column;
    }
    .cta-phone {
        font-size: 2rem;
    }
}
