/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    background-color: #2F302C;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ナビゲーション */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(47, 48, 44, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    font-size: 28px;
    font-weight: 700;
    color: #BFCF5A;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #BFCF5A;
}

.nav-link.cta-button {
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
    color: #2F302C;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(191, 207, 90, 0.3);
    color: #2F302C;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: 0.3s;
    border-radius: 2px;
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(191, 207, 90, 0.1) 0%, transparent 50%),
        url('../images/top.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 3Dキューブ */
.cube-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
}

.cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #BFCF5A;
    background: rgba(191, 207, 90, 0.1);
    backdrop-filter: blur(5px);
}

.face.front  { transform: rotateY(0deg) translateZ(100px); }
.face.back   { transform: rotateY(180deg) translateZ(100px); }
.face.right  { transform: rotateY(90deg) translateZ(100px); }
.face.left   { transform: rotateY(-90deg) translateZ(100px); }
.face.top    { transform: rotateX(90deg) translateZ(100px); }
.face.bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF, #BFCF5A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

/* ボタンスタイル */
.btn-primary {
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
    color: #2F302C;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(191, 207, 90, 0.4);
}

.btn-secondary, .btn-outline {
    background: transparent;
    color: #FFFFFF;
    padding: 16px 32px;
    border: 2px solid #BFCF5A;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover, .btn-outline:hover {
    background: #BFCF5A;
    color: #2F302C;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(191, 207, 90, 0.3);
}

/* お知らせセクション */
.news-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.03) 0%, transparent 100%);
}

.news-container {
    margin-top: 60px;
}

.news-list {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #BFCF5A rgba(255, 255, 255, 0.1);
}

.news-list::-webkit-scrollbar {
    height: 8px;
}

.news-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.news-list::-webkit-scrollbar-thumb {
    background: #BFCF5A;
    border-radius: 4px;
}

.news-item {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 16px;
    padding: 24px;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: inherit;
}

.news-item:hover {
    transform: translateY(-5px);
    border-color: #BFCF5A;
    box-shadow: 0 15px 30px rgba(191, 207, 90, 0.2);
    text-decoration: none;
    color: inherit;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.news-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.news-category {
    background: rgba(191, 207, 90, 0.2);
    color: #BFCF5A;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-loading {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 40px;
    font-style: italic;
}

.news-error {
    color: rgba(255, 100, 100, 0.8);
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 12px;
    background: rgba(255, 100, 100, 0.05);
}

.news-cta {
    text-align: center;
    margin-top: 40px;
}

/* メインコンテンツ */
.main-content {
    padding-top: 0;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF, #BFCF5A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* セクション共通スタイル */
section {
    padding: 60px 0;
}

/* サービス概要セクション */
.services-overview {
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.05) 0%, transparent 100%);
}

.services-overview .container {
    max-width: none;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: auto;
    min-height: 400px;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 60px;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

/* サービスカード画像とコンテンツ */
.service-image {
    flex: 1.5;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.service-content {
    flex: 1;
    padding: 40px 50px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
}

.icon-dao, .icon-development, .icon-regional, .icon-metaverse, .icon-avatar, .icon-event {
    width: 40px;
    height: 40px;
    background: #2F302C;
    border-radius: 8px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #BFCF5A;
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-link {
    color: #BFCF5A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #FFFFFF;
}

/* 実績セクション */
.featured-works {
    background: rgba(0, 0, 0, 0.2);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.work-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    transform: translateY(-5px);
    border-color: #BFCF5A;
    box-shadow: 0 15px 30px rgba(191, 207, 90, 0.2);
}

.work-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-card:hover .work-img {
    transform: scale(1.05);
}

.work-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.work-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #BFCF5A;
}

.work-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(191, 207, 90, 0.2);
    color: #BFCF5A;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.works-cta, .blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* ブログセクション */
.latest-blog {
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.05) 0%, transparent 100%);
}

