:root {
    --navy: #113554;
    --navy-soft: #1d6d91;
    --blue: #40bcec;
    --blue-strong: #199bc4;
    --sky: #dcebff;
    --sky-deep: #edf5ff;
    --bg: #f6f9fe;
    --white: #ffffff;
    --text: #172033;
    --muted: #60708d;
    --line: #d7e2f0;
    --line-strong: #bfd0e8;
    --accent: #ff8a1f;
    --accent-strong: #ea6a00;
    --green: #22b55f;
    --shadow-lg: 0 28px 64px rgba(16, 45, 92, 0.14);
    --shadow-md: 0 18px 40px rgba(16, 45, 92, 0.1);
    --shadow-sm: 0 10px 24px rgba(16, 45, 92, 0.08);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(31, 111, 229, 0.12), transparent 34%),
        radial-gradient(circle at top right, rgba(164, 204, 255, 0.35), transparent 28%),
        linear-gradient(180deg, #fcfdff 0%, var(--bg) 100%);
    line-height: 1.75;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

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

ul,
ol {
    list-style: none;
}

button {
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.small {
    max-width: 920px;
}

.section-center {
    text-align: center;
    margin-bottom: 54px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.section-label::before {
    content: '';
    width: 38px;
    height: 1px;
    background: currentColor;
}

.section-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(2rem, 4.6vw, 3.1rem);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.center {
    text-align: center;
}

.blue-text {
    color: var(--blue-strong);
}

.btn-primary,
.btn-secondary,
.btn-line,
.btn-cta-white,
.btn-cta-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-primary,
.header-contact {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: var(--white);
    box-shadow: 0 16px 34px rgba(234, 106, 0, 0.26);
}

.btn-secondary,
.btn-line,
.btn-cta-white {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line-strong);
    color: var(--blue-strong);
    box-shadow: 0 12px 24px rgba(16, 45, 92, 0.08);
}

.btn-cta-line {
    background: linear-gradient(135deg, #2cc96b, #18a84f);
    color: var(--white);
    box-shadow: 0 16px 30px rgba(34, 181, 95, 0.24);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-line:hover,
.btn-cta-white:hover,
.btn-cta-line:hover,
.header-contact:hover {
    transform: translateY(-3px);
}

.floating-nav {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.float-btn {
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 18px;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: -10px 18px 30px rgba(16, 45, 92, 0.14);
    transition: padding 0.25s ease, background 0.25s ease;
}

.float-btn svg {
    width: 22px;
    height: 22px;
}

.float-blue {
    border-radius: 18px 0 0 18px;
    background: linear-gradient(180deg, var(--accent), var(--accent-strong));
    color: var(--white);
}

.float-blue:hover {
    padding-right: 24px;
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 999;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(191, 208, 232, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 88px;
}

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

.nav {
    display: flex;
    gap: 32px;
    font-size: 0.94rem;
    font-weight: 700;
}

.nav a {
    position: relative;
    color: var(--navy);
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav a:hover::after {
    transform: scaleX(1);
}

.header-contact {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 800;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--navy);
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    padding: 132px 0 74px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(151, 205, 255, 0.55), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(235, 244, 255, 0.92) 52%, rgba(212, 230, 255, 0.82) 100%);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(246, 249, 254, 0), rgba(246, 249, 254, 1));
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hero-label::before {
    content: '';
    width: 44px;
    height: 1px;
    background: currentColor;
}

.hero-title {
    margin-bottom: 26px;
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(2.25rem, 4.8vw, 4rem);
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111827;
}

.hero-title small {
    display: inline-block;
    font-size: 0.76em;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.hero-title span {
    color: var(--blue);
    font-size: 1.1em;
    line-height: 1.28;
}

.hero-text {
    max-width: 520px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.04rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-highlight {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(191, 208, 232, 0.9);
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(16, 45, 92, 0.06);
}

.hero-image-wrap {
    position: relative;
    min-height: 680px;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 40px 10px 70px 100px;
    background: linear-gradient(145deg, rgba(31, 111, 229, 0.16), rgba(255, 255, 255, 0));
    border-radius: 60px;
    filter: blur(0.5px);
}

.hero-image {
    position: absolute;
    inset: 0 0 0 32px;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.hero-side-card {
    position: absolute;
    right: -12px;
    bottom: 74px;
    width: 220px;
    padding: 22px 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(191, 208, 232, 0.95);
    box-shadow: var(--shadow-md);
}

.hero-side-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.hero-side-card ul {
    display: grid;
    gap: 10px;
}

.hero-side-card li {
    position: relative;
    padding-left: 18px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-side-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-circle {
    position: absolute;
    left: 0;
    bottom: 42px;
    width: 186px;
    height: 186px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    border: 4px solid rgba(31, 111, 229, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.circle-top,
.circle-bottom {
    font-size: 0.78rem;
    font-weight: 800;
}

.circle-top {
    color: var(--blue);
}

.circle-bottom {
    color: var(--muted);
}

.hero-circle strong {
    font-size: 4rem;
    line-height: 1;
    color: var(--blue-strong);
    font-weight: 900;
}

.features {
    padding: 38px 0 96px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 34px 28px 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(191, 208, 232, 0.74);
    box-shadow: 0 16px 32px rgba(16, 45, 92, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 30px 0 0 30px;
    background: linear-gradient(180deg, var(--blue), #79b7ff);
}

.feature-card:hover,
.service-card:hover,
.recruit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.recruit-card:hover h3 {
    color: var(--blue-strong);
    transition: color 0.3s ease;
}

.feature-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 20px;
    color: var(--blue);
    background: linear-gradient(180deg, #edf5ff, #dceaff);
}

.feature-icon svg {
    width: 34px;
    height: 34px;
}

.feature-card h2 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 1.4rem;
    line-height: 1.55;
    font-weight: 900;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.96rem;
}

.message {
    position: relative;
    padding: 112px 0;
}

.message::before {
    content: '';
    position: absolute;
    top: 120px;
    left: -120px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(172, 211, 255, 0.32);
    filter: blur(30px);
    z-index: -1;
}

.message-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: center;
}

.message-content p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 1rem;
}

.message-content strong {
    color: var(--navy);
}

.message-images {
    padding: 18px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(191, 208, 232, 0.72);
    box-shadow: var(--shadow-md);
}

.message-main-image img {
    border-radius: 24px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.message-sub-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.message-sub-images img {
    border-radius: 18px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.numbers-section {
    padding: 10px 0 110px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding: 32px 18px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.92));
    border: 1px solid rgba(191, 208, 232, 0.76);
    box-shadow: var(--shadow-sm);
}

.number-item {
    position: relative;
    padding: 12px 18px;
    text-align: center;
}

.number-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(31, 111, 229, 0.34), transparent);
}

.num-icon {
    display: flex;
    justify-content: center;
    color: var(--blue);
    margin-bottom: 14px;
}

.num-icon svg {
    width: 38px;
    height: 38px;
}

.num-val {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
    color: var(--blue-strong);
}

.num-val strong {
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 900;
}

.num-val span {
    font-size: 1.2rem;
    font-weight: 800;
}

.num-label {
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 700;
}

.num-label small {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 500;
}

.service {
    position: relative;
    padding: 0 0 120px;
}

.service::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: 0;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(172, 211, 255, 0.22);
    filter: blur(40px);
    z-index: -1;
}

.service-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.service-title-box,
.service-desc {
    max-width: 520px;
}

.service-desc {
    color: var(--muted);
    font-size: 0.98rem;
}

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

.service-card {
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(191, 208, 232, 0.76);
    box-shadow: 0 12px 28px rgba(16, 45, 92, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-img {
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: 18px;
}

.service-img img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img img,
.recruit-card:hover .recruit-image img {
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 900;
}

.service-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.recruit {
    padding: 0 0 120px;
}

.recruit-header-banner {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 320px;
    margin-bottom: -84px;
    overflow: hidden;
}

.banner-blue-bg {
    position: absolute;
    inset: 0 auto 0 0;
    width: 54%;
    padding-left: max(20px, calc((100vw - 1200px) / 2));
    padding-right: 64px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(25, 155, 196, 0.96), rgba(64, 188, 236, 0.9));
    clip-path: polygon(0 0, 100% 0, calc(100% - 130px) 100%, 0 100%);
    z-index: 2;
}

.banner-image-bg {
    display: none;
}

.banner-title {
    color: var(--white);
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: 700;
    line-height: 1.35;
}

.banner-subtitle {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    font-weight: 700;
}

.recruit .container {
    position: relative;
    z-index: 3;
}

.recruit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.recruit-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(64, 188, 236, 0.24);
    box-shadow: 0 14px 28px rgba(16, 45, 92, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruit-image {
    position: relative;
    height: 182px;
    overflow: hidden;
}

.recruit-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recruit-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 22px 22px;
}

.recruit-content h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.28rem;
    font-weight: 900;
}

.recruit-content p {
    flex: 1;
    margin-top: 12px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.recruit-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.recruit-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 700;
}

.recruit-meta span svg {
    color: var(--blue);
    flex-shrink: 0;
}

.recruit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-right: 42px;
}

.recruit-tags span,
.job-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(31, 111, 229, 0.08);
    border: 1px solid rgba(31, 111, 229, 0.16);
    color: var(--blue-strong);
    font-size: 0.75rem;
    font-weight: 800;
}

.recruit-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(31, 111, 229, 0.18);
    color: var(--blue);
    transition: 0.25s ease;
}

.recruit-card:hover .recruit-arrow {
    background: var(--blue);
    color: var(--white);
}

.recruit-arrow svg {
    width: 16px;
    height: 16px;
}

.card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.status-badge,
.emp-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(16, 45, 92, 0.18);
}

.emp-badge {
    background: var(--blue);
}

.status-open {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.status-closed {
    background: linear-gradient(135deg, #8ea4b7, #70879b);
}

.faq {
    padding: 12px 0 110px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(191, 208, 232, 0.76);
    box-shadow: 0 10px 24px rgba(16, 45, 92, 0.06);
}

.faq-question {
    position: relative;
    width: 100%;
    padding: 24px 72px 24px 26px;
    text-align: left;
    color: var(--navy);
    font-size: 1.04rem;
    font-weight: 800;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    font-size: 1.6rem;
    line-height: 1;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 26px 24px;
}

.faq-answer p {
    color: var(--muted);
    font-size: 0.96rem;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.4s ease;
}

.bottom-cta {
    position: relative;
    padding: 92px 0;
    color: var(--white);
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #199bc4, #40bcec 62%, #7ad8f4 100%);
    z-index: -2;
}

.bottom-cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(25, 155, 196, 0.84), rgba(25, 155, 196, 0.24)),
        url('ベンチマーク/採用情報 _ 豊岡市で解体業者をお探しの方は株式会社エステックにご相談ください_files/recruit-schedule01.jpg') center/cover;
    opacity: 0.24;
    z-index: -1;
}

.bottom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    flex-wrap: wrap;
    padding: 34px 38px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.cta-icon {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.86);
    flex-shrink: 0;
}

.cta-icon svg {
    width: 100%;
    height: 100%;
}

.cta-text {
    flex: 1;
    min-width: 280px;
}

.cta-sub {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 700;
}

.cta-text h2 {
    margin-bottom: 12px;
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.4;
    font-weight: 700;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.line-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 16, 30, 0.58);
    backdrop-filter: blur(6px);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 56px 48px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(18px);
    transition: transform 0.35s ease;
}

.modal.is-active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sky-deep);
    color: var(--navy);
    font-size: 1.45rem;
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.job-title {
    color: var(--navy);
    font-size: 1.9rem;
    font-weight: 900;
}

