/**
 * Consolidated Sections CSS
 * Extracted from template-parts PHP files
 * 
 * @package KinkiLoader
 */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: -100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.hero-bg.active {
    transform: translateY(-100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 160px;
    color: var(--color-white);
}

.hero-catchcopy {
    font-size: var(--font-size-hero);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.12em;
    margin-bottom: var(--spacing-md);
}

.hero-subcopy {
    font-size: var(--font-size-lg);
    font-weight: 600;
    letter-spacing: 0.06em;
}

.hero-pagination {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-pagination-dot {
    width: 3px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-pagination-dot.active {
    background-color: rgba(255, 255, 255, 1);
    height: 80px;
}

.hero-pagination-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-scroll {
    position: absolute;
    left: 60px;
    bottom: 100px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-md);
    letter-spacing: 0.03em;
    writing-mode: vertical-rl;
    margin-bottom: var(--spacing-xs);
}

.scroll-line {
    display: block;
    width: 1px;
    height: 80px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--color-primary);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(300%);
    }
}

.hero-news {
    position: absolute;
    bottom: 0;
    left: 160px;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-md) var(--spacing-xl);
}

.hero-news-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-grow: 1;
    color: var(--color-text);
}

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

.hero-news-date {
    font-family: var(--font-heading);
    font-size: var(--font-size-md);
    color: var(--color-primary);
    letter-spacing: 0.03em;
}

.hero-news-title {
    font-size: var(--font-size-base);
}

.hero-news-more {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-heading);
    font-size: var(--font-size-md);
    color: var(--color-text);
    letter-spacing: 0.03em;
}

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

/* Responsive - Hero Section */
@media screen and (max-width: 1199px) {
    .hero-content {
        padding-left: var(--spacing-xl);
    }

    .hero-news {
        left: var(--spacing-xl);
    }
}

@media screen and (max-width: 767px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-content {
        padding: 0 var(--spacing-sm);
    }

    .hero-catchcopy {
        font-size: var(--font-size-3xl);
    }

    .hero-subcopy {
        font-size: var(--font-size-base);
    }

    .hero-pagination {
        right: var(--spacing-md);
    }

    .hero-pagination-dot {
        height: 40px;
    }

    .hero-pagination-dot.active {
        height: 50px;
    }

    .hero-scroll {
        left: var(--spacing-md);
        bottom: 80px;
    }

    .hero-news {
        left: 0;
        padding: var(--spacing-sm);
        flex-wrap: wrap;
    }

    .hero-news-link {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }

    .hero-news-title {
        width: 100%;
        font-size: var(--font-size-sm);
    }
}
/* ==========================================================================
   News Archive Page
   ========================================================================== */

.news-archive-page .page-header {
    background: linear-gradient(135deg, #3c94b9 0%, #2e5f80 100%);
}

.news-archive-section {
    background-color: #fff;
    padding-top: var(--spacing-4xl);
    padding-bottom: var(--spacing-4xl);
}

.news-archive-section .news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-pagination {
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.news-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--spacing-sm);
    font-size: var(--font-size-base);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.news-pagination .page-numbers:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.news-pagination .page-numbers.current {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.news-pagination .prev,
.news-pagination .next {
    font-size: var(--font-size-sm);
}

.no-news {
    text-align: center;
    color: var(--color-text-light);
    padding: var(--spacing-3xl) 0;
    font-size: var(--font-size-lg);
}

/* Responsive - News Archive Page */
@media screen and (max-width: 767px) {
    .news-pagination .nav-links {
        flex-wrap: wrap;
    }

    .news-pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: var(--font-size-sm);
    }
}

/* ==========================================================================
   Common Arrow Style
   ========================================================================== */

.arrow,
.news-more-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent currentColor;
    vertical-align: middle;
}

/* Larger arrow variant */
.strength-view-more .arrow {
    border-width: 6px 0 6px 8px;
}

/* ==========================================================================
   News Preview Section
   ========================================================================== */

.section-news-preview {
    position: relative;
    padding-top: var(--spacing-xs) ;
    padding-bottom: var(--spacing-xs) ;
    background-color: #fff;
}