.latest-blog .section-subtitle {
    margin-top: 24px;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #BFCF5A;
    box-shadow: 0 15px 30px rgba(191, 207, 90, 0.2);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-meta time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.blog-category {
    background: rgba(191, 207, 90, 0.2);
    color: #BFCF5A;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
    line-height: 1.4;
}

.blog-title a {
    color: #BFCF5A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #FFFFFF;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-link {
    color: #BFCF5A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #FFFFFF;
}

/* ブログ画像スタイル */
.blog-image {
    width: 100%;
    height: auto;
    min-height: 180px;
    max-height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
    background: transparent;
}

.blog-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    transition: transform 0.3s ease;
    display: block;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

/* 画像なしプレースホルダー */
.blog-no-image {
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.1) 0%, rgba(191, 207, 90, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-image-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.no-image-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 8px;
}

/* 画像読み込みエラー時の処理 */
.blog-img[src=""] {
    display: none;
}

/* ローディング表示 */
.blog-loading {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.8);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(191, 207, 90, 0.3);
    border-top: 3px solid #BFCF5A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* エラー表示 */
.blog-error {
    text-align: center;
    padding: 40px 20px;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    margin: 20px 0;
}

/* noteリンク */
.blog-note-link {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-note-link p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.blog-note-link a {
    color: #BFCF5A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-note-link a:hover {
    color: #FFFFFF;
}

/* メインページ用ローディング */
.blog-loading-main {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* CTAセクション */
.cta-section {
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.1) 0%, rgba(191, 207, 90, 0.05) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF, #BFCF5A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

/* フッター */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(191, 207, 90, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #BFCF5A;
    margin-bottom: 16px;
}

.logo-image-footer {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-image-footer:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #BFCF5A;
    margin-bottom: 20px;
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

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

.footer-nav-list a:hover {
    color: #BFCF5A;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(191, 207, 90, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* タブレット表示でサービスカードを縦並びに */
@media (max-width: 1024px) {
    .service-card {
        flex-direction: column;
        height: auto;
        min-height: auto;
        margin-bottom: 50px;
    }

    .service-image {
        height: 300px;
        flex: none;
    }

    .service-content {
        padding: 40px 30px;
        text-align: center;
        flex: none;
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(47, 48, 44, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .cube {
        width: 150px;
        height: 150px;
    }

    .face {
        width: 150px;
        height: 150px;
    }

    .face.front, .face.back, .face.right, .face.left, .face.top, .face.bottom {
        transform-origin: center;
    }

    .face.front  { transform: rotateY(0deg) translateZ(75px); }
    .face.back   { transform: rotateY(180deg) translateZ(75px); }
    .face.right  { transform: rotateY(90deg) translateZ(75px); }
    .face.left   { transform: rotateY(-90deg) translateZ(75px); }
    .face.top    { transform: rotateX(90deg) translateZ(75px); }
    .face.bottom { transform: rotateX(-90deg) translateZ(75px); }

    .services-grid,
    .works-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* モバイル表示での実績画像サイズ調整 */
    .work-image {
        height: 220px;
    }

    /* モバイル表示でサービスカードを縦並びに */
    .service-card {
        flex-direction: column;
        height: auto;
        min-height: auto;
        margin-bottom: 40px;
    }

    .service-image {
        height: 250px;
        flex: none;
    }

    .service-content {
        padding: 30px 20px;
        text-align: center;
        flex: none;
    }

    /* お知らせセクションのレスポンシブ対応 */
    .news-list {
        flex-direction: column;
        overflow-x: visible;
    }

    .news-item {
        flex: none;
        width: 100%;
    }

    /* モバイルでサービスセクションの余白を調整 */
    .services-overview .container {
        padding: 0 15px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .work-card,
    .blog-card {
        padding: 25px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-content {
        padding: 25px 15px;
    }
    
    .service-image {
        height: 220px;
    }

    /* 小画面での実績画像サイズ調整 */
    .work-image {
        height: 180px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .logo-image {
        height: 64px;
    }

    .logo-image-footer {
        height: 96px;
    }
}

/* アクセシビリティ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .cube {
        animation: none;
    }
}

/* フォーカススタイル */
a:focus,
button:focus {
    outline: 2px solid #BFCF5A;
    outline-offset: 2px;
}

/* 選択テキストのスタイル */
::selection {
    background: rgba(191, 207, 90, 0.3);
    color: #FFFFFF;
}

/* スクロールバーのスタイル */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2F302C;
}

::-webkit-scrollbar-thumb {
    background: #BFCF5A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A8B84F;
}

/* Aboutページ専用スタイル */
.breadcrumb {
    background: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    padding-top: 100px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-list a {
    color: #BFCF5A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #FFFFFF;
}

.page-header {
    text-align: center;
    padding: 100px 0 40px 0;
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.1) 0%, transparent 100%);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 30px 0;
    }
}

.page-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF, #BFCF5A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ミッション・ビジョンセクション */
.mission-vision {
    padding: 40px 0 60px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    border-color: #BFCF5A;
    box-shadow: 0 20px 40px rgba(191, 207, 90, 0.2);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #BFCF5A;
}

.card-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* 会社概要セクション */
.company-overview {
    background: rgba(0, 0, 0, 0.2);
    padding: 80px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* 代表者紹介スタイル */
.ceo-profile {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.profile-content {
    text-align: center;
    max-width: 300px;
}

.profile-image {
    margin-bottom: 20px;
}

.ceo-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #BFCF5A;
    box-shadow: 0 8px 24px rgba(191, 207, 90, 0.2);
    transition: all 0.3s ease;
}

.ceo-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(191, 207, 90, 0.3);
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.4;
}

.profile-title {
    font-size: 1rem;
    color: #BFCF5A;
    font-weight: 500;
    margin-bottom: 20px;
}

.profile-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    background: rgba(191, 207, 90, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(191, 207, 90, 0.2);
    transition: all 0.3s ease;
}

.profile-link:hover {
    background: rgba(191, 207, 90, 0.2);
    border-color: rgba(191, 207, 90, 0.4);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.profile-link-text {
    font-weight: 500;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.company-table th, .company-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(191, 207, 90, 0.1);
}

.company-table th {
    background: rgba(191, 207, 90, 0.1);
    color: #BFCF5A;
    font-weight: 600;
    width: 30%;
}

.company-table td {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.values-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #BFCF5A;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* メンバー紹介セクション */
.team-members {
    padding: 80px 0;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.member-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: #BFCF5A;
    box-shadow: 0 20px 40px rgba(191, 207, 90, 0.2);
}

.member-photo {
    text-align: center;
    margin-bottom: 24px;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #2F302C;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #BFCF5A;
    text-align: center;
}

.member-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 16px;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.credential {
    background: rgba(191, 207, 90, 0.2);
    color: #BFCF5A;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.member-bio {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member-specialties h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #BFCF5A;
}

.member-specialties ul {
    list-style: none;
    margin-bottom: 20px;
}

.member-specialties li {
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 16px;
}

.member-specialties li::before {
    content: '•';
    color: #BFCF5A;
    position: absolute;
    left: 0;
}

.member-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    color: #BFCF5A;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    border: 1px solid rgba(191, 207, 90, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #BFCF5A;
    color: #2F302C;
}

/* 沿革セクション */
.company-history {
    background: rgba(0, 0, 0, 0.2);
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #BFCF5A, transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #BFCF5A;
    box-shadow: 0 0 0 4px #2F302C;
}

.timeline-date {
    font-size: 0.9rem;
    color: #BFCF5A;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 認定・資格セクション */
.certifications {
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.cert-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cert-item:hover {
    transform: translateY(-5px);
    border-color: #BFCF5A;
    box-shadow: 0 15px 30px rgba(191, 207, 90, 0.2);
}

.cert-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #BFCF5A;
}

.cert-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .mission-vision-grid,
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        margin-left: 20px;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-item::before {
        left: -8px;
    }

         .company-table th,
     .company-table td {
         padding: 12px 16px;
         font-size: 0.9rem;
     }

    /* 代表者紹介のレスポンシブ対応 */
    .ceo-profile {
        padding: 20px;
        margin-top: 30px;
    }

    .ceo-avatar {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 1.2rem;
    }

    .profile-title {
        font-size: 0.9rem;
    }

    .profile-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
 }

/* Servicesページ専用スタイル */
.services-intro {
    padding: 0 0 80px;
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.05) 0%, transparent 100%);
    position: relative;
}

/* 事業画像スライダー */
.business-slider {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.slider-track {
    display: flex;
    width: calc(400px * 12);
    height: 100%;
    animation: autoScroll 60s linear infinite;
}

.business-slider:hover .slider-track {
    animation-play-state: paused;
}

.slide {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border: 2px solid rgba(191, 207, 90, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slide:hover img {
    transform: scale(1.05);
    border-color: rgba(191, 207, 90, 0.6);
    box-shadow: 0 8px 24px rgba(191, 207, 90, 0.2);
}

/* スライダーに軽いオーバーレイ効果 */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(191, 207, 90, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.slide:hover::before {
    opacity: 1;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 6));
    }
}

/* スライダーのレスポンシブ対応 */
@media (max-width: 1024px) {
    .business-slider {
        height: 250px;
    }
    
    .slide {
        width: 320px;
        height: 250px;
        padding: 8px;
    }
    
    .slider-track {
        width: calc(320px * 12);
        animation: autoScrollTablet 50s linear infinite;
    }
    
    @keyframes autoScrollTablet {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-320px * 6));
        }
    }
}

@media (max-width: 768px) {
    .business-slider {
        height: 200px;
        margin-bottom: 60px;
    }
    
    .slide {
        width: 280px;
        height: 200px;
        padding: 6px;
    }
    
    .slide img {
        border-radius: 10px;
    }
    
    .slider-track {
        width: calc(280px * 12);
        animation: autoScrollMobile 40s linear infinite;
    }
    
    @keyframes autoScrollMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 6));
        }
    }
}

