*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP',sans-serif;
}

html, body {
    height: 100%;
    font-family: sans-serif;
    color: #222;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  margin: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

:focus {
  outline: none;
}
.nav-item-icon{
       display: flex;
    align-items: center;
    gap: 0 5px; 
}
.nav-item-with-submenu {
    position: relative;
    display: inline-block;
}

.nav-sub-menu {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;

    opacity: 0; 
    visibility: hidden; 
    transform: translateY(10px); 
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s; 
}

.nav-sub-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.nav-sub-menu a:hover {
    background-color: #f1f1f1;
}
.icon-top-lf {
    background: #4da7f2;
}
.icon-top-rt {
    background: #21324b;
}

.scroll-up-btn {
    position: fixed;
    height: 60px;
    width: 60px;
    right: 35px;
    bottom: 10px;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100rem;
    background: #eeeeeeb0;
    backdrop-filter: blur(3px);
    flex-direction: column;
    gap: 5px 0;
}

.scroll-up-btn.show {
    bottom: 50px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-btn:hover {
    transform: translateY(-7px) scale(1,1);
    background: #51a7f5;
}

.scroll-up-btn:hover span {
    color: #fff;
}

.scroll-up-btn img {
    transform: rotate(270deg);
    height: 25px;
}

.scroll-up-btn:hover svg path {
    fill: #fff;
}

.scroll-up-btn span {
    font-size: .9rem;
    color: #4f94bb;
}
        /* Header */
        #header {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            gap: 0 10px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            box-shadow: 0 0px 5px rgba(0,0,0,0.1);
            z-index: 999;
            transition: transform 0.3s ease-in-out;
            box-sizing: border-box;
            height: 60px; /* Đặt chiều cao cố định cho header */
        }

        .logo {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .logo-pc {
            max-width: 280px;
            height: auto;
        }

        .nav-effect-1 {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .nav-effect-1 a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 10px 15px;
            position: relative;
            transition: color 0.3s ease;
        }
.contact-button {
    display: flex;
    align-items: center;
    background-color: #4db3f0;
    color: white;
    padding: 13px 15px;
    border-radius: 100rem;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    gap: 0 10px;
    background: linear-gradient(to right, #3a8dde, #4dd0ff);
    box-shadow: rgb(205 205 205) 0px 4px 5px 0px;
    transition: all 0.3s ease;
}
.title-top {
    display: flex;
    align-items: center;
    position: relative;
    width: fit-content;
}
.title-top::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: radial-gradient(ellipse 100% 40% at 50% 50%, #17a2b8 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(23, 162, 184, 0.8) 0%, transparent 70%),
        radial-gradient(ellipse 90% 50% at 80% 60%, rgba(23, 162, 184, 0.6) 0%, transparent 70%);
    border-radius: 50px;
    transform: skewX(-5deg);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 20vh;
    min-height: 300px;
    background: url("../img/教育.png") no-repeat center center!important;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 70px;
    max-width: 1200px;
    margin: 70px auto;
    background-size: cover!important;
}
.hero-overlay {
    position: absolute;
    background: rgb(147 147 148 / 30%);
    width: 100%;
    height: 100%;
}
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            margin: 0 auto;
            padding: 0 40px;
            color: white;
        }

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.buttons-container {
    display: flex;
    gap: 100px;
    justify-content: center;
    margin-top: 70px;
    padding: 0 20px;
    flex-wrap: wrap;
}
.custom-button {
    background: white;
    border: 1px solid #0091DB;
    color: #3AA5E7;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    width: 260px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
        .custom-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
            border-color: #3fafc5;
        }

        .custom-button:hover::before {
            left: 100%;
        }

        .arrow-icon {
            font-size: 20px;
            transition: transform 0.3s ease;
        }
.custom-button:hover .arrow-icon {
    transform: translateY(5px);
}

.title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    position: relative;
    width: fit-content;
}
.circle {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #cdeeff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: radial-gradient(ellipse 100% 40% at 50% 50%, #17a2b8 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(23, 162, 184, 0.8) 0%, transparent 70%),
        radial-gradient(ellipse 90% 50% at 80% 60%, rgba(23, 162, 184, 0.6) 0%, transparent 70%);
    border-radius: 50px;
    transform: skewX(-5deg);
}
.circle::after {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #88CAEB;
}
.header {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.all-title {
    font-size: 6rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgb(192 211 232 / 60%);
    text-stroke: 2px rgba(255, 255, 255, 0.6);
    letter-spacing: 8px;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.7;
    line-height: 1;
}
.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #273775;
    margin-bottom: 50px;
    line-height: 1.3;
}

.title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: #595959;
    position: relative;
    width: fit-content;
    margin-bottom: 1rem;
}
.info-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}


        .footer {
            background: #f8f9fa;
            padding: 40px 20px 20px;
            margin-top: 60px;
            border-top: 1px solid #e9ecef;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        .footer-left {
            flex: 1;
        }

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

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #2196F3;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .company-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        .company-info {
            color: #666;
            font-size: 12px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