.section-news-preview .section-header {
    margin-bottom: var(--spacing-xl);
}

.section-news-preview .section-title {
    text-align: left;
}

.section-news-preview .section-title-en {
    color: #4A9FD8;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.section-news-preview .section-title-ja {
    font-size: var(--font-size-base);
    color: #333;
}

.section-news-preview .news-preview-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.section-news-preview .news-preview-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #e5e5e5;
}

.section-news-preview .news-preview-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.section-news-preview .news-preview-item .news-date {
    color: #4A9FD8;
    font-size: var(--font-size-base);
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

.section-news-preview .news-preview-item .news-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
    font-size: var(--font-size-sm);
    white-space: nowrap;
    flex-shrink: 0;
    width: 110px;
    text-align: center;
}

.section-news-preview .news-preview-item .news-title {
    flex: 1;
    font-size: var(--font-size-base);
    font-weight: 400;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section-news-preview .news-preview-item .news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-news-preview .news-preview-item .news-title a:hover {
    color: #4A9FD8;
}

.section-news-preview .no-news {
    text-align: center;
    color: var(--color-text-light);
    padding: var(--spacing-xs) 0;
}

.section-news-preview .news-preview-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
    margin-left: auto;
}

.section-news-preview .news-preview-more-link:hover {
    color: #4A9FD8;
}

.section-news-preview .news-preview-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.section-news-preview .news-preview-empty .no-news {
    padding: 0;
}

/* Responsive - News Preview Section */
@media screen and (max-width: 767px) {
    .section-news-preview .section-title-en {
        font-size: var(--font-size-2xl);
    }

    .section-news-preview .news-preview-item {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .section-news-preview .news-preview-item .news-date {
        width: auto;
    }

    .section-news-preview .news-preview-item .news-category {
        width: auto;
    }

    .section-news-preview .news-preview-item .news-title {
        width: 100%;
        order: 3;
    }

    .section-news-preview .news-preview-more-link {
        order: 4;
    }
}
/* ==========================================================================
   News Section
   ========================================================================== */

.section-news {
    position: relative;
    padding-top: var(--spacing-4xl);
    padding-bottom: var(--spacing-4xl);
    background-color: #fff;
}

.section-news .section-bg-text-left {
    position: absolute;
    top: 50%;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 200px;
    font-weight: 700;
    color: rgba(200, 200, 200, 0.25);
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.section-news .container {
    position: relative;
    z-index: 2;
}

.news-layout {
    display: flex;
    gap: var(--spacing-2xl);
    align-items: stretch;
}

.news-sidebar {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-content {
    flex: 1;
}

.section-news .section-title {
    text-align: left;
}

.section-news .section-title-en {
    color: #4A9FD8;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.section-news .section-title-ja {
    font-size: var(--font-size-base);
    color: #333;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #e5e5e5;
}

.news-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.news-date {
    color: #4A9FD8;
    font-size: var(--font-size-base);
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
    font-size: var(--font-size-sm);
    white-space: nowrap;
    flex-shrink: 0;
    width: 110px;
    text-align: center;
}

.news-title {
    flex: 1;
    font-size: var(--font-size-base);
    font-weight: 400;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #333;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.news-more:hover {
    color: #4A9FD8;
}

/* Arrow style defined in Common Arrow Style section */

.section-news .section-footer {
    text-align: left;
    margin-top: 0;
}

.news-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4A9FD8;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.news-all-link:hover {
    opacity: 0.7;
}

.news-all-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.news-all-icon svg {
    width: 16px;
    height: 16px;
}

/* Responsive - News Section */
@media screen and (max-width: 1199px) {
    .section-news .section-bg-text-left {
        font-size: 140px;
        left: 15px;
    }

    .news-sidebar {
        flex: 0 0 180px;
    }
}

@media screen and (max-width: 767px) {
    .section-news .section-bg-text-left {
        font-size: 100px;
        left: 10px;
    }

    .section-news .section-title-en {
        font-size: var(--font-size-2xl);
    }

    .news-layout {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .news-sidebar {
        flex: 1;
        min-height: auto;
        gap: var(--spacing-md);
    }

    .news-content {
        width: 100%;
    }

    .news-item {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }

    .news-date {
        width: auto;
    }

    .news-category {
        width: auto;
    }

    .news-title {
        width: 100%;
        order: 3;
    }

    .news-more {
        margin-left: auto;
    }
}
/* ==========================================================================
   Strength Section
   ========================================================================== */

.section-strength {
    position: relative;
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    background-color: #f8f8f8;
}

.strength-header {
    position: relative;
    margin-bottom: var(--spacing-2xl);
}

.strength-main-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 2;
}

.strength-bg-text {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 140px;
    font-weight: 700;
    color: rgba(200, 200, 200, 0.25);
    letter-spacing: 0.05em;
    z-index: 1;
    pointer-events: none;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 40px;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.strength-card {
    position: relative;
}

.strength-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 8;
}

.strength-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 2 / 9;
}

.strength-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 3 / 10;
}

.strength-card:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 4 / 11;
}

