@font-face {
    font-family: "Proxima Nova";
    src: url("https://s3-ap-southeast-1.amazonaws.com/jobsign.production.public/fonts/ProximaNovaRegular.otf");
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("https://s3-ap-southeast-1.amazonaws.com/jobsign.production.public/fonts/ProximaNovaLight.otf");
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("https://s3-ap-southeast-1.amazonaws.com/jobsign.production.public/fonts/ProximaNovaBold.otf");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("https://s3-ap-southeast-1.amazonaws.com/jobsign.production.public/fonts/ProximaNovaSemiBold.otf");
    font-weight: 500;
    font-display: swap;
}

/* Main Styles */
body {
    font-family: "Proxima Nova", 'DM Sans', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}

/* Language Switcher */
.language-switcher {
    background: rgba(184, 210, 220, 0.7);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 4px 0;
}

.lang-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.lang-btn:hover, .lang-btn.active {
    background-color: #fff;
    color: #000;
}

/* Language specific content */
.lang-en, .lang-ja {
    display: none;
}

/* Banner Section */
.banner {
    position: relative;
    height: 490px;
    max-height: 490px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1; /* 追加 */
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
}

.banner-content-title {
    font-weight: bold;
    font-size: 42px;
    color: #fff;
    line-height: 56px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content-title-name {
    color: #1089FF;
}

/* Logo Link - NEW style outside banner */
#logo-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    display: block;
    width: 100px;
    height: 40px;
}

#logo-link .logo {
    position: static;
    height: 24px;
}

/* Typography - 3種類に整理 */
/* 大サイズ：ヘッドライン用 */
.fs-large {
    font-size: 48px;
    line-height: 56px;
}

/* 中サイズ：小見出し用 */
.fs-medium {
    font-size: 32px;
    line-height: 38px;
}

/* 小サイズ：本文用 */
.fs-small {
    font-size: 18px;
    line-height: 28px;
}

/* 旧クラスから新クラスへのマッピング */
.fs-62, .fs-58, .fs-48 {
    font-size: 48px;
    line-height: 56px;
}

.fs-40, .fs-36, .fs-32 {
    font-size: 32px;
    line-height: 38px;
}

.fs-24, .fs-20 {
    font-size: 18px;
    line-height: 28px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-4 {
    margin-top: 1.5rem;
}

.font-bold {
    font-weight: 700;
}

.font-dm {
    font-family: 'DM Sans', sans-serif !important;
}

/* Spacing */
.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-12 {
    margin-bottom: 12px;
}

/* Background Colors */
.bg-dark-sc {
    background-color: #000000;
}

.bg-grey {
    background-color: #F5F5F5;
}

/* Text Colors */
.color-white {
    color: #fff;
}

.color-primary {
    color: #1089FF;
}

.opc-70 {
    opacity: 0.7;
}

/* Images */
.mw-502 {
    max-width: 400px;
}

.w-100 {
    width: 100%;
}

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

/* Border styles */
.border-text-left {
    border-left: 4px solid #333;
    padding-left: 20px;
}

/* Logo StockCode */
.logo-stockcode {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-stockcode a {
    text-decoration: none;
    color: inherit;
}

/* Link Styles */
.link {
    margin-left: 40px;
    cursor: pointer;
}

.link:hover {
    color: #1089FF !important;
}

.cursor-pointer {
    cursor: pointer;
}

.a:hover {
    color: #1089FF;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.7);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    height: 100px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-logo {
    cursor: pointer;
    width: 123px;
    height: 24px;
}

.footer-copy-right {
    color: #A1A4AC;
    font-size: 14px;
}

.footer-copy-right > #footer-copy-right-year {
    color: #A1A4AC;
}

/* Contact Section */
.simcode-bottom {
    position: relative;
    background: rgba(184, 210, 220, 0.7);
}

.simcode-bottom img {
    position: absolute;
    right: 0;
    height: 400px;
}

.contact-bottom {
    width: 440px;
    z-index: 1;
    position: relative;
    color: #fff;
    text-align: center;
}

.btn-primary {
    height: 46px;
    padding: 5px 24px;
    border-radius: 100px;
    background-color: #1089FF;
    border-color: #1089FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    color: #1089FF;
    border-color: #1089FF;
    border-radius: 100px;
    padding: 5px 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-primary:hover {
    background-color: #1089FF;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.more-details-btn {
    font-size: 14px;
}

/* 統一したバナーサイズのため削除 */

.text-end {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 1200px) and (min-width: 994px) {
    .logo-stockcode {
        font-size: 52px !important;
    }
}

.row > * {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 994px) {
    .mb-20-pad {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    /* レスポンシブ対応 - 文字サイズを3種類に */
    .fs-large {
        font-size: 36px;
        line-height: 46px;
    }
    
    .fs-medium {
        font-size: 24px;
        line-height: 32px;
    }
    
    .fs-small {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* 旧クラスとの互換性を維持 */
    .fs-62, .fs-58, .fs-48 {
        font-size: 36px;
        line-height: 46px;
    }
    
    .fs-40, .fs-36, .fs-32 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .fs-24, .fs-20 {
        font-size: 16px;
        line-height: 24px;
    }
    
    .py-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .banner-content-title {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (max-width: 768px) {
    .contact-bottom {
        width: 100%;
    }

    .simcode-bottom img {
        display: none;
    }

    .row-reversed {
        flex-direction: column-reverse;
    }

    .mb-mobile {
        margin-bottom: 16px;
    }

    .py-20-mobile {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .mw-502 {
        max-width: 300px;
    }

    .mb-20-mobile {
        margin-bottom: 20px;
    }
    
    .row > * {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* モバイル用の3種類のサイズ */
    .fs-large {
        font-size: 28px;
        line-height: 36px;
    }
    
    .fs-medium {
        font-size: 20px;
        line-height: 28px;
    }
    
    .fs-small {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* 旧クラスとの互換性を維持 */
    .fs-62, .fs-58, .fs-48 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .fs-40, .fs-36, .fs-32, .fs-32-mobile {
        font-size: 20px;
        line-height: 28px;
    }
    
    .fs-24, .fs-20 {
        font-size: 16px;
        line-height: 24px;
    }
    
    .header {
        padding: 0 16px;
    }

    .navbar {
        display: none;
    }

    .banner-content {
        padding: 0 20px;
        margin-top: 16px;
    }

    .banner-content-title {
        width: 100%;
        font-size: 24px;
        line-height: 32px;
    }
    
    .banner {
        height: 350px;
        max-height: 350px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    /* 小型モバイル用の3種類のサイズ */
    .fs-large {
        font-size: 24px;
        line-height: 32px;
    }
    
    .fs-medium {
        font-size: 18px;
        line-height: 24px;
    }
    
    .fs-small {
        font-size: 14px;
        line-height: 20px;
    }
    
    /* 旧クラスとの互換性を維持 */
    .fs-62, .fs-58, .fs-48 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .fs-40, .fs-36, .fs-32 {
        font-size: 18px;
        line-height: 24px;
    }
    
    .fs-24, .fs-20 {
        font-size: 14px;
        line-height: 20px;
    }
    
    .banner {
        height: 350px;
    }
    
    /* 削除: 統一したバナーサイズ */
    
    .banner-content-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .logo {
        height: 12px;
    }
    
    .contact-bottom {
        padding: 40px 0;
    }
    
    .btn-primary {
        padding: 8px 20px;
        font-size: 16px;
    }
    
    .mw-502 {
        max-width: 250px;
    }
}

.text-uppercase {
    text-transform: uppercase;
}

.about-us {
    position: relative;
}

.fst-italic {
    font-style: italic;
}