@charset "utf-8";

/* ============================================================
   RECRUIT PAGE - Scoped Styles
   All styles scoped to .recruit-page to avoid global leakage
   ============================================================ */

/* ----- Base ----- */
html,
body.recruit-page {
    overflow-x: hidden;
}

.recruit-page {
    background-color: #fff;
    color: #333;
    line-height: 1.8;
}

.recruit-page .contents {
    padding-top: 0;
}

/* Force Menu Show (override main.js 1000ms delay) */
#menu {
    top: 0 !important;
}

.op-logo,
.opening {
    display: none !important;
}

/* ----- Layout ----- */
.section-padding {
    padding: 100px 0;
}

.bg-gray {
    background-color: #f8f8f8;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Scoped container — only used inside recruit page */
.recruit-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- Typography (scoped) ----- */
.recruit-page .contents h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 0.12em;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    color: #1a1a1a;
}

.recruit-page .contents h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C5A059, #e0c88a);
    margin: 20px auto 0;
    border-radius: 2px;
}

.text-gold {
    color: #C5A059;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.recruit-hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.recruit-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/recruit_hero_v2.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 8s ease-out;
}

/* Ken Burns slow zoom */
.recruit-hero-bg.loaded {
    transform: scale(1.05);
}

/* Gradient overlay for depth */
.recruit-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 60%,
            rgba(0, 0, 0, 0.7) 100%);
}

.recruit-hero-content {
    text-align: center;
    z-index: 1;
    padding: 20px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recruit-hero h1 {
    margin-bottom: 48px;
}

.recruit-hero-en {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 0.95;
}

.recruit-hero-ja {
    display: block;
    font-family: 'Yu Gothic Medium', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: 0.2em;
    margin-top: 16px;
    opacity: 0.8;
}

.btn-primary {
    display: inline-block;
    padding: 18px 52px;
    background-color: #C5A059;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #C5A059;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: none;
    letter-spacing: 0.1em;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

/* ============================================================
   ACHIEVEMENTS
   ============================================================ */
.achievements-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    text-align: center;
    gap: 24px;
    margin-bottom: 50px;
}

.achievement-item {
    flex: 1;
    min-width: 250px;
    padding: 48px 24px;
    background: #fff;
    border: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C5A059, #e0c88a, #C5A059);
    background-size: 200% 100%;
    transition: background-position 0.6s ease;
}

.achievement-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.achievement-item:hover::before {
    background-position: 100% 0;
}

.achievement-icon {
    font-size: 2.5rem;
    color: #C5A059;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.15);
}

.achievement-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
    color: #333;
}

/* Big Number Styling */
.achievement-number {
    font-family: 'Oswald', sans-serif;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 10px;
}

.achievement-number .big {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C5A059, #b8903d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-number .unit {
    font-size: 1.2rem;
    font-weight: normal;
    margin-left: 5px;
    -webkit-text-fill-color: #666;
}

.achievement-desc,
.achievement-note {
    font-size: 0.9rem;
    color: #888;
}

/* Brand Logos Row */
.brand-logos {
    background: transparent;
    border-radius: 12px;
    padding: 40px 40px 32px;
    text-align: center;
}

.brand-logos-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #aaa;
    margin-bottom: 28px;
}

.brand-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-logo-item {
    flex: 0 0 auto;
}

.brand-logo-item img {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(0) sepia(1) hue-rotate(10deg) saturate(5);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-logo-item:hover img {
    filter: brightness(0);
    opacity: 0.35;
}

/* ============================================================
   OPEN POSITIONS
   ============================================================ */
.positions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.position-card {
    background: #fff;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.position-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #C5A059;
}

.position-header {
    background: #1a1a1a;
    color: #fff;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
    position: relative;
    transition: background 0.4s ease;
}

.position-card:hover .position-header {
    background: #252525;
}

.position-card h3 {
    font-size: 1.7rem;
    margin: 0;
    color: #fff;
    font-weight: bold;
    order: 2;
}

.position-tag {
    font-family: 'Oswald', sans-serif;
    background: transparent;
    color: #C5A059;
    padding: 0;
    font-size: 0.85rem;
    border-radius: 0;
    order: 1;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.position-desc {
    padding: 28px 30px 10px;
    font-weight: 500;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #555;
}

.position-details {
    padding: 0 30px 30px;
    flex-grow: 1;
}

.position-details h4 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #999;
    font-family: 'Yu Gothic Medium', sans-serif;
    border-bottom: none;
    padding-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.position-details ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
}

.position-details li {
    margin-bottom: 6px;
    padding-left: 1.2em;
    position: relative;
    color: #555;
}

.position-details li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #C5A059;
    font-weight: bold;
}