@media (max-width: 480px) {
    .business-slider {
        height: 150px;
        margin-bottom: 40px;
    }
    
    .slide {
        width: 220px;
        height: 150px;
        padding: 5px;
    }
    
    .slide img {
        border-radius: 8px;
        border-width: 1px;
    }
    
    .slider-track {
        width: calc(220px * 12);
        animation: autoScrollSmall 35s linear infinite;
    }
    
    @keyframes autoScrollSmall {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-220px * 6));
        }
    }
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 0;
}

.intro-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 60px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #BFCF5A;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* メインサービス詳細 */
.main-services {
    padding: 100px 0;
}



.services-detailed {
    margin-top: 60px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(191, 207, 90, 0.1);
    border-radius: 24px;
    padding: 80px;
    transition: all 0.3s ease;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.service-detail-card:hover {
    border-color: rgba(191, 207, 90, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(191, 207, 90, 0.1);
}

.service-detail-card .service-content {
    text-align: center;
}

.service-detail-card .service-detail-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-detail-card .service-detail-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
}

.service-detail-card .service-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.service-detail-card .service-highlights {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-card .service-highlights .highlight-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(191, 207, 90, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    width: 350px;
    max-width: 350px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-card .service-highlights .highlight-item:hover {
    border-color: rgba(191, 207, 90, 0.3);
    transform: translateY(-5px);
}

.service-detail-card .service-highlights .highlight-item h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #BFCF5A;
}

.service-detail-card .service-highlights .highlight-item ul {
    text-align: left;
}

.service-detail-card .service-highlights .highlight-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    max-width: 500px;
    min-height: 300px;
}

.service-detail-card .service-highlights .service-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    min-height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card .service-highlights .service-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.service-detail-card .service-process {
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-card .service-process h4 {
    text-align: center;
    margin-bottom: 30px;
}

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

.service-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(191, 207, 90, 0.3);
}

.icon-dao-large, .icon-development-large, .icon-regional-large {
    width: 100px;
    height: 100px;
    background: #2F302C;
    border-radius: 20px;
}

.service-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #BFCF5A;
}

