/* ============================================
   カットステーション 採用ページ スタイルシート
   ============================================ */

/* CSS Variables */
:root {
    --primary-blue: #0052cc;
    --secondary-blue: #00b4db;
    --accent-red: #e53e3e;
    --accent-blue: #3182ce;
    --text-dark: #1a202c;
    --text-main: #2d3748;
    --text-light: #4a5568;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --soft-blue: #ebf4ff;
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 25px rgba(0, 82, 204, 0.1);
    --card-shadow-hover: 0 20px 40px rgba(0, 82, 204, 0.18);
    --border-radius: 32px;
    --border-radius-sm: 16px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ============================================
   Layout
   ============================================ */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

/* ============================================
   Typography
   ============================================ */
.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 48px;
    line-height: 1.8;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066ff 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--soft-blue);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-blue);
    border-color: rgba(0, 82, 204, 0.3);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.no-break {
    display: inline-block;
    white-space: nowrap;
}

.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.25) !important;
}

.btn-insta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4) !important;
    opacity: 0.95 !important;
}

/* ============================================
   Header
   ============================================ */
header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 82, 204, 0.12);
    box-shadow: 0 4px 25px rgba(0, 82, 204, 0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.logo {
    font-size: clamp(1.3rem, 4.2vw, 1.7rem);
    font-weight: 900;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo i {
    font-size: 1.5rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }
    header .container {
        padding: 0 14px;
    }
    .logo {
        font-size: 1.25rem;
        gap: 6px;
    }
    .logo i {
        font-size: 1.35rem;
    }
    nav {
        gap: 6px;
    }
    nav .btn {
        padding: 6px 12px;
        font-size: 0.78rem;
        border-radius: 20px;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 11px 0;
    }
    header .container {
        padding: 0 10px;
    }
    .logo {
        font-size: 1.15rem;
        gap: 5px;
    }
    .logo i {
        font-size: 1.25rem;
    }
    nav {
        gap: 4px;
    }
    nav .btn {
        padding: 5px 8px;
        font-size: 0.72rem;
        border-radius: 16px;
        gap: 3px;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 1.08rem;
    }
    nav .btn {
        padding: 4px 6px;
        font-size: 0.68rem;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, #ddeeff 0%, #ffffff 60%, #f0fdf4 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 219, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-red);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    color: var(--primary-blue);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent-red);
}

.hero-desc {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Summary Cards
   ============================================ */
.summary-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.summary-card {
    background: white;
    border-radius: var(--border-radius-sm);
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.3);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
}

.summary-icon {
    width: 52px;
    height: 52px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.summary-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.summary-value {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.4;
}

.summary-note {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ============================================
   Reasons Section
   ============================================ */
.reasons-section {
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.reason-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    padding: 36px 32px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.3);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.12);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--secondary-blue));
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--border-color);
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Noto Sans JP', sans-serif;
}

.reason-card h3 {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Job Details Section
   ============================================ */
.details-section {
    background: var(--bg-light);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.detail-card {
    background: white;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}
.detail-card:hover {
    border-color: rgba(0, 82, 204, 0.3);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.12);
}

.detail-card-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-card-header i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.detail-card-header h3 {
    font-size: 1.05rem;
    font-weight: 900;
}

.detail-card-body {
    padding: 28px;
}

.detail-main {
    font-weight: 900;
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 12px;
}

.detail-card-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.detail-card-body p:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: var(--soft-blue);
    border-left: 3px solid var(--primary-blue);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 12px 0;
}

.highlight-box p {
    color: var(--primary-blue) !important;
    font-weight: 700;
    font-size: 0.9rem !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box i {
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* Salary */
.salary-display {
    margin-bottom: 20px;
}

.salary-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.salary-amount span {
    font-size: 1.1rem;
}

.salary-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Detail Table */
.detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.detail-table th,
.detail-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.detail-table th {
    color: var(--text-light);
    font-weight: 700;
    width: 45%;
    background: var(--bg-light);
    border-radius: 4px;
}

.detail-table td {
    color: var(--text-dark);
    font-weight: 700;
}

/* Shift List */
.shift-list {
    margin-bottom: 16px;
}

.shift-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 700;
}

.shift-list li:last-child {
    border-bottom: none;
}

.shift-list li i {
    color: var(--secondary-blue);
    width: 16px;
    text-align: center;
}

/* Tags */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag {
    background: var(--soft-blue);
    color: var(--primary-blue);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.benefits-list li i {
    color: var(--primary-blue);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ============================================
   Target Section
   ============================================ */
.target-section {
    background: white;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 16px;
}

.target-list {
    margin-top: 32px;
}

.target-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.target-list li:last-child {
    border-bottom: none;
}

.target-icon {
    width: 40px;
    height: 40px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.img-decorated {
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 24px;
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Opening Banner
   ============================================ */
.opening-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066ff 50%, var(--secondary-blue) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.opening-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.opening-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.opening-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.opening-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
}

.opening-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.opening-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 32px;
}

.opening-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.opening-tags span {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.opening-tags span i {
    opacity: 0.8;
}

/* ============================================
   Apply Section
   ============================================ */
.apply-section {
    background: var(--bg-light);
}

.apply-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.apply-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.apply-card-primary {
    background: var(--primary-blue);
    color: white;
}

.apply-card-primary:hover {
    background: #003d99;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.35);
}

.apply-card-secondary {
    background: white;
    color: var(--text-main);
    border-color: var(--border-color);
    box-shadow: var(--card-shadow);
}

.apply-card-secondary:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.apply-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.apply-card-primary .apply-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.apply-card-secondary .apply-card-icon {
    background: var(--soft-blue);
    color: var(--primary-blue);
}

.apply-card-content {
    flex: 1;
}

.apply-card-content h3 {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.apply-card-primary .apply-card-content h3 {
    color: white;
}

.apply-card-secondary .apply-card-content h3 {
    color: var(--primary-blue);
}

.apply-card-content p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
}

.apply-card-arrow {
    font-size: 0.9rem;
    opacity: 0.6;
    flex-shrink: 0;
}

.apply-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.apply-note i {
    color: var(--primary-blue);
}

/* ============================================
   Store Section
   ============================================ */
.store-section {
    background: white;
}

.store-grid {
    margin-top: 16px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.info-table th,
.info-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 0.95rem;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

.info-table th {
    background: var(--bg-light);
    color: var(--primary-blue);
    font-weight: 900;
    width: 28%;
    white-space: nowrap;
}

.info-table th i {
    margin-right: 8px;
    opacity: 0.8;
}

.info-table td {
    color: var(--text-main);
}

.note-text {
    font-size: 0.82rem;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

.footer-logo i {
    color: var(--secondary-blue);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    opacity: 0.5;
    font-size: 0.85rem;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #003d99;
    transform: translateY(-3px);
}

/* ============================================
   Fade In Animation
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    nav {
        gap: 8px;
    }

    nav .btn-outline {
        display: none;
    }

    .hero {
        padding: 70px 0 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

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

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

    .target-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .target-right {
        order: -1;
    }

    .apply-cards {
        grid-template-columns: 1fr;
    }

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

    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }

    .info-table th {
        padding-bottom: 6px;
        border-bottom: none;
    }

    .info-table td {
        padding-top: 6px;
    }

    .opening-tags {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .apply-card {
        flex-direction: column;
        text-align: center;
    }

    .apply-card-arrow {
        display: none;
    }
}
