/* 私たちについてページ専用スタイル */

/* ロゴのリンクスタイル */
.logo a {
    color: #2c5aa0;
    text-decoration: none;
}

.logo a:hover {
    color: #1e3d6f;
}

/* パンくずナビ */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    margin-top: 80px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #2c5aa0;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.separator {
    color: #666;
}

/* ページヒーロー */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.page-title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* 家族写真セクション */
.family-intro {
    padding: 40px 0;
    background: #f8f9fa;
}

.family-photo-large {
    text-align: center;
}

.family-image {
    max-width: 400px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* メンバー紹介 */
.members {
    padding: 60px 0;
}

.member-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-info {
    padding: 40px;
}

.member-info h2 {
    color: #2c5aa0;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 3px solid #ff6b6b;
    padding-bottom: 10px;
}

.member-description p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
    color: #555;
}

/* ストーリーセクション */
.story {
    background: #f8f9fa;
    padding: 60px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.story-content .highlight {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* サービス詳細 */
.services-detail {
    padding: 60px 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-detail-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-detail-item:hover {
    transform: translateY(-5px);
}

.service-detail-item .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-detail-item h3 {
    color: #2c5aa0;
    font-size: 18px;
    line-height: 1.6;
}

/* メッセージセクション */
.message {
    background: #f8f9fa;
    padding: 60px 0;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.message-content .highlight {
    font-size: 22px;
    font-weight: bold;
    color: #2c5aa0;
    margin: 30px 0;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #ff6b6b;
}

/* お問い合わせCTA */
.contact-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .member-info {
        padding: 30px 20px;
    }
    
    .member-info h2 {
        font-size: 20px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .story-content .highlight,
    .message-content .highlight {
        font-size: 18px;
        padding: 20px;
    }
    
    .breadcrumb {
        margin-top: 120px;
    }
}
/* 個人写真用スタイル */
.member-card {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-info h2 {
    margin-bottom: 25px;
    color: #2c5aa0;
    font-size: 1.5rem;
    text-align: center;
}

.member-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.member-photo {
    flex-shrink: 0;
}

.member-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* khine.jpegの表示位置を上部寄りに調整 */
.member-image[src*="khine.jpeg"] {
    object-position: center 20%;
}

.member-description {
    flex: 1;
}

.member-description p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .member-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .member-card {
        padding: 20px;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
    
    .member-description {
        text-align: center;
    }
}
/* 事務所住所スタイル */
.office-address {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
    opacity: 0.7;
}
