/* 渥美洋行プロフィールページ専用スタイル */
.profile-content {
    max-width: 760px;
    margin: 0 auto;
}
.profile-section {
    margin-bottom: 5rem;
}
.profile-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-tide);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--sea-foam);
    padding-bottom: 1rem;
}
.profile-h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep-tide);
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.profile-img-wrap {
    margin: 3rem 0;
}
.profile-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.profile-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(121, 169, 156, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}
@media (min-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}
.business-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.business-card {
    padding: 2rem;
    border-top: 2px solid var(--aawave-green);
    background-color: #fcfcfc;
}
.timeline-item {
    display: flex;
    margin-bottom: 1.5rem;
}
.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--aawave-green);
    margin-top: 0.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}
.profile-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--deep-tide);
    color: white;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s;
}
.profile-btn:hover {
    background-color: var(--aawave-green);
}
.profile-btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--deep-tide);
    font-weight: 500;
    border: 1px solid var(--deep-tide);
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s;
}
.profile-btn-outline:hover {
    background-color: var(--deep-tide);
    color: white;
}
