.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    margin-top: -80px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.g-nav a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
}

.page-subtitle {
    font-size: 16px;
    color:floralwhite;
    text-align: center;
    line-height: 1.8;
    opacity: 0.95;
}

.about-company {
    padding: 80px 0;
}

.about-company .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
    text-align: center;
}

.subsection-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-red);
}

.company-detail {
    background: var(--background-white);
    padding: 60px;
    border-radius: 10px;
}

.company-info dl {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
}

.company-info dt {
    font-weight: 700;
    color: var(--primary-blue);
}

.company-info dd ul {
    list-style: none;
}

.company-info dd li {
    margin-bottom: 8px;
}

.button-wrapper{
    margin-top: 40px;
}

.mission-section,
.vision-section,
.value-section {
    padding: 80px 0;
}

.mission-section {
    background: var(--background-gray);
}

.vision-section {
    background: var(--background-white);
}

.value-section {
    background: var(--background-gray);
}

.content-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

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

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

.content-text {
    font-size: 16px;
    line-height: 2;
    text-align: center;
    color: var(--text-gray);
}

.vision-section .content-wrapper {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.vision-section .content-text {
    direction: ltr;
}

.image-slider-section {
    padding: 80px 0;
    background: var(--background-white);
}

.company-slider {
    max-width: 100%;
}

.company-slider .slider-item {
    padding: 0 10px;
}

.company-slider .slider-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.content-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .company-detail {
        padding: 40px 20px;
    }
    
    .company-info dl {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-section .content-wrapper {
        direction: ltr;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .company-slider .slider-item img {
        height: 200px;
    }
}