.service-detail-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-style: italic;
}

.service-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #BFCF5A;
}

.highlight-item ul {
    list-style: none;
}

.highlight-item li {
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.highlight-item li::before {
    content: '✓';
    color: #BFCF5A;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-process {
    margin-bottom: 40px;
}

.service-process h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #BFCF5A;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(191, 207, 90, 0.1);
    transform: translateY(-3px);
}

.step-number {
    display: block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
    color: #2F302C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 12px;
}

.step-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.service-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* 選ばれる理由 */
.why-choose-us {
    background: rgba(0, 0, 0, 0.2);
    padding: 100px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: #BFCF5A;
    box-shadow: 0 20px 40px rgba(191, 207, 90, 0.2);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-number {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #2F302C;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #2F302C;
}

.reason-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #BFCF5A;
}

.reason-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 導入フロー */
.implementation-flow {
    padding: 100px 0;
}

.flow-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #BFCF5A, transparent);
    z-index: 1;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
}

.flow-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(191, 207, 90, 0.3);
    z-index: 2;
    position: relative;
}

.flow-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2F302C;
}

.flow-content {
    text-align: center;
    max-width: 300px;
}

.flow-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #BFCF5A;
}

.flow-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.flow-duration {
    display: inline-block;
    background: rgba(191, 207, 90, 0.2);
    color: #BFCF5A;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .service-detail-card {
        padding: 60px 40px;
        margin-bottom: 50px;
    }

    .service-detail-card .service-detail-title {
        font-size: 2.2rem;
    }

    .service-detail-card .service-detail-subtitle {
        font-size: 1.1rem;
    }

    .service-detail-card .service-description {
        font-size: 1.1rem;
    }

    .service-detail-card .service-highlights {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .service-detail-card .service-highlights .highlight-item {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .service-detail-card {
        padding: 40px 30px;
        margin-bottom: 40px;
    }

    .service-detail-card .service-detail-title {
        font-size: 2rem;
    }

    .service-detail-card .service-detail-subtitle {
        font-size: 1rem;
    }

    .service-detail-card .service-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .service-detail-card .service-highlights {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 40px;
    }

    .service-detail-card .service-highlights .highlight-item {
        padding: 25px;
        width: 100%;
        max-width: 350px;
    }

    .service-detail-card .service-highlights .highlight-image {
        width: 100%;
        max-width: 350px;
        min-height: 180px;
    }

    .service-detail-card .service-highlights .service-image {
        max-width: 280px;
        min-height: 165px;
        object-fit: cover;
    }

    .service-detail-card .service-process {
        margin-bottom: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-detail-card .service-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* FAQページ専用スタイル */
.faq-search {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.05) 0%, transparent 100%);
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(191, 207, 90, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #BFCF5A;
    background: rgba(255, 255, 255, 0.1);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-button {
    padding: 16px 32px;
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
    color: #2F302C;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(191, 207, 90, 0.3);
}

/* FAQカテゴリフィルター */
.faq-categories {
    padding: 40px 0;
    border-bottom: 1px solid rgba(191, 207, 90, 0.2);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(191, 207, 90, 0.3);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #BFCF5A;
    color: #2F302C;
    transform: translateY(-2px);
}

/* FAQ一覧 */
.faq-list {
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #BFCF5A;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
    border-radius: 2px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(191, 207, 90, 0.4);
    box-shadow: 0 8px 24px rgba(191, 207, 90, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #BFCF5A;
}

.faq-question.active {
    color: #BFCF5A;
    background: rgba(191, 207, 90, 0.05);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    border-top: 1px solid rgba(191, 207, 90, 0.1);
}

.faq-answer p {
    margin-bottom: 16px;
}

.faq-answer ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.faq-answer strong {
    color: #BFCF5A;
    font-weight: 600;
}

.faq-answer a {
    color: #FFD700 !important;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    color: #FFFF99 !important;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* より詳細度の高いセレクタ */
.faq-item .faq-answer a {
    color: #FFD700 !important;
}

.faq-item .faq-answer a:hover {
    color: #FFFF99 !important;
}

/* FAQ問い合わせ促進 */
.faq-contact {
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.1) 0%, rgba(191, 207, 90, 0.05) 100%);
    padding: 80px 0;
}

.contact-prompt {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.prompt-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF, #BFCF5A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prompt-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
        gap: 16px;
    }
    
    .category-filters {
        gap: 8px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
         .prompt-buttons {
         flex-direction: column;
         align-items: center;
     }
 }

/* Contactページ専用スタイル */
.contact-methods {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.05) 0%, transparent 100%);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: #BFCF5A;
    box-shadow: 0 20px 40px rgba(191, 207, 90, 0.2);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #BFCF5A, #A8B84F);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-form, .icon-email, .icon-meeting {
    width: 40px;
    height: 40px;
    background: #2F302C;
    border-radius: 8px;
}

.method-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #BFCF5A;
}

