/* Base & Reset */
:root {
    --primary-color: #2b553c; /* Corporate Green */
    --primary-hover: #1e3f2b;
    --text-color: #222222;
    --light-text: #555555;
    --bg-color: #ffffff;
    --section-bg: #f9f9f9;
    --accent-gold: #bda36e;
    --border-color: #e5e5e5;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Zen Kaku Gothic New', sans-serif;
}

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

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.05em;
}

/* Background utilities: Translucent (Glassmorphism) */
.bg-glass-white {
    background-color: rgba(238, 248, 242, 0.85); /* Light green glass */
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); /* Soft floating shadow */
    margin: 60px auto; /* Card spacing */
    max-width: 1200px; /* Card width */
    border: 1px solid rgba(255, 255, 255, 0.6); /* Glass edge */
    border-top: 3px solid var(--accent-gold); /* Luxury gold accent */
}

.bg-glass-light {
    background-color: rgba(228, 242, 233, 0.85); /* Slightly darker light green glass */
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    margin: 60px auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-top: 3px solid var(--accent-gold);
}

/* Premium Green Background for Message */
.bg-premium-green {
    background: linear-gradient(145deg, #0d2b1c 0%, #17422f 100%);
    position: relative;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255,255,255,0.05);
    margin: 80px auto;
    max-width: 1000px;
    border: 1px solid rgba(189, 163, 110, 0.3);
    padding: 80px 40px;
    overflow: hidden;
}

.bg-premium-green::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at top right, rgba(189, 163, 110, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at bottom left, rgba(189, 163, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.bg-premium-green .vertical-line {
    background-color: rgba(189, 163, 110, 0.5); /* Gold line for premium section */
}

.bg-premium-green .premium-title .title-ja {
    color: var(--accent-gold);
    font-size: 28px;
    letter-spacing: 4px;
    border-bottom: 1px solid rgba(189, 163, 110, 0.3);
    padding-bottom: 15px;
    display: inline-block;
}

.premium-quote-box {
    position: relative;
    padding: 80px 60px;
    border: 1px solid rgba(189, 163, 110, 0.5);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), inset 0 0 30px rgba(189,163,110,0.1);
    border-radius: 2px;
}
.premium-quote-box::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px dashed rgba(189, 163, 110, 0.4);
    pointer-events: none;
}

.quote-mark {
    font-family: serif;
    font-size: 120px;
    color: rgba(189, 163, 110, 0.15);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    user-select: none;
}

.bg-premium-green .lead-text {
    color: #e0e6e2 !important;
    font-weight: 300;
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: 2px;
}

.highlight-gold {
    color: var(--accent-gold);
    font-weight: 500;
}

.president-sign {
    margin-top: 50px;
    text-align: right;
    padding-right: 20px;
}

.sign-name {
    font-family: var(--font-serif);
    color: var(--accent-gold);
    font-size: 18px;
    letter-spacing: 2px;
    border-top: 1px solid rgba(189, 163, 110, 0.3);
    padding-top: 15px;
    display: inline-block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-center {
    text-align: center;
}
.bg-white { background-color: #ffffff; }
.bg-light { background-color: #f7f9f8; } /* very subtle green-grey */

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0; /* reduced padding for a sleeker horizontal look */
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: baseline; /* aligns text neatly to the bottom */
    gap: 15px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-family: var(--font-serif);
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    letter-spacing: 1.5px;
}

.header-left .logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo-img {
    height: 35px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-contact-info {
    text-align: right;
}

.tel-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.btn-inquiry {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-inquiry:hover {
    background-color: var(--primary-hover);
}

/* Header Band */
.header-band {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #b4d330, #9acd32); /* Yellow-green luxury gradient */
}

/* Hero Section */
.hero-section {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85); /* Softens the leaves around the banner */
    overflow: hidden; /* Prevents horizontal scroll from scaled image */
}

.hero-full-image {
    width: 100%;
    max-width: 1600px; /* Generous max-width */
    height: auto; /* Fully preserves image aspect ratio */
    object-fit: contain;
    display: block;
    transform: scale(1.1); /* 110% ratio requested by user */
    transform-origin: top center;
}

/* Adjust wrapper to handle scale overflow nicely if needed */
.hero-banner-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
    padding-bottom: 50px; /* Space for the scaled image */
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 6px;
    color: #ffffff;
    margin-top: 15px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent-gold);
}

/* Story Sections */
.story-section {
    padding: 120px 0;
}

.intro-section {
    padding-top: 140px;
}

.relative-section {
    position: relative;
    overflow: hidden;
}

.watermark-text, .watermark-text-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15vw;
    font-weight: 800;
    color: rgba(43, 85, 60, 0.03); /* Ultra subtle green */
    font-family: var(--font-serif);
    z-index: 0;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 10px;
}