.strength-card-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.strength-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.strength-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.strength-text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px 20px;
    z-index: 2;
}

.strength-text-line {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

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

.strength-view-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 60px;
    background: linear-gradient(90deg, #4A9FD8 0%, #5BA5C8 100%);
    color: #fff;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.strength-view-more:hover {
    opacity: 0.9;
}

.strength-view-more .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent currentColor;
    vertical-align: middle;
}

/* Responsive - Strength Section */
@media screen and (max-width: 1199px) {
    .strength-bg-text {
        font-size: 100px;
        right: -30px;
    }

    .strength-grid {
        grid-auto-rows: 35px;
    }

    .strength-number {
        font-size: 36px;
        top: 15px;
        left: 15px;
    }
}

@media screen and (max-width: 767px) {
    .strength-main-title {
        font-size: var(--font-size-lg);
    }

    .strength-bg-text {
        font-size: 60px;
        right: -20px;
    }

    .strength-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: var(--spacing-md);
    }

    .strength-card:nth-child(1),
    .strength-card:nth-child(2),
    .strength-card:nth-child(3),
    .strength-card:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .strength-number {
        font-size: 32px;
        top: 12px;
        left: 12px;
    }

    .strength-text-box {
        padding: 12px 16px;
    }

    .strength-text-line {
        font-size: var(--font-size-sm);
    }

    .strength-view-more {
        padding: 16px 40px;
        font-size: var(--font-size-sm);
    }
}
/* ==========================================================================
   Service Section
   ========================================================================== */

.section-service {
    position: relative;
    background-color: #f8f8f8;
    padding-top: var(--spacing-4xl);
    padding-bottom: var(--spacing-4xl);
}

.service-bg-text-left {
    position: absolute;
    top: 50%;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 700;
    color: rgba(200, 200, 200, 0.2);
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.service-bg-text-right {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    color: rgba(200, 200, 200, 0.2);
    letter-spacing: 0.05em;
    z-index: 1;
    pointer-events: none;
}

.section-service .section-title {
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 2;
}

.section-service .section-title-en {
    color: #4A9FD8;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.section-service .section-title-ja {
    font-size: var(--font-size-base);
    color: #333;
    font-weight: 400;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xs);
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--spacing-xl);
}

.service-content {
    color: var(--color-white);
}

.service-name {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-xs);
}

.service-subtitle {
    font-size: var(--font-size-base);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.service-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    align-self: flex-end;
    transition: opacity 0.3s ease;
}

.service-more:hover {
    opacity: 0.8;
}

.service-more .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent currentColor;
    vertical-align: middle;
}

/* Responsive - Service Section */
@media screen and (max-width: 1199px) {
    .service-bg-text-left {
        font-size: 80px;
        left: 10px;
    }

    .service-bg-text-right {
        font-size: 60px;
        bottom: 20px;
        right: 20px;
    }

    .service-grid {
        gap: var(--spacing-lg);
    }
}

