/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", "A-OTF Shin Go Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

body.drawer-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .header {
        top: 40PX;
    }
}

@media (max-width: 768px) {
    .header {
       top: 20PX;
    }
}

.header-container {
    width: 95%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo img {
    height: 38px;
    width: auto;
}

@media (max-width: 1024px) {
    .header-logo img {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .header-logo img {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 24px;
    }
}

.header-company-name {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.company-name {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-list li a {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-list li a:hover {
    color: #20b2aa;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-link-dropdown {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: rgba(32, 178, 170, 0.1);
    color: #20b2aa;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0;
    padding: 0;
    width: 25px;
    height: 20px;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
}

.nav-toggle span:nth-child(1) {
    top: 2px;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
    top: calc(100% - 4px);
    transform: translateX(-50%);
}

.nav-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.dropdown-menu li a {
    
}

/* Header Responsive */
@media (max-width: 1024px) {
    .header {
        height: 100px;
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 20px;
        height: 80px;
        border-radius: 20px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: calc(100% - 30px);
        margin: 0 15px;
        background-color: #fff;
        border-radius: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }
    
    .header-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 30px;
        align-items: stretch;
        width: 100%;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav-list li a {
        display: block;
        padding: 15px 40px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 40px;
        padding: 0 10px;
    }
    
    .header-container {
        padding: 0 15px;
        height: 60px;
        border-radius: 20px;
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: calc(100% - 20px);
        margin: 0 10px;
        background-color: #fff;
        border-radius: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }
    
    .header-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav-list li a {
        display: block;
        padding: 15px 40px;
        font-size: 14px;
    }
    
    .nav-item-dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        border-radius: 0;
        min-width: auto;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu li a span {
        position: relative;
    }

    .dropdown-menu li a span::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 100%;
        margin-right: 10px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #20b2aa;
        transform: translateY(-50%);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu li:last-child a {
        padding: 7px 40px 17px 60px;
    }

    .dropdown-menu li:first-child a {
        padding: 0 40px 7px 60px;
    }
    
    .dropdown-menu li a {
        padding: 7px 40px 7px 60px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 24px;
    }
    
    .company-name {
        font-size: 14px;
    }
    

    
    .nav-list li a {
        font-size: 11px;
    }
}

/* ===============================================
# ページネーション
=============================================== */

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .pagination {
        margin-top: 40px;
    }
}

.pagination .page-link,
.pagination .current-page {
    display: flex;
    justify-content: center;
    min-width: 35px;
    aspect-ratio: 1/1;
    padding: 0 4px;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

@media (max-width: 767px) {
    .pagination .page-link,
    .pagination .current-page {
        min-width: 24px;
        font-size: 15px;
    }
}

.pagination .page-link {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.pagination .page-link:hover {
    background-color: #20b2aa;
    color: #fff;
    border-color: #20b2aa;
    transform: translateY(-1px);
}

.pagination .current-page {
    background-color: #20b2aa;
    color: #fff;
    border: 1px solid #20b2aa;
}

.pagination .dots {
    font-size: 17px;
    padding: 0 2px;
    color: #999;
}

@media (max-width: 767px) {
    .pagination .dots {
        font-size: 15px;
    }
}

/* ===============================================
# CTA Section（全ページ共通）
=============================================== */
.cta {
    padding: 160px 0;
    background-color: #fff;
}

.cta-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cta-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.cta-card-left {
    border-left-color: #20b2aa;
}

.cta-card-right {
    border-right-color: #20b2aa;
}

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

.cta-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.cta-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px 20px 15px;
}

.cta-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .cta {
        padding: 120px 0;
    }
    
    .cta-container {
        padding: 0 30px;
    }
    
    .cta-grid {
        gap: 30px;
    }
    
    .cta-card-image {
        height: 180px;
    }
    
    .cta-card-overlay {
        padding: 18px 18px 12px;
    }
    
    .cta-card-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 100px 0;
    }
    
    .cta-container {
        padding: 0 20px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-card-left {
        border-left-color: transparent;
        border-top-color: #20b2aa;
        border-top: 4px solid #20b2aa;
    }
    
    .cta-card-right {
        border-right-color: transparent;
        border-top-color: #20b2aa;
        border-top: 4px solid #20b2aa;
    }
    
    .cta-card-image {
        height: 160px;
    }
    
    .cta-card-overlay {
        padding: 15px 15px 12px;
    }
    
    .cta-card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 80px 0;
    }
    
    .cta-container {
        padding: 0 15px;
    }
    
    .cta-grid {
        gap: 25px;
    }
    
    .cta-card-image {
        height: 140px;
    }
    
    .cta-card-overlay {
        padding: 12px 12px 10px;
    }
    
    .cta-card-title {
        font-size: 16px;
    }
}

/* ========== top ========== */
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 10s ease-out;
}

/* First slide: left to right */
.hero-slide:nth-child(1).active .hero-image-img {
    transform: scale(1);
    animation: slideLeftToRight 10s ease-out;
}

/* Second slide: right to left */
.hero-slide:nth-child(2).active .hero-image-img {
    transform: scale(1);
    animation: slideRightToLeft 10s ease-out;
}

/* Third slide: left to right */
.hero-slide:nth-child(3).active .hero-image-img {
    transform: scale(1);
    animation: slideLeftToRight 10s ease-out;
}

/* Fourth slide: right to left */
.hero-slide:nth-child(4).active .hero-image-img {
    transform: scale(1);
    animation: slideRightToLeft 10s ease-out;
}

/* Fifth slide: left to right */
.hero-slide:nth-child(5).active .hero-image-img {
    transform: scale(1);
    animation: slideLeftToRight 10s ease-out;
}

/* Keyframes for zoom animation */
@keyframes slideLeftToRight {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* Keyframes for zoom animation */
@keyframes slideRightToLeft {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

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

.hero-dot.active {
    background-color: #fff;
}

@media (max-width: 768px) {
    .hero-dots {
        bottom: 30px;
        gap: 10px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
}

.hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 300px;
}

.hero-title {
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 50px;
    letter-spacing: 0.03em;
    text-align: left;
    font-family: "A-OTF Shin Go Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
}

.hero-description {
    max-width: 900px;
}

.hero-text {
    font-size: 20px;
    color: #fff;
    line-height: 2.0;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 30px;
        padding-top: 160px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-text {
        font-size: 15px;
        color: #fff;
        line-height: 2.0;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-container {
        padding: 0 20px;
        padding-top: 140px;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .hero-text {
        font-size: 14px;
        margin-bottom: 15px;
        color: #fff;
        line-height: 2.0;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-container {
        padding: 0 15px;
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .hero-text {
        font-size: 13px;
        color: #fff;
        line-height: 2.0;
    }
}

/* News Section */
.news {
    padding: 160px 0;
    background-color: #fff;
}

.news-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 140px;
    align-items: flex-start;
}

.news-header {
    flex-shrink: 0;
    width: 200px;
}

.news-title {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.news-title-line {
    width: 60px;
    height: 2px;
    background-color: #20b2aa;
}

.news-content {
    flex: 1;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 25px 0;
}

.news-date {
    font-size: 14px;
    color: #000;
    transition: color 0.2s;
    font-weight: 500;
    white-space: nowrap;
    min-width: 90px;
}

.news-category {
    font-size: 12px;
    color: #20b2aa;
    border: 1px solid #20b2aa;
    background-color: #f0ffff;
    padding: 4px 12px;
    border-radius: 2px;
    white-space: nowrap;
    font-weight: 500;
}

.news-item-title {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: 1.6;
    flex: 1;
    transition: color 0.2s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-item-link:hover .news-date,
.news-item-link:hover .news-item-title {
    color: #20b2aa;
}

.news-divider {
    border-top: 1px dotted #d3d3d3;
    margin: 0;
}

.news-column-link {
    margin-top: 20px;
    text-align: right;
}

.column-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20b2aa;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.column-link:hover {
    opacity: 0.7;
}

.column-link-arrow {
    font-size: 16px;
}

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

/* News Section Responsive */
@media (max-width: 1024px) {
    .news-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .news-header {
        width: 100%;
    }
    
    .news-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .news {
        padding: 80px 0;
    }
    
    .news-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .news-content {
        width: 100%;
    }
    
    .news-item {
        flex-wrap: wrap;
        gap: 15px;
        padding: 18px 0;
    }
    
    .news-date {
        min-width: auto;
    }
    
    .news-item-title {
        width: 100%;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

@media (max-width: 480px) {
    .news {
        padding: 80px 0;
    }
    
    .news-container {
        padding: 0 15px;
        gap: 40px;
    }
    
    .news-title {
        font-size: 28px;
    }
    
    .news-item {
        padding: 12px 0;
    }
    
    .news-date,
    .news-item-title {
        font-size: 13px;
    }
    
    .news-category {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* About Section */
.about {
    padding: 160px 0;
    background-color: #20b2aa;
}

.about-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.about-main-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.about-top-section {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 200px;
}

.about-image-wrapper {
    flex: 1;
    max-width: 50%;
}

.about-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text-content {
    flex: 1;
    max-width: 50%;
}

.about-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

.about-description {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 2;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.about-link:hover {
    opacity: 0.7;
}

.about-middle-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 100px;
}

.about-middle-title {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.about-middle-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 2;
    letter-spacing: 0.01em;
}

.about-bottom-section {
    display: flex;
    gap: 40px;
}

.about-card {
    flex: 1;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.about-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 25px 20px 20px;
}

.about-card-title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about {
        padding: 120px 0;
    }
    
    .about-container {
        padding: 0 30px;
    }
    
    .about-main-title {
        font-size: 40px;
        margin-bottom: 60px;
    }
    
    .about-top-section {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .about-text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .about-bottom-section {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 100px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .about-text-content {
        text-align: center;
    }
    
    .about-main-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .about-middle-title {
        font-size: 28px;
    }
    
    .about-middle-text {
        font-size: 15px;
    }
    
    .about-card-image {
        height: 220px;
    }
    
    .about-card-overlay {
        padding: 20px 15px 15px;
    }
    
    .about-card-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .about-text-content {
        text-align: center;
    }
    
    .about-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .about-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .about-link {
        font-size: 14px;
    }
    
    .about-middle-section {
        margin-bottom: 60px;
    }
    
    .about-middle-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .about-middle-text {
        font-size: 14px;
    }
    
    .about-card-image {
        height: 180px;
    }
    
    .about-card-overlay {
        padding: 18px 15px 15px;
    }
    
    .about-card-title {
        font-size: 20px;
    }
}

/* Service Section */
.service {
    padding: 160px 0;
    background-color: #fff;
}

.service-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.service-main-title {
    font-size: 40px;
    font-weight: 500;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

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

.service-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.service-card-content {
    padding: 30px;
}

.service-card-title {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.service-card-description {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20b2aa;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.service-card-link:hover {
    opacity: 0.7;
}

/* Service Section Responsive */
@media (max-width: 1024px) {
    .service {
        padding: 120px 0;
    }
    
    .service-container {
        padding: 0 30px;
    }
    
    .service-main-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .service-grid {
        gap: 30px;
    }
    
    .service-card-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .service {
        padding: 100px 0;
    }
    
    .service-container {
        padding: 0 20px;
    }
    
    .service-main-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card-image {
        height: 220px;
    }
    
    .service-card-content {
        padding: 25px;
    }
    
    .service-card-title {
        font-size: 22px;
    }
    
    .service-card-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .service {
        padding: 80px 0;
    }
    
    .service-container {
        padding: 0 15px;
    }
    
    .service-main-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .service-grid {
        gap: 25px;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-title {
        font-size: 20px;
    }
    
    .service-card-description {
        font-size: 14px;
    }
    
    .service-card-link {
        font-size: 14px;
    }
}

/* Work Section */
.work {
    padding: 160px 0;
    background-color: #20b2aa;
}

.work-container {
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.work-main-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.work-view-all {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 60px;
    transition: opacity 0.3s ease;
}

.work-view-all:hover {
    opacity: 0.7;
}

.work-slider-wrapper {
    overflow: hidden;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
}

.work-slider {
    overflow: hidden;
    width: 100%;
}

.work-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    transform: translateX(0);
    align-items: stretch;
    width: 100%;
}

.work-card {
    flex: 0 0 calc((100% - 90px) / 4);
    min-width: calc((100% - 90px) / 4);
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.work-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.work-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.work-card-category {
    display: inline-block;
    background-color: rgba(0, 191, 147, 0.15);
    color: #20b2aa;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.01em;
    width: fit-content;
}

.work-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.work-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20b2aa;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
    pointer-events: none;
    margin-top: auto;
}

.work-card-link:hover {
    opacity: 0.7;
}

.work-none {
    text-align: center;
    font-size: 16px;
    color: #666;
}

.work-view-all-bottom {
    text-align: center;
}

.work-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20b2aa;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.work-view-all-link:hover {
    opacity: 0.7;
}

/* Work Carousel Navigation */
.work-carousel-prev,
.work-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 0;
    box-sizing: border-box;
}

.work-carousel-prev::before,
.work-carousel-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid #20b2aa;
    border-bottom: none;
    border-left: none;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: border-color 0.3s ease;
}

.work-carousel-prev::before {
    border-top: 2px solid #20b2aa;
    border-right: none;
    border-bottom: none;
    border-left: 2px solid #20b2aa;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.work-carousel-next::before {
    border-top: 2px solid #20b2aa;
    border-right: 2px solid #20b2aa;
    border-bottom: none;
    border-left: none;
    transform: translate(-50%, -50%) rotate(45deg);
}

.work-carousel-prev {
    left: 10px;
}

.work-carousel-next {
    right: 10px;
}

.work-carousel-prev:hover,
.work-carousel-next:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.work-carousel-prev:hover::before,
.work-carousel-next:hover::before {
    border-color: #1a9a92;
}

.work-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.work-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.work-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.work-dot.active {
    background-color: #fff;
}

/* Work Section Responsive */
@media (max-width: 1024px) {
    .work {
        padding: 120px 0;
    }
    
    .work-container {
        padding: 0;
    }
    
    .work-main-title {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .work-view-all {
        margin-bottom: 50px;
    }
    
    .work-slider-wrapper {
        padding: 0 50px;
    }
    
    .work-slider-track {
        gap: 20px;
    }
    
    .work-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .work-card-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .work {
        padding: 100px 0;
    }
    
    .work-container {
        padding: 0;
    }
    
    .work-main-title {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .work-view-all {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .work-slider-wrapper {
        padding: 0 40px;
    }
    
    .work-slider-track {
        gap: 20px;
    }
    
    .work-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .work-card-image {
        height: 220px;
    }
    
    .work-card-content {
        padding: 20px;
    }
    
    .work-card-title {
        font-size: 18px;
    }
    
    .work-carousel-prev,
    .work-carousel-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .work-carousel-prev {
        left: 5px;
    }
    
    .work-carousel-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .work {
        padding: 80px 0;
    }
    
    .work-container {
        padding: 0;
    }
    
    .work-main-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .work-view-all {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .work-slider-wrapper {
        padding: 0 30px;
    }
    
    .work-slider-track {
        gap: 0;
        width: 100%;
        margin-left: 0;
    }
    
    .work-carousel-prev,
    .work-carousel-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .work-carousel-prev {
        left: 0;
    }
    
    .work-carousel-next {
        right: 0;
    }
    
    .work-carousel-dots {
        margin-top: 20px;
        gap: 10px;
    }
    
    .work-dot {
        width: 10px;
        height: 10px;
    }
    
    .work-card {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
    }
    
    .work-card-image {
        height: 200px;
    }
    
    .work-card-content {
        padding: 18px;
    }
    
    .work-card-category {
        font-size: 13px;
        padding: 5px 14px;
    }
    
    .work-card-title {
        font-size: 16px;
    }
    
    .work-card-link,
    .work-view-all-link {
        font-size: 14px;
    }
}

/* Column Section */
.column {
    padding: 160px 0;
    background-color: #fff;
}

.column-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.column-none {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #666;
}

.column-main-title {
    font-size: 48px;
    font-weight: 500;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

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

.column-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
}


.column-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.column-card-content {
    padding: 30px;
}

.column-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.column-card-date {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.01em;
}

.column-card-tag {
    display: inline-block;
    background-color: rgba(0, 191, 147, 0.15);
    color: #20b2aa;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.01em;
}

.column-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.column-card-description {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.column-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20b2aa;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.column-card-link:hover {
    opacity: 0.7;
}

/* Column Section Responsive */
@media (max-width: 1024px) {
    .column {
        padding: 120px 0;
    }
    
    .column-container {
        padding: 0 30px;
    }
    
    .column-main-title {
        font-size: 40px;
        margin-bottom: 60px;
    }
    
    .column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .column {
        padding: 100px 0;
    }
    
    .column-container {
        padding: 0 20px;
    }
    
    .column-main-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .column-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .column-card-image {
        height: 220px;
    }
    
    .column-card-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .column {
        padding: 80px 0;
    }
    
    .column-container {
        padding: 0 15px;
    }
    
    .column-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .column-grid {
        gap: 25px;
    }
    
    .column-card-image {
        height: 200px;
    }
    
    .column-card-content {
        padding: 20px;
    }
    
    .column-card-title {
        font-size: 18px;
    }
    
    .column-card-description {
        font-size: 13px;
    }
}

/* Video Section */
.video {
    padding: 60px 0;
    background-color: #fff;
}

.video-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.video-main-title {
    font-size: 48px;
    font-weight: 500;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.video-item {
   display: block;
   width: 100%;
   height: 100%;
   transition: opacity 0.3s ease;
}

.video-item:hover {
    opacity: 0.7;
}

.video-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.video-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-view-all {
    text-align: center;
}

.video-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20b2aa;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.video-view-all-link:hover {
    opacity: 0.7;
}

/* Video Section Responsive */
@media (max-width: 1024px) {
    .video {
        padding: 60px 0;
    }
    
    .video-container {
        padding: 0 30px;
    }
    
    .video-main-title {
        font-size: 40px;
        margin-bottom: 60px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .video {
        padding: 60px 0;
    }
    
    .video-container {
        padding: 0 20px;
    }
    
    .video-main-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .video {
        padding: 40px 0;
    }
    
    .video-container {
        padding: 0 15px;
    }
    
    .video-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 40px;
}

.footer-copyright-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-copyright-text {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-company {
        grid-column: 1;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-contact-item {
        font-size: 12px;
    }
    
    .footer-section-title {
        font-size: 15px;
    }
    
    .footer-list li a {
        font-size: 12px;
    }
    
    .footer-copyright-text {
        font-size: 11px;
    }
}

/* Service Top Section */
.service-top {
    padding: 134px 0 0;
    background-color: #fff;
    min-height: calc(100vh - 134px);
    position: relative;
}

.service-top-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    min-height: calc(100vh - 134px);
    position: relative;
    z-index: 2;
}

.service-top-content {
    max-width: 50%;
    padding-top: 100px;
}

.service-top-title {
    font-size: 40px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.service-top-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.1em;
}

.service-top-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 85%;
    overflow: hidden;
    z-index: 1;
    margin-right: 0;
}

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

/* Service Top Section Responsive */
@media (max-width: 1024px) {
    .service-top-container {
        padding: 0 30px;
    }
    
    .service-top-content {
        max-width: 60%;
        padding-top: 140px;
    }
    
    .service-top-title {
        font-size: 32px;
    }
    
    .service-top-image {
        width: 65%;
        height: 80%;
    }
}

@media (max-width: 768px) {
    .service-top {
        padding: 100px 0 0;
        min-height: 0;
    }
    
    .service-top-container {
        padding: 0 20px;
        min-height: 0;
    }
    
    .service-top-content {
        max-width: 100%;
        padding-top: 40px;
    }
    
    .service-top-title {
        font-size: 32px;
    }
    
    .service-top-subtitle {
        font-size: 16px;
    }
    
    .service-top-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .service-top {
        padding: 100px 0 0;
    }
    
    .service-top-container {
        padding: 0 15px;
    }
    
    .service-top-content {
        padding-top: 30px;
    }
    
    .service-top-title {
        font-size: 24px;
    }
    
    .service-top-subtitle {
        font-size: 14px;
    }
    
    .service-top-image {
        height: 250px;
    }
}

/* Business Concept Section */
.business-concept {
    padding: 160px 0;
    background-color: #fff;
}

.business-concept-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.business-concept-title {
    font-size: 64px;
    font-weight: 500;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.business-concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.business-concept-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
}


.business-concept-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.business-concept-content {
    padding: 30px;
}

.business-concept-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.business-concept-description {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.business-concept-link-wrapper {
    text-align: center;
}

.business-concept-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20b2aa;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.business-concept-link:hover {
    opacity: 0.7;
}

/* Business Concept Section Responsive */
@media (max-width: 1024px) {
    .business-concept {
        padding: 120px 0;
    }
    
    .business-concept-container {
        padding: 0 30px;
    }
    
    .business-concept-title {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .business-concept-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .business-concept {
        padding: 100px 0;
    }
    
    .business-concept-container {
        padding: 0 20px;
    }
    
    .business-concept-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .business-concept-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .business-concept-image {
        height: 220px;
    }
    
    .business-concept-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .business-concept {
        padding: 80px 0;
    }
    
    .business-concept-container {
        padding: 0 15px;
    }
    
    .business-concept-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .business-concept-grid {
        gap: 25px;
    }
    
    .business-concept-image {
        height: 200px;
    }
    
    .business-concept-content {
        padding: 20px;
    }
    
    .business-concept-card-title {
        font-size: 18px;
    }
    
    .business-concept-description {
        font-size: 13px;
    }
}

/* Service Details Section */
.service-details {
    padding: 160px 0;
    background-color: rgba(0, 191, 147, 0.08);
}

.service-details-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.service-details-title {
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.service-details-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-details-item-left {
    flex-direction: row;
}



.service-details-image {
    flex: 1;
    max-width: 50%;
    height: 400px;
    overflow: hidden;
}

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

.service-details-content {
    flex: 1;
    max-width: 50%;
}

.service-details-heading {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.service-details-description {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 2;
    letter-spacing: 0.01em;
}

/* Service Details Section Responsive */
@media (max-width: 1024px) {
    .service-details {
        padding: 120px 0;
    }
    
    .service-details-container {
        padding: 0 30px;
    }
    
    .service-details-title {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .service-details-item {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .service-details-item-right {
        flex-direction: column;
    }
    
    .service-details-image {
        max-width: 100%;
        height: 350px;
    }
    
    .service-details-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .service-details {
        padding: 100px 0;
    }
    
    .service-details-container {
        padding: 0 20px;
    }
    
    .service-details-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .service-details-item {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .service-details-image {
        height: 300px;
    }
    
    .service-details-heading {
        font-size: 24px;
    }
    
    .service-details-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .service-details {
        padding: 80px 0;
    }
    
    .service-details-container {
        padding: 0 15px;
    }
    
    .service-details-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .service-details-item {
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .service-details-image {
        height: 250px;
    }
    
    .service-details-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .service-details-description {
        font-size: 14px;
    }
}
/* ========== service ========== */
/* Service Top Section */
.service-top {
    padding: 134px 0 0;
    background-color: #fff;
    min-height: calc(100vh - 134px);
    position: relative;
}

.service-top-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    min-height: calc(100vh - 134px);
    position: relative;
    z-index: 2;
}

.service-top-content {
    max-width: 50%;
    padding-top: 100px;
}

.service-top-title {
    font-size: 40px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.service-top-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.1em;
}

.service-top-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 85%;
    overflow: hidden;
    z-index: 1;
    margin-right: 0;
}

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

/* Service Top Section Responsive */
@media (max-width: 1024px) {
    .service-top-container {
        padding: 0 30px;
        min-height: 0;
    }
    
    .service-top-content {
        max-width: 60%;
        padding-top: 140px;
    }
    
    .service-top-title {
        font-size: 32px;
    }
    
    .service-top-image {
        width: 65%;
        height: 80%;
    }
}

@media (max-width: 768px) {
    .service-top {
        padding: 100px 0 0;
        min-height: 0;
    }
    
    .service-top-container {
        padding: 0 20px;
        min-height: 0;
    }
    
    .service-top-content {
        max-width: 100%;
        padding-top: 40px;
    }
    
    .service-top-title {
        font-size: 28px;
    }
    
    .service-top-subtitle {
        font-size: 14px;
    }
    
    .service-top-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .service-top {
        padding: 100px 0 0;
    }
    
    .service-top-container {
        padding: 0 15px;
        min-height: 0;
    }
    
    .service-top-content {
        padding-top: 30px;
    }
    
    .service-top-title {
        font-size: 24px;
    }
    
    .service-top-subtitle {
        font-size: 13px;
    }
    
    .service-top-image {
        height: 250px;
    }
}

/* Business Concept Section */
.business-concept {
    padding: 160px 0;
    background-color: #fff;
}

.business-concept-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.business-concept-title {
    font-size: 48px;
    font-weight: 500;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.business-concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.business-concept-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
}

.business-concept-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.business-concept-content {
    padding: 30px;
}

.business-concept-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.business-concept-description {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.business-concept-link-wrapper {
    text-align: center;
}

.business-concept-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20b2aa;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.business-concept-link:hover {
    opacity: 0.7;
}

/* Business Concept Section Responsive */
@media (max-width: 1024px) {
    .business-concept {
        padding: 120px 0;
    }
    
    .business-concept-container {
        padding: 0 30px;
    }
    
    .business-concept-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .business-concept-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .business-concept {
        padding: 100px 0;
    }
    
    .business-concept-container {
        padding: 0 20px;
    }
    
    .business-concept-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .business-concept-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .business-concept-image {
        height: 220px;
    }
    
    .business-concept-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .business-concept {
        padding: 80px 0;
    }
    
    .business-concept-container {
        padding: 0 15px;
    }
    
    .business-concept-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .business-concept-grid {
        gap: 25px;
    }
    
    .business-concept-image {
        height: 200px;
    }
    
    .business-concept-content {
        padding: 20px;
    }
    
    .business-concept-card-title {
        font-size: 18px;
    }
    
    .business-concept-description {
        font-size: 13px;
    }
}

/* Service Details Section */
.service-details {
    padding: 160px 0;
    background-color: #20b2aa;
}

.service-details-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.service-details-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.service-details-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-details-item-left {
    flex-direction: row;
}

.service-details-image {
    flex: 1;
    max-width: 50%;
    height: 400px;
    overflow: hidden;
}

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

.service-details-content {
    flex: 1;
    max-width: 50%;
}

.service-details-heading {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.service-details-description {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 2;
    letter-spacing: 0.01em;
}

/* Service Details Section Responsive */
@media (max-width: 1024px) {
    .service-details {
        padding: 120px 0;
    }
    
    .service-details-container {
        padding: 0 30px;
    }
    
    .service-details-title {
        font-size: 40px;
        margin-bottom: 60px;
    }
    
    .service-details-item {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .service-details-item-right {
        flex-direction: column;
    }
    
    .service-details-image {
        max-width: 100%;
        height: 350px;
    }
    
    .service-details-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .service-details {
        padding: 100px 0;
    }
    
    .service-details-container {
        padding: 0 20px;
    }
    
    .service-details-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .service-details-item {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .service-details-image {
        height: 300px;
    }
    
    .service-details-heading {
        font-size: 24px;
    }
    
    .service-details-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .service-details {
        padding: 80px 0;
    }
    
    .service-details-container {
        padding: 0 15px;
    }
    
    .service-details-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .service-details-item {
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .service-details-image {
        height: 250px;
    }
    
    .service-details-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .service-details-description {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 40px;
}

.footer-copyright-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-copyright-text {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-company {
        grid-column: 1;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-contact-item {
        font-size: 12px;
    }
    
    .footer-section-title {
        font-size: 15px;
    }
    
    .footer-list li a {
        font-size: 12px;
    }
    
    .footer-copyright-text {
        font-size: 11px;
    }
}

/* ========== company ========== */
/* Company Top Section */
.company-top {
    padding: 134px 0 0;
    background-color: #fff;
    min-height: calc(100vh - 134px);
    position: relative;
}

.company-top-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.company-top-content {
    max-width: 50%;
    padding-top: 100px;
}

.company-top-title {
    font-size: 40px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.company-top-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.1em;
}

.company-top-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 85%;
    overflow: hidden;
    z-index: 1;
    margin-right: 0;
}

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

/* Company Top Section Responsive */
@media (max-width: 1024px) {
    .company-top-container {
        padding: 0 30px;
        min-height: 0;
    }
    
    .company-top-content {
        max-width: 60%;
        padding-top: 140px;
    }
    
    .company-top-title {
        font-size: 32px;
    }
    
    .company-top-image {
        width: 65%;
        height: 80%;
    }
}

@media (max-width: 768px) {
    .company-top {
        padding: 100px 0 0;
        min-height: 0;
    }
    
    .company-top-container {
        padding: 0 20px;
        min-height: 0;
    }
    
    .company-top-content {
        max-width: 100%;
        padding-top: 40px;
    }
    
    .company-top-title {
        font-size: 32px;
    }
    
    .company-top-subtitle {
        font-size: 16px;
    }
    
    .company-top-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .company-top {
        padding: 100px 0 0;
    }
    
    .company-top-container {
        padding: 0 15px;
        min-height: 0;
    }
    
    .company-top-content {
        padding-top: 30px;
    }
    
    .company-top-title {
        font-size: 24px;
    }
    
    .company-top-subtitle {
        font-size: 14px;
    }
    
    .company-top-image {
        height: 250px;
    }
}

/* Company Profile Section */
.company-profile {
    padding: 80px 0 160px 0;
    background-color: #fff;
}

.company-profile-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.company-profile-title {
    font-size: 48px;
    font-weight: 500;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.company-profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.company-profile-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.company-profile-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-profile-label {
    font-size: 16px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.02em;
    margin-bottom: 5px;
}

.company-profile-value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.company-profile-technicians {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-profile-technicians li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 20px;
}

.company-profile-technicians li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #20b2aa;
    font-weight: 400;
}

/* Company Profile Section Responsive */
@media (max-width: 1024px) {
    .company-profile {
        padding: 120px 0;
    }
    
    .company-profile-container {
        padding: 0 30px;
    }
    
    .company-profile-title {
        font-size: 40px;
        margin-bottom: 60px;
    }
    
    .company-profile-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .company-profile {
        padding: 100px 0;
    }
    
    .company-profile-container {
        padding: 0 20px;
    }
    
    .company-profile-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .company-profile-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-profile-column {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .company-profile {
        padding: 80px 0;
    }
    
    .company-profile-container {
        padding: 0 15px;
    }
    
    .company-profile-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .company-profile-content {
        gap: 35px;
    }
    
    .company-profile-column {
        gap: 20px;
    }
    
    .company-profile-label {
        font-size: 15px;
    }
    
    .company-profile-value {
        font-size: 15px;
    }
    
    .company-profile-technicians li {
        font-size: 15px;
    }
}

/* Mission Section */
.company-mission {
    padding: 160px 0;
    background-color: #20b2aa;
}

.company-mission-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.company-mission-content {
    flex: 1;
    max-width: 50%;
}

.company-mission-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.company-mission-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.company-mission-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 2;
    letter-spacing: 0.01em;
}

.company-mission-text p {
    margin: 0;
}

.company-mission-image {
    flex: 1;
    max-width: 50%;
    height: 500px;
    overflow: hidden;
}

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

/* Mission Section Responsive */
@media (max-width: 1024px) {
    .company-mission {
        padding: 120px 0;
    }
    
    .company-mission-container {
        padding: 0 30px;
        gap: 50px;
    }
    
    .company-mission-title {
        font-size: 40px;
        margin-bottom: 25px;
    }
    
    .company-mission-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .company-mission-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .company-mission {
        padding: 100px 0;
    }
    
    .company-mission-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }
    
    .company-mission-content {
        max-width: 100%;
    }
    
    .company-mission-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .company-mission-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .company-mission-text {
        font-size: 15px;
    }
    
    .company-mission-image {
        max-width: 100%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .company-mission {
        padding: 80px 0;
    }
    
    .company-mission-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .company-mission-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .company-mission-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .company-mission-text {
        font-size: 14px;
    }
    
    .company-mission-image {
        height: 300px;
    }
}

/* History Section */
.company-history {
    padding: 160px 0;
    background-color: #fff;
}

.company-history-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.company-history-image {
    flex: 1;
    max-width: 50%;
    height: 100%;
    overflow: hidden;
}

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

.company-history-content {
    flex: 1;
    max-width: 50%;
}

.company-history-title {
    font-size: 48px;
    font-weight: 500;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.company-history-timeline {
    position: relative;
    padding-left: 50px;
}

.company-history-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #20b2aa;
}

.company-history-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.company-history-marker {
    position: absolute;
    left: -42px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #20b2aa;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #20b2aa;
    flex-shrink: 0;
    z-index: 1;
}

.company-history-text {
    flex: 1;
}

.company-history-year {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.company-history-description {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* History Section Responsive */
@media (max-width: 1024px) {
    .company-history {
        padding: 120px 0;
    }
    
    .company-history-container {
        padding: 0 30px;
        gap: 50px;
    }
    
    .company-history-image {
        height: 550px;
    }
    
    .company-history-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .company-history {
        padding: 100px 0;
    }
    
    .company-history-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }
    
    .company-history-image {
        max-width: 100%;
        height: 100%;
    }
    
    .company-history-content {
        max-width: 100%;
    }
    
    .company-history-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .company-history-item {
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .company-history {
        padding: 80px 0;
    }
    
    .company-history-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .company-history-image {
        height: 100%;
    }
    
    .company-history-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .company-history-timeline {
        padding-left: 40px;
    }
    
    .company-history-marker {
        left: -32px;
        width: 14px;
        height: 14px;
    }
    
    .company-history-item {
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .company-history-year {
        font-size: 15px;
    }
    
    .company-history-description {
        font-size: 15px;
    }
}

/* Contact Section */
.company-contact {
    padding: 160px 0;
    background-color: #20b2aa;
}

.company-contact-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.company-contact-info {
    flex: 1;
    max-width: 50%;
}

.company-contact-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.company-contact-logo img {
    height: 40px;
    width: auto;
}

.company-contact-banner {
    background-color: #20b2aa;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: left;
}

.company-contact-banner span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.company-contact-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.company-contact-features li {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 30px;
}

.company-contact-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
}

.company-contact-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 4px;
}

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

.company-contact-message {
    margin-top: 30px;
}

.company-contact-main-message {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.company-contact-sub-message {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.company-contact-form-wrapper {
    flex: 1;
    max-width: 50%;
    padding: 0 0 50px 0;
}

.company-contact-form-header {
    margin-bottom: 40px;
}

.company-contact-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.company-contact-form-title {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
}

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

.company-contact-form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.company-contact-required {
    display: inline-block;
    background-color: #fff;
    color: #20b2aa;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: 500;
}

.company-contact-optional {
    display: inline-block;
    background-color: #ccc;
    color: #666;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: 500;
}

.company-contact-form-input,
.company-contact-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    font-family: "A-OTF Shin Go Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

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

.company-contact-form-input:focus,
.company-contact-form-textarea:focus {
    outline: none;
    border-color: #20b2aa;
}

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

.company-contact-checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.company-contact-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.company-contact-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #20b2aa;
}

.company-contact-submit {
    width: 100%;
    padding: 16px;
    background-color: #20b2aa;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: 20px;
}

.company-contact-submit:hover {
    opacity: 0.8;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .company-contact {
        padding: 120px 0;
    }
    
    .company-contact-container {
        padding: 0 30px;
        gap: 50px;
    }
    
    .company-contact-form-wrapper {
        padding: 0 0 40px 0;
    }
}

@media (max-width: 768px) {
    .company-contact {
        padding: 100px 0;
    }
    
    .company-contact-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }
    
    .company-contact-info {
        max-width: 100%;
    }
    
    .company-contact-form-wrapper {
        max-width: 100%;
        padding: 0 0 30px 0;
    }
    
    .company-contact-form-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .company-contact {
        padding: 80px 0;
    }
    
    .company-contact-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .company-contact-form-wrapper {
        padding: 0 0 25px 0;
    }
    
    .company-contact-form-title {
        font-size: 24px;
    }
    
    .company-contact-form-group {
        margin-bottom: 25px;
    }
    
    .company-contact-submit {
        padding: 14px;
        font-size: 16px;
    }
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 40px;
}

.footer-copyright-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-copyright-text {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-company {
        grid-column: 1;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-contact-item {
        font-size: 12px;
    }
    
    .footer-section-title {
        font-size: 15px;
    }
    
    .footer-list li a {
        font-size: 12px;
    }
    
    .footer-copyright-text {
        font-size: 11px;
    }
}

/* ========== contact ========== */
/* Contact Top Section */
.contact-top {
    padding: 134px 0 0;
    background-color: #fff;
    min-height: calc(100vh - 134px);
    position: relative;
}

.contact-top-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    min-height: calc(100vh - 134px);
    position: relative;
    z-index: 2;
}

.contact-top-content {
    max-width: 50%;
    padding-top: 100px;
}

.contact-top-title {
    font-size: 40px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.contact-top-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.1em;
}

.contact-top-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 85%;
    overflow: hidden;
    z-index: 1;
    margin-right: 0;
}

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

/* Contact Top Section Responsive */
@media (max-width: 1024px) {
    .contact-top-container {
        padding: 0 30px;
        min-height: 0;
    }
    
    .contact-top-content {
        max-width: 60%;
        padding-top: 140px;
    }
    
    .contact-top-title {
        font-size: 32px;
    }
    
    .contact-top-image {
        width: 65%;
        height: 80%;
    }
}

@media (max-width: 768px) {
    .contact-top {
        padding: 100px 0 0;
        min-height: 0;
    }
    
    .contact-top-container {
        padding: 0 20px;
        min-height: 0;
    }
    
    .contact-top-content {
        max-width: 100%;
        padding-top: 40px;
    }
    
    .contact-top-title {
        font-size: 32px;
    }
    
    .contact-top-subtitle {
        font-size: 16px;
    }
    
    .contact-top-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .contact-top {
        padding: 100px 0 0;
    }
    
    .contact-top-container {
        padding: 0 15px;
        min-height: 0;
    }
    
    .contact-top-content {
        padding-top: 30px;
    }
    
    .contact-top-title {
        font-size: 24px;
    }
    
    .contact-top-subtitle {
        font-size: 14px;
    }
    
    .contact-top-image {
        height: 250px;
    }
}

/* Contact Section */
.contact-section {
    padding: 160px 0;
    margin-top: 80px;
    background-color: #20b2aa;
}

.contact-section-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-section-info {
    flex: 1;
    max-width: 50%;
}

.contact-section-lead {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.contact-section-text {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1.9;
    margin: 0 0 28px 0;
}

.contact-section-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-section-logo img {
    height: 40px;
    width: auto;
}

.contact-section-company-name {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
}

.contact-section-banner {
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
}

.contact-section-banner span {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.contact-section-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section-features li {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 17px;
}

.contact-section-features li::before {
    content: "";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    width: 7px;
    top: 12px;
}

.contact-section-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 4px;
}

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

.contact-section-message {
    margin-top: 30px;
}

.contact-section-main-message {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.contact-section-sub-message {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.contact-section-form-wrapper {
    flex: 1;
    max-width: 50%;
    padding: 0 0 50px 0;
}

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

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

.contact-section-form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.contact-section-required {
    display: inline-block;
    background-color: #fff;
    color: #20b2aa;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: 500;
}

.contact-section-optional {
    display: inline-block;
    background-color: #ccc;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: 500;
}

.contact-section-form-input,
.contact-section-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    font-family: "A-OTF Shin Go Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
    transition: border-color 0.3s ease;
}

.contact-section-form-input:focus,
.contact-section-form-textarea:focus {
    outline: none;
    border-color: #20b2aa;
}

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

.contact-section-form-input::-webkit-input-placeholder,
.contact-section-form-textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-section-form-input::-moz-placeholder,
.contact-section-form-textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.contact-section-form-input:-ms-input-placeholder,
.contact-section-form-textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

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

.contact-section-form-error {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #e74c3c;
}

.contact-section-checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-section-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.contact-section-checkbox-label span {
    color: #fff;
}

.contact-section-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #fff;
}

.contact-section-submit {
    width: 100%;
    padding: 16px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: 20px;
}

.contact-section-submit:hover {
    opacity: 0.8;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-section {
        padding: 120px 0;
        margin-top: 60px;
    }
    
    .contact-section-container {
        padding: 0 30px;
        gap: 50px;
    }
    
    .contact-section-form-wrapper {
        padding: 0 0 40px 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0;
        margin-top: 40px;
    }
    
    .contact-section-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-section-info {
        max-width: 100%;
    }
    
    .contact-section-form-wrapper {
        max-width: 100%;
        padding: 0 0 30px 0;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 80px 0;
        margin-top: 30px;
    }
    
    .contact-section-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .contact-section-form-wrapper {
        padding: 0 0 25px 0;
    }
    
    .contact-section-form-group {
        margin-bottom: 25px;
    }
    
    .contact-section-submit {
        padding: 14px;
        font-size: 16px;
    }
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 40px;
}

.footer-copyright-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-copyright-text {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-company {
        grid-column: 1;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-contact-item {
        font-size: 12px;
    }
    
    .footer-section-title {
        font-size: 15px;
    }
    
    .footer-list li a {
        font-size: 12px;
    }
    
    .footer-copyright-text {
        font-size: 11px;
    }
}

/* Contact Thanks Section（お問い合わせ完了・緑背景に合わせて白文字） */
.contact-section--thanks .contact-section-container {
    justify-content: center;
}
.contact-thanks-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.contact-section--thanks .contact-thanks-text {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.6;
}
.contact-section--thanks .contact-thanks-note {
    font-size: 15px;
    color: #fff;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.95;
}
.contact-thanks-btn-wrap {
    margin-top: 32px;
}
.contact-thanks-btn {
    display: inline-block;
    min-width: 240px;
    text-align: center;
    text-decoration: none;
}
.contact-section--thanks {
    padding: 80px 0 100px;
}
@media (max-width: 768px) {
    .contact-section--thanks {
        padding: 50px 0 70px;
    }
    .contact-section--thanks .contact-thanks-text {
        font-size: 18px;
    }
    .contact-section--thanks .contact-thanks-note {
        font-size: 14px;
    }
}

/* ========== recruit ========== */
/* Recruitment Hero Section */
.recruitment-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 600px;
    overflow: hidden;
}

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

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

.recruitment-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruitment-hero-content {
    text-align: center;
    padding: 0 40px;
}

.recruitment-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* Section 1: Message */
.recruitment-message {
    padding: 120px 0;
    background-color: #fff;
}

@media (max-width: 767px) {
    .recruitment-message.recruitment-message--first {
        padding: 60px 0 0 0;
    }
}

.recruitment-message-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-message-title {
    font-size: 64px;
    font-weight: 500;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.recruitment-message-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.recruitment-message-container--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    direction: rtl;
}
.recruitment-message-container--reverse .recruitment-message-text {
    direction: ltr;
}

.recruitment-message-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    padding: 0 20px;
}

.recruitment-message-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.recruitment-message-heading {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.recruitment-message-paragraph {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 2.0;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

/* Profile（インタビュー内） */
.recruitment-profile {
    margin-top: 32px;
    padding: 12px 14px;
    background: #f8faf9;
    border-left: 4px solid #20b2aa;
}

.recruitment-profile-title {
    font-size: 26px;
    font-weight: 600;
    color: #20b2aa;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.recruitment-profile-list {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.recruitment-profile-list dt {
    font-weight: 600;
    color: #333;
    margin-top: 12px;
    margin-bottom: 4px;
}

.recruitment-profile-list dt:first-child {
    margin-top: 0;
}

.recruitment-profile-list dd {
    margin: 0 0 0 1em;
    font-weight: 500;
}

/* 1日のスケジュール（採用ページ共通 recruit-day-section） */
.recruit-day-section {
    padding: 80px 0 100px;
    background: #f8faf9;
}

.recruit-day-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.recruit-day-title {
    font-size: 36px;
    font-weight: 600;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.recruit-day-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.recruit-day-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.recruit-day-image-wrap {
    text-align: center;
}

.recruit-day-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.recruit-day-timeline {
    padding-right: 24px;
}

.recruit-day-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recruit-day-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px 20px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 18px;
}

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

.recruit-day-time {
    font-weight: 600;
    color: #20b2aa;
    font-size: 17px;
}

.recruit-day-label {
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.recruit-day-desc {
    grid-column: 2;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.recruit-day-cta {
    text-align: center;
}

.recruit-day-btn {
    display: inline-block;
    padding: 18px 52px;
    background: #20b2aa;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.05em;
    transition: background 0.25s ease, color 0.25s ease;
    border:2px solid #20b2aa;
}

.recruit-day-btn:hover {
    background: #f8faf9;
    color: #20b2aa;
}

/* コラム一覧へボタン（recruit-day-btn と同じレイアウト） */
.column-view-all-bottom {
    text-align: center;
    margin-top: 60px;
}
.column-view-all-link {
    display: inline-block;
    padding: 18px 82px;
    background: #20b2aa;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.05em;
    transition: background 0.25s ease, color 0.25s ease;
    border: 2px solid #20b2aa;
}
.column-view-all-link:hover {
    background: #f8faf9;
    color: #20b2aa;
}

@media (max-width: 768px) {
    .recruit-day-section {
        padding: 56px 0 72px;
    }
    
    .recruit-day-title {
        font-size: 28px;
    }
    
    .recruit-day-subtitle {
        font-size: 16px;
    }
    
    .recruit-day-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .recruit-day-timeline {
        padding-right: 0;
    }
    
    .recruit-day-item {
        grid-template-columns: 58px 1fr;
        font-size: 16px;
    }
    
    .recruit-day-time {
        font-size: 15px;
    }
    
    .recruit-day-label {
        font-size: 16px;
    }
    
    .recruit-day-desc {
        font-size: 15px;
    }
    
    .recruit-day-btn {
        padding: 16px 40px;
        font-size: 17px;
    }
    .column-view-all-bottom {
        margin-top: 40px;
    }
    .column-view-all-link {
        padding: 12px 50px;
        font-size: 17px;
    }
}

/* Section 2: WHY WE */
.recruitment-why {
    padding: 120px 0;
    background-color: #fff;
}

.recruitment-why-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-why-title {
    font-size: 64px;
    font-weight: 500;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.recruitment-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.recruitment-why-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.recruitment-why-card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

.recruitment-why-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.recruitment-why-card-title {
    font-size: 24px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.recruitment-why-card-description {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* Section 3: CONTENT */
.recruitment-content {
    padding: 120px 0;
    background-color: #fff;
}

.recruitment-content-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-content-title {
    font-size: 64px;
    font-weight: 500;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.recruitment-content-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.recruitment-content-description {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.01em;
}

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

.recruitment-content-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
}

.recruitment-content-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.recruitment-content-card-title-box {
    background-color: #20b2aa;
    padding: 15px 20px;
    border: 1px solid #fff;
}

.recruitment-content-card-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    letter-spacing: 0.02em;
}

.recruitment-content-card-description {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-align: center;
    line-height: 1.8;
    padding: 20px;
    letter-spacing: 0.01em;
}

.recruitment-content-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.recruitment-content-card-link .recruitment-content-card-image img {
    transition: transform 0.3s ease;
    will-change: transform;
}

.recruitment-content-card-link .recruitment-content-card-title-box {
    transition: opacity 0.3s ease;
}

.recruitment-content-card-link:hover .recruitment-content-card-image img {
    transform: scale(1.05);
}

.recruitment-content-card-link:hover {
    opacity: 0.85;
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 40px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 1024px) {
    .recruitment-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .recruitment-hero-title {
        font-size: 36px;
    }
    
    .recruitment-message {
        padding: 100px 0;
    }
    
    .recruitment-message-container {
        padding: 0 30px;
    }
    
    .recruitment-message-title {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .recruitment-message-content {
        gap: 40px;
    }
    
    .recruitment-message-image {
        height: 400px;
    }
    
    .recruitment-message-heading {
        font-size: 28px;
    }
    
    .recruitment-why {
        padding: 100px 0;
    }
    
    .recruitment-why-container {
        padding: 0 30px;
    }
    
    .recruitment-why-title {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .recruitment-why-grid {
        gap: 30px;
    }
    
    .recruitment-why-card-image {
        height: 300px;
    }
    
    .recruitment-content {
        padding: 100px 0;
    }
    
    .recruitment-content-container {
        padding: 0 30px;
    }
    
    .recruitment-content-title {
        font-size: 48px;
    }
    
    .recruitment-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .recruitment-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .recruitment-hero-title {
        font-size: 28px;
    }
    
    .recruitment-message {
        padding: 80px 0;
    }
    
    .recruitment-message-container {
        padding: 0 20px;
    }
    
    .recruitment-message-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .recruitment-message-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recruitment-message-image {
        height: 300px;
    }
    
    .recruitment-message-text {
        padding: 0;
    }
    
    .recruitment-message-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .recruitment-message-paragraph {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .recruitment-why {
        padding: 80px 0;
    }
    
    .recruitment-why-container {
        padding: 0 20px;
    }
    
    .recruitment-why-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .recruitment-why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recruitment-why-card-image {
        height: 250px;
    }
    
    .recruitment-why-card-text {
        padding: 20px;
    }
    
    .recruitment-why-card-title {
        font-size: 20px;
    }
    
    .recruitment-why-card-description {
        font-size: 13px;
    }
    
    .recruitment-content {
        padding: 80px 0;
    }
    
    .recruitment-content-container {
        padding: 0 20px;
    }
    
    .recruitment-content-title {
        font-size: 36px;
    }
    
    .recruitment-content-subtitle {
        font-size: 20px;
    }
    
    .recruitment-content-description {
        font-size: 14px;
        margin-bottom: 50px;
    }
    
    .recruitment-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recruitment-content-card-image {
        height: 200px;
    }
    
    .recruitment-content-card-title-box {
        padding: 12px 15px;
    }
    
    .recruitment-content-card-title {
        font-size: 16px;
    }
    
    .recruitment-content-card-description {
        font-size: 13px;
        padding: 15px;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .recruitment-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .recruitment-hero-title {
        font-size: 24px;
    }
    
    .recruitment-message {
        padding: 60px 0;
    }
    
    .recruitment-message-container {
        padding: 0 15px;
    }
    
    .recruitment-message-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .recruitment-message-image {
        height: 250px;
    }
    
    .recruitment-message-heading {
        font-size: 20px;
    }
    
    .recruitment-message-paragraph {
        font-size: 14px;
    }
    
    .recruitment-why {
        padding: 60px 0;
    }
    
    .recruitment-why-container {
        padding: 0 15px;
    }
    
    .recruitment-why-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .recruitment-why-card-image {
        height: 200px;
    }
    
    .recruitment-why-card-title {
        font-size: 18px;
    }
    
    .recruitment-content {
        padding: 60px 0;
    }
    
    .recruitment-content-container {
        padding: 0 15px;
    }
    
    .recruitment-content-title {
        font-size: 28px;
    }
    
    .recruitment-content-subtitle {
        font-size: 18px;
    }
    
    .recruitment-content-description {
        font-size: 13px;
        margin-bottom: 40px;
    }
    
    .recruitment-content-card-image {
        height: 180px;
    }
    
    .recruitment-content-card-title {
        font-size: 14px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
}

/* ========== work ========== */
/* Work Top Section */
.work-top {
    padding: 134px 0 0;
    background-color: #fff;
    min-height: calc(100vh - 134px);
    position: relative;
}

.work-top-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    min-height: calc(100vh - 134px);
    position: relative;
    z-index: 2;
}

.work-top-content {
    max-width: 50%;
    padding-top: 100px;
}

.work-top-title {
    font-size: 40px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.work-top-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.1em;
}

.work-top-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 85%;
    overflow: hidden;
    z-index: 1;
    margin-right: 0;
}

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

/* Work Top Section Responsive */
@media (max-width: 1024px) {
    .work-top-container {
        padding: 0 30px;
        min-height: 0;
    }
    
    .work-top-content {
        max-width: 60%;
        padding-top: 140px;
    }
    
    .work-top-title {
        font-size: 32px;
    }
    
    .work-top-image {
        width: 65%;
        height: 80%;
    }
}

@media (max-width: 768px) {
    .work-top {
        padding: 100px 0 0;
        min-height: 0;
    }
    
    .work-top-container {
        padding: 0 20px;
        min-height: 0;
    }
    
    .work-top-content {
        max-width: 100%;
        padding-top: 40px;
    }
    
    .work-top-title {
        font-size: 32px;
    }
    
    .work-top-subtitle {
        font-size: 16px;
    }
    
    .work-top-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .work-top {
        padding: 100px 0 0;
    }
    
    .work-top-container {
        padding: 0 15px;
        min-height: 0;
    }
    
    .work-top-content {
        padding-top: 30px;
    }
    
    .work-top-title {
        font-size: 24px;
    }
    
    .work-top-subtitle {
        font-size: 14px;
    }
    
    .work-top-image {
        height: 250px;
    }
}

/* Work List Section */
.work-list {
    padding: 160px 0;
    background-color: #fff;
}

.work-list-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.work-list-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
}

.work-list-tab {
    padding: 12px 30px;
    border: 1px solid #20b2aa;
    background-color: #20b2aa;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.work-list-tab.active {
    background-color: #fff;
    color: #333;
    border-color: #20b2aa;
}

.work-list-tab:hover {
    opacity: 0.8;
}

.work-list-tab.active:hover {
    opacity: 1;
}

.work-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.work-list-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: none;
    text-decoration: none;
    color: inherit;
}

.work-list-card.active {
    display: block;
    opacity: 1;
}

.work-list-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border: 2px solid #fff;
    background-color: #fff;
}

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

.work-list-card:hover .work-list-image img {
    transform: scale(1.1);
}

.work-list-content {
    padding: 20px;
}

.work-list-date {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.work-list-title-wrapper {
    margin-bottom: 15px;
}

.work-list-status {
    display: flex;
    align-items: center;
    gap: 4px;
}

.work-list-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #20b2aa;
    display: block;
    flex-shrink: 0;
}

.work-list-category {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.work-list-link {
    font-size: 14px;
    font-weight: 500;
    color: #20b2aa;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
    display: inline-block;
    pointer-events: none;
}

.work-list-link:hover {
    opacity: 0.7;
}

/* Work List Section Responsive */
@media (max-width: 1024px) {
    .work-list {
        padding: 120px 0;
    }
    
    .work-list-container {
        padding: 0 30px;
    }
    
    .work-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .work-list {
        padding: 100px 0;
    }
    
    .work-list-container {
        padding: 0 20px;
    }
    
    .work-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .work-list-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .work-list {
        padding: 80px 0;
    }
    
    .work-list-container {
        padding: 0 15px;
    }
    
    .work-list-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .work-list-image {
        height: 250px;
    }
    
    .work-list-content {
        padding: 15px;
    }
    
    .work-list-date {
        font-size: 13px;
    }
    
    .work-list-category {
        font-size: 13px;
    }
    
    .work-list-link {
        font-size: 13px;
    }
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 40px;
}

.footer-copyright-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-copyright-text {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-company {
        grid-column: 1;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-contact-item {
        font-size: 12px;
    }
    
    .footer-section-title {
        font-size: 15px;
    }
    
    .footer-list li a {
        font-size: 12px;
    }
    
    .footer-copyright-text {
        font-size: 11px;
    }
}
/* ========== work-detail ========== */
/* Work Detail Hero Section */
.work-detail-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

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

.work-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.work-detail-hero-content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.work-detail-hero-category {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.work-detail-hero-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* Work Detail Gallery Section */
.work-detail-gallery {
    padding: 120px 0;
    background-color: #fff;
}

.work-detail-gallery-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.work-detail-gallery-title {
    font-size: 40px;
    font-weight: 500;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.work-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.work-detail-gallery-item {
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.work-detail-gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Work Detail Info Section */
.work-detail-info {
    padding: 120px 0;
    background-color: #f8f8f8;
}

.work-detail-info-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.work-detail-info-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 4px;
}

.work-detail-info-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.work-detail-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.work-detail-info-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.work-detail-info-value {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

/* Work Detail Responsive */
@media (max-width: 1024px) {
    .work-detail-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .work-detail-hero-content {
        padding: 0 30px 60px;
    }
    
    .work-detail-hero-title {
        font-size: 36px;
    }
    
    .work-detail-gallery {
        padding: 100px 0;
    }
    
    .work-detail-gallery-container {
        padding: 0 30px;
    }
    
    .work-detail-gallery-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .work-detail-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .work-detail-info {
        padding: 100px 0;
    }
    
    .work-detail-info-container {
        padding: 0 30px;
    }
    
    .work-detail-info-content {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .work-detail-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .work-detail-hero-content {
        padding: 0 20px 40px;
    }
    
    .work-detail-hero-category {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .work-detail-hero-title {
        font-size: 28px;
    }
    
    .work-detail-gallery {
        padding: 80px 0;
    }
    
    .work-detail-gallery-container {
        padding: 0 20px;
    }
    
    .work-detail-gallery-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .work-detail-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .work-detail-info {
        padding: 80px 0;
    }
    
    .work-detail-info-container {
        padding: 0 20px;
    }
    
    .work-detail-info-content {
        padding: 40px;
    }
    
    .work-detail-info-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .work-detail-info-label {
        font-size: 13px;
    }
    
    .work-detail-info-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .work-detail-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .work-detail-hero-content {
        padding: 0 15px 30px;
    }
    
    .work-detail-hero-title {
        font-size: 24px;
    }
    
    .work-detail-gallery {
        padding: 60px 0;
    }
    
    .work-detail-gallery-container {
        padding: 0 15px;
    }
    
    .work-detail-gallery-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .work-detail-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .work-detail-info {
        padding: 60px 0;
    }
    
    .work-detail-info-container {
        padding: 0 15px;
    }
    
    .work-detail-info-content {
        padding: 30px 20px;
    }
    
    .work-detail-info-item {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .work-detail-info-label {
        font-size: 12px;
    }
    
    .work-detail-info-value {
        font-size: 15px;
    }
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-title,
.footer-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 40px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-copyright-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-copyright-text {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-company {
        grid-column: 1;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-title,
    .footer-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-contact-item {
        font-size: 12px;
    }
    
    .footer-title,
    .footer-section-title {
        font-size: 15px;
    }
    
    .footer-list li a {
        font-size: 12px;
    }
    
    .footer-copyright-text {
        font-size: 11px;
    }
}

/* ========== notice ========== */
/* Notice Top Section */
.notice-top {
    padding: 134px 0 0;
    background-color: #fff;
    min-height: calc(100vh - 134px);
    position: relative;
}

.notice-top-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    min-height: calc(100vh - 134px);
    position: relative;
    z-index: 2;
}

.notice-top-content {
    max-width: 50%;
    padding-top: 100px;
}

.notice-top-title {
    font-size: 40px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.notice-top-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.1em;
}

.notice-top-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 85%;
    overflow: hidden;
    z-index: 1;
    margin-right: 0;
}

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

/* Notice Top Section Responsive */
@media (max-width: 1024px) {
    .notice-top-container {
        padding: 0 30px;
        min-height: 0;
    }
    
    .notice-top-content {
        max-width: 60%;
        padding-top: 140px;
    }
    
    .notice-top-title {
        font-size: 32px;
    }
    
    .notice-top-image {
        width: 65%;
        height: 80%;
    }
}

@media (max-width: 768px) {
    .notice-top {
        padding: 100px 0 0;
        min-height: 0;
    }
    
    .notice-top-container {
        padding: 0 20px;
        min-height: 0;
    }
    
    .notice-top-content {
        max-width: 100%;
        padding-top: 40px;
    }
    
    .notice-top-title {
        font-size: 32px;
    }
    
    .notice-top-subtitle {
        font-size: 16px;
    }
    
    .notice-top-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .notice-top {
        padding: 100px 0 0;
    }
    
    .notice-top-container {
        padding: 0 15px;
        min-height: 0;
    }
    
    .notice-top-content {
        padding-top: 30px;
    }
    
    .notice-top-title {
        font-size: 24px;
    }
    
    .notice-top-subtitle {
        font-size: 14px;
    }
    
    .notice-top-image {
        height: 250px;
    }
}

/* Notice Section */
.notice-section {
    padding: 160px 0;
    background-color: #fff;
}

.notice-section-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.notice-content-wrapper {
    max-width: 100%;
}

.notice-header {
    margin-bottom: 50px;
}

.notice-title {
    font-size: 48px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.notice-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.1em;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.notice-card {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

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

.notice-card:hover .notice-card-title {
    color: #20b2aa;
}

.notice-card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

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

.notice-card-content {
    padding: 15px;
}

.notice-card-date {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.notice-card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: #20b2aa;
    background-color: rgba(32, 178, 170, 0.1);
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.notice-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.notice-view-more {
    text-align: right;
}

.notice-view-more-link {
    font-size: 14px;
    font-weight: 500;
    color: #20b2aa;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.3s ease;
}

.notice-view-more-link:hover {
    opacity: 0.7;
}

/* Notice Section Responsive */
@media (max-width: 1024px) {
    .notice-section {
        padding: 120px 0;
    }
    
    .notice-section-container {
        padding: 0 30px;
    }
    
    .notice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .notice-section {
        padding: 100px 0;
    }
    
    .notice-section-container {
        padding: 0 20px;
    }
    
    .notice-content-wrapper {
        max-width: 100%;
    }
    
    .notice-title {
        font-size: 40px;
    }
    
    .notice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .notice-section {
        padding: 80px 0;
    }
    
    .notice-section-container {
        padding: 0 15px;
    }
    
    .notice-title {
        font-size: 28px;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .notice-card-image {
        height: 120px;
    }
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 40px;
}

.footer-copyright-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-copyright-text {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-company {
        grid-column: 1;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-contact-item {
        font-size: 12px;
    }
    
    .footer-section-title {
        font-size: 15px;
    }
    
    .footer-list li a {
        font-size: 12px;
    }
    
    .footer-copyright-text {
        font-size: 11px;
    }
}

/* ========== notice-detail ========== */
/* Notice Detail Hero Section */
.notice-detail-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

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

.notice-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notice-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.notice-detail-hero-content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.notice-detail-hero-category {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.notice-detail-hero-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* Notice Detail Content Section */
.notice-detail-content {
    padding: 120px 0;
    background-color: #fff;
}

.notice-detail-content-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.notice-detail-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.notice-detail-date {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.01em;
}

.notice-detail-category {
    display: inline-block;
    background-color: rgba(0, 191, 147, 0.15);
    color: #20b2aa;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.01em;
}

.notice-detail-body {
    margin-bottom: 60px;
}

.notice-detail-body p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 2.0;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.notice-detail-back {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.notice-detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20b2aa;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.notice-detail-back-link:hover {
    opacity: 0.7;
}

/* Notice Detail Responsive */
@media (max-width: 1024px) {
    .notice-detail-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .notice-detail-hero-content {
        padding: 0 30px 60px;
    }
    
    .notice-detail-hero-title {
        font-size: 36px;
    }
    
    .notice-detail-content {
        padding: 100px 0;
    }
    
    .notice-detail-content-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .notice-detail-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .notice-detail-hero-content {
        padding: 0 20px 40px;
    }
    
    .notice-detail-hero-category {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .notice-detail-hero-title {
        font-size: 28px;
    }
    
    .notice-detail-content {
        padding: 80px 0;
    }
    
    .notice-detail-content-container {
        padding: 0 20px;
    }
    
    .notice-detail-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .notice-detail-body {
        margin-bottom: 50px;
    }
    
    .notice-detail-body p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .notice-detail-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .notice-detail-hero-content {
        padding: 0 15px 30px;
    }
    
    .notice-detail-hero-title {
        font-size: 24px;
    }
    
    .notice-detail-content {
        padding: 60px 0;
    }
    
    .notice-detail-content-container {
        padding: 0 15px;
    }
    
    .notice-detail-info {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .notice-detail-date {
        font-size: 14px;
    }
    
    .notice-detail-category {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .notice-detail-body {
        margin-bottom: 40px;
    }
    
    .notice-detail-body p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .notice-detail-back {
        padding-top: 30px;
    }
    
    .notice-detail-back-link {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-title,
.footer-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 40px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.footer-copyright-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-copyright-text {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-company {
        grid-column: 1;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-title,
    .footer-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-contact-item {
        font-size: 12px;
    }
    
    .footer-title,
    .footer-section-title {
        font-size: 15px;
    }
    
    .footer-list li a {
        font-size: 12px;
    }
    
    .footer-copyright-text {
        font-size: 11px;
    }
}

/* ========== recruitment-work ========== */
/* Recruitment Work Hero Section */
.recruitment-work-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

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

.recruitment-work-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-work-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruitment-work-hero-content {
    text-align: center;
    padding: 0 40px;
}

.recruitment-work-hero-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* Section 1: Three Departments Introduction */
.recruitment-work-intro {
    padding: 120px 0;
    background-color: #fff;
}

.recruitment-work-intro-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-work-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.recruitment-work-intro-images {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.recruitment-work-intro-image-large {
    width: 60%;
    height: 500px;
    overflow: hidden;
}

.recruitment-work-intro-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-work-intro-images-small {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
}

.recruitment-work-intro-image-small {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.recruitment-work-intro-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-work-intro-text {
    padding: 0 20px;
}

.recruitment-work-intro-heading {
    font-size: 36px;
    font-weight: 500;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.recruitment-work-intro-description {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 2.0;
    letter-spacing: 0.02em;
}

/* Section 2: Three Departments Details */
.recruitment-work-departments {
    padding: 120px 0;
    background-color: #fff;
}

.recruitment-work-departments-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.recruitment-work-department-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.recruitment-work-department-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.recruitment-work-department-card-content {
    padding: 30px;
}

.recruitment-work-department-card-title {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.recruitment-work-department-card-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 15px;
    letter-spacing: 0.01em;
}

.recruitment-work-department-card-description {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 40px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 1024px) {
    .recruitment-work-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .recruitment-work-hero-title {
        font-size: 36px;
    }
    
    .recruitment-work-intro {
        padding: 100px 0;
    }
    
    .recruitment-work-intro-container {
        padding: 0 30px;
    }
    
    .recruitment-work-intro-content {
        gap: 40px;
    }
    
    .recruitment-work-intro-image-large {
        height: 400px;
    }
    
    .recruitment-work-intro-image-small {
        height: 190px;
    }
    
    .recruitment-work-intro-heading {
        font-size: 28px;
    }
    
    .recruitment-work-departments {
        padding: 100px 0;
    }
    
    .recruitment-work-departments-container {
        padding: 0 30px;
    }
    
    .recruitment-work-departments-grid {
        gap: 30px;
    }
    
    .recruitment-work-department-card-image {
        height: 280px;
    }
    
    .recruitment-work-department-card-content {
        padding: 25px;
    }
    
    .recruitment-work-department-card-title {
        font-size: 22px;
    }
    
    .recruitment-work-department-card-subtitle {
        font-size: 15px;
    }
    
    .recruitment-work-department-card-description {
        font-size: 13px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .recruitment-work-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .recruitment-work-hero-title {
        font-size: 28px;
    }
    
    .recruitment-work-intro {
        padding: 80px 0;
    }
    
    .recruitment-work-intro-container {
        padding: 0 20px;
    }
    
    .recruitment-work-intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recruitment-work-intro-images {
        flex-direction: column;
        gap: 15px;
    }
    
    .recruitment-work-intro-image-large {
        width: 100%;
        height: 300px;
    }
    
    .recruitment-work-intro-images-small {
        width: 100%;
        flex-direction: row;
        gap: 15px;
    }
    
    .recruitment-work-intro-image-small {
        width: 50%;
        height: 200px;
    }
    
    .recruitment-work-intro-text {
        padding: 0;
    }
    
    .recruitment-work-intro-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .recruitment-work-intro-description {
        font-size: 15px;
    }
    
    .recruitment-work-departments {
        padding: 80px 0;
    }
    
    .recruitment-work-departments-container {
        padding: 0 20px;
    }
    
    .recruitment-work-departments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recruitment-work-department-card-image {
        height: 250px;
    }
    
    .recruitment-work-department-card-content {
        padding: 25px;
    }
    
    .recruitment-work-department-card-title {
        font-size: 20px;
    }
    
    .recruitment-work-department-card-subtitle {
        font-size: 14px;
    }
    
    .recruitment-work-department-card-description {
        font-size: 13px;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .recruitment-work-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .recruitment-work-hero-title {
        font-size: 24px;
    }
    
    .recruitment-work-intro {
        padding: 60px 0;
    }
    
    .recruitment-work-intro-container {
        padding: 0 15px;
    }
    
    .recruitment-work-intro-image-large {
        height: 250px;
    }
    
    .recruitment-work-intro-image-small {
        height: 150px;
    }
    
    .recruitment-work-intro-heading {
        font-size: 20px;
    }
    
    .recruitment-work-intro-description {
        font-size: 14px;
    }
    
    .recruitment-work-departments {
        padding: 60px 0;
    }
    
    .recruitment-work-departments-container {
        padding: 0 15px;
    }
    
    .recruitment-work-departments-grid {
        gap: 25px;
    }
    
    .recruitment-work-department-card-image {
        height: 200px;
    }
    
    .recruitment-work-department-card-content {
        padding: 20px;
    }
    
    .recruitment-work-department-card-title {
        font-size: 18px;
    }
    
    .recruitment-work-department-card-subtitle {
        font-size: 13px;
    }
    
    .recruitment-work-department-card-description {
        font-size: 12px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
}

/* ========== recruitment-numbers ========== */
/* Recruitment Numbers Hero Section */
.recruitment-numbers-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

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

.recruitment-numbers-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-numbers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruitment-numbers-hero-content {
    text-align: center;
    padding: 0 40px;
}

.recruitment-numbers-hero-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* Section 1: Company About */
.recruitment-numbers-company {
    padding: 120px 0;
    background-color: #fff;
}

.recruitment-numbers-company-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-numbers-company-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.recruitment-numbers-company-item:last-child {
    margin-bottom: 0;
}

.recruitment-numbers-company-item-reverse {
    direction: rtl;
}

.recruitment-numbers-company-item-reverse > * {
    direction: ltr;
}

.recruitment-numbers-company-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.recruitment-numbers-company-text {
    padding: 0 20px;
}

.recruitment-numbers-company-title {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.recruitment-numbers-company-number {
    font-size: 64px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.recruitment-numbers-company-description {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 2.0;
    letter-spacing: 0.02em;
}

/* Section 2: Employees About */
.recruitment-numbers-employees {
    padding: 120px 0;
    background-color: #fff;
}

.recruitment-numbers-employees-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-numbers-employees-title {
    font-size: 40px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
}

.recruitment-numbers-employees-profiles {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.recruitment-numbers-employees-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #20b2aa;
}

.recruitment-numbers-employees-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-numbers-employees-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.recruitment-numbers-employees-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.recruitment-numbers-employees-stat-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.recruitment-numbers-employees-stat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-numbers-employees-stat-content {
    text-align: center;
}

.recruitment-numbers-employees-stat-label {
    font-size: 18px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.recruitment-numbers-employees-stat-number {
    font-size: 48px;
    font-weight: 500;
    color: #20b2aa;
    letter-spacing: 0.05em;
}

/* Section 3: Environment About */
.recruitment-numbers-environment {
    padding: 120px 0;
    background-color: #fff;
}

.recruitment-numbers-environment-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-numbers-environment-title {
    font-size: 40px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
}

.recruitment-numbers-environment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.recruitment-numbers-environment-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.recruitment-numbers-environment-item-reverse {
    direction: rtl;
}

.recruitment-numbers-environment-item-reverse > * {
    direction: ltr;
}

.recruitment-numbers-environment-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.recruitment-numbers-environment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-numbers-environment-content {
    text-align: center;
}

.recruitment-numbers-environment-label {
    font-size: 18px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 15px;
    letter-spacing: 0.01em;
}

.recruitment-numbers-environment-number {
    font-size: 64px;
    font-weight: 500;
    color: #20b2aa;
    letter-spacing: 0.05em;
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 40px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 1024px) {
    .recruitment-numbers-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .recruitment-numbers-hero-title {
        font-size: 36px;
    }
    
    .recruitment-numbers-company {
        padding: 100px 0;
    }
    
    .recruitment-numbers-company-container {
        padding: 0 30px;
    }
    
    .recruitment-numbers-company-item {
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .recruitment-numbers-company-image {
        height: 350px;
    }
    
    .recruitment-numbers-company-title {
        font-size: 28px;
    }
    
    .recruitment-numbers-company-number {
        font-size: 56px;
    }
    
    .recruitment-numbers-employees {
        padding: 100px 0;
    }
    
    .recruitment-numbers-employees-container {
        padding: 0 30px;
    }
    
    .recruitment-numbers-employees-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .recruitment-numbers-employees-profiles {
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .recruitment-numbers-employees-profile {
        width: 100px;
        height: 100px;
    }
    
    .recruitment-numbers-employees-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .recruitment-numbers-employees-stat-image {
        height: 180px;
    }
    
    .recruitment-numbers-employees-stat-number {
        font-size: 40px;
    }
    
    .recruitment-numbers-environment {
        padding: 100px 0;
    }
    
    .recruitment-numbers-environment-container {
        padding: 0 30px;
    }
    
    .recruitment-numbers-environment-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .recruitment-numbers-environment-grid {
        gap: 30px;
    }
    
    .recruitment-numbers-environment-image {
        height: 250px;
    }
    
    .recruitment-numbers-environment-number {
        font-size: 56px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .recruitment-numbers-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .recruitment-numbers-hero-title {
        font-size: 28px;
    }
    
    .recruitment-numbers-company {
        padding: 80px 0;
    }
    
    .recruitment-numbers-company-container {
        padding: 0 20px;
    }
    
    .recruitment-numbers-company-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .recruitment-numbers-company-item-reverse {
        direction: ltr;
    }
    
    .recruitment-numbers-company-image {
        height: 250px;
    }
    
    .recruitment-numbers-company-text {
        padding: 0;
    }
    
    .recruitment-numbers-company-title {
        font-size: 24px;
    }
    
    .recruitment-numbers-company-number {
        font-size: 48px;
    }
    
    .recruitment-numbers-company-description {
        font-size: 15px;
    }
    
    .recruitment-numbers-employees {
        padding: 80px 0;
    }
    
    .recruitment-numbers-employees-container {
        padding: 0 20px;
    }
    
    .recruitment-numbers-employees-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .recruitment-numbers-employees-profiles {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .recruitment-numbers-employees-profile {
        width: 80px;
        height: 80px;
    }
    
    .recruitment-numbers-employees-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recruitment-numbers-employees-stat-image {
        height: 200px;
    }
    
    .recruitment-numbers-employees-stat-label {
        font-size: 16px;
    }
    
    .recruitment-numbers-employees-stat-number {
        font-size: 36px;
    }
    
    .recruitment-numbers-environment {
        padding: 80px 0;
    }
    
    .recruitment-numbers-environment-container {
        padding: 0 20px;
    }
    
    .recruitment-numbers-environment-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .recruitment-numbers-environment-grid {
        gap: 30px;
    }
    
    .recruitment-numbers-environment-item {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .recruitment-numbers-environment-item-reverse {
        direction: ltr;
    }
    
    .recruitment-numbers-environment-image {
        height: 200px;
    }
    
    .recruitment-numbers-environment-label {
        font-size: 16px;
    }
    
    .recruitment-numbers-environment-number {
        font-size: 48px;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .recruitment-numbers-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .recruitment-numbers-hero-title {
        font-size: 24px;
    }
    
    .recruitment-numbers-company {
        padding: 60px 0;
    }
    
    .recruitment-numbers-company-container {
        padding: 0 15px;
    }
    
    .recruitment-numbers-company-item {
        margin-bottom: 50px;
    }
    
    .recruitment-numbers-company-image {
        height: 200px;
    }
    
    .recruitment-numbers-company-title {
        font-size: 20px;
    }
    
    .recruitment-numbers-company-number {
        font-size: 40px;
    }
    
    .recruitment-numbers-company-description {
        font-size: 14px;
    }
    
    .recruitment-numbers-employees {
        padding: 60px 0;
    }
    
    .recruitment-numbers-employees-container {
        padding: 0 15px;
    }
    
    .recruitment-numbers-employees-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .recruitment-numbers-employees-profiles {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .recruitment-numbers-employees-profile {
        width: 70px;
        height: 70px;
    }
    
    .recruitment-numbers-employees-stats {
        gap: 25px;
    }
    
    .recruitment-numbers-employees-stat-image {
        height: 180px;
    }
    
    .recruitment-numbers-employees-stat-label {
        font-size: 14px;
    }
    
    .recruitment-numbers-employees-stat-number {
        font-size: 32px;
    }
    
    .recruitment-numbers-environment {
        padding: 60px 0;
    }
    
    .recruitment-numbers-environment-container {
        padding: 0 15px;
    }
    
    .recruitment-numbers-environment-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .recruitment-numbers-environment-grid {
        gap: 25px;
    }
    
    .recruitment-numbers-environment-image {
        height: 180px;
    }
    
    .recruitment-numbers-environment-label {
        font-size: 14px;
    }
    
    .recruitment-numbers-environment-number {
        font-size: 40px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 40px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

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

/* ========== recruitment-application ========== */
/* Recruitment Application Hero Section */
.recruitment-application-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

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

.recruitment-application-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-application-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruitment-application-hero-content {
    text-align: center;
    padding: 0 40px;
}

.recruitment-application-hero-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* Section 1: Current Job Openings */
.recruitment-application-jobs {
    padding: 120px 0;
    background-color: #fff;
}

.recruitment-application-jobs-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-application-jobs-title {
    font-size: 40px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.recruitment-application-jobs-description {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 2.0;
    margin-bottom: 60px;
    letter-spacing: 0.02em;
}

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

.recruitment-application-job-card {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 0;
}

.recruitment-application-job-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recruitment-application-job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-application-job-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.recruitment-application-job-title {
    font-size: 20px;
    font-weight: 500;
    color: #20b2aa;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.recruitment-application-job-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.01em;
}

.recruitment-application-job-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.recruitment-application-job-link:hover {
    opacity: 0.8;
}

.recruitment-application-job-link .recruitment-application-job-image img {
    transition: transform 0.3s ease;
}


.recruitment-application-job-link:hover .recruitment-application-job-image img {
    transform: scale(1.05);
}

/* Section 2: Selection Process */
.recruitment-application-process {
    padding: 120px 0;
    background-color: #20b2aa;
}

.recruitment-application-process-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-application-process-title {
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.recruitment-application-process-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.recruitment-application-process-description {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.01em;
}

.recruitment-application-process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.recruitment-application-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.recruitment-application-process-arrow {
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruitment-application-process-arrow::before {
    content: '→';
}

.recruitment-application-process-step-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    border: 4px solid #fff;
}

.recruitment-application-process-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-application-process-step-title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.recruitment-application-process-step-description {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* Footer */
.footer {
    background-color: #20b2aa;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-list li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 40px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 1024px) {
    .recruitment-application-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .recruitment-application-hero-title {
        font-size: 36px;
    }
    
    .recruitment-application-jobs {
        padding: 100px 0;
    }
    
    .recruitment-application-jobs-container {
        padding: 0 30px;
    }
    
    .recruitment-application-jobs-title {
        font-size: 36px;
    }
    
    .recruitment-application-jobs-grid {
        gap: 30px;
    }
    
    .recruitment-application-process {
        padding: 100px 0;
    }
    
    .recruitment-application-process-container {
        padding: 0 30px;
    }
    
    .recruitment-application-process-title {
        font-size: 48px;
    }
    
    .recruitment-application-process-steps {
        grid-template-columns: 1fr auto 1fr;
        gap: 20px;
    }
    
    /* Hide arrows between rows on tablet */
    .recruitment-application-process-arrow:nth-child(4) {
        display: none;
    }
    
    .recruitment-application-process-arrow {
        font-size: 36px;
    }
    
    .recruitment-application-process-step-image {
        width: 180px;
        height: 180px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .recruitment-application-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .recruitment-application-hero-title {
        font-size: 28px;
    }
    
    .recruitment-application-jobs {
        padding: 80px 0;
    }
    
    .recruitment-application-jobs-container {
        padding: 0 20px;
    }
    
    .recruitment-application-jobs-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .recruitment-application-jobs-description {
        font-size: 15px;
        margin-bottom: 50px;
    }
    
    .recruitment-application-jobs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recruitment-application-job-overlay {
        padding: 20px;
    }
    
    .recruitment-application-job-title {
        font-size: 18px;
    }
    
    .recruitment-application-process {
        padding: 80px 0;
    }
    
    .recruitment-application-process-container {
        padding: 0 20px;
    }
    
    .recruitment-application-process-title {
        font-size: 36px;
    }
    
    .recruitment-application-process-subtitle {
        font-size: 20px;
    }
    
    .recruitment-application-process-description {
        font-size: 14px;
        margin-bottom: 60px;
    }
    
    .recruitment-application-process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Arrow between steps (SP - vertical) */
    .recruitment-application-process-arrow {
        font-size: 36px;
    }
    
    .recruitment-application-process-arrow::before {
        content: '↓';
    }
    
    .recruitment-application-process-step-image {
        width: 160px;
        height: 160px;
    }
    
    .recruitment-application-process-step-title {
        font-size: 20px;
    }
    
    .recruitment-application-process-step-description {
        font-size: 13px;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .recruitment-application-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .recruitment-application-hero-title {
        font-size: 24px;
    }
    
    .recruitment-application-jobs {
        padding: 60px 0;
    }
    
    .recruitment-application-jobs-container {
        padding: 0 15px;
    }
    
    .recruitment-application-jobs-title {
        font-size: 24px;
    }
    
    .recruitment-application-jobs-description {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .recruitment-application-jobs-grid {
        gap: 25px;
    }
    
    .recruitment-application-job-overlay {
        padding: 15px;
    }
    
    .recruitment-application-job-title {
        font-size: 16px;
    }
    
    .recruitment-application-job-subtitle {
        font-size: 12px;
    }
    
    .recruitment-application-process {
        padding: 60px 0;
    }
    
    .recruitment-application-process-container {
        padding: 0 15px;
    }
    
    .recruitment-application-process-title {
        font-size: 28px;
    }
    
    .recruitment-application-process-subtitle {
        font-size: 18px;
    }
    
    .recruitment-application-process-description {
        font-size: 13px;
        margin-bottom: 50px;
    }
    
    .recruitment-application-process-steps {
        gap: 20px;
    }
    
    /* Arrow between steps (SP 480px - vertical) */
    .recruitment-application-process-arrow {
        font-size: 32px;
    }
    
    .recruitment-application-process-arrow::before {
        content: '↓';
    }
    
    .recruitment-application-process-step-image {
        width: 140px;
        height: 140px;
    }
    
    .recruitment-application-process-step-title {
        font-size: 18px;
    }
    
    .recruitment-application-process-step-description {
        font-size: 12px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
}

/* ========== Works Section（部門とスタッフ・page-recruit） ========== */

.business-concept--works {
    padding: 100px 0 50px 0;
}
.business-concept--works .business-concept-title {
    margin-bottom: 12px;
}
.business-concept-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.02em;
}
@media (max-width: 767px) {
    .business-concept-subtitle {
        margin-bottom: 30px;
    }
}
.business-concept-lead {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.9;
    margin-bottom: 50px;
    letter-spacing: 0.02em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.business-concept-lead .business-concept-description-accent {
    color: #20b2aa;
}
a.business-concept-card--link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}
a.business-concept-card--link:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.8;
}
a.business-concept-card--link:hover .business-concept-image img {
    transform: scale(1.05);
}

.business-concept-card--link .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 15px;
}
.business-concept-card--link .service-card-link-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.business-concept-card--link:hover .service-card-link-arrow {
    transform: translateX(4px);
}

/* タイトル部分の font-weight 統一（600） */
.service-top-title,
.service-top-subtitle,
.company-top-title,
.company-top-subtitle,
.contact-top-title,
.contact-top-subtitle,
.business-concept-title,
.business-concept-subtitle,
.business-concept-card-title,
.service-details-title,
.service-details-heading,
.recruitment-hero-title,
.recruitment-message-title,
.recruitment-message-heading,
.recruitment-why-title,
.recruitment-why-card-title,
.recruitment-content-title,
.recruitment-content-subtitle,
.recruitment-content-card-title,
.work-top-title,
.work-top-subtitle,
.notice-top-title,
.notice-top-subtitle,
.hero-title,
.work-detail-hero-title,
.notice-detail-hero-title,
.recruitment-work-hero-title,
.recruitment-work-department-card-title,
.recruitment-numbers-hero-title,
.recruitment-application-hero-title,
.footer-section-title {
    font-weight: 600;
}

/* ========== company-map ========== */

.company-map-container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 767px) {
    .company-map-container {
        padding: 0 20px;
    }
}
.company-map {
    width: 100%;
    height: 450px;
    margin-bottom: 100px;
}
@media (max-width: 767px) {
    .company-map {
        height: 300px;
    }
}
.company-map iframe {
    width: 100%;
    height: 100%;
}

.recruitment-message--bg-green {
    background-color: #20b2aa;
}

.recruitment-message--bg-green .recruitment-message-title {
    color: #fff;
}

.recruitment-message--bg-green .recruitment-message-heading {
    color: #fff;
}

.recruitment-message--bg-green .recruitment-message-paragraph {
    color: #fff;
}

.recruitment-interview {
    padding: 60px 0;
    background-color: #fff;
}

.recruitment-interview--01 {
    padding-top: 30px;
}
.recruitment-interview--02 {
    padding-bottom: 120px;
}

.recruitment-interview-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.recruitment-interview-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.05em;
    width: fit-content;
    margin-inline: auto;
    border-bottom: 2px solid #20b2aa;
}

.recruitment-interview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.recruitment-interview-content--start {
    align-items: flex-start;
}

.recruitment-interview-content--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    direction: rtl;
    margin-top: 70px;
}
.recruitment-interview-content--reverse .recruitment-interview-text {
    direction: ltr;
}

.recruitment-interview-container--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    direction: rtl;
}
.recruitment-interview-container--reverse .recruitment-interview-text {
    direction: ltr;
}

.recruitment-interview-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    padding: 0 20px;
}

.recruitment-interview-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.recruitment-interview-heading {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.recruitment-interview-paragraph {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 2.0;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.recruitment-interview-paragraph-mt {
    margin-top: 25px;
    display: inline-block;
}

@media (max-width: 1024px) {
    .recruitment-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .recruitment-hero-title {
        font-size: 36px;
    }
    
    .recruitment-interview {
        padding: 100px 0;
    }
    
    .recruitment-interview-container {
        padding: 0 30px;
    }
    
    .recruitment-interview-title {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .recruitment-interview-content {
        gap: 40px;
    }
    
    .recruitment-interview-image {
        height: 400px;
    }
    
    .recruitment-interview-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .recruitment-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .recruitment-hero-title {
        font-size: 28px;
    }
    
    .recruitment-interview {
        padding: 40px 0;
    }
    
    .recruitment-interview-container {
        padding: 0 20px;
    }
    
    .recruitment-interview-title {
        font-size: 24px;
        margin-bottom: 50px;
    }
    
    .recruitment-interview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recruitment-interview-image {
        height: 300px;
    }
    
    .recruitment-interview-text {
        padding: 0;
    }
    
    .recruitment-interview-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .recruitment-interview-paragraph {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

/* Video Modal（JSで表示・YouTube再生） */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-modal-close {
    position: absolute;
    top: -52px;
    right: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.video-modal-close::before,
.video-modal-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #333;
    border-radius: 1px;
}
.video-modal-close::before {
    transform: rotate(45deg);
}
.video-modal-close::after {
    transform: rotate(-45deg);
}
.video-modal-close:hover {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.video-modal-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}