.salary {
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    color: #C5A059;
}

.salary-note {
    font-size: 0.8rem;
    font-weight: normal;
    color: #999;
    margin-left: 5px;
}

/* Button */
.position-card .btn-apply-wrapper {
    padding: 24px 30px 30px;
    background: #fff;
    margin-top: auto;
}

.btn-apply {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background-color: transparent;
    color: #C5A059;
    text-align: center;
    border: 2px solid #C5A059;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    position: relative;
}

.btn-apply::after {
    content: '→';
    margin-left: 10px;
    font-family: sans-serif;
    transition: margin-left 0.3s ease;
}

.btn-apply:hover {
    background-color: #C5A059;
    border-color: #C5A059;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.btn-apply:hover::after {
    margin-left: 16px;
}

/* ----- Open Position Banner ----- */
.position-banner {
    margin-top: 28px;
}

.position-banner-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border: 1px solid #eee;
    border-top: 4px solid #C5A059;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.position-banner-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.position-banner-text .position-tag {
    color: #C5A059;
    display: block;
    margin-bottom: 4px;
}

.position-banner-text h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0 0 10px;
    font-weight: bold;
}

.position-banner-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.btn-apply--banner {
    flex-shrink: 0;
    width: auto;
    padding: 16px 36px;
    white-space: nowrap;
    background-color: #C5A059;
    border-color: #C5A059;
    color: #fff;
}

.btn-apply--banner:hover {
    background-color: #b8903d;
    border-color: #b8903d;
    color: #fff;
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
}

.pc-only {
    display: inline;
}

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: center;
}

.number-item {
    background: #fff;
    padding: 32px 24px;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s ease;
}

.number-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.number-item h4 {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    border-bottom: 2px solid #C5A059;
    padding-bottom: 6px;
    display: inline-block;
    flex-shrink: 0;
}

.number-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-height: 120px;
}

.number-box i {
    font-size: 2.8rem;
    color: #ddd;
    margin-bottom: 10px;
}

.number-box i.number-icon-accent {
    color: #C5A059;
    opacity: 0.85;
}

.number-text {
    font-size: 2.6rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    color: #1a1a1a;
}

.number-sub {
    font-size: 0.8rem;
    color: #999;
    margin-top: 8px;
    letter-spacing: 0.02em;
}

.note {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 20px;
}

/* Charts */
.chart-container {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.pie-chart.gender-chart {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#C5A059 0% 82%, #ddd 82% 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15);
}

.pie-chart::after {
    content: '';
    position: absolute;
    width: 78px;
    height: 78px;
    background: #fff;
    border-radius: 50%;
}

.chart-label {
    position: relative;
    z-index: 1;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #333;
}

.chart-legend {
    margin-top: 10px;
    font-size: 0.8rem;
    display: flex;
    gap: 15px;
    color: #888;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.dot.male {
    background: #eee;
}

.dot.female {
    background: #C5A059;
}

.number-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #C5A059;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.1);
}

