@charset "utf-8";

:root {
    --burgundy: #4A0E0E;
    --dark-brown: #2C1810;
    --matte-black: #1A1A1A;
    --gold-accent: #C5A059;
    --text-light: #F5F5F5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--matte-black);
    color: var(--text-light);
    font-family: "Crimson Text", "Shippori Mincho", serif;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0; width: 100%; padding: 20px;
    text-align: center; font-weight: bold; letter-spacing: 0.2em;
    z-index: 100; background: rgba(26, 26, 26, 0.8);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('hero-cannele.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

/* Content Sections */
section { padding: 100px 20px; }

.concept {
    background-color: var(--burgundy);
    text-align: center;
    padding: 130px 20px;
}

.logo-wrapper { margin-bottom: 40px; }
.concept-logo { width: 120px; height: auto; filter: brightness(1.2); }

.container { max-width: 900px; margin: 0 auto; }

.image-section {
    height: 60vh;
    background: url('hero-cannele.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

/* Ingredients & Flavors */
.ingredients-story { text-align: center; }
.flex-row { display: flex; gap: 60px; margin-top: 40px; text-align: left; }
.sub-title {
    display: block;
    font-size: 0.9rem;
    color: var(--gold-accent);
    letter-spacing: 0.3em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.flavor-header { text-align: center; padding-bottom: 100px; }
.center-title { font-size: 3rem; letter-spacing: 0.2em; margin: 20px 0; }
.title-line { width: 1px; height: 100px; background: var(--gold-accent); margin: 0 auto; }

.flavor-item-center {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.parallax-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -2;
}

.bg-parallax::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(26, 26, 26, 0.1) 40%,
        rgba(26, 26, 26, 0.1) 60%,
        rgba(26, 26, 26, 0.8) 100%
    );
    z-index: -1;
}

/* CTA Section */
.cta-section { padding: 150px 20px; text-align: center; }
.cta-lead { margin-bottom: 60px; font-size: 1.1rem; line-height: 2; }
.cta-buttons { display: flex; justify-content: center; gap: 30px; margin-bottom: 80px; }

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    padding: 25px 0;
    text-decoration: none;
    transition: 0.4s;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
}
.btn:hover { background: var(--gold-accent); color: var(--matte-black); }

/* --- 運営会社エリア（ここが中央揃えの核心） --- */
.company-info-wrapper {
    width: 100% !important;
    background-color: var(--matte-black) !important;
    padding: 120px 20px !important;
    text-align: center !important;
    clear: both !important;
}

.company-info {
    display: inline-block !important;
    max-width: 600px;
    width: 100%;
    margin: 0 auto !important;
    border-top: 1px solid rgba(197, 160, 89, 0.4);
    padding-top: 60px !important;
    text-align: center !important;
}

.company-label {
    display: block !important;
    margin-bottom: 25px !important;
    color: var(--gold-accent) !important;
    letter-spacing: 0.4em !important;
    font-size: 0.9rem !important;
}

.company-info p {
    text-align: center !important;
    line-height: 2.2 !important;
    margin-bottom: 10px !important;
}

/* Footer */
footer { padding: 60px 20px; background: var(--dark-brown); text-align: center; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: var(--text-light); text-decoration: none; margin: 0 15px; opacity: 0.7; }
.copyright { font-size: 0.7rem; opacity: 0.5; }

/* Animation */
.fade-in { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- レスポンシブ（最後に書くことで上書きを防ぐ） --- */
@media (max-width: 768px) {
    .flex-row { flex-direction: column; gap: 30px; }
    .hero, .image-section { background-attachment: scroll !important; height: 50vh; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 20px; }
    .btn { width: 100%; }
    .center-title { font-size: 2.2rem; }
}