/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #0F204B; /* 深いネイビー */
    --color-secondary: #C6A248; /* ゴールド */
    --color-accent: #C6A248; /* ゴールド */
    --color-dark: #0A1429; /* より濃いネイビー */
    --color-light: #F8F4E6; /* 薄いベージュ */
    --color-white: #FFFFFF;
    --color-gray: #8B7355;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Noto Sans JP', 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-primary);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(197, 161, 108, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(44, 24, 16, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(197, 161, 108, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: unset;
    max-width: min(280px, 50vw);
    flex-shrink: 1;
    margin-left: -2rem;
}

.nav-logo a {
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    padding-left: 2rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    padding-right: 0.5rem;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 1px;
    margin-top: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-top: -2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-and {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3em;
    margin: 0 0.18em;
    vertical-align: middle;
    color: var(--color-secondary);
    letter-spacing: 0.1em;
    font-weight: 400;
    display: inline-block;
}

.logo-and-alt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: var(--color-secondary);
  margin: 0 0.18em;
  vertical-align: baseline;
  line-height: 1;
  display: inline-block;
}

/* PC用デフォルト */
.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    position: static;
    width: auto;
    height: auto;
    background: none;
    transform: none;
    padding-top: 0;
    transition: none;
    z-index: auto;
    flex-shrink: 0;
}

/* デフォルト設定（モバイル優先） */
.desktop-version {
    display: none !important;
}

.mobile-version {
    display: inline !important;
    white-space: normal !important;
}

