/* ページヘッダー */
.page-header {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d0 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(237, 141, 48, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3rem;
    color: #c05f1a;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    position: relative;
    z-index: 2;
}

/* 会社概要 */
.company-overview {
    padding: 100px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #c05f1a;
    margin-bottom: 2rem;
}

.overview-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-image {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d0 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.building-icon {
    font-size: 8rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.building-icon img {
    width: 65%;
    display: block;
    margin: 0 auto;
}

/* 会社情報 */
.company-info {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d0 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #c05f1a;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 2px;
}

.info-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #f0f0f0;
}

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

.info-label {
    background: #ffe8d032;
    padding: 1.5rem;
    font-weight: 600;
    color: #c05f1a;
    display: flex;
    align-items: center;
}

.info-value {
    padding: 1.5rem;
    color: #666;
}

/* 経営理念 */
.philosophy {
    padding: 100px 0;
    background: white;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.philosophy-card {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d0 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.philosophy-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    color: #c05f1a;
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: #666;
    line-height: 1.8;
}

/* スタッフ紹介 */
.staff-position {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1rem;
}

.staff-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.staff-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d0 100%);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.staff-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.staff-image {
    background: linear-gradient(90deg, #e67e22, #f39c12);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 60% 30%;
    /* X=60%, Y=30% に表示位置を調整 */
}

.staff-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.staff-card:hover .staff-image::before {
    transform: translateX(100%);
}

.staff-info {
    padding: 2rem;
}

.staff-name {
    font-size: 1.5rem;
    color: #c05f1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.staff-title {
    color: #c05f1a;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.staff-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.staff-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: #f0f8f0;
    color: #e67e22;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.staff-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-link {
    color: #f39c12;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e67e22;
}

.staff-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.staff-section-title {
    font-size: 3rem;
    color: #c05f1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.staff-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.access-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.access-icon img {
    width: 50%;
    height: 50%;
}

@media (max-width: 768px) {
    .staff-section {
        padding: 60px 20px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .staff-section-title {
        font-size: 2.5rem;
    }

    .staff-info {
        padding: 1.5rem;
    }

    .staff-image {
        height: 150px;
        font-size: 3rem;
    }
}

/* アクセス */
.access {
    padding: 100px 0;
    background: white;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.access-info {
    background: #f8fffe;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #e67e22;
}

.access-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.access-item:last-child {
    margin-bottom: 0;
}

.access-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.access-map {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d0 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    font-size: 1rem;
    color: #e67e22;
    margin-bottom: 1rem;
    width: 30%;
    margin: 10px auto;
}

.access-map iframe {
    width: 300px;
    height: 200px;
    max-width: 100%;
    border: 0;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

/* スマホサイズで小さくする */
@media (max-width: 768px) {
    .access-map iframe {
        width: 100%;
        height: 100px;
    }

    .staff-image {
        height: 500px;
    }
}


/* フッター */
footer {
    background: #c05f1a;
    color: white;
    padding: 3rem 0 2rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e67e22;
    color: #999;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .overview-content,
    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

    .info-label {
        border-bottom: 1px solid #e0e0e0;
    }

    .staff-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}