@media screen and (max-width: 767px) {
    .service-bg-text-left {
        font-size: 50px;
        left: 5px;
    }

    .service-bg-text-right {
        font-size: 30px;
        bottom: 10px;
        right: 10px;
    }

    .section-service{
        padding-top: var(--spacing-xl)
    }
    
    .section-service .section-title-en {
        font-size: var(--font-size-2xl);
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .service-card {
        aspect-ratio: 16 / 9;
    }

    .service-overlay {
        padding: var(--spacing-md);
    }

    .service-name {
        font-size: var(--font-size-xl);
    }

    .service-subtitle {
        font-size: var(--font-size-sm);
    }
}
/* ==========================================================================
   Recruit Section
   ========================================================================== */

.section-recruit {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.recruit-inner {
    display: flex;
    min-height: 500px;
}

.recruit-content {
    position: relative;
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    padding: var(--spacing-4xl) var(--spacing-3xl);
}

.recruit-content-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.recruit-content-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(52, 107, 135, 0.85);
    z-index: 1;
}

.recruit-content-inner {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 600px;
}

.section-recruit .section-title-en {
    font-size: var(--font-size-5xl);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
}

.section-recruit .section-title-ja {
    font-size: var(--font-size-base);
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
}

.recruit-catchcopy {
    font-size: var(--font-size-xl);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: var(--spacing-2xl);
}

.recruit-heading {
    font-size: var(--font-size-base);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
}

.recruit-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0 var(--spacing-2xl) 0;
}

.recruit-features li {
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 2;
    padding-left: 1.2em;
    position: relative;
}

.recruit-features li::before {
    content: '・';
    position: absolute;
    left: 0;
}

.recruit-view-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.recruit-view-more:hover {
    background-color: #fff;
    color: #346B87;
}

.recruit-view-more .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent currentColor;
    vertical-align: middle;
}

.recruit-image {
    flex: 0 0 45%;
    position: relative;
    margin-left: -100px;
    z-index: 3;
    height: 600px;
    align-self: center;
}

.recruit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive - Recruit Section */
@media screen and (max-width: 1199px) {
    .recruit-content {
        padding: var(--spacing-2xl);
    }

    .recruit-image {
        margin-left: -60px;
        height: 500px;
    }

    .recruit-catchcopy {
        font-size: var(--font-size-lg);
    }
}

@media screen and (max-width: 767px) {
    .recruit-inner {
        flex-direction: column;
        min-height: auto;
    }

    .recruit-content {
        flex: 1;
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .recruit-image {
        display: none;
    }

    .section-recruit .section-title-en {
        font-size: var(--font-size-3xl);
    }

    .recruit-catchcopy {
        font-size: var(--font-size-base);
    }

    .recruit-heading {
        font-size: var(--font-size-sm);
    }

    .recruit-features li {
        font-size: var(--font-size-sm);
    }

    .recruit-view-more {
        padding: 14px 32px;
        font-size: var(--font-size-sm);
    }
}
/* ==========================================================================
   Company Section
   ========================================================================== */

.section-company {
    position: relative;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: var(--spacing-4xl);
    margin-bottom: 150px;
}

.section-company .container {
    position: relative;
    z-index: 1;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xs);
}

.company-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform var(--transition-base);
}

.company-card:hover {
    transform: translateY(-4px);
}

.company-card-inner {
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--spacing-xl);
    position: relative;
}

.company-card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.company-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(52, 107, 135, 0.7);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.company-card:hover .company-card-overlay {
    opacity: 0;
}

.company-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.company-card-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.08em;
}

.company-card-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: var(--font-size-sm);
    font-weight: 600;
    align-self: flex-end;
}

.company-card-more .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent currentColor;
    vertical-align: middle;
}

.company-overview-link {
    margin-top: var(--spacing-xs);
}

.company-overview-card {
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: transform var(--transition-base);
}

.company-overview-card:hover {
    transform: translateY(-4px);
}

.company-overview-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.company-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-overview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(52, 107, 135, 0.7);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.company-overview-card:hover .company-overview-overlay {
    opacity: 0;
}