/* PC向けスタイル */
@media (min-width: 769px) {
    .hero-subtitle {
        max-width: 800px;
        font-size: 1.2rem;
        width: 100%;
    }
    .mobile-break {
        display: none;
    }
    
    .desktop-version {
        display: inline !important;
    }
    
    .mobile-version {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
    
    .desktop-version {
        display: none !important;
    }
    
    .mobile-version {
        display: inline !important;
    }
}

@media (max-width: 480px) {
    .mobile-break {
        display: block;
    }
    
    .desktop-version {
        display: none !important;
    }
    
    .mobile-version {
        display: inline !important;
    }
}

/* モバイルのみスライドイン - 右60%展開 */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: 0;
        width: 60%;
        height: calc(100vh - 80px);
        background: rgba(44, 24, 16, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    opacity: 0.9;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 162, 72, 0.1), rgba(198, 162, 72, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--color-secondary);
    opacity: 1;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hamburger:hover {
    background: rgba(198, 162, 72, 0.2);
    transform: scale(1.05);
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    z-index: -2;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23C5A16C" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 32, 75, 0.4) 0%,
        rgba(10, 20, 41, 0.5) 50%,
        rgba(15, 32, 75, 0.3) 100%
    );
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

/* Slide Navigation */
.slide-indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.indicator.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    opacity: 1;
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.indicator:hover {
    opacity: 1;
    transform: scale(1.2);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-bottle {
    position: absolute;
    width: 100px;
    height: 200px;
    background: linear-gradient(45deg, var(--color-accent), var(--color-secondary));
    border-radius: 50px 50px 20px 20px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.bottle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bottle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.floating-lemon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 50%;
    top: 30%;
    right: 25%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-coffee {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    bottom: 30%;
    left: 20%;
    opacity: 0.1;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        4px 4px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    text-align: center;
}

.title-line-1.emphasize {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--color-white);
    display: block;
    width: 100%;
    margin: 0 -4rem 0.1rem -4rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.1;
    white-space: nowrap;
    text-align: center;
}

.title-line-group {
  display: block;
  text-align: center;
}

.title-line-2 {
  font-size: 0.95em;
  font-family: var(--font-body);
  color: #FFD700;
  white-space: nowrap;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.title-line-3 {
  font-size: 0.7em;
  color: var(--color-white);
  font-weight: 400;
  display: inline-block;
  margin-top: 0.1em;
}

.title-line-3.desktop-version {
  white-space: nowrap;
}

.title-line-3.mobile-version {
  white-space: normal;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    color: var(--color-white);
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.9),
        2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.cta-button {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button.primary {
    background: var(--color-secondary);
    color: var(--color-primary);
    border: 2px solid var(--color-secondary);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(197, 161, 108, 0.4);
}

/* ヒーローセクション内の商品を見るボタンのみ黄色に */
.hero .cta-button.primary {
    background: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero .cta-button.primary:hover {
    background: #FFC107;
    border-color: #FFC107;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.cta-button.secondary:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(197, 161, 108, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--color-secondary);
    position: relative;
    animation: scrollBounce 2s infinite;
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Section Styles */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--color-light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lemon" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="3" fill="%23F4D03F" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23lemon)"/></svg>');
    opacity: 0.5;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 0.5rem;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-primary);
    text-align: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    gap: 0.6rem;
    margin-bottom: 0;
    margin-top: auto;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.3rem 1.2rem 1.3rem 1.2rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 0;
    border-left: 4px solid var(--color-secondary);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .feature-icon {
        width: 45px;
        height: 45px;
        background: rgba(197, 161, 108, 0.1);
        border: 2px solid var(--color-accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 1rem 0 0;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        flex-shrink: 0;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
        transition: all 0.3s ease;
    }
    
    @media (max-width: 768px) {
        .feature-icon {
            width: 35px;
            height: 35px;
            margin: 0 0.5rem 0 0;
        }
        
        .feature-icon svg {
            width: 20px;
            height: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .feature-icon {
            width: 30px;
            height: 30px;
            margin: 0 0.3rem 0 0;
        }
        
        .feature-icon svg {
            width: 16px;
            height: 16px;
        }
    }

.feature:hover .feature-icon {
    background: var(--color-accent);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(197, 161, 108, 0.4);
}

.feature:hover .feature-icon svg path {
    fill: var(--color-primary) !important;
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.feature p {
    color: var(--color-gray);
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0;
}

.about-image {
    position: relative;
    height: 520px;
}

@media (max-width: 768px) {
    .about-image {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .about-image {
        height: 380px;
    }
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

@media (max-width: 768px) {
    .image-container {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .image-container {
        border-radius: 10px;
    }
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .about-img {
        object-fit: cover;
        object-position: center 30%;
    }
}

@media (max-width: 480px) {
    .about-img {
        object-fit: cover;
        object-position: center 25%;
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .about-img {
    transform: scale(1.05);
}

.image-container:hover .image-overlay {
    opacity: 0;
}

/* Products Section */
.products {
    padding: 8rem 0;
    background: var(--color-white);
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.product-card {
    background: var(--color-light);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .product-card.coffeecello .product-image {
        height: 350px;
        background: #4A3728;
    }
    
    .product-card.doncello .product-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .product-card.coffeecello .product-image {
        height: 300px;
        background: #4A3728;
    }
    
    .product-card.doncello .product-image {
        height: 300px;
    }
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card.coffeecello .product-image {
    background: #4A3728;
}

.product-card.coffeecello .product-img {
    object-position: center 20%;
}

.product-card.doncello .product-img {
    object-position: center center;
}

@media (max-width: 768px) {
    .product-card.coffeecello .product-img {
        object-position: center 20%;
    }
}

@media (max-width: 480px) {
    .product-card.coffeecello .product-img {
        object-position: center 15%;
    }
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 24, 16, 0.8), rgba(197, 161, 108, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-details {
    text-align: center;
    color: var(--color-white);
}

.product-details h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-details p {
    color: var(--color-light);
    font-size: 0.9rem;
}

.trademark {
    font-size: 0.8rem;
    opacity: 0.8;
    border: 1px solid var(--color-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.product-info p {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .product-tags {
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .product-tags {
        gap: 0.2rem;
    }
}

.tag {
    display: inline-block;
    background: #f0e5ce;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.7em 1.6em;
    border-radius: 2em;
    margin-right: 1em;
    margin-bottom: 0.5em;
    box-shadow: 0 2px 8px rgba(44,24,16,0.08);
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    transition: background 0.2s, color 0.2s;
}

@media (max-width: 768px) {
    .tag {
        font-size: 0.8rem;
        padding: 0.5em 1.2em;
        margin-right: 0.5em;
        margin-bottom: 0.3em;
    }
}

@media (max-width: 480px) {
    .tag {
        font-size: 0.75rem;
        padding: 0.4em 1em;
        margin-right: 0.3em;
        margin-bottom: 0.2em;
    }
}

.tag:last-child {
    margin-right: 0;
}

.buy-button {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.buy-button.sold-out {
    background: #999;
    color: #fff;
    border-color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

.buy-button.sold-out:hover {
    background: #999;
    border-color: #999;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Partners Section */
.partners {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(44, 24, 16, 0.98) 100%);
    color: var(--color-white);
}

.partners .section-title {
    color: var(--color-white);
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.partner-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(197, 161, 108, 0.3);
    transition: all 0.3s ease;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: rgba(197, 161, 108, 0.1);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-logo svg {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    background: var(--color-accent);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(197, 161, 108, 0.4);
}

.partner-card:hover .partner-logo svg path {
    fill: var(--color-primary) !important;
}

.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.partner-card p {
    color: var(--color-light);
    line-height: 1.6;
}

.partner-desc-nowrap {
  font-size: 0.95em;
  white-space: nowrap;
}

/* Company Overview Section */
.company {
    padding: 8rem 0;
    background: var(--color-white);
}

.company-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.company-details {
    display: grid;
    gap: 1rem;
}

.company-item {
    padding: 1rem;
    background: var(--color-light);
    border-radius: 15px;
    border-left: 4px solid var(--color-accent);
    transition: all 0.3s ease;
}

.company-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--color-secondary);
}

.company-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.company-item p {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.company-image {
    position: relative;
}

.company-image .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.company-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.company-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-image .image-container:hover .company-img {
    transform: scale(1.05);
}

.company-image .image-container:hover .image-overlay {
    opacity: 0;
}

.company-mission {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
    position: relative;
}

.company-mission h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-primary);
    font-weight: 500;
}

/* Contact Section - Updated */
.contact {
    padding: 8rem 0;
    background: var(--color-light);
    position: relative;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contact-content {
    text-align: center;
}

.contact-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-bottom: 2px solid var(--color-gray);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-group select {
    width: 100%;
    padding: 1rem 2.5rem 1rem 1rem;
    border: 2px solid transparent;
    border-bottom: 2px solid var(--color-gray);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #0066cc;
    transition: all 0.3s ease;
    border-radius: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12'22 height='12'22 viewBox='0 0 12 12'22%3e%3cpath d='M2 4l4 4 4-4'22 stroke='%23666'22 stroke-width='2'22 fill='none'22 stroke-linecap='round'22 stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-secondary);
    background: rgba(244, 208, 63, 0.1);
}

.submit-button {
    width: 100%;
    background: var(--color-secondary);
    color: var(--color-primary);
    border: none;
    padding: 1rem 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(44, 24, 16, 0.98) 100%);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(197, 161, 108, 0.2);
}

.footer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 1 auto;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-info {
    flex: 1;
    color: var(--color-light);
    text-align: left;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
}

.footer-logo-bottom {
    text-align: left;
    margin-bottom: 1rem;
}

.footer-bottom {
    position: absolute;
    right: 2rem;
    bottom: 1.5rem;
    text-align: right;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
    margin-top: 0;
    padding-top: 0;
    align-self: end;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.footer-logo .logo-subtext {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 3px;
    margin-top: -3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-info p {
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: 0;
        width: 60%;
        height: calc(100vh - 80px);
        background: rgba(44, 24, 16, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 0.2rem 1rem 0.2rem;
        gap: 0.8rem;
        border-radius: 20px 0 0 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.8rem 0.3rem;
        width: 98%;
        min-height: 2.8rem;
        text-align: center;
        border: none;
        background: transparent;
        margin: 0.1rem 0;
        display: block;
        line-height: 1.2;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: visible;
    }
    
    .nav-link:hover {
        background: rgba(198, 162, 72, 0.1);
        border-radius: 8px;
        transform: none;
    }
    

    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 0.5rem;
        height: 80px;
    }
    
    .logo-text {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem);
        padding-right: 0.3rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
        margin-top: 1px;
    }
    
    .logo-subtext {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.3rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .about-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        font-size: 0.8rem;
        line-height: 1.4;
        padding: 0 0.3rem;
        margin-bottom: 0.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .feature {
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0.8rem 0.5rem;
        gap: 0.8rem;
        margin-bottom: 0.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .feature h3 {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .feature p {
        font-size: 0.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .company-details {
        gap: 0.8rem;
    }
    
    .company-item {
        padding: 0.8rem;
    }
    
    .company-item h3 {
        margin-bottom: 0.4rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta .cta-button {
        width: 200px;
        padding: 1rem;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        align-items: center;
    }
    
    .footer-container {
        padding: 0 1rem;
        min-height: 180px;
    }
    
    .footer-bottom {
        position: relative;
        right: auto;
        bottom: auto;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    
    .footer-logo {
        min-width: auto;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo .logo-text {
        font-size: 1.5rem;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }
    
    .footer-logo .logo-subtext {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-top: -2px;
    }
    
    .footer-info {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        text-align: center;
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .nav-container {
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-logo {
        margin-left: 20px;
    }
    
    .about-container,
    .products-container,
    .partners-container,
    .company-container,
    .contact-container {
        padding: 0 0.5rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* モバイル版セクション間余白を50pxに設定 */
    .about,
    .products,
    .partners,
    .company,
    .contact {
        padding: 50px 0;
    }
    
    .partners-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    /* Hero section responsive adjustments */
    .hero-bg-img {
        object-position: center 20%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .floating-elements {
        display: none; /* Hide floating elements on mobile for better performance */
    }
    
    /* Slideshow responsive adjustments */
    .slide-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev-slide {
        left: 15px;
    }
    
    .next-slide {
        right: 15px;
    }
    
    .slide-indicators {
        bottom: 100px;
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Company section mobile adjustments */
    .company-mission {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .company-mission h3 {
        font-size: 1.5rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .title-line-1.emphasize {
        font-size: 1.5rem;
    }
    .title-line-2, .title-line-3 {
        font-size: 0.8em;
    }
    
    .title-line-3.mobile-version {
        font-size: 0.6em;
        white-space: nowrap;
    }
    
    /* モバイルでのプルダウンメニュー位置調整 */
    .form-group select {
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3e%3cpath d='M1.5 3l3.5 3.5 3.5-3.5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
        background-repeat: no-repeat !important;
        background-position: right 0.5rem center !important;
        background-size: 10px !important;
        padding-right: 1.5rem !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: translateY(0);
    }
    
    .form-group select:focus {
        transform: translateY(0);
    }
    
    .form-group select::-ms-expand {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.3rem;
    }
    
    .nav-logo {
        margin-left: 10px;
        max-width: min(280px, 55vw);
    }
    
    .logo-text {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
        padding-right: 0.1rem;
        letter-spacing: 0.5px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }
    
    .about-content {
        gap: 1rem;
        padding: 0 0.2rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .about-description {
        font-size: 0.75rem;
        line-height: 1.3;
        padding: 0 0.2rem;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .feature {
        padding: 0.6rem 0.4rem;
        gap: 0.6rem;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .feature h3 {
        font-size: 0.85rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .feature p {
        font-size: 0.75rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.2rem 0.8rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
    }
    
    .form-group select {
        padding: 0.7rem 1.8rem 0.7rem 0.8rem;
    }
    
    /* 小画面でのフッター調整 */
    .footer-container {
        padding: 0 0.5rem;
        min-height: 160px;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
    
    .footer-links {
        gap: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.3rem;
        letter-spacing: 0.3px;
    }
    
    .footer-logo .logo-subtext {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    /* 小画面でのプルダウンメニュー位置調整 */
    .form-group select {
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M1 2l3 3 3-3' stroke='%23666' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
        background-repeat: no-repeat !important;
        background-position: right 0.4rem center !important;
        background-size: 8px !important;
        padding-right: 1.2rem !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: translateY(0) !important;
    }
    
    .form-group select:focus {
        transform: translateY(0) !important;
    }
    
    .form-group select::-ms-expand {
        display: none !important;
    }
    
    /* iPhone SE専用スタイル */
    @media (max-width: 375px) {
        .nav-logo {
            margin-left: 5px;
            max-width: min(260px, 50vw);
        }
        
        .logo-text {
            font-size: clamp(0.9rem, 3vw, 1.1rem);
            padding-right: 0;
            letter-spacing: 0.3px;
        }
        
        .nav-container {
            padding: 0 0.2rem;
        }
    }
    
    .hero-bg-img {
        object-position: center 30%;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Mobile slideshow adjustments */
    .slide-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .prev-slide {
        left: 10px;
    }
    
    .next-slide {
        right: 10px;
    }
    
    .slide-indicators {
        bottom: 80px;
        gap: 0.6rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .title-line-1.emphasize {
        font-size: 1rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
        padding: 0 0.5rem;
        line-height: 1.3;
        hyphens: auto;
    }
    
    .hero-content {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        line-height: 1.4;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    .title-line-2, .title-line-3 {
        font-size: 0.6em;
    }
    
    .title-line-3.mobile-version {
        font-size: 0.5em;
        white-space: nowrap;
    }
    
    .hero-cta {
        gap: 0.8rem;
    }
    
    .hero-cta .cta-button {
        width: 180px;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* 麻布料飲連合会カードの小画面調整 */
    .partner-card-azabu {
        min-height: 180px;
    }
    .partner-card-azabu .partner-bg-image {
        background-position: center 30% !important;
        background-size: 160% auto !important;
    }
    
    /* 六本木交差点酒屋のみのりカードのスマホ版調整 */
    .partner-card h3 {
        font-size: 0.9rem;
        line-height: 1.2;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    /* 六本木交差点酒屋のみのりカードのタイトル調整 */
    .roppongi-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
    }
}

/* iPad版専用調整 */
@media (min-width: 481px) and (max-width: 1024px) {
    .partner-card-azabu {
        min-height: 160px;
    }
    .partner-card-azabu .partner-bg-image {
        background-position: center 60% !important;
        background-size: 220% auto !important;
    }
}

.floating-elements {
    display: none; /* Hide floating elements on mobile for better performance */
}

/* Social icons in header */
.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    color: white;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 0.5rem;
    }
    
    .social-icons {
        display: flex;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

.nowrap {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nowrap {
        white-space: normal !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .nowrap {
        white-space: normal !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .partners-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

.trademark-note {
  font-size: 0.75em;
  color: #888;
  margin-top: 0.2em;
  margin-bottom: 0.6em;
  letter-spacing: 0.03em;
}

.partner-card-azabu {
    position: relative;
    background: none;
    overflow: hidden;
}
.partner-card-azabu .partner-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('img/麻布飲料連合会.jpeg') 55% 35% / 180% auto no-repeat;
    opacity: 0.7;
    z-index: 0;
}
.partner-card-azabu h3,
.partner-card-azabu .partner-desc-nowrap {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.partner-card-azabu .partner-logo {
    display: none;
} 