.method-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.6;
}

.method-contact {
    margin-bottom: 12px;
}

.method-contact a {
    color: #BFCF5A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.method-contact a:hover {
    color: #FFFFFF;
}

.method-response {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* お問い合わせフォーム */
.contact-form-section {
    padding: 100px 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 60px;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF, #BFCF5A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #BFCF5A;
    margin-bottom: 8px;
}

.required {
    color: #FF6B6B;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(191, 207, 90, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #BFCF5A;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(191, 207, 90, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: #2F302C;
    color: #FFFFFF;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(191, 207, 90, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #BFCF5A;
    border-color: #BFCF5A;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #2F302C;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-label a {
    color: #BFCF5A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #FFFFFF;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    min-width: 200px;
    margin-bottom: 16px;
}

.submit-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* フォームエラーハンドリング */
.form-error {
    border-color: #FF6B6B !important;
    background: rgba(255, 107, 107, 0.1) !important;
}

.field-error-message {
    color: #FF6B6B;
    font-size: 0.85rem;
    margin-top: 6px;
    display: block;
}

.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
    border: 1px solid;
}

.form-message-success {
    background-color: rgba(72, 187, 120, 0.1);
    border-color: #48BB78;
    color: #48BB78;
}

.form-message-error {
    background-color: rgba(255, 107, 107, 0.1);
    border-color: #FF6B6B;
    color: #FF6B6B;
}

