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

body {
    font-family: 'Zen Old Mincho', serif;
    background: #ffffff;
    min-height: 100vh;
    color: #1a1a1a;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 190, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 248, 220, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(200, 255, 220, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 218, 185, 0.25) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    25% { 
        transform: translate(20px, -20px) rotate(3deg); 
    }
    50% { 
        transform: translate(40px, 10px) rotate(-2deg); 
    }
    75% { 
        transform: translate(-30px, 30px) rotate(-4deg); 
    }
}

.glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    z-index: 100;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #6b4d8a;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 3px;
    background: #6b4d8a;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-text {
    font-size: 0.7rem;
    color: #6b4d8a;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Full Screen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fullscreen-menu.active {
    display: block;
    opacity: 1;
}

.menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem;
}

.menu-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.menu-logo-section img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.menu-items-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 3rem;
    color: #6b4d8a;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 1;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    border-bottom: 2px solid rgba(107, 77, 138, 0.2);
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.5s ease forwards;
}

.menu-items li:nth-child(1) { animation-delay: 0.1s; }
.menu-items li:nth-child(2) { animation-delay: 0.2s; }
.menu-items li:nth-child(3) { animation-delay: 0.3s; }
.menu-items li:nth-child(4) { animation-delay: 0.4s; }
.menu-items li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-items a {
    display: block;
    font-size: 1.8rem;
    color: #6b4d8a;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 700;
    padding: 1.5rem 0;
    text-align: left;
}

.menu-items a:hover {
    color: #8b6ba8;
    padding-left: 1rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(107, 77, 138, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 99;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(107, 77, 138, 0.2);
    transition: all 0.3s;
}

.scroll-top:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top::before {
    content: '↑';
    font-size: 2rem;
    color: #6b4d8a;
    font-weight: 900;
}

/* Main Content */
main {
    margin-top: 100px;
    padding: 2rem;
}

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

section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(107, 77, 138, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    color: #6b4d8a;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    font-weight: 900;
}

.hero p {
    font-size: 1.3rem;
    color: #8b6ba8;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-button {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(107, 77, 138, 0.3);
    border-radius: 15px;
    color: #6b4d8a;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.hero-button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 77, 138, 0.2);
}

/* About Section */
.about h2 {
    font-size: 2.5rem;
    color: #6b4d8a;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    font-weight: 900;
}

.about p {
    font-size: 1.1rem;
    line-height: 2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(107, 77, 138, 0.2);
}

/* Taxi Section */
.taxi h2 {
    font-size: 2.5rem;
    color: #6b4d8a;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    font-weight: 900;
}

.taxi-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.taxi-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(107, 77, 138, 0.2);
}

