/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 20px;
}

.logo h1 {
    color: #86C515;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    padding: 1rem 0;
    display: block;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #99b402;
}

/* ハンバーガーメニューボタン */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #00B0CC 0%, #095BC2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #86C515;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(134, 197, 21, 0.4);
}

/* 新着情報 */
.news {
    padding: 80px 0;
    background: #f8f9fa;
}

.news h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #095BC2;
    font-size: 2rem;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
    max-height: calc((1.2rem * 2 + 1.5em + 4px) * 3);
    overflow-y: auto;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quick-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: #095BC2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.quick-link-button:hover {
    background: #074a9e;
    transform: translateY(-2px);
}

.news-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    border-radius: 8px;
    margin-bottom: 4px;
}

.news-item:hover {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.news-date {
    color: #999;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 1.2rem;
    min-width: 100px;
    flex-shrink: 0;
}

.news-badge {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    margin-right: 1.2rem;
    flex-shrink: 0;
    text-align: center;
    min-width: 70px;
}

.badge-info {
    background: #e3f2fd;
    color: #095BC2;
}

.badge-link {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-update {
    background: #fff3e0;
    color: #e65100;
}

.news-content {
    flex: 1;
    line-height: 1.5;
}

.news-arrow {
    color: #ccc;
    margin-left: 1rem;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.news-item:hover .news-arrow {
    color: #095BC2;
    transform: translateX(3px);
}

/* 強み */
.strengths {
    padding: 80px 0;
    background: white;
}

.strengths h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #095BC2;
    font-size: 2rem;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.strength-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.strength-item:nth-child(1) {
    border-top: 4px solid #095BC2;
}

.strength-item:nth-child(2) {
    border-top: 4px solid #00B0CC;
}

.strength-item:nth-child(3) {
    border-top: 4px solid #86C515;
}

.strength-icon {
    margin-bottom: 1.5rem;
}

.number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B0CC, #095BC2);
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.number small {
    font-size: 0.9rem;
}

.number i {
    font-size: 1.6rem;
}

.strength-item h3 {
    color: #095BC2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.strength-item p {
    color: #666;
    line-height: 1.8;
    text-align: left;
}

/* サービスプレビュー（トップページ） */
.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    color: #095BC2;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.preview-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.preview-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00B0CC, #095BC2);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-card h3 {
    color: #095BC2;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.preview-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: left;
}

.preview-more {
    text-align: center;
    margin-top: 3rem;
}

/* ボトムCTA（トップページ） */
.bottom-cta {
    background: linear-gradient(135deg, #095BC2 0%, #00B0CC 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.bottom-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bottom-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button-outline:hover {
    background: white;
    color: #095BC2;
}

/* スクロールアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.05s; }
.fade-in-delay-2 { transition-delay: 0.1s; }
.fade-in-delay-3 { transition-delay: 0.15s; }
.fade-in-delay-4 { transition-delay: 0.2s; }

/* ロゴ画像 */
.logo-img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

/* フッターリンク */
.footer-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #99b402;
}

/* フッター */
footer {
    background: #ffffff;
    color: #2c3e50;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #86C515;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.3rem 0;
    color: #666;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
    text-align: center;
    color: #666;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    body {
        font-size: 13px;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 1.2rem;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding-left: 4px;
    }

    .logo-img {
        height: 36px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .strength-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        gap: 1rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        min-width: 220px;
        max-width: 220px;
        padding: 1rem;
        border-bottom: none;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        border-radius: 10px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .news-item:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    .news-date {
        margin-right: 0;
        margin-bottom: 0.5rem;
        min-width: auto;
    }

    .news-badge {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .news-content {
        width: 100%;
        margin-top: 0.3rem;
        font-size: 0.9rem;
    }

    .news-arrow {
        display: none;
    }

    .quick-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .quick-link-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        margin: 0 auto;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* 他のページのレスポンシブ調整 */
    .product-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .seminar-card {
        flex-direction: column;
        text-align: center;
    }
    
    .seminar-details {
        justify-content: center;
    }
    
    .past-seminar-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-section {
        padding: 2rem 1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .access-info {
        padding: 40px 0;
    }

    .access-info > .container {
        padding: 0 10px;
    }

    .access-title {
        font-size: 1.4rem;
        text-align: center;
        padding-bottom: 0.8rem;
        border-bottom: 2px solid #095BC2;
        margin-bottom: 1.2rem;
    }

    .access-overview {
        flex-direction: column;
        max-width: 100% !important;
    }

    .access-overview .address-info {
        padding: 1rem;
    }

    .access-overview .address-info p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .access-directions {
        margin: 0 -10px;
    }

    .access-item {
        background: #f0f8ff;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

    .access-item strong {
        font-size: 0.95rem;
    }

    .access-item p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .access-methods {
        max-width: 100% !important;
    }

    .corp-logo-area img {
        max-width: 320px;
    }

    
    .job-openings {
        grid-template-columns: 1fr;
    }

    .company-table th {
        width: 35%;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .category-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .tab-button {
        min-width: 0;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .preview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bottom-cta h2 {
        font-size: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

/* ページ固有のスタイル */
/* ページヘッダー（全ページ共通） */
.page-header {
    background: linear-gradient(135deg, #00B0CC 0%, #095BC2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .page-header {
        padding: 75px 0 25px;
    }

    .page-header h1 {
        font-size: 1.5rem;
        display: inline-block;
        background: rgba(255,255,255,0.15);
        padding: 0.4rem 2rem;
        border-radius: 30px;
    }

    .page-header p {
        font-size: 0.9rem;
        margin-top: 0.8rem;
    }

    .company-philosophy {
        padding: 50px 0;
    }

    .company-philosophy h2 {
        font-size: 1.3rem;
    }

    .philosophy-main {
        font-size: 0.85rem !important;
        padding: 1.2rem;
        line-height: 1.9;
    }

    .philosophy-details {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1.5rem;
    }

    .philosophy-item h3 {
        font-size: 1rem;
    }

    .philosophy-item p {
        font-size: 0.85rem !important;
    }
}

/* サービスページ */
.asp-products, .hardware-services {
    padding: 60px 0;
}

.asp-products h2, .hardware-services h2 {
    text-align: center;
    color: #095BC2;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00B0CC, #095BC2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.product-icon-img img {
    width: 45%;
    height: 45%;
    object-fit: contain;
}

.product-card h3 {
    color: #095BC2;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: #86C515;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #86C515;
    font-weight: bold;
}

.hardware-services {
    background: #f8f9fa;
}

.service-content {
    text-align: center;
}

.service-description h3 {
    color: #095BC2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-item h4 {
    color: #00B0CC;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: #095BC2;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* 会社概要ページ */
.company-overview {
    padding: 60px 0;
    background: white;
}

.corp-logo-area {
    text-align: center;
    margin-bottom: 3rem;
}

.corp-logo-area img {
    max-width: 480px;
    width: 100%;
    height: auto;
}

.overview-grid {
    max-width: 900px;
    margin: 0 auto;
}

.company-info h2, .company-message h2 {
    color: #095BC2;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.company-table th {
    background: #f8f9fa;
    color: #095BC2;
    font-weight: bold;
    width: 30%;
}

.company-table td {
    color: #666;
}

.message-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.ceo-photo {
    text-align: center;
    margin-bottom: 2rem;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00B0CC, #095BC2);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.message-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.ceo-quote {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

.signature {
    text-align: right;
    color: #095BC2;
    font-weight: bold;
    font-family: 'Yuji Syuku', serif;
    font-size: 1.9rem;
    letter-spacing: 0.15em;
}

/* 企業理念 */
.company-philosophy {
    padding: 60px 0;
    background: white;
}

.company-philosophy h2 {
    text-align: center;
    color: #095BC2;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.philosophy-main {
    text-align: left;
    font-size: 1.15rem;
    line-height: 2.2;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 3px solid #095BC2;
    color: #444;
}

.philosophy-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.philosophy-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-4px);
}

.philosophy-item h3 {
    color: #095BC2;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #e0e0e0;
}

.philosophy-item p {
    line-height: 1.9;
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

.philosophy-item p:last-child {
    margin-bottom: 0;
}

/* 沿革 */
.company-history {
    padding: 60px 0;
    background: #f8f9fa;
}

.company-history h2 {
    text-align: center;
    color: #095BC2;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #00B0CC, #095BC2);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #095BC2;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #095BC2;
}

.timeline-item:last-child::before {
    background: #86C515;
    box-shadow: 0 0 0 3px #86C515;
}

.timeline-date {
    color: #00B0CC;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.timeline-date span {
    color: #999;
    font-weight: normal;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.timeline-content h3 {
    color: #095BC2;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

.access-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.access-info h2 {
    text-align: center;
    color: #095BC2;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.access-grid {
    display: block;
}

.access-grid > * {
    margin-bottom: 2rem;
}

.access-grid > *:last-child {
    margin-bottom: 0;
}

.access-title {
    color: #095BC2;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.access-overview {
    display: flex;
    align-items: stretch;
    gap: 1.2rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.access-overview .office-photo {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
}

.access-overview .office-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.access-overview .address-info {
    flex: 1 1 0;
    min-width: 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    border-left: 4px solid #095BC2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(9, 91, 194, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item > i {
    color: #095BC2;
    font-size: 1.1rem;
    margin-top: 0.3rem;
    width: 20px;
    text-align: center;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    font-weight: bold;
    color: #095BC2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.address-info p {
    color: #333;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 1rem;
    background: #095BC2;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    transition: background 0.2s;
}

.map-link:hover {
    background: #074a9e;
}

.map-link i {
    margin-right: 0.3rem;
}

.access-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 90%;
}

.access-item strong {
    color: #00B0CC;
    display: block;
    margin-bottom: 0.5rem;
}

.access-item strong i {
    margin-right: 0.4rem;
}

.access-route {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin-bottom: 0.8rem;
    border-left: 3px solid #095BC2;
}

.route-label {
    font-weight: bold;
    color: #095BC2;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.access-route p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

.access-badge {
    display: inline-block;
    white-space: nowrap;
    background: #e8f4f8;
    color: #095BC2;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.4rem 0.3rem 0.4rem 0;
    font-weight: 500;
}

.access-badge i {
    margin-right: 0.3rem;
}

.access-walk {
    margin-top: 0.5rem;
    padding: 0.8rem 1rem;
    background: #fff8e1;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    border-left: 3px solid #f0a500;
}

.access-walk i {
    color: #f0a500;
    margin-right: 0.3rem;
}

.access-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.recruitment {
    padding: 60px 0;
    background: white;
}

.recruitment h2 {
    text-align: center;
    color: #095BC2;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.recruitment-content > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.job-openings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.job-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #86C515;
}

.job-item h3 {
    color: #095BC2;
    margin-bottom: 1rem;
}

.job-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.recruitment-benefits {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.recruitment-benefits h3 {
    color: #095BC2;
    margin-bottom: 1rem;
}

.recruitment-benefits ul {
    list-style: none;
    padding: 0;
}

.recruitment-benefits li {
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.recruitment-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #86C515;
    font-weight: bold;
}

.recruitment-contact {
    text-align: center;
}

.recruitment-contact p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-button {
    background: linear-gradient(135deg, #00B0CC, #095BC2);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.contact-button:hover {
    transform: translateY(-2px);
}

/* お問い合わせページ */
.contact-section {
    padding: 60px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    background: linear-gradient(135deg, #00B0CC, #095BC2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #095BC2;
    margin-bottom: 0.5rem;
}

.contact-number, .contact-email {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00B0CC;
    margin-bottom: 0.5rem;
}

.contact-time {
    color: #666;
    font-size: 0.9rem;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}

.contact-form-section h2 {
    text-align: center;
    color: #095BC2;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00B0CC;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.privacy-notice {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.checkbox-label a {
    color: #00B0CC;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-button {
    background: linear-gradient(135deg, #00B0CC, #095BC2);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 204, 0.4);
}

.additional-info {
    margin-top: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #86C515;
}

.info-card h3 {
    color: #095BC2;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* 勉強会ページ */
.seminar-overview {
    padding: 60px 0;
    background: white;
}

.overview-content h2 {
    text-align: center;
    color: #095BC2;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.overview-content p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
}

.feature-item h3 {
    color: #095BC2;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.upcoming-seminars {
    padding: 60px 0;
    background: #f8f9fa;
}

.upcoming-seminars h2 {
    text-align: center;
    color: #095BC2;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.seminar-list {
    display: grid;
    gap: 2rem;
}

.seminar-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.seminar-date {
    background: linear-gradient(135deg, #00B0CC, #095BC2);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.seminar-date .month {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.seminar-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.seminar-content {
    flex: 1;
}

.seminar-content h3 {
    color: #095BC2;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.seminar-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.seminar-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.seminar-details span {
    background: #f0f8ff;
    color: #095BC2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid #e0f2ff;
}

.apply-button {
    background: #86C515;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.apply-button:hover {
    transform: translateY(-2px);
}

.past-seminars {
    padding: 60px 0;
    background: white;
}

.past-seminars h2 {
    text-align: center;
    color: #095BC2;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.past-seminar-list {
    max-width: 800px;
    margin: 0 auto;
}

.past-seminar-item {
    display: flex;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    gap: 2rem;
}

.past-date {
    color: #00B0CC;
    font-weight: bold;
    min-width: 100px;
}

.past-title {
    flex: 1;
    color: #333;
}

.past-participants {
    color: #86C515;
    font-size: 0.9rem;
    font-weight: bold;
}

.seminar-inquiry {
    background: #095BC2;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.seminar-inquiry h2 {
    margin-bottom: 2rem;
}

.seminar-inquiry p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Q&Aページ */
.qa-section {
    padding: 60px 0;
    background: white;
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-button {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 180px;
    text-align: center;
}

.tab-button.active {
    background: #095BC2;
    border-color: #095BC2;
    color: white;
}

.tab-button:hover:not(.active) {
    background: #e3f2fd;
    border-color: #00B0CC;
    color: #00B0CC;
}

.qa-category {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.qa-category.active {
    display: block;
}

.qa-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.qa-question {
    background: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.qa-question:hover {
    background: #e3f2fd;
}

.qa-question h3 {
    color: #095BC2;
    margin: 0;
    font-size: 1.1rem;
}

.toggle-icon {
    background: #00B0CC;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.qa-item.active .toggle-icon {
    transform: rotate(45deg);
    background: #86C515;
}

.qa-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.qa-item.active .qa-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.qa-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.qa-contact {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.qa-contact h2 {
    color: #095BC2;
    margin-bottom: 1rem;
}

.qa-contact p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}


/* 採用情報 - 職種カード */
.job-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.job-closed-notice {
    background: #f0f0f0;
    border-left: 3px solid #999;
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.job-closed-notice i {
    margin-right: 0.3rem;
}

.job-open-notice {
    background: #e8f5e9;
    border-left: 3px solid #4caf50;
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    margin-bottom: 1rem;
    color: #2e7d32;
    font-size: 0.9rem;
}

.job-open-notice i {
    margin-right: 0.3rem;
}

.job-recruiting-links {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-recruiting-links .job-media-link {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    border-radius: 10px;
}

.job-recruiting-links .job-media-icon {
    width: 22px;
    height: 22px;
}

.job-card.active {
    border-color: #095BC2;
    box-shadow: 0 8px 30px rgba(9, 91, 194, 0.2);
}

.job-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00B0CC, #095BC2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: white;
}

.job-card h3 {
    color: #095BC2;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.job-card-summary {
    color: #86C515;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.job-card-toggle {
    color: #ccc;
    font-size: 0.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.job-card.active .job-card-toggle {
    transform: rotate(180deg);
    color: #095BC2;
}

/* 職種詳細パネル */
.job-detail-panels {
    position: relative;
}

.job-detail-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0 2rem;
    margin-bottom: 0;
}

.job-detail-panel.active {
    max-height: 2000px;
    padding: 2rem;
    margin-bottom: 2rem;
    overflow-y: auto;
}

.job-detail-panel h3 {
    color: #095BC2;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.job-detail-panel h3 i {
    margin-right: 0.5rem;
    color: #00B0CC;
}

/* 求人媒体リンク */
.job-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.job-media-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #095BC2;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e0e0e0;
}

.job-media-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #095BC2;
}

.job-media-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .job-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .message-text p {
        padding: 0 1rem;
    }

    .ceo-quote {
        font-size: 1.2rem;
    }

    .signature {
        font-size: 1.3rem;
    }

    .job-detail-panel .company-table th,
    .job-detail-panel .company-table td {
        display: block;
        width: 100%;
    }

    .job-detail-panel .company-table th {
        border-bottom: none;
        padding-bottom: 0.3rem;
    }

    .job-detail-panel .company-table td {
        padding-top: 0.3rem;
        padding-bottom: 1rem;
    }

    .job-media {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .job-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .message-text p {
        padding: 0 0.5rem;
    }

    .ceo-quote {
        font-size: 1rem;
    }

    .signature {
        font-size: 1.1rem;
    }

    .job-card {
        padding: 1.5rem 1rem;
    }

    .job-card h3 {
        font-size: 0.95rem;
    }
}