.social-icons {
    display: flex;
    gap: 10px 0;
    align-items: center;
    margin: 1.5rem 0;
}

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-links {
            display: flex;
            gap: 80px;
            flex: 2;
        }

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

        .footer-column-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }
.footer-link {
    color: #6e6e6e;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
    display: flex;
    align-items: center;
}
.footer-link:before {
    content: "●";
    color: #6DA6D7;
    position: absolute;
    left: -2px;
    font-size: 8px;
}

        .footer-link:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
            color: #999;
            font-size: 12px;
        }

        .footer-extra {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
.footer-extra {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.footer-extra-link:hover {
    text-decoration: underline;
}
.social-icon-ist{
    max-width: 30px;
}
.footer-extra-link{
    display: flex;
    gap: 0 5px;
    text-decoration: underline;
    font-size: 13px;
}
.footer-extra-link img{
    max-width: 12px;
}
.mynabi-btn:last-child {
    border-bottom: none;
}
.mynabi-btn {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.benefit-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.02);
    z-index: 10;
}

.benefit-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%); */
    display: flex;
    align-items: flex-end;
    padding: 30px 0px 0px 0px;
}

.benefit-content {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: linear-gradient(360deg, #5c5c5c, transparent);
    padding: 1rem 1rem 0.5rem 1rem;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.benefit-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-arrow::after {
    content: '→';
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.benefit-card:hover .benefit-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.recruitment-section {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.9) 0%, rgba(92, 179, 204, 0.9) 100%);
    min-height: 50vh;
    position: relative;
    margin: 5rem 0 10rem 0;
}
        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
.main-title-recu {
    font-size: 3rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 2rem;
}
.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    margin: 0 auto;
    height: 500px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.9) 0%, rgba(92, 179, 204, 0.9) 100%);
}
.recruitment-info-txt {
    max-width: 1200px;
    margin: 0 auto;
}
.navigation-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
.nav-item {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 0;
    margin: 0px 20px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    min-width: 200px;
    text-align: left;
}
        .nav-item:hover {
            color: #fff;
            border-bottom-color: rgba(255,255,255,0.8);
            transform: translateY(-2px);
        }

        .nav-item::after {
            content: '→';
            position: absolute;
            right: 0px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            opacity: 0.7;
            transition: transform 0.3s ease;
        }

        .nav-item:hover::after {
            transform: translateY(-50%) translateX(5px);
        }
.nagare-img-sp{
    display: none;
}
.cta-section {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}
.cta-card {
    background: rgb(65 92 110);
    border-radius: 8px;
    padding: 50px 60px;
    color: white;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.7s ease;
    cursor: pointer;
    overflow: hidden;
}
        .cta-card:hover {
            box-shadow: 0 12px 48px rgba(0,0,0,0.3);
        }

        .cta-text {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
            opacity: 0.9;
            transition: all 0.5s ease;
        }

