@charset "UTF-8";

/***************************************************/
/* Common                                          */
/***************************************************/

.careers a {
    text-decoration: none;
    color: initial;
    transition: all 0.3s ease;
}

/***************************************************/
/* Section */
.careers section.content-section {
    padding: 80px 0;
}
.careers section.content-section:empty {
    padding: 0;
    height: 0;
}

/* Section Color */
.careers section {
    background-color: #f8f6f1;
    overflow: hidden;
}

.careers section:nth-of-type(odd):nth-of-type(n+3) {
  background-color: #ffd976;
}

/* Content Width */
.careers .container {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.container > * {
    position: relative;
    z-index: 1;
}

/* Section Watermark */
.careers .container .bg-text {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(90deg) translate(0, -50%);
    transform-origin: top left;
    font-size: 150px;
    line-height: 1;
    font-weight: bold;
    z-index: 0;
}

@media (max-width: 1230px) {
    .careers .container .bg-text {
        left: calc((100vw - 100%) / -2 + 80px);
    }
}

/* Section Watermark Collar */
.careers section .bg-text {
    color: #ffd976B3;
}

.careers section:nth-of-type(odd):nth-of-type(n+3) .bg-text {
    color: #f8f6f1B3;
}

/* Section H2 Title */
.careers .content-section h2 {
    text-align: center;
    font-size: 60px;
    color: #705342;
    padding-bottom: 20px;
}

.careers section:nth-of-type(odd):nth-of-type(n+3) h2 {
    color: #41b8d5;
}

.careers .content-section h2 .blue {
    color: #2e3e96;
}

.careers .content-section h2 .red {
    color: #c6171e;
}

/* Section Description */
.careers .content-section .description {
    font-size: 22px;
    color: #635a92;
    text-align: center;
    padding-bottom: 30px;
}

/***************************************************/
/* Header                                          */
/***************************************************/
.careers .careers-header {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 64px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.07);
    z-index: 1000;
    transition: all 0.3s ease;
}
.careers .careers-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 71px;
    padding: 0 35px;
}
/* Header Logo */
.careers .careers-header__logo {
    width: 300px;
}
.careers .careers-header__logo a {
    display: flex;
    align-items: center;
    width: 100%;
}
/* Header Nav */
.careers .careers-header .careers-nav {
    display: flex;
    align-items: center;
    gap: 23px;
    width: 100%;
    height: 100%;
    flex: 1; 
}
.careers .careers-header .careers-nav ul {
    list-style: none;
    display: flex;
    margin-left: auto;
    align-content: center;
    height: 100%;
    gap: 24px;
}
.careers .careers-header .careers-nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 16px;
}
.careers .careers-header .careers-nav ul li a {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    color: initial;
}
.careers .careers-header .careers-nav ul li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #c6171e;
    transform: scaleX(0);
    transition: all 0.3s ease;
}
.careers .careers-header .careers-nav ul li a:hover {
    color: #c6171e;
}
.careers .careers-header .careers-nav ul li a:hover::after {
    transform: scaleX(100%);
}
/* Entry Button */
.careers .careers-header .entry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 7px;
    border-radius: 20px;
    background: #c6171e;
    border: 1px solid #c6171e;
    color: #fff;
    padding: 12px 19px;
    width: 168px;
    height: 40px;
}
.careers .careers-header .entry-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #c6171e;
}
.careers .careers-header .entry-btn:visited {
    color: #fff;
}

/* Hamburger Menu Button */
.careers .careers-header .hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}
.careers .careers-header .hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}
.careers .careers-header .hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.careers .careers-header .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}
.careers .careers-header .hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* On Scroll */
.careers .careers-header.scrolled {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 10px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.careers .careers-header.scrolled .header-content {
    height: auto;
}
.careers .careers-header.scrolled .careers-header__logo {
    width: 250px;
}
.careers .careers-header.scrolled .careers-nav ul li a::after {
    content: none;
}

/***************************************************/
/* Hero Section                                    */
/***************************************************/
/* Archive */
.careers .hero {
    background: url("/wp-content/themes/engitech-child/assets/img/renew/page/careers/careers-hero.jpg") no-repeat center center;
    background-size: cover;
    padding: 120px 0 80px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    height: 750px;
}

/* Single */
.careers section.hero-single {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 160px 0 80px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.careers .hero-single .title-container {
    margin: 0 auto;
    text-align: center;
    width: 85%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.5) 0%,
        rgba(240, 248, 255, 0.8) 100%);
    border-radius: 18px;
    border: 1px solid #fff;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3); */
}