.company-overview-content {
    position: relative;
    z-index: 3;
    aspect-ratio: 4 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
}

.company-overview-title {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.12em;
}

.company-overview-more {
    position: absolute;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.company-overview-more .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent currentColor;
    vertical-align: middle;
}

/* Responsive - Company Section */
@media screen and (max-width: 1199px) {
    .company-grid {
        gap: var(--spacing-md);
    }

    .company-card-title {
        font-size: var(--font-size-xl);
    }

    .company-overview-title {
        font-size: var(--font-size-2xl);
    }
}

@media screen and (max-width: 767px) {
    .section-company{
        margin-bottom: 50px;
    }
    .company-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .company-overview-link {
        margin-top: var(--spacing-sm);
    }

    .company-card-inner {
        aspect-ratio: 3 / 1;
        justify-content: center;
        align-items: center;
    }

    .company-card-content {
        align-items: center;
        text-align: center;
        justify-content: center;
        gap: var(--spacing-md);
    }

    .company-card-title {
        font-size: var(--font-size-lg);
    }

    .company-card-more {
        align-self: center;
    }

    .company-overview-content {
        aspect-ratio: 3 / 1;
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .company-overview-title {
        font-size: var(--font-size-xl);
    }

    .company-overview-more {
        position: static;
    }
}
/* ==========================================================================
   Footer / Contact Section
   ========================================================================== */

.site-footer {
    position: relative;
}

.section-contact {
    position: relative;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: -120px;
    overflow: visible;
    background: linear-gradient(90deg, #346B87 0%, #5BA5C8 100%);
    z-index: 10;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
    padding: var(--spacing-3xl) var(--spacing-2xl);
    background: transparent;
    text-decoration: none;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.contact-link:hover {
    opacity: 0.9;
}

.contact-content {
    color: #fff;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0 0 var(--spacing-xs) 0;
    color: #fff;
}

.contact-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 400;
    margin: 0;
    color: #fff;
}

.contact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-arrow svg {
    width: 60px;
    height: 60px;
}

/* Responsive - Contact Section */
@media screen and (max-width: 1199px) {
    .section-contact {
        margin-top: -80px;
    }

    .contact-link {
        min-height: 200px;
        padding: var(--spacing-2xl);
    }

    .contact-title {
        font-size: 60px;
    }

    .contact-subtitle {
        font-size: var(--font-size-lg);
    }

    .contact-arrow svg {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 767px) {
    .section-contact {
        margin-top: -60px;
    }

    .contact-link {
        flex-direction: column;
        align-items: flex-start;
        min-height: 180px;
        padding: var(--spacing-xl) var(--spacing-md);
        gap: var(--spacing-lg);
    }

    .contact-title {
        font-size: 40px;
    }

    .contact-subtitle {
        font-size: var(--font-size-base);
    }

    .contact-arrow {
        align-self: flex-end;
    }

    .contact-arrow svg {
        width: 40px;
        height: 40px;
    }
}

.footer-main {
    padding: var(--spacing-3xl) 0;
    background-color: #fff;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-2xl);
}

.footer-company {
    flex: 0 0 auto;
}

.footer-company-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #333;
    margin: 0 0 var(--spacing-md) 0;
}

.footer-address {
    font-size: var(--font-size-sm);
    color: #666;
    line-height: 1.8;
}

.footer-address p {
    margin: 0;
}

.footer-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md) var(--spacing-xl);
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #333;
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #4A9FD8;
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid #e5e5e5;
}

.copyright {
    text-align: right;
    font-size: var(--font-size-xs);
    color: #999;
    margin: 0;
}

/* Responsive - Footer */
@media screen and (max-width: 1199px) {
    .footer-menu {
        gap: var(--spacing-sm) var(--spacing-lg);
    }
}

@media screen and (max-width: 767px) {
    .footer-grid {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

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

    .footer-nav {
        justify-content: center;
        width: 100%;
    }

    .footer-menu {
        flex-direction: column;
        gap: var(--spacing-sm);
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .copyright {
        text-align: center;
        font-size: var(--font-size-xs);
    }
}