.cta-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 2px;
    transition: all 0.5s ease;
}

        .cta-arrow {
            transition: all 0.5s ease;
        }

        .cta-card:hover .cta-arrow {
            transform: translateY(-50%) rotate(90deg) translateX(10px);
            opacity: 1;
        }
.cta-button{
       display: flex;
    align-items: center;
    justify-content: space-between; 
}
        /* Entry options panel */
        .entry-options {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            margin-top: 30px;
            transition: all 0.5s ease;
            transform: translateY(-20px);
        }

        .cta-card:hover .entry-options {
            max-height: 200px;
            opacity: 1;
            transform: translateY(0);
        }

        .entry-buttons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .entry-button {
            flex: 1;
            background: white;
            border: none;
            border-radius: 6px;
            padding: 20px;
            color: #1e2749;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .entry-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            background: #f8f9fa;
        }

        .entry-button .logo {
            height: 24px;
            width: auto;
            margin-right: 10px;
        }

        .entry-button .text {
            flex: 1;
            text-align: left;
        }

        .entry-button .arrow {
            font-size: 16px;
            opacity: 0.7;
        }

        .mynavi-button {
            border-left: 4px solid #00bcd4;
        }

        .career-button {
            border-left: 4px solid #4caf50;
        }
        .entry-buttons a:nth-child(3){
                border-left: 4px solid #ef6626;
        }

.btn-contact {
    display: flex;
}

.entry-section {
    position: relative;
    display: inline-block;
}

.icon-top {
    width: 140px;
    height: 60px;
    color: #ffffff;
    font-size: 1.1rem;
}
.mynabi-wrap {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 5;
    overflow: hidden;
    margin-top: 5px;
    width: 280px;
}
.mynabi-wrap a:nth-child(1) {
    border-left: 4px solid #00bcd4;
}
.mynabi-wrap a:nth-child(2) {
    border-left: 4px solid #4caf50;
}
.mynabi-wrap a:nth-child(3) {
    border-left: 4px solid #ef6626;
}
.mynabi-btn:last-child {
    border-bottom: none;
}
.mynabi-wrap {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 5;
    overflow: hidden;
    margin-top: 5px;
    width: 280px;
}

.entry-section:hover .mynabi-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.arrow {
    color: #4a90e2;
    font-size: 20px;
    font-weight: 300;
}



/****************************************All-share****************************************/

.recruitment-small{
    margin-top: 2rem;
    display: block;
}
.envi-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    width: 100%;
}
.growth-box {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}
#growth {
    max-width: 1200px;
    margin: 3rem auto;
}
.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}
        
        .training-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card-image {
            width: 100%;
            height: 220px;
            background-color: #e9ecef;
            position: relative;
        }
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 -60px;
}
        .card-content {
            padding: 25px;
        }
        
        .card-title {
            font-size: 20px;
            font-weight: bold;
            color: #2196F3;
            margin-bottom: 12px;
            text-align: center;
        }
        
        .card-subtitle {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .card-description {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            text-align: center;
        }
        
        .feature-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        
        .feature-description {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }
        
        .screen-icon {
            position: absolute;
            right: 20px;
            top: 20px;
            width: 40px;
            height: 30px;
            background: #2196F3;
            border-radius: 3px;
        }
.steps-container {
    max-width: 1200px;
    margin: 5rem auto;
    gap: 0 50px;
}
.growth-box-container, .steps-box-container{
    display: flex;
    align-items: start!important;
    justify-content: space-between;
    flex-direction: column;
}
.nagare-img{
    width: 100%;
}


/* =================================================================== */
/* CSS RESPONSIVE TỔNG HỢP (HEADER, FOOTER & CONTENT)                  */
/* =================================================================== */

/* --- Kiểu cơ bản cho Hamburger Menu (cần thiết để hoạt động) --- */
.nav-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: none; /* Mặc định ẩn trên màn hình lớn */
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}
/* Animation cho hamburger thành dấu X khi active */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}
@media (min-width: 993px) {
    .nav-item-with-submenu:hover .nav-sub-menu {
        opacity: 1; 
        visibility: visible; 
        transform: translateY(0); 
    }

    /* Trả lại position absolute cho menu con trên desktop */
    .nav-sub-menu.show {
        position: absolute;
    }
}

