/* ======================================
   ページ固有スタイル
   ====================================== */

/* About Page */
.about-hero-section {
    background: #ffffff;
    padding: 8rem 2rem 6rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero-background-logo {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-40%);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.about-hero-background-logo img {
    width: 600px;
    height: 600px;
    object-fit: contain;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-hero-text {
    text-align: left;
    max-width: 700px;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #3f3f3f;
    line-height: 1.1;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: #3f3f3f;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 600;
}

.about-hero-description {
    font-size: 1.2rem;
    color: #3f3f3f;
    line-height: 1.8;
}

/* Philosophy Section */
.philosophy-section {
    background: #f8f9fa;
    padding: 3rem 4rem;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-label {
    font-size: 1rem;
    color: #1E88E5;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.philosophy-title {
    font-size: 3rem;
    font-weight: 600;
    color: #3f3f3f;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.philosophy-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.philosophy-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E88E5;
    margin-bottom: 2rem;
}

.philosophy-mission-text {
    font-size: 1.3rem;
    font-weight: 530;
    color: #3f3f3f;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.philosophy-management-text {
    font-size: 1.3rem;
    color: #3f3f3f;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.philosophy-corporate-text {
    font-size: 1.3rem;
    color: #3f3f3f;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Three Circles Design */
.three-circles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.three-circles-wrapper {
    position: relative;
    width: 300px;
    height: 280px;
}

.circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.circle-stability {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    z-index: 3;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.circle-freedom {
    top: 130px;
    left: -10px;
    background: linear-gradient(135deg, #42A5F5, #2196F3);
    z-index: 2;
    box-shadow: 0 6px 20px rgba(66, 165, 245, 0.4);
}

.circle-wisdom {
    top: 130px;
    right: -10px;
    background: linear-gradient(135deg, #1E88E5, #1976D2);
    z-index: 1;
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

.circle-content {
    text-align: center;
    color: white;
}

.circle-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.circle-subtitle {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Company Overview Section */
.company-overview-section {
    background: #ffffff;
    padding: 8rem 2rem;
}

.company-overview-container {
    max-width: 1000px;
    margin: 0 auto;
}

.company-overview-header {
    text-align: center;
    margin-bottom: 6rem;
}

.company-overview-label {
    font-size: 1rem;
    color: #1E88E5;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.company-overview-title {
    font-size: 3rem;
    font-weight: 600;
    color: #3f3f3f;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.company-info-section {
    margin-bottom: 2rem;
}

.company-info-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3f3f3f;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1E88E5;
}

.company-info-item {
    margin-bottom: 1.5rem;
}

.company-info-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.company-info-value {
    color: #3f3f3f;
    font-size: 1rem;
}

.company-address {
    color: #3f3f3f;
    font-size: 1rem;
    line-height: 1.6;
}

.company-access {
    color: #1E88E5;
    font-size: 1rem;
}

.business-content-full-width {
    grid-column: 1 / -1;
}

.business-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.business-content-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.business-content-title {
    font-weight: 600;
    color: #3f3f3f;
    margin-bottom: 0.5rem;
}

.business-content-description {
    font-size: 0.9rem;
    color: #666;
}

/* Careers Page */
.hero2-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/careers/Careers-image.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .about-hero-title {
        font-size: 3.2rem !important;
    }

   .about-hero-description {
     font-size: 1rem !important;
    }
    
    .philosophy-title {
        font-size: 2rem !important;
    }
    
    .company-overview-title {
        font-size: 2rem !important;
    }
    
    .company-info-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .business-content-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .philosophy-section {
        padding: 4rem 1rem !important;
    }
    
    .company-overview-section {
        padding: 4rem 1rem !important;
    }
    
    .about-hero-background-logo img {
        width: 400px !important;
        height: 400px !important;
    }
}

@media (max-width: 480px) {
   

    .about-hero-title {
        font-size: 2.5rem !important;
    }

    .about-hero-subtitle {
        font-size: 1rem !important;
       margin-bottom: 1rem !important;
  
     }

   .about-hero-description {
     font-size: 0.8rem !important;
    }

    .philosophy-title, .company-overview-title {
        font-size: 1.8rem !important;
    }

    
    .business-content-grid {
        grid-template-columns: 1fr !important;
    }
    
    .about-hero-background-logo img {
        width: 250px !important;
        height: 250px !important;
    }

/* Philosophy Section */

    .philosophy-mission-text {
       font-size: 1rem !important;
     
    }

    .philosophy-management-text {
       font-size: 0.9rem !important;

   }

    .philosophy-corporate-text {
       font-size: 0.9rem !important;

   }


}