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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #faf6f0 0%, #f5f1ea 100%);
    background-attachment: fixed;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #DC143C;
    margin: 0;
}

.brand-name a {
    color: inherit;
    text-decoration: none;
}

.brand-tagline {
    font-size: 0.85rem;
    color: #4169E1;
    margin: 0;
    font-weight: 300;
}

/* Main Content */
.main-content {
    padding: 50px 0 80px;
    min-height: calc(100vh - 200px);
}

.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #DC143C;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DC143C 0%, #9ACD32 100%);
    border-radius: 2px;
}

/* Policy Content Styles */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.policy-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(220, 20, 60, 0.1);
    padding-bottom: 8px;
}

.policy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #DC143C;
    margin: 20px 0 10px 0;
}

.policy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

.policy-section a {
    color: #4169E1;
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

.contact-info {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.03) 0%, rgba(154, 205, 50, 0.03) 100%);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(220, 20, 60, 0.1);
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 5px;
}

/* About Page Specific Styles */
.about-section {
    background: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 20px;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
    background: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.mission-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 30px;
    text-align: center;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.mission-illustration svg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-text {
    text-align: left;
}

.mission-item {
    margin-bottom: 25px;
}

.mission-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #DC143C;
    margin-bottom: 10px;
}

.mission-item p {
    color: #666;
    line-height: 1.7;
}

/* Company Info Section */
.company-info-section {
    background: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.company-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.company-details {
    text-align: left;
}

.company-details h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 25px;
}

.company-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    background: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.values-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 30px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.value-item {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.02) 0%, rgba(154, 205, 50, 0.02) 100%);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.value-illustration svg {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 10px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.02) 0%, rgba(154, 205, 50, 0.02) 100%);
    border-radius: 10px;
    overflow: hidden;
}

.info-table tr {
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.info-table td {
    padding: 15px 20px;
    vertical-align: top;
}

.info-table .label {
    font-weight: 600;
    color: #4169E1;
    width: 180px;
    white-space: nowrap;
}

.info-table tr:last-child {
    border-bottom: none;
}

/* Content Placeholder for other pages */
.content-placeholder {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.content-placeholder p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo {
    width: 30px;
    height: 30px;
}

.footer-brand {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #9ACD32;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-section a:hover {
    color: #9ACD32;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .about-content,
    .mission-content,
    .company-info-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text,
    .mission-text,
    .company-details {
        text-align: center;
    }
    
    .value-item p {
        text-align: center;
    }
    
    .about-section,
    .mission-section,
    .values-section,
    .company-info-section,
    .policy-section,
    .content-placeholder {
        padding: 30px 20px;
    }
    
    .info-table .label {
        width: auto;
        white-space: normal;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.7rem;
    }
    
    .about-section,
    .mission-section,
    .values-section,
    .company-info-section,
    .policy-section,
    .content-placeholder {
        padding: 25px 15px;
    }
}