/* --- Tablet (dưới 1024px) --- */
@media (max-width: 1024px) {
    /* Header */
    .icon-top-rt {
        display: none!important;
    }
    .entry-section a, .mynabi-wrap {
        border: none;
    }
    .mynabi-btn {
        padding: 0 20px;
    }
.navigation-menu {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: space-between;
}
    /* Content */
    #growth, .steps-container, .benefits-container {
        padding: 0 20px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .main-title {
        font-size: 30px;
    }
    .header.growth-box-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .training-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-container {
        gap: 20px;
    }
    .footer-links {
        gap: 20px;
        flex: none;
    }
.benefit-card {
    height: 250px;

}
.content-wrapper {
    height: auto;
    padding: 60px 20px;
}
.cta-card {
    padding: 30px;
}
.cta-title {
    font-size: 28px;
}
.nav-item {
    width: 40%;
    text-align: center;
}
.nav-item::after {
    right: 20px;
}
.recruitment-section {
    margin: 5rem 0 0rem 0;
}





}



@media (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {

.icon-top-rt {
    display: block!important;
}
.mynabi-wrap a:nth-child(1),
.mynabi-wrap a:nth-child(2),
.mynabi-wrap a:nth-child(3){
    height: 50px;
}



}

/* --- Kích hoạt Menu Mobile (dưới 992px) --- */
@media (max-width: 992px) {
    #header {
        padding: 0 10px;
    }
    .hamburger {
        display: flex; /* Hiển thị hamburger */
    }
    .nav-container {
        position: fixed;
        top: 60px; /* Phải khớp với chiều cao header của bạn */
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-bottom: 6rem;
    }
    .nav-container.active {
        transform: translateX(0);
    }
    .nav-effect-1 {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .nav-effect-1 a {
        font-size: 1.2rem;
        padding: 15px 0;
        width: 80%;
        border-bottom: 1px solid #eee;
    }
    .nav-effect-1 a:last-child {
        border-bottom: none;
    }
    .btn-contact {
        flex-direction: column;
        gap: 15px;
        width: 80%;
    }
.icon-top {
    width: 70%;
    height: 60px;
    margin: 0 auto;
    display: block;
    max-width: 250px;
}
    .entry-section {
        max-width: 250px;
        margin: 0 auto;
    }
    .mynabi-wrap {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        gap: 0.5rem;
        display: flex;
        flex-direction: column;
    }
    .entry-section:hover .mynabi-wrap {
        transform: none;
    }
    .mynabi-btn img {
        width: 200px;
    }
.mynabi-wrap a:nth-child(1),
.mynabi-wrap a:nth-child(2),
.mynabi-wrap a:nth-child(3){
        height: 40px;
}
.mynabi-btn img {
    width: 200px;
}
p.entry-text {
    font-weight: 600;
}





}


/* --- Mobile (dưới 768px) --- */
@media (max-width: 767.98px) {
    /* Header */
    #header {
        height: 70px; /* Tăng chiều cao header trên mobile */
    }

.hero-section {
    min-height: 150px;
    margin-top: 70px;
    border-radius: 0;
}
.hero-content {
    padding: 0 10px;
}
.hero-title {
    font-size: 2rem;
}
.buttons-container {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
}
    #growth, .steps-container {
        margin: 0 auto;
        padding: 0 15px;
    }
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .main-title {
        font-size: 24px; /* Giảm cỡ chữ các tiêu đề phụ */
        margin-bottom: 20px;
    }
    .training-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .benefit-card {
        height: 250px;
    }

    /* Footer */
    .footer-container, .footer-links {
        flex-direction: column;
    }
    .footer-links {
        text-align: center;
        display: none; /* Ẩn các cột link phụ ở footer */
    }
    .footer-column {
        align-items: center;
    }