.careers .hero-single .title-container {
    animation: float 4s ease-in-out infinite;
}

/* Archive Title */
.careers .hero h1 {
    font-size: 54px;
    font-weight: bold;
    color: #2e3e96;
    letter-spacing: 0.1em;
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px  1px 0 #fff,
        1px  1px 0 #fff;
}

/* Single Title */
.careers .hero-single .title-container h1 {
    font-size: 50px;
    color: #000;
    text-align: center;
    margin: 0;
}
.careers .hero-single .title-container span {
    font-size: 20px;
    color: #000;
    text-align: center;
}

/***************************************************/
/* Sharing Innovations Section                     */
/***************************************************/
/* Sharing Section Title */
.careers .sharing-section h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

/* Sharing Circle Img */
.careers .sharing-section .innovation-circle {
    text-align: center;
}

.careers .sharing-section .circle-center img {
    width: 100%;
}


/***************************************************/
/* Culture Section                                 */
/***************************************************/
/* Culture Section Layout */
.careers .culture-section .culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    place-items: center;
}

/* Culture Section Item */
.careers .culture-section .culture-item {
    padding: 30px;
    background: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
}

.careers .culture-section .culture-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

/* Culture Section Icon */
.careers .culture-section .culture-icon {
    width: 100%;
    margin: 0 auto;
}

/* Culture Section SVG */
.careers .culture-section .culture-icon svg {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

.careers .culture-section .culture-icon text {
    fill: #333333;
    font-weight: normal;
    font-size: 35px;
    text-anchor: middle;
    dominant-baseline: central;
}

/* Culture Section H3 Title */
.careers .culture-section .culture-item h3 {
    color: #3e8dbd;
    font-size: 26px;
}

/* Culture Section Button */
.careers .culture-section .culture-item .culture-btn {
    background: #c6171e;
    color: white;
    font-size: 22px;
    line-height: 50px;
    font-weight: bold;
    border-radius: 25px;
    margin: 10px;
}


/***************************************************/
/* Work Section                                    */
/***************************************************/
/* Case Title Hidden */
.careers .work-section .container .work-container .c-title-wrap {
    display: none;
}

/* Case Background Reset */
.careers .work-section .container .work-container .p-home__cases.bg-gray {
    padding-top: 0;
    background: none;
}

/* Case Image */
.careers .work-section .container .work-container .top-case-item img {
    max-width: 100%;
    height: auto;
}

/* Case Image Anchor */
.careers .work-section .container .work-container .top-case-items .c-card__item a {
    height: 100%;
}


/***************************************************/
/* People Section                                  */
/***************************************************/
.careers .people-section .people-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 50px;
    padding: 20px 0 30px;
}

.careers .people-section .swiper-wrapper {
    padding: 20px 0 30px;
    align-items: stretch;
}

/* People Slider Note Item */
.careers .people-section .note-item {
    display:flex;
    flex-flow: column;
    max-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers .people-section .note-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.careers .people-section .note-item img {
    width: 100%;
}

.careers .people-section .note-item h3 {
    text-align: left;
    padding: 20px 0;
}

.careers .people-section .note-item .publication-date {
    margin-top: auto;
    padding-top: 10px;
    text-align: left;
    font-size: 12px;
}

/* Swiper Nav Button */
.careers .people-section .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 50px;
}

.careers .people-section .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 50px;
}

.careers .people-section .swiper-button-prev,
.careers .people-section .swiper-button-next {
    width: 64px;
    height: 64px;
    background-color: rgba(128, 128, 128, 0.5); /* 半透明グレー */
    border-radius: 50%; /* 円形 */
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 0; /* Swiperのデフォルトマージンをリセット */
}