.big-number {
    font-size: 3.8rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.unit {
    font-size: 1rem;
    margin-top: 10px;
}

/* Ring Chart (Donut) */
.ring-chart {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-chart::after {
    content: '';
    position: absolute;
    width: 82px;
    height: 82px;
    background: #fff;
    border-radius: 50%;
}

.ring-value {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    color: #1a1a1a;
    line-height: 1;
}

.ring-unit {
    font-size: 1rem;
    font-weight: normal;
    color: #888;
}

/* 35% ring */
.ring-35 {
    background: conic-gradient(#C5A059 0% 35%, #ddd 35% 100%);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.12);
}

/* 92% ring */
.ring-92 {
    background: conic-gradient(#C5A059 0% 92%, #ddd 92% 100%);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.18);
}

/* ============================================================
   GOOD THINGS
   ============================================================ */
.good-things-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.good-thing-card {
    background: #fff;
    padding: 36px 24px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-top: 4px solid #C5A059;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.good-thing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.good-thing-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #C5A059;
    display: block;
    transition: transform 0.3s ease;
}

.good-thing-card:hover .good-thing-icon {
    transform: scale(1.1);
}

.good-thing-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: bold;
    color: #1a1a1a;
}

.good-thing-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
}

/* ============================================================
   WORK & LIFE
   ============================================================ */
.work-life-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.work-life-content {
    width: 100%;
}

/* Team Photo in Work & Life */
.work-life-team-photo {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.work-life-team-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.work-life-content dl {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
}

.work-life-content dt {
    width: 25%;
    padding: 24px 20px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    background-color: #fafafa;
    color: #C5A059;
    font-size: 0.95rem;
}

.work-life-content dd {
    width: 75%;
    padding: 24px 20px;
    border-bottom: 1px solid #eee;
    color: #555;
}



/* ============================================================
   SELECTION FLOW
   ============================================================ */
.flow-steps {
    max-width: 800px;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    padding-left: 36px;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #C5A059, #e0c88a) 1;
}

.step-item {
    position: relative;
    margin-bottom: 48px;
    padding-left: 40px;
}

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

.step-item::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #C5A059;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #C5A059;
    transition: transform 0.3s ease;
    z-index: 2;
}

/* はみ出た線を隠すマスク（上） */
.flow-steps::before {
    content: '';
    position: absolute;
    left: -5px;
    top: -10px;
    width: 8px;
    height: 25px;
    background-color: #f8f8f8;
    z-index: 1;
}

/* はみ出た線を隠すマスク（下） */
.step-item:last-child::after {
    content: '';
    position: absolute;
    left: -42px;
    top: 20px;
    width: 8px;
    bottom: -20px;
    background-color: #f8f8f8;
    z-index: 1;
}

.step-item:hover::before {
    transform: scale(1.3);
}

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: #C5A059;
    margin-bottom: 4px;
    font-weight: bold;
    letter-spacing: 0.15em;
}

.step-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1a1a1a;
}

.step-desc {
    font-size: 0.9rem;
    color: #888;
    margin-top: 4px;
}

.flow-note {
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 0.85rem;
    color: #999;
    text-align: center;
}

/* ============================================================
   FAQ - Accordion
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.question {
    font-weight: bold;
    font-size: 1.1rem;
    padding: 24px 30px;
    position: relative;
    padding-left: 3.5em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1a1a1a;
}

.question::before {
    content: 'Q.';
    position: absolute;
    left: 24px;
    color: #C5A059;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Accordion arrow */
.question::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-item.active .question::after {
    transform: rotate(-135deg);
}

.question:hover {
    background-color: #fafafa;
}

.answer {
    padding: 0 30px 0 3.5em;
    position: relative;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #666;
}

.answer::before {
    content: 'A.';
    position: absolute;
    left: 24px;
    color: #C5A059;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
}

.faq-item.active .answer {
    max-height: 300px;
    padding: 0 30px 24px 3.5em;
}

.faq-item.active {
    border-left: 3px solid #C5A059;
}

/* ============================================================
   ENTRY FORM
   ============================================================ */
.entry-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #C5A059;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1rem;
    color: #333;
}

.required {
    background: #C5A059;
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.05em;
}

.optional {
    background: #ddd;
    color: #666;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #C5A059;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
    outline: none;
}