.watermark-text {
    left: -2vw;
}

.watermark-text-right {
    right: -2vw;
    text-align: right;
}

.vertical-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 40px; /* Shortened as requested */
    background-color: var(--accent-gold);
    transform: translateX(-50%);
    opacity: 0.6;
}

.drop-cap {
    font-size: 64px;
    float: left;
    line-height: 50px;
    padding-right: 15px;
    padding-top: 10px;
    color: var(--accent-gold);
    font-weight: 300;
}

.highlight-text {
    background: linear-gradient(transparent 60%, rgba(195, 161, 103, 0.25) 60%);
    padding: 0 5px;
    font-weight: 700;
    color: var(--primary-color);
}

.story-heading, .story-content {
    position: relative;
    z-index: 1;
}

.story-title {
    font-family: var(--font-serif);
    font-size: 16px;
    letter-spacing: 6px;
    color: var(--accent-gold);
    margin-bottom: 60px;
    text-transform: uppercase;
}

.story-heading {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    letter-spacing: 2px;
    line-height: 1.5;
}

.story-content p {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 2.4;
    color: var(--text-color);
    letter-spacing: 1.5px;
}

.lead-text {
    font-size: 20px !important;
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Philosophy Manifesto */
.philosophy-manifesto {
    background-color: var(--primary-color);
    padding: 140px 0;
    color: #ffffff;
}

.manifesto-title {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 8px;
    color: var(--accent-gold);
    margin-bottom: 60px;
    opacity: 0.9;
}

.manifesto-lines p {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 6px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.manifesto-highlight {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--accent-gold);
    margin-top: 60px;
}

/* Products Section */
.products-section {
    padding: 100px 0;
}
.products-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}
.diamond-icon {
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 5px;
}
.products-title-ja {
    font-size: 36px;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary-color);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fdfa 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(189, 163, 110, 0.4);
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c4a977 0%, #a88d57 100%);
    z-index: 2;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--accent-gold);
}
.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-info {
    padding: 30px 20px;
    text-align: center;
}
.product-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-serif);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-title::before, .product-title::after {
    content: '';
    height: 1px;
    width: 20px;
    background: var(--accent-gold);
    margin: 0 15px;
}

.vertical-line {
    width: 1px;
    height: 60px;
    background-color: var(--accent-gold);
    margin: 0 auto 30px;
    opacity: 0.5;
}

.section-separator-band {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #d8ecd8 0%, #a4cfb6 50%, #d8ecd8 100%);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 5;
}

.product-desc {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Company Profile */
.company-section {
    padding: 100px 0 120px;
    background-color: var(--bg-color);
}

.company-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 0;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th, .company-table td {
    padding: 25px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.company-table tr:first-child th,
.company-table tr:first-child td {
    border-top: 1px solid var(--border-color);
}

.company-table th {
    width: 30%;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 15px;
    letter-spacing: 1px;
}

.company-table td {
    color: var(--text-color);
    font-size: 15px;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 40px 0;
}

.copyright {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.8;
    font-family: var(--font-serif);
}

/* Strengths Section */
.strengths-section {
    padding: 100px 0;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.strength-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
    padding: 35px 30px;
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06), inset 0 2px 0 0 rgba(255,255,255,1);
    border: 1px solid rgba(189, 163, 110, 0.25);
    border-top: 4px solid var(--primary-color); /* Added sharp accent top border */
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 10px 20px rgba(189, 163, 110, 0.15);
    border-color: var(--accent-gold);
}

.strength-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    margin-left: -30px; /* Pull to the edge of the card */
}