/* 送信中の状態 */
.submit-btn.submitting {
    background: rgba(191, 207, 90, 0.6) !important;
    cursor: not-allowed;
    transform: none !important;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 会社情報・アクセス */
.company-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 100px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #BFCF5A;
}

.info-item {
    margin-bottom: 32px;
}

.info-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #BFCF5A;
    margin-bottom: 8px;
}

.info-value {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.info-value a {
    color: #BFCF5A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: #FFFFFF;
}

.access-methods {
    margin-bottom: 40px;
}

.access-item {
    margin-bottom: 24px;
}

.access-station {
    font-size: 1.1rem;
    font-weight: 600;
    color: #BFCF5A;
    margin-bottom: 4px;
}

.access-detail {
    color: rgba(255, 255, 255, 0.8);
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.map-content {
    text-align: center;
}

.map-content p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #BFCF5A;
}

.map-content span {
    font-size: 0.9rem;
}

/* FAQリンクセクション */
.faq-link-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.05) 0%, transparent 100%);
}

.faq-link-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-link-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #BFCF5A;
}

.faq-link-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-wrapper {
        padding: 0 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
}

/* プラットフォームセクション */
.platforms {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.02) 0%, transparent 100%);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(191, 207, 90, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(191, 207, 90, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.platform-name {
    font-size: 2rem;
    font-weight: 700;
    color: #BFCF5A;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    position: relative;
}

.platform-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #BFCF5A, #A8B84F);
    border-radius: 2px;
}

.platform-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.platform-features {
    list-style: none;
    padding: 0;
}

.platform-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-weight: 500;
}

.platform-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #BFCF5A;
    font-weight: 700;
    font-size: 1.1rem;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .platform-card {
        padding: 30px;
    }
    
    .platform-name {
        font-size: 1.6rem;
    }
    
    .platform-description {
        font-size: 1rem;
    }
}

/* 提供サポート内容セクション */
.support-services {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.03) 0%, transparent 100%);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.support-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #BFCF5A, #A8B84F);
}