.benefits-grid {
    display: block;
    grid-template-columns: none;
    padding: 0;
    gap: 0;
}

.benefit-card {
    height: auto; /* Tự động điều chỉnh chiều cao */
    overflow: visible;
}

/* Biến thẻ a thành một dòng flexbox */
.benefit-card .benefit-image a {
    display: flex;
    align-items: center;
    gap: 15px; /* Khoảng cách giữa ảnh và chữ */
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef; /* Đường kẻ phân cách */
}

/* Xóa đường kẻ ở mục cuối cùng */
.benefits-grid .benefit-card:last-child .benefit-image a {
    border-bottom: none;
}

/* Thu nhỏ ảnh lại thành thumbnail */
.benefit-card .benefit-image {
    flex: 0 0 100px; /* Chiều rộng cố định 100px */
}

.benefit-card .benefit-image img {
    border-radius: 5px; /* Bo góc nhẹ cho ảnh */
}

/* Gỡ bỏ lớp phủ (overlay) */
.benefit-card .benefit-overlay {
    position: static;
    background: none;
    padding: 0;
    flex: 1; /* Chiếm hết phần không gian còn lại */
    display: flex;
    align-items: center;
}

/* Định dạng lại tiêu đề */
.benefit-card .benefit-title {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

/* Định dạng lại mũi tên */
.benefit-card .benefit-arrow {
    background: none;
    backdrop-filter: none;
    width: auto;
    height: auto;
}

.benefit-card .benefit-arrow::after {
    content: '→';
    color: #4da2dc; /* Màu xanh dương */
    font-size: 18px;
    font-weight: 300; /* Làm mũi tên mảnh hơn */
}

/* Tắt hiệu ứng hover trên mobile */
.benefit-card:hover {
    transform: none;
}
.benefit-image img {
    width: 40%;
}

.benefit-card .benefit-content {
    width: 100%;
    background: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.benefit-card .benefit-title {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}
 .benefits-top{
    margin-top: 2rem;
 }
.main-title-recu {
    font-size: 2rem;
}
.benefit-image img {
    width: 40%;
}
.nav-item {
    width: auto;
    min-width: 160px;
    padding: 20px 0;
    text-align: left;
    margin: 0;
}

.cta-arrow {
    width: 20px;
}
.cta-button {
    align-items: center;
    gap: 15px;
    flex-direction: row;
    padding-bottom: 1rem;
}
.entry-options {
margin-top: 0px;
}
.all_l_wrap {
    gap: 0rem 0;

}

.ryokei-img img:nth-child(1) {
    max-width: 80%;
    margin: 0 auto;
}
.navigation-menu {
    gap: 10px;
    justify-content: space-between;
}
.cta-card {
    padding: 30px 20px;
}
.cta-section {
    width: 100%;
}
.cta-title {
    font-size: 22px;
}
.entry-button {
    padding: 10px;
    max-height: 50px;
}
.entry-buttons a:nth-child(3) {
    border-left: 4px solid #ef6626;
    min-height: 50px;
}
.entry-buttons {
    flex-direction: column;
    gap: 10px;
}
.entry-button career-button p{
      font-size: 1rem;
    font-weight: bold;  
}
.icon-top {
    width: 100%;
    max-width: 250px;
}
.scroll-up-btn {
    height: 50px;
    width: 50px;
    right: 15px;
}
.scroll-up-btn.show {
    bottom: 20px;
}

.training-grid, .benefits-grid {
    grid-template-columns: 1fr;
    gap: 50px!important;
}
.nagare-img-sp{
    display: block;
    width: 70%;
}
.nagare-img{
    display: none;
}








}











