.job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-catch {
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 4px solid var(--blue);
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 800;
}

.job-desc {
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 0.98rem;
}

.job-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 42px;
    border-top: 1px solid var(--line);
}

.job-table th,
.job-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.job-table th {
    width: 26%;
    background: var(--sky-deep);
    color: var(--navy);
    font-size: 0.94rem;
    font-weight: 800;
}

.job-table td {
    color: var(--text);
    font-size: 0.94rem;
}

.job-action {
    text-align: center;
}

.footer {
    padding: 58px 0 42px;
    border-top: 1px solid rgba(191, 208, 232, 0.65);
    background: linear-gradient(180deg, rgba(234, 248, 252, 0.98), rgba(221, 244, 252, 0.92));
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    width: auto;
    height: 48px;
    margin: 0 auto 8px;
}

.footer-info p {
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-copyright {
    color: #7a8699;
    font-size: 0.82rem;
}

.show {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .floating-nav {
        display: none;
    }

    .hero-inner,
    .message-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap {
        min-height: 560px;
    }

    .hero-image {
        inset: 0;
    }

    .hero-circle {
        left: 16px;
    }

    .hero-side-card {
        right: 16px;
    }

    .service-grid,
    .recruit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 0;
    }

    .number-item::after {
        display: none;
    }

    .number-item:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .nav {
        gap: 22px;
        font-size: 0.88rem;
    }

    .hero {
        padding-top: 118px;
    }

    .banner-blue-bg {
        width: 68%;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .header-inner {
        height: 74px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 28px rgba(16, 45, 92, 0.08);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 16px 24px;
    }

    .nav a::after {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .hero-content {
        display: contents;
    }

    .hero-label {
        order: 1;
        margin-bottom: 16px;
    }

    .hero-title {
        order: 2;
        font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: -40px; /* 画像と被らせる */
        position: relative;
        z-index: 2;
    }

    .hero-title small {
        font-size: 0.75em;
    }

    .hero-image-wrap {
        order: 3;
        width: 100%;
        min-height: auto;
        position: relative;
        margin-bottom: 24px;
    }

    .hero-image {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        border-radius: 24px;
    }

    .hero-side-card {
        display: none;
    }

    .hero-text {
        order: 4;
        font-size: 0.98rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        order: 5;
        margin-bottom: 24px;
    }

    .hero-highlights {
        order: 6;
        gap: 10px;
        margin-bottom: 0;
    }

    .hero-circle {
        position: absolute;
        left: auto;
        right: 12px;
        bottom: -24px;
        width: 116px;
        height: 116px;
        z-index: 2;
    }

    .hero-circle strong {
        font-size: 2.6rem;
    }

    .circle-top,
    .circle-bottom {
        font-size: 0.68rem;
    }

    .features-grid,
    .service-grid,
    .recruit-grid,
    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .number-item::after {
        display: none;
    }

    .service-header {
        margin-bottom: 30px;
    }

    .feature-card,
    .service-card,
    .recruit-card {
        border-radius: 20px;
    }

    .feature-card {
        padding: 28px 22px 24px;
    }

    .feature-card h2,
    .recruit-content h3 {
        font-size: 1.22rem;
    }

    .message {
        padding: 82px 0;
    }

    .message-images {
        padding: 12px;
        border-radius: 24px;
    }

    .numbers-section {
        padding: 0 0 82px;
    }

    .numbers-grid {
        padding: 22px 16px;
        border-radius: 24px;
        gap: 12px;
    }

    .num-val strong {
        font-size: 2.8rem;
    }

    .recruit {
        padding-bottom: 90px;
    }

    .recruit-header-banner {
        height: 240px;
        margin-bottom: -48px;
    }

    .banner-blue-bg {
        width: 100%;
        clip-path: none;
        padding: 0 24px;
        justify-content: center;
    }

    .faq-question {
        padding-right: 56px;
    }

    .bottom-cta {
        padding: 74px 0;
    }

    .bottom-cta-inner {
        padding: 28px 22px;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 1.7rem;
    }

    .cta-icon {
        display: none;
    }

    .cta-buttons {
        justify-content: center;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary,
    .btn-line,
    .btn-cta-white,
    .btn-cta-line {
        width: 100%;
    }

    .modal {
        padding: 10px;
    }

    .modal-content {
        padding: 48px 20px 28px;
        border-radius: 22px;
    }

    .job-title {
        font-size: 1.5rem;
    }

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

    .job-table th {
        border-bottom: 0;
        padding-bottom: 6px;
    }
}


@media (max-width: 480px) {
    .header-inner {
        height: 68px;
    }

    .logo img {
        height: 42px !important;
    }

    .nav {
        top: 68px;
    }

    .hero {
        padding: 96px 0 48px;
    }

    .hero-title {
        font-size: 1.78rem;
        line-height: 1.45;
        margin-bottom: -32px;
    }

    .hero-image-wrap {
        min-height: auto;
    }

    .hero-circle {
        right: 8px;
        bottom: -20px;
        width: 106px;
        height: 106px;
    }

    .hero-circle strong {
        font-size: 2.45rem;
    }

    .features {
        padding: 26px 0 72px;
    }

    .feature-card,
    .service-card,
    .recruit-card,
    .faq-item {
        border-radius: 18px;
    }

    .feature-card {
        padding: 24px 18px 20px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
    }

    .feature-card h2,
    .section-title {
        font-size: 1.7rem;
    }

    .message {
        padding: 70px 0;
    }

    .message-grid,
    .service-header {
        gap: 28px;
    }

    .message-sub-images {
        gap: 10px;
        margin-top: 10px;
    }

    .numbers-grid {
        padding: 18px 14px;
    }

    .number-item {
        padding: 8px 10px;
    }

    .num-val strong {
        font-size: 2.45rem;
    }

    .num-label {
        font-size: 0.86rem;
    }

    .service,
    .faq {
        padding-bottom: 82px;
    }

    .recruit-header-banner {
        height: 200px;
        margin-bottom: -30px;
    }

    .banner-title {
        font-size: 1.9rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    .recruit-image {
        position: relative;
        height: 182px;
        overflow: hidden;
    }

    .recruit-content {
        padding: 18px 16px 18px;
    }

    .recruit-tags {
        padding-right: 0;
        margin-bottom: 28px;
    }

    .recruit-arrow {
        right: 14px;
        bottom: 14px;
    }

    .faq-question {
        padding: 18px 48px 18px 18px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .bottom-cta {
        padding: 62px 0;
    }

    .bottom-cta-inner {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .cta-text {
        min-width: 0;
    }

    .cta-text h2 {
        font-size: 1.45rem;
    }

    .cta-desc {
        font-size: 0.88rem;
    }

    .footer {
        padding: 42px 0 28px;
    }
}

.recruit-meta span::before {
    display: none;
}

.job-table tr:hover td {
    background-color: #f8fafc;
}