/* ===================================
   外国人向け採用ページ共通スタイル
   =================================== */

/* Google Fonts: Noto Sans Myanmar（ミャンマー語ページのみ使用） */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@400;700&display=swap');

/* ===================================
   言語選択ハブ
   =================================== */
.global-lang-hub-wrap {
    text-align: center;
    padding: 40px 20px;
}

.global-lang-hub__title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: bold;
}

.global-lang-hub__lead {
    color: #555;
    margin-bottom: 40px;
    line-height: 1.9;
}

.global-lang-hub__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.global-lang-hub__list li::before {
    display: none !important;
}

.global-lang-hub__item {
    flex: 0 0 auto;
}

.global-lang-hub__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 36px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    min-width: 160px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.global-lang-hub__card:hover,
.global-lang-hub__card:focus {
    border-color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.global-lang-hub__flag {
    font-size: 2.6rem;
    line-height: 1;
}

.global-lang-hub__name {
    font-size: 0.95rem;
    font-weight: bold;
}

/* ===================================
   言語スイッチャーナビ
   =================================== */
.global-lang-nav {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 36px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.global-lang-nav__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    white-space: nowrap;
}

.global-lang-nav__list li::before {
    display: none !important;
}

.global-lang-nav__item a,
.global-lang-nav__item span {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    text-decoration: none;
    color: #666;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.global-lang-nav__item a:hover {
    color: #333;
    text-decoration: none;
}

.global-lang-nav__item--active span {
    color: #222;
    border-bottom-color: #333;
    font-weight: bold;
}

/* ===================================
   ミャンマー語フォント
   =================================== */
.global-myanmar,
.global-myanmar p,
.global-myanmar li,
.global-myanmar h1,
.global-myanmar h2,
.global-myanmar h3 {
    font-family: 'Noto Sans Myanmar', sans-serif;
}

/* ===================================
   レスポンシブ
   =================================== */
@media (max-width: 640px) {
    .global-lang-hub__list {
        gap: 12px;
    }

    .global-lang-hub__card {
        padding: 18px 24px;
        min-width: 130px;
    }

    .global-lang-hub__flag {
        font-size: 2rem;
    }
}