/* Default Swiper Icon Hidden */
.careers .people-section .swiper-button-prev::after,
.careers .people-section .swiper-button-next::after {
    content: '';
    display: none;
}

/* SVG Arrow Icon */
.careers .people-section .swiper-button-prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px;
}

.careers .people-section .swiper-button-next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8.59 16.59L10 18l6-6-6-6-1.41 1.41L13.17 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px;
}

/* Hover Effect */
.careers .people-section .swiper-button-prev:hover,
.careers .people-section .swiper-button-next:hover {
    background-color: rgba(128, 128, 128, 0.7);
    transform: scale(1.1);
}

/* Disabled Style */
.careers .people-section .swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.careers .people-section .swiper-button-disabled:hover {
    transform: none;
    background-color: rgba(128, 128, 128, 0.5);
}


/***************************************************/
/* Welfare Section                                 */
/***************************************************/
.careers .welfare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.careers .welfare-grid .welfare-item {
    background: white;
    border: 2px solid #2e3e96;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers .welfare-grid .welfare-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

.careers .welfare-grid div.welfare-item:nth-child(2) {
    grid-row: span 2;
}

.careers .welfare-grid .welfare-item h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    line-height: 50px;
    border-radius: 25px;
    background: #2e3e96;
    color: #fff;
}

.careers .welfare-grid .welfare-item ul {
    list-style: disc;
    text-align: left;
    padding: 0 10px 10px 25px;
}

.careers .welfare-grid .welfare-item p {
    padding-bottom: 10px;
    text-align: justify;
    text-justify: inter-character;
    line-break: strict;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/***************************************************/
/* Chance Section                                  */
/***************************************************/
.careers .chance-section .sub-title {
    display: flex;
    align-items: center;
    font-size: 30px;
}

.careers .chance-section .sub-title::before,
.careers .chance-section .sub-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: #fff;
    margin: 0 15px;
}

/* 資格情報（コメントアウト） */
.careers .chance-section .chance-icons {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin: 50px 0;
}

.careers .chance-section .chance-icons .chance-icon {
    text-align: center;
    color: white;
}

.careers .chance-section .chance-icons > * {
    flex: 1;
}

.careers .chance-section .chance-icon-circle img {
    max-height: 150px;
}

.careers .chance-section .chance-icon h3 {
    font-size: 26px;
    color: #c6171e;
    line-height: 1.3;
}

.careers .chance-section .chance-icon h3 span {
    display: block;
    font-size: 0.8em;
}

/* Contents */
.careers .chance-section .chance-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.careers .chance-section .chance-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers .chance-section .chance-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.careers .chance-section .chance-item h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    line-height: 50px;
    border-radius: 25px;
    background: #2e3e96;
    color: #fff;
    text-align: center;
}