.strength-triangle {
    width: 65px;
    height: 65px;
    background-color: #17422f; /* Deep premium green */
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%); /* Right-facing triangle */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 18px;
    color: #ffffff;
    font-size: 26px;
    font-family: var(--font-serif);
    font-weight: bold;
    flex-shrink: 0;
}

.strength-title {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 700;
}

.strength-desc {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.8;
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
}

.brand-category {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.brand-ribbon {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #17422f 0%, #2b553c 100%);
    color: #ffffff;
    padding: 10px 40px 10px 20px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-serif);
    margin-bottom: 30px;
    clip-path: polygon(0% 0%, 100% 0%, 90% 50%, 100% 100%, 0% 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.ribbon-icon {
    color: var(--accent-gold);
    margin-right: 12px;
    font-size: 16px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-items: center;
}

.brand-logo-box {
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
    border: 1px solid #e0e0e0;
    border-bottom: 3px solid #d4d4d4; /* 3D bevel */
    border-radius: 8px;
    width: 100%;
    max-width: 220px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06), inset 0 2px 5px rgba(255,255,255,0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.brand-logo-box:hover {
    border-color: var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(189, 163, 110, 0.2), inset 0 2px 5px rgba(255,255,255,1);
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
}

.brand-logo-box span {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
    color: #444;
}

.brand-logo-box .ja-brand {
    font-family: var(--font-sans);
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
}

.brand-note {
    margin-top: 50px;
    font-size: 14px;
    color: var(--light-text);
    position: relative;
    z-index: 1;
}

/* Premium Dark Backgrounds */
.bg-dark-premium {
    background: linear-gradient(135deg, #0b1710 0%, #173322 100%);
    position: relative;
}
.bg-dark-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(189, 163, 110, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}
.bg-dark-premium > * {
    position: relative;
    z-index: 1;
}
.bg-dark-premium .section-title .title-ja {
    color: var(--accent-gold);
}
.bg-dark-premium .section-title::before {
    border-left-color: var(--accent-gold);
}
.bg-dark-premium .brand-ribbon {
    background: linear-gradient(90deg, #c4a977 0%, #a88d57 100%);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.bg-dark-premium .ribbon-icon {
    color: #ffffff;
}
.bg-dark-premium .brand-note {
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner { position: relative; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; }
    .header-left { width: auto; display: flex; justify-content: flex-start; }
    .logo-link { display: inline-flex; flex-direction: column; align-items: flex-start; justify-content: center; text-decoration: none; }
    .logo-text { font-size: 20px; line-height: 1.0; margin: 0; padding: 0; }
    .logo-subtitle { font-size: 10px; line-height: 1.0; margin: 0; padding: 0; margin-top: 2px; text-align: left; }
    .header-contact-info { display: none; }
    .header-right { width: auto; display: flex; justify-content: flex-end; z-index: 10; }
    .btn-inquiry { padding: 8px 12px; font-size: 10px; border-radius: 4px; }
    
    .bg-glass-light, .bg-glass-white { margin: 20px auto; }
    .hero-section { padding: 40px 0; }
    .hero-banner-wrapper { padding-bottom: 0; }
    .hero-full-image { height: auto; width: 100%; object-fit: contain; transform: none; }
    .hero-title { font-size: 32px; letter-spacing: 4px; }
    .hero-subtitle { font-size: 14px; }
    .story-section { padding: 60px 0; }
    .watermark-text, .watermark-text-right { font-size: 25vw; }
    .drop-cap { font-size: 48px; line-height: 40px; }
    .story-heading { font-size: 24px; margin-bottom: 40px; }
    .story-content p { font-size: 16px; }
    .lead-text { font-size: 18px !important; }
    .philosophy-manifesto { padding: 80px 0; }
    .manifesto-lines p { font-size: 20px; letter-spacing: 4px; }
    .manifesto-highlight { font-size: 24px !important; }
    .products-section { padding: 20px 0 40px; margin-top: 0; }
    .products-title-wrapper { margin-bottom: 25px; }
    .products-title-ja { font-size: 28px; }
    .products-grid { grid-template-columns: 1fr; }
    .strengths-grid { grid-template-columns: 1fr; }
    .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .brand-logo-box { height: 60px; }
    .brand-logo-box span { font-size: 16px; }
    .brand-logo-box .ja-brand { font-size: 13px; }
    
    /* Sleek Mobile Company Grid - Horizontal One Line */
    .company-grid-wrapper { padding: 25px 15px; }
    .company-row { flex-direction: row; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--border-color); }
    .company-row dt { 
        width: 32%; 
        background: transparent; 
        color: var(--primary-color); 
        padding: 0; 
        border-radius: 0; 
        font-size: 13px; 
        margin-bottom: 0; 
        font-weight: 700;
        display: flex;
        align-items: flex-start;
    }
    .company-row dt .bullet-triangle { display: inline-block; font-size: 10px; margin-right: 6px; margin-top: 3px; }
    .company-row dd { width: 68%; padding-left: 5px; font-size: 13px; font-weight: normal; color: var(--text-color); line-height: 1.5; word-break: break-word; }
    .premium-btn { font-size: 15px; padding: 15px 20px; }
}

/* FAQ Styling */
.faq-row {
    border-bottom: 1px solid rgba(189, 163, 110, 0.3);
    padding: 30px 0;
}
.faq-row:first-child {
    border-top: 1px solid rgba(189, 163, 110, 0.3);
}
.faq-q-part {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.faq-q-mark {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-right: 20px;
    line-height: 1;
}
.faq-q-text {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    padding-top: 4px;
}
.faq-a-part {
    display: flex;
    align-items: flex-start;
    padding-left: 20px; /* Slight indent */
}
.faq-a-mark {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    margin-right: 25px;
    line-height: 1;
}
.faq-a-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 0;
}

/* Company Grid */
.company-grid-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    padding: 40px;
    border: 1px solid rgba(189, 163, 110, 0.2);
}
.company-grid {
    display: flex;
    flex-direction: column;
    margin: 0;
}
.company-row {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}
.company-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.company-row:first-child {
    padding-top: 0;
}
.company-row dt {
    width: 35%;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 0;
}
.company-row dd {
    width: 65%;
    color: var(--text-color);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}
.bullet-triangle {
    color: var(--accent-gold);
    margin-right: 12px;
    font-size: 14px;
}

/* Premium Buttons */
.premium-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.premium-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.btn-green {
    background: linear-gradient(135deg, #2b553c 0%, #1a4a38 100%);
    color: #ffffff;
}
.btn-gold {
    background: linear-gradient(135deg, #c4a977 0%, #a88d57 100%);
    color: #ffffff;
}
.btn-text {
    position: relative;
    z-index: 1;
}
.btn-arrow {
    background: rgba(255,255,255,0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Mobile CTA */
.floating-mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .floating-mobile-cta {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 75px;
        height: 75px;
        background: linear-gradient(135deg, #c4a977 0%, #a88d57 100%);
        color: #fff;
        border-radius: 50%;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        z-index: 1000;
        animation: float 3s ease-in-out infinite;
    }
    .floating-mobile-cta .cta-icon {
        font-size: 24px;
        line-height: 1;
        margin-bottom: 2px;
    }
    .floating-mobile-cta .cta-text {
        font-size: 8px;
        line-height: 1.1;
        text-align: center;
        font-weight: bold;
    }
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
        100% { transform: translateY(0px); }
    }
}

@media (max-width: 768px) {
    .section-title .title-ja.story-title-ja {
        font-size: 18px !important;
        letter-spacing: 0;
        white-space: nowrap;
    }
}