.taxi p {
    font-size: 1.1rem;
    line-height: 2;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-info h3 {
    color: #6b4d8a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.link-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.35);
    color: #6b4d8a;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 1rem;
    transition: 0.3s;
    font-weight: 700;
    border: 2px solid rgba(107, 77, 138, 0.3);
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Business Section */
.business h2 {
    font-size: 2.5rem;
    color: #6b4d8a;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    font-weight: 900;
}

.business-department {
    background: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.business-department h3 {
    color: #6b4d8a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.business-department h4 {
    color: #8b6ba8;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
}

.business-department p {
    font-size: 1.1rem;
    line-height: 2;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.business-content {
    margin-left: 1.5rem;
}

.business-content p {
    margin-bottom: 0.8rem;
}

/* Company Section */
.company h2 {
    font-size: 2.5rem;
    color: #6b4d8a;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    font-weight: 900;
}

.company-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(107, 77, 138, 0.2);
}

.info-label {
    font-weight: 700;
    color: #6b4d8a;
}

.info-value {
    color: #1a1a1a;
}

.members {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.members h3 {
    color: #6b4d8a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.member-item {
    display: flex;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(107, 77, 138, 0.1);
    align-items: flex-start;
}

.member-role {
    font-weight: 700;
    color: #6b4d8a;
    min-width: 120px;
    flex-shrink: 0;
}

.member-name {
    color: #1a1a1a;
    line-height: 1.8;
}

.shareholders {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 10px;
}

.shareholders h3 {
    color: #6b4d8a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.shareholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.shareholder-item {
    background: rgba(255, 255, 255, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(107, 77, 138, 0.15);
    transition: all 0.3s;
}

.shareholder-item:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 77, 138, 0.1);
}

.shareholder-name {
    font-weight: 700;
    color: #6b4d8a;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.shareholder-company {
    color: #1a1a1a;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .menu-logo-section {
        display: none;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-button {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .taxi-images {
        grid-template-columns: 1fr;
    }

    section {
        padding: 2rem 1.5rem;
    }

    .about h2, .taxi h2, .business h2, .company h2 {
        font-size: 1.5rem;
    }

    .about p, .taxi p, .business-department p {
        font-size: 0.95rem;
    }

    .business-department h3 {
        font-size: 1.3rem;
    }

    .business-department h4 {
        font-size: 1.1rem;
    }

    .menu-items a {
        font-size: 1.15rem;
        padding: 1rem 0;
    }

    .info-row {
        grid-template-columns: 100px 1fr;
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }

    .info-label {
        font-size: 0.9rem;
    }

    .member-item {
        flex-direction: column;
        gap: 0.3rem;
    }

    .member-role {
        min-width: auto;
    }

    .shareholder-grid {
        grid-template-columns: 1fr;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .about-image {
        height: 250px;
    }

    .taxi-image {
        height: 200px;
    }
}

/* 取扱店加盟募集ページ用スタイル */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(107, 77, 138, 0.1);
}

.page-header h1 {
    font-size: 2.5rem;
    color: #6b4d8a;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    font-weight: 900;
}

.content-box {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(107, 77, 138, 0.1);
}

.content-box h2 {
    font-size: 1.8rem;
    color: #6b4d8a;
    margin-bottom: 1.5rem;
    font-weight: 900;
    border-left: 5px solid #6b4d8a;
    padding-left: 1rem;
}

.content-box p {
    font-size: 1.1rem;
    line-height: 2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.info-section {
    background: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(107, 77, 138, 0.2);
}

.info-section h3 {
    font-size: 1.4rem;
    color: #6b4d8a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-methods {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(107, 77, 138, 0.1);
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-label {
    font-weight: 700;
    color: #6b4d8a;
    min-width: 80px;
    flex-shrink: 0;
}

.contact-value {
    color: #1a1a1a;
    line-height: 1.8;
}

.deadline-box {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(230, 190, 255, 0.3));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid rgba(107, 77, 138, 0.3);
    text-align: center;
}

.deadline-box h3 {
    font-size: 1.5rem;
    color: #6b4d8a;
    margin-bottom: 1rem;
    font-weight: 900;
}

.deadline-date {
    font-size: 1.8rem;
    color: #8b2252;
    font-weight: 900;
    margin: 1rem 0;
}

.download-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-section .download-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(107, 77, 138, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.download-section .download-card:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 77, 138, 0.2);
}

.download-card .download-icon {
    font-size: 3rem;
    color: #6b4d8a;
    margin-bottom: 1rem;
    display: block;
}

.download-card .download-title {
    font-size: 1.3rem;
    color: #6b4d8a;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.download-card .download-subtitle {
    font-size: 0.9rem;
    color: #8b6ba8;
    display: block;
}

.notice-box {
    background: rgba(255, 248, 220, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #f59e0b;
    margin: 1.5rem 0;
}

.notice-box p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* 取扱店加盟募集ページ レスポンシブ */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 1.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .content-box {
        padding: 2rem 1.5rem;
    }

    .content-box h2 {
        font-size: 1.4rem;
    }

    .content-box p {
        font-size: 1rem;
    }

    .info-section h3 {
        font-size: 1.2rem;
    }

    .deadline-date {
        font-size: 1.5rem;
    }

    .contact-method {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-label {
        min-width: auto;
    }
}