.careers .chance-section .chance-item p {
    text-align: justify;
    text-justify: inter-character;
    line-break: strict;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/***************************************************/
/* Member Section                                  */
/***************************************************/
.careers .member-section {
    min-height: 750px;
}

.careers .member-section h2 {
    line-height: 1.2;
    margin-bottom: 20px;
}

.careers .member-section .member-buttons {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 100px 0;
}

.careers .member-section .member-btn {
    padding: 0 50px;
    border: none;
    border-radius: 50px;
    font-size: 30px;
    line-height: 100px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    min-width: 320px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.careers .member-section .member-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.careers .member-section .member-btn.primary {
    background: #2e3e96;
    color: #fff;
}

.careers .member-section .member-btn.primary:hover {
    background: #fff;
    color: #2e3e96;
}

.careers .member-section .member-btn.secondary {
    background: #c6171e;
    color: #fff;
}

.careers .member-section .member-btn.secondary:hover {
    background: #fff;
    color: #c6171e;
}


/***************************************************/
/* Disabled Section                                */
/***************************************************/
/* 問い合わせ */
.careers .c-cta {
    display: none;
}


/***************************************************/
/* Single Section                                  */
/***************************************************/

/* Job Details Section *****************************/
.careers .job-details table {
    border: 1px solid #ddd;
}
.careers .job-details table th,
.careers .job-details table td {
    border: 1px solid #ddd;
    padding: 20px;
}
.careers .job-details table th {
    width: 300px;
    text-align: center;
    vertical-align: middle;
    background-color: #eee;
}

.careers .job-details table td ul {
    list-style: disc;
    padding-left: 25px;
}

/* Flow Section ************************************/
.careers .flow-container {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.careers .flow-steps {
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 1300px;
}

.careers .flow-steps .step {
    max-width: 350px;
    flex: 1;
    background: #fffcf3;
    padding: 50px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers .flow-steps .step:nth-child(even) {
    background: #feefdc;
}

.careers .flow-steps .step:hover {
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.careers .step-icon img {
    width: auto;
    height: 120px;
}

.careers .step h3 {
    padding: 20px 0;
    font-size: 25px;
    color: #506e9a
}
.careers .step-description {
    text-align: left;
    text-align: justify;
}

.careers .arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 46px solid #f0ca42;
    border-top: 36px solid transparent;
    border-bottom: 36px solid transparent;
    will-change: transform, opacity;
    z-index: 10;
}

.careers .flow-steps .step:nth-child(1) .arrow {
    display: none;
}

/* Job Lists Section *******************************/
.careers .job-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.careers .job-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 25px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers .job-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.careers .job-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.careers .job-description {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 25px;
}

.careers .apply-button {
    background-color: #dc143c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-end;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.careers .apply-button svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.careers .apply-button:hover {
    background-color: #b91c3c;
}

.careers .apply-button {
    background-color: #dc143c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-end;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.careers .apply-button svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* FAQ Section *************************************/
.careers .qa-item {
    background: #fffffff2;
    border-radius: 10px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers .qa-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.careers .question-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.careers .question-icon,
.careers .answer-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.careers .question-icon {
    background: #41b8d5;
    border: 2px solid #41b8d5;
    color: white;
}

.careers .answer-icon {
    background: #fff;
    border: 2px solid #41b8d5;
    color: #2c3e50;
}

.careers .question {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    flex: 1;
}

.careers .answer-container {
    display: flex;
    align-items: center;
    padding-left: 30px;
    align-items: flex-start;
}

.careers .answer {
    font-size: 20px;
    line-height: 1.8;
    flex: 1;
}

/***************************************************/

.careers .info-session-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.careers .image-left .info-session-wrapper {
    flex-direction: row-reverse;
}

.careers .info-session-image {
    max-width: 430px;
    width: calc(100% - 20px);
    margin-right: 20px;
    border-radius: 10px;
    box-shadow: 20px 20px 0 #4a9bb488;
}

.careers .info-session-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.careers .info-session-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.careers .info-session-text {
    font-size: 18px;
}

.careers .sub-description {
    color: #635a92;
}

.careers .info-session-list {
    padding: 30px 0 30px 30px;
    list-style-type: disc;
}
.careers .info-session-list li {
    padding-bottom: 10px;
}

.careers .cta-button {
    display: block;
    margin: 0 auto;
    padding: 0 60px;
    width: fit-content;
    background: #c6171e;
    border-radius: 40px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    line-height: 80px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.careers .cta-button:hover {
    background: #fff;
    color: #c6171e;
}

.careers .cta-button:active {
    transform: translateY(0);
}

.careers section.blank-section {
    padding: 0;
}

/***************************************************/
/* Responsive Section                              */
/***************************************************/

/* Mobile Menu Styles ******************************/
@media screen and (max-width: 1160px) {
    .careers .careers-header {
        padding: 0;
     }
    .careers .careers-header .header-content {
        padding: 0 20px;
    }
    .careers .careers-header .hamburger-btn {
        display: flex;
    }
    .careers .careers-header .careers-nav {
        position: fixed;
        padding: 50px;
        top: 0;
        right: calc(-100% - 32px);
        width: auto;
        height: auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
    }
    .careers .careers-header .careers-nav.active {
        right: 0;
    }
    .careers .careers-header .careers-nav ul {
        flex-direction: column;
        gap: 0;
        height: auto;
        margin: 0;
        margin-bottom: 40px;
    }
    .careers .careers-header .careers-nav ul li {
        height: auto;
        font-size: 18px;
    }
    .careers .careers-header .careers-nav ul li a {
        height: auto;
        padding: 10px 0;
    }
    .careers .careers-header .careers-nav ul li a::after {
        display: none;
    }
    .careers .careers-header .entry-btn {
        position: static;
    }
    .careers .careers-header__logo {
        width: 200px;
    }
    .careers .careers-header.scrolled {
        padding: 10px;
    }
    .careers .careers-header.scrolled .header-content {
        padding: 0;
    }
    .careers .careers-header.scrolled .careers-header__logo {
        width: 200px;
    }
    .careers .content-section h2 {
       font-size: 40px;
    }
}

/* Culture Section *********************************/
@media screen and (max-width: 1160px) {
    .careers .culture-section .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .careers .culture-section .culture-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .careers .culture-section .culture-grid .culture-item {
        padding: 20px;
    }
}

/* Welfare Section *********************************/
@media screen and (max-width: 991px) {
    .careers .welfare-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .careers .welfare-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Chance Section **********************************/
@media screen and (max-width: 768px) {
    .careers .chance-section .chance-content {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Member Section **********************************/
@media screen and (max-width: 768px) {
    .careers .member-section {
        min-height: auto;
    }
    .careers .member-section h2 br {
        display: none;
    }
    .careers .member-section .member-buttons {
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 30px;
    }
    .careers .member-section .member-buttons .member-btn {
        max-width: 400px;
        font-size: 24px;
    }
}

/* Common ******************************************/
@media screen and (max-width: 768px) {
    /* Section Description */
    .careers .content-section .description {
        font-size: 20px;
        line-height: 1.5;
    }
}

/* Job Details Section *****************************/
@media screen and (max-width: 768px) {
    .careers .job-details table {
        border: none;
    }
    .careers .job-details table tr {
        display: block;
    }
    .careers .job-details table tr {
        margin-bottom: 20px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    .careers .job-details table th,
    .careers .job-details table td {
        display: block;
        width: 100%;
        border: none;
        border-bottom: 1px solid #eee;
        text-align: left;
    }
    .careers .job-details table th {
        background-color: #eee;
        padding: 15px 20px;
        font-size: 16px;
        font-weight: bold;
    }
    .careers .job-details table td {
        padding: 20px;
        border-bottom: none;
    }
}

/* Flow Section ************************************/
@media screen and (max-width: 1160px) {
    .careers .flow-container {
        width: 100%;
    }
    .careers .flow-steps {
        flex-direction: column;
        max-width: 600px;
    }
    .careers .flow-steps .step {
        max-width: none;
        width: 100%;
        padding: 40px 30px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .careers .arrow {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-top: 24px solid #f0ca42;
        will-change: transform, opacity;
        z-index: 10;
    }
}
@media screen and (max-width: 768px) {
    .careers .flow-steps {
        max-width: none;
    }
    .careers .flow-steps .step {
        padding: 40px 20px 20px;
    }
    .careers .step-icon img {
        height: 90px;
    }
    .careers .step h3 {
        font-size: 22px;
        
    }
}

/* Job Lists Section *******************************/
@media (max-width: 1024px) and (min-width: 769px) {
    .careers .job-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .careers .job-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .careers .job-card {
        padding: 25px 20px;
        min-height: auto;
    }
}

/* Image & Text Section ****************************/
@media (max-width: 768px) {
    .careers .info-session-wrapper {
        display: block;
    }
    .careers .cta-button {
        font-size: 20px;
        line-height: 1;
        padding: 20px;
    }
    .careers .company-info-session {
        margin-bottom: 50px;
    }
    .careers .info-session-image {
        max-width: none;
    }
}

/* FAQ Section *************************************/
@media (max-width: 768px) {
    .careers .qa-item {
        padding: 20px;
    }
    .careers .question {
        font-size: 20px;
    }
    .careers .question-container {
        margin-bottom: 10px;
    }
    .careers .answer-container {
        padding-left: 0;
    }
    .careers .answer {
        font-size: 18px;
    }
}