.support-category:hover {
    transform: translateY(-8px);
    border-color: rgba(191, 207, 90, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #BFCF5A;
    margin-bottom: 24px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #BFCF5A;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.support-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 12px;
    color: #BFCF5A;
    font-size: 0.8rem;
}

.support-list li:hover {
    color: #FFFFFF;
}

/* モバイル対応 */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .support-services {
        padding: 80px 0;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .support-category {
        padding: 30px 25px;
    }
    
    .category-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .support-list li {
        padding: 10px 0;
        padding-left: 24px;
    }
}

/* 対応イベントタイプセクション */
.event-types {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(191, 207, 90, 0.02) 0%, transparent 100%);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.type-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(191, 207, 90, 0.15);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #BFCF5A, #A8B84F);
    border-radius: 20px 20px 0 0;
}

.type-card:hover {
    transform: translateY(-10px);
    border-color: rgba(191, 207, 90, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.type-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #BFCF5A;
    margin-bottom: 16px;
    position: relative;
}

.type-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-features li {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
    transition: all 0.3s ease;
}

.type-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 8px;
    color: #BFCF5A;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.type-features li:hover {
    color: #FFFFFF;
    padding-left: 28px;
}

.type-features li:hover::before {
    transform: translateX(4px);
}

/* モバイル対応 */
@media (max-width: 1024px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .type-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .event-types {
        padding: 80px 0;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .type-card {
        padding: 30px;
    }
    
    .type-title {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    
    .type-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .type-features li {
        padding: 6px 0;
        padding-left: 20px;
    }
}

/* お知らせ一覧ページ専用スタイル */
.news-list-section {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 0;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 207, 90, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #BFCF5A;
    box-shadow: 0 15px 30px rgba(191, 207, 90, 0.2);
}

.news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-card-header {
    padding: 20px 20px 0;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.news-card-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.news-card-category {
    background: rgba(191, 207, 90, 0.2);
    color: #BFCF5A;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-card-content {
    padding: 0 20px 20px;
}

.news-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    padding: 0 20px 20px;
}

.read-more {
    color: #BFCF5A;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-card:hover .read-more {
    color: #FFFFFF;
}

/* ページネーション */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    padding: 12px 16px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(191, 207, 90, 0.3);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #BFCF5A;
    color: #2F302C;
    border-color: #BFCF5A;
}

.pagination-dots {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 8px;
}

/* エラー・空状態の表示 */
.no-news,
.news-error {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.no-news h2,
.news-error h2 {
    color: #BFCF5A;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.no-news p,
.news-error p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* 個別記事ページ専用スタイル */
.article-content {
    padding: 80px 0;
}

.article-loading {
    text-align: center;
    padding: 80px 20px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(191, 207, 90, 0.3);
    border-top: 3px solid #BFCF5A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.article-loading p {
    color: rgba(255, 255, 255, 0.8);
}

.article-error {
    text-align: center;
    padding: 80px 20px;
}

.article-error h1 {
    color: #BFCF5A;
    margin-bottom: 16px;
    font-size: 2rem;
}

.article-error p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(191, 207, 90, 0.2);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.article-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.article-category {
    background: rgba(191, 207, 90, 0.2);
    color: #BFCF5A;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 16px;
}

.article-excerpt {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-style: italic;
}

.article-body {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 40px;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    color: #BFCF5A;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.article-body h1 { font-size: 2rem; }
.article-body h2 { font-size: 1.7rem; }
.article-body h3 { font-size: 1.4rem; }
.article-body h4 { font-size: 1.2rem; }

.article-body p {
    margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body a {
    color: #BFCF5A;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-body a:hover {
    color: #FFFFFF;
}

.article-body blockquote {
    border-left: 4px solid #BFCF5A;
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.article-body pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0;
    border: 1px solid rgba(191, 207, 90, 0.2);
}

.article-body code {
    background: rgba(191, 207, 90, 0.1);
    color: #BFCF5A;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.article-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.article-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(191, 207, 90, 0.2);
}

.article-actions {
    display: flex;
    justify-content: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pagination-buttons {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .pagination-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .article-body {
        font-size: 0.95rem;
    }
} 