/* Select wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.form-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 6px;
}

.form-submit {
    margin-top: 10px;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 18px;
    background-color: #1a1a1a;
    color: #fff;
    border: 2px solid #1a1a1a;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.1em;
    border-radius: 6px;
}

.btn-submit:hover {
    background-color: #C5A059;
    border-color: #C5A059;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a1a1a;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media screen and (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .recruit-page .contents h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .recruit-hero {
        height: 55vh;
        min-height: 380px;
    }

    .recruit-hero-en {
        font-size: 3.8rem;
    }

    .recruit-hero-ja {
        font-size: 0.9rem;
    }

    .recruit-hero h1 {
        margin-bottom: 36px;
    }

    .btn-primary {
        padding: 14px 36px;
        font-size: 0.9rem;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .positions-list {
        grid-template-columns: 1fr;
    }

    .position-banner-content {
        flex-direction: column;
        padding: 30px 24px;
        text-align: center;
        gap: 20px;
    }

    .btn-apply--banner {
        width: 100%;
    }

    .pc-only {
        display: none;
    }

    .work-life-content dt,
    .work-life-content dd {
        width: 100%;
        display: block;
    }

    .work-life-content dt {
        border-bottom: none;
        padding-bottom: 5px;
        background-color: transparent;
    }

    .work-life-content dd {
        padding-top: 5px;
    }

    .entry-form {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .brand-visual-placeholder {
        padding: 40px 20px;
    }

    .brand-visual-placeholder span {
        font-size: 1rem;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .good-things-grid {
        grid-template-columns: 1fr 1fr;
    }

    .question {
        font-size: 1rem;
        padding: 20px 24px 20px 3em;
    }

    .question::before {
        left: 16px;
    }

    .answer {
        padding-left: 3em;
    }

    .answer::before {
        left: 16px;
    }

    .faq-item.active .answer {
        padding-left: 3em;
    }
}

@media screen and (max-width: 480px) {
    .recruit-hero-en {
        font-size: 2.8rem;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .good-things-grid {
        grid-template-columns: 1fr;
    }

    .recruit-page .contents h2 {
        font-size: 1.7rem;
    }
}

/* ============================================================
   DESIGN ENHANCEMENTS — Editorial / Playful
   ============================================================ */

/* ----- Section Label (small uppercase label above h2) ----- */
.section-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.42em;
    color: #C5A059;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ----- Hero: ghost background text ----- */
.recruit-hero::before {
    content: 'RECRUIT';
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(120px, 22vw, 280px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* ----- Hero: vertical accent line above text ----- */
.recruit-hero-content::before {
    content: '';
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.45));
    margin: 0 auto 32px;
}

/* ----- Scrolling Ticker ----- */
.recruit-ticker {
    background: #1a1a1a;
    padding: 13px 0;
    overflow: hidden;
    width: 100%;
    user-select: none;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    white-space: nowrap;
    animation: ticker-scroll 22s linear infinite;
}

.ticker-logo {
    height: 20px;
    width: auto;
    display: block;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    margin: 0 52px;
    transition: opacity 0.3s ease;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ----- Numbers: bigger circle/ring charts ----- */
.number-circle {
    width: 130px;
    height: 130px;
}

.ring-chart {
    width: 130px;
    height: 130px;
}

.pie-chart.gender-chart {
    width: 130px;
    height: 130px;
}

/* ----- Position banner: slight tweak for gold consistency ----- */
.position-banner-content {
    border-top-color: #C5A059;
}


/* ----- Responsive: ticker mobile ----- */
@media screen and (max-width: 768px) {
    .recruit-ticker {
        padding: 11px 0;
    }

    .ticker-track span {
        font-size: 0.7rem;
        padding: 0 14px;
    }

    .recruit-hero::before {
        bottom: -5%;
    }

    .recruit-hero-content::before {
        height: 32px;
        margin-bottom: 24px;
    }
}

/* ============================================================
   FOOTER SNS LOGOS FIX (Desktop Only)
   ============================================================ */
@media screen and (min-width: 560px) {

    /*
       Force absolute bottom positioning using px instead of %
       to prevent icons from flying away on long pages
    */
    body.recruit-page .insta-logo {
        bottom: 110px !important;
    }

    body.recruit-page .new-sns-icon {
        bottom: 80px !important;
    }
}
