/*
Theme Name: flosnovus
Description: 株式会社フロース専用WordPressテーマ
Version: 3.0.0
Author: flosnovus
Text Domain: flosnovus
*/

/* ==========================================================================
   カスタムフォント
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap');

/* ==========================================================================
   CSS変数
   ========================================================================== */
:root {
    --primary-color: #8b6d47;
    --primary-dark: #6d5139;
    --primary-light: #a08262;
    --secondary-color: #f8f6f3;
    --accent-color: #d4af37;
    --text-color: #393939;
    --text-light: #666;
    --text-lighter: #999;
    --text-lightest: #ccc;
    --bg-color: #ffffff;
    --bg-light: #fafafa;
    --bg-dark: #2c2c2c;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.03);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.12);
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 20px;
    --transition: all 0.3s ease;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
    --header-height: 80px;
    --vh: 1vh;
}

/* ==========================================================================
   リセットCSS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* ==========================================================================
   基本スタイル
   ========================================================================== */
body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-light);
    letter-spacing: 0.02em;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    transition: var(--transition);
}

body.menu-open {
    overflow: hidden;
}

body.is-loaded {
    --loading-opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   ユーティリティクラス
   ========================================================================== */
.u-display-pc {
    display: block;
}

.u-display-sp {
    display: none;
}

@media (max-width: 767px) {
    .u-display-pc {
        display: none;
    }
    
    .u-display-sp {
        display: block;
    }
}

/* ==========================================================================
   レイアウト
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.l-container {
    min-height: 100vh;
    position: relative;
}

.l-content {
    padding-top: var(--header-height);
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.l-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 109, 71, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    height: var(--header-height);
    transform: translateY(0);
}

.l-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
}

.l-header.is-hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    margin: 0;
}

.site-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   メインナビゲーション
   ========================================================================== */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ==========================================================================
   ヘッダーアクション
   ========================================================================== */
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.header-cta-btn.line-btn {
    background: linear-gradient(135deg, #06c755 0%, #05a747 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(6, 199, 85, 0.2);
}

.header-cta-btn.line-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    color: white;
}

/* ==========================================================================
   モバイルメニュー
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    width: 32px;
    height: 32px;
    z-index: 1001;
}

.mobile-menu-toggle i {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-toggle i::before,
.mobile-menu-toggle i::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-toggle i::before {
    top: -8px;
}

.mobile-menu-toggle i::after {
    top: 8px;
}

/* ==========================================================================
   メインビジュアル
   ========================================================================== */
.mv {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
}

.mv-fixed {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
}

.mv-intro {
    max-width: 600px;
}

.mv-copy {
    margin-bottom: 3rem;
}

.mv-copy-text {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

.copy-line {
    display: block;
    margin-bottom: 0.2em;
}

.copy-line.accent {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mv-news {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-medium);
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(139, 109, 71, 0.1);
}

.mv-news-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.mv-news-link:hover {
    color: var(--primary-color);
}

.mv-news-date {
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
    font-weight: 500;
}

.mv-news-heading {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.mv-news-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.mv-news-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ==========================================================================
   メインビジュアル画像
   ========================================================================== */
.mv-cover {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
}

.mv-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-gallery {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 40%;
    height: 80%;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.mv-gallery-item {
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.mv-gallery-item.is-animated {
    animation: galleryItemFloat 3s ease-in-out infinite;
}

.mv-gallery-item:nth-child(2).is-animated {
    animation-delay: 0.5s;
}

.mv-gallery-item:nth-child(3).is-animated {
    animation-delay: 1s;
}

.mv-gallery-item:nth-child(4).is-animated {
    animation-delay: 1.5s;
}

.mv-gallery-item-inner {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.mv-gallery-item:hover .mv-gallery-item-inner {
    transform: scale(1.05);
}

.mv-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes galleryItemFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* ==========================================================================
   ABOUTセクション
   ========================================================================== */
.about {
    padding: 8rem 0;
    background: var(--bg-color);
    position: relative;
}

.about-body {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-description {
    margin-bottom: 4rem;
}

.about-description-block {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.about-footer {
    text-align: center;
}

/* ==========================================================================
   スクロールアニメーション
   ========================================================================== */
.js-index {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--index, 0) * 0.15s);
}

.js-index-group.is-animated .js-index,
.js-index.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.c-anime-y {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--index, 0) * 0.15s);
}

.c-anime-y.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.c-anime-heading-en {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

.c-anime-heading-en.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.c-anime-heading-ja {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.c-anime-heading-ja.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.is-in-view {
    --section-progress: 1;
}

/* ==========================================================================
   共通リンクスタイル
   ========================================================================== */
.c-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1rem;
}

.c-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.c-link-text {
    position: relative;
}

.c-link-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.c-link:hover .c-link-text::after {
    width: 100%;
}

.c-link-icon {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.c-link-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ==========================================================================
   セクション見出し
   ========================================================================== */
.top-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.top-heading-en {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.top-heading-ja {
    margin: 0;
}

.top-heading-ja img {
    margin: 0 auto;
}

/* ==========================================================================
   職種・サービスセクション
   ========================================================================== */
.job {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.job-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.job-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.job-heading-en {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.job-heading-ja {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    display: block;
}

.job-service-header {
    margin-bottom: 2rem;
}

.c-separator {
    text-align: center;
}

.c-separator-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.job-service-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   スライダー
   ========================================================================== */
.c-slider {
    position: relative;
}

.c-slider-container {
    overflow: hidden;
    position: relative;
}

.c-slider-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.c-slider-item {
    flex: 0 0 300px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.c-slider-prev,
.c-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--bg-color);
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.c-slider-prev {
    left: -22px;
}

.c-slider-next {
    right: -22px;
}

.c-slider-prev:hover,
.c-slider-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.c-slider-prev.is-disabled,
.c-slider-next.is-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.job-service-slider-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.job-service-slider-figure {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-medium);
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--bg-light);
}

.job-service-slider-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.job-service-slider-link:hover .job-service-slider-figure img {
    transform: scale(1.05);
}

.job-service-slider-name {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
}

/* ==========================================================================
   リフレクションエフェクト
   ========================================================================== */
.c-link-reflection {
    position: relative;
    overflow: hidden;
    display: block;
}

.c-link-reflection-img {
    position: relative;
    overflow: hidden;
}

.c-link-reflection-light {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: left 0.6s ease;
}

.c-link-reflection-light-inner {
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
}

.c-link-reflection:hover .c-link-reflection-light {
    left: 100%;
}

/* ==========================================================================
   ボタンスタイル
   ========================================================================== */
.c-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.c-button-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 109, 71, 0.3);
}

.c-button-outline-text {
    position: relative;
}

.c-button-icon {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.c-button-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.top-section-footer {
    text-align: center;
    margin-top: 4rem;
}

/* ==========================================================================
   SUPPORTセクション
   ========================================================================== */
.support {
    padding: 6rem 0;
    background: var(--bg-color);
    text-align: center;
}

.support-figure {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.support-figure img {
    width: 100%;
    height: auto;
}

.support-body {
    max-width: 700px;
    margin: 0 auto;
}

.support-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.support-footer {
    text-align: center;
}

.support-content {
  max-width: 800px;
  margin: 0 auto;
}

.support-item {
  margin-bottom: 2.5rem;
}

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

.support-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.support-item-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

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

/* ==========================================================================
   INTERVIEWセクション
   ========================================================================== */
.interview {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.interview-list {
    margin-bottom: 4rem;
}

.c-columns-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.c-archive {
    background: var(--bg-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.c-archive:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.c-archive-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
}

.c-link-reflection-img-wrap {
    position: relative;
    overflow: hidden;
}

.c-archive-figure {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.c-archive-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.c-archive:hover .c-archive-figure img {
    transform: scale(1.05);
}

.c-archive-body {
    padding: 2rem;
}

.c-archive-heading {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* ==========================================================================
   カテゴリータグ
   ========================================================================== */
.c-category {
    margin-top: 1rem;
}

.c-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.c-category-item {
    flex-shrink: 0;
}

.c-category-link-filled {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   NEWSセクション
   ========================================================================== */
.news {
    padding: 6rem 0;
    background: var(--bg-color);
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.news-item:hover {
    background-color: rgba(139, 109, 71, 0.02);
}

.news-item:last-child {
    border-bottom: none;
}

.news-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.news-link:hover {
    color: var(--primary-color);
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
    font-weight: 500;
    min-width: 80px;
}

.news-heading {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.news-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.news-link:hover .news-icon {
    transform: translate(3px, -3px);
}

.news-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ==========================================================================
   GALLERYセクション
   ========================================================================== */
.gallery {
    padding: 4rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.gallery-group-wrap {
    display: flex;
    gap: 1rem;
    animation: gallery-slide 30s linear infinite;
}

.gallery-group {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.gallery-item {
    flex-shrink: 0;
    width: calc(var(--width) * 0.3px);
    height: calc(var(--height) * 0.3px);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-small);
    opacity: 0.8;
    transition: var(--transition);
}

.gallery-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes gallery-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   フッター
   ========================================================================== */
.l-footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    color: #ccc;
    padding: 4rem 0 2rem;
    position: relative;
}

.l-footer-primary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.l-footer-company {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.l-footer-info {
    margin-bottom: 1.5rem;
}

.l-footer-company-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.l-footer-company-name {
    font-size: 1rem;
    font-weight: 500;
    color: #ddd;
    margin-bottom: 0.3rem;
}

.l-footer-representative {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 400;
}

.l-footer-services {
    margin-top: 1rem;
}

.l-footer-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.l-footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.l-footer-services-item {
    color: #bbb;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.l-footer-services-item:last-child {
    margin-bottom: 0;
}

.l-footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.l-footer-menu {
    margin-bottom: 2rem;
}

.l-footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.l-footer-menu-item {
    margin-bottom: 1rem;
}

.l-footer-menu-item:last-child {
    margin-bottom: 0;
}

.l-footer-menu-link {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 400;
    display: block;
    padding: 0.2rem 0;
}

.l-footer-menu-link:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.l-footer-contact {
    margin-top: 1rem;
}

.l-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.l-footer-contact-item {
    margin-bottom: 1.5rem;
}

.l-footer-contact-item:last-child {
    margin-bottom: 0;
}

.l-footer-contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.l-footer-contact-link:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.l-footer-contact-text {
    flex: 1;
}

.l-footer-contact-text-ja {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: #ddd;
}

.l-footer-contact-text-en {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.l-footer-contact-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.l-footer-contact-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.l-footer-contact-link:hover .l-footer-contact-icon {
    transform: translate(2px, -2px);
}

.l-footer-contact-info {
    padding: 0.5rem 0;
}

.l-footer-contact-email {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

.l-footer-secondary {
    border-top: 1px solid rgba(139, 109, 71, 0.3);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.l-footer-copyright {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.l-footer-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.l-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.l-footer-cta-primary {
    background: linear-gradient(135deg, #06c755 0%, #05a747 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(6, 199, 85, 0.2);
}

.l-footer-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    color: white;
}

.l-footer-cta-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.l-footer-cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 109, 71, 0.3);
}

.l-footer-cta-text {
    position: relative;
}

.l-footer-cta-icon {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.l-footer-cta-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ==========================================================================
   ローディングアニメーション
   ========================================================================== */
.js-loading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-loading.is-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   レスポンシブデザイン（768px以下）
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* ヘッダー */
    .header-content {
        height: var(--header-height);
    }
    
    .site-title a {
        font-size: 1.3rem;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-medium);
        z-index: 999;
        padding: 2rem;
    }
    
    .main-navigation.is-open {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .header-cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.is-open i {
        background-color: transparent;
    }
    
    .mobile-menu-toggle.is-open i::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-menu-toggle.is-open i::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    /* メインビジュアル */
    .mv-fixed {
        padding-left: 0;
        text-align: center;
        justify-content: center;
    }
    
    .mv-intro {
        padding: 0 1rem;
    }
    
    .mv-copy-text {
        font-size: 2.2rem;
    }
    
    .mv-cover {
        position: relative;
        width: 100%;
        height: 50vh;
        order: -1;
    }
    
    .mv-gallery {
        display: none;
    }
    
    .mv-news {
        margin-top: 2rem;
    }
    
    .mv-news-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* セクション */
    .about {
        padding: 4rem 0;
    }
    
    .about-description-block {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .job {
        padding: 4rem 0;
    }
    
    .support {
        padding: 4rem 0;
    }
    
    .interview {
        padding: 4rem 0;
    }
    
    .news {
        padding: 4rem 0;
    }
    
    .top-heading {
        margin-bottom: 3rem;
    }
    
    .top-heading-ja img {
        max-width: 280px;
    }
    
    /* スライダー */
    .c-slider-item {
        flex: 0 0 250px;
    }
    
    .c-slider-list {
        gap: 1rem;
    }
    
    .c-slider-prev,
    .c-slider-next {
        width: 36px;
        height: 36px;
    }
    
    .c-slider-prev {
        left: -18px;
    }
    
    .c-slider-next {
        right: -18px;
    }
    
    /* グリッド */
    .c-columns-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* ニュース */
    .news-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .news-date {
        min-width: auto;
        font-size: 0.8rem;
    }
    
    .news-heading {
        font-size: 0.95rem;
    }
    
    /* フッター */
    .l-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .l-footer-primary {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 2rem;
    }
    
    .l-footer-company {
        gap: 1.5rem;
    }
    
    .l-footer-company-title {
        font-size: 1.3rem;
    }
    
    .l-footer-navigation {
        gap: 2rem;
    }
    
    .l-footer-secondary {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .l-footer-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .l-footer-cta-btn {
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   レスポンシブデザイン（480px以下）
   ========================================================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .site-title a {
        font-size: 1.2rem;
    }
    
    .header-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .mv-copy-text {
        font-size: 1.8rem;
    }
    
    .mv-news {
        padding: 1rem;
    }
    
    .mv-news-heading {
        font-size: 0.85rem;
    }
    
    .about-description-block {
        font-size: 1rem;
    }
    
    .support-description {
        font-size: 1rem;
    }
    
    .c-archive-body {
        padding: 1.5rem;
    }
    
    .c-archive-heading {
        font-size: 1rem;
    }
    
    .c-button-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .top-section-footer {
        margin-top: 3rem;
    }
    
    /* フッター */
    .l-footer {
        padding: 2.5rem 0 1rem;
    }
    
    .l-footer-primary {
        gap: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .l-footer-company-title {
        font-size: 1.2rem;
    }
    
    .l-footer-company-name {
        font-size: 0.9rem;
    }
    
    .l-footer-representative {
        font-size: 0.85rem;
    }
    
    .l-footer-contact-text-ja {
        font-size: 0.9rem;
    }
    
    .l-footer-contact-text-en {
        font-size: 0.7rem;
    }
    
    .l-footer-cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .l-footer-copyright {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   アニメーション
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* ==========================================================================
   Reduced Motionへの対応
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .mv-gallery-item.is-animated {
        animation: none;
    }
    
    .gallery-group-wrap {
        animation: none;
    }
}

/* ==========================================================================
   印刷スタイル
   ========================================================================== */
@media print {
    .l-header,
    .mv-gallery,
    .gallery,
    .l-footer {
        display: none;
    }
    
    .mv-fixed {
        position: static;
        height: auto;
        padding: 2rem 0;
    }
    
    .mv-cover {
        position: static;
        width: 100%;
        height: auto;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    a {
        color: inherit;
    }
    
    .c-link::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}