@charset "UTF-8";

/* ====================
   CSS Variables
   ==================== */
:root {
    /* colors */
    --c-bg: #fff;
    --c-text: #333;
    --c-accent: #E9464D;
    --c-muted: #F2F0E7;
    --c-border: #B9B9B9;
    --c-gray: #E4E4E4;

    /* fonts */
    --ff-base: "Noto+Sans+JP", sans-serif;
    --ff-alt: "Poppins", sans-serif;

    /* radii / shadows */
    --radius-sm: 3px;
    --radius-lg: 20px;
    --shadow-card: 0 2px 6px rgba(0, 0, 0, 0.2);

    /* transitions */
    --tr-fast: 0.3s;
    --tr-slow: 0.4s;
}

/* ====================
   BASE
   ====================*/
body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--ff-base);
    font-weight: 400;
    line-height: 1.6;
}

html {
    font-size: 62.5%;
}

.main {
    width: 100%;
}


/* ====================
   グローバルリンク共通装飾
   ==================== */
a {
    text-decoration: none;
    transition: color var(--tr-fast) ease;
}


/* ====================
   .header
   ==================== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px clamp(15px, 3vw, 30px);
    background-color: var(--c-bg);
    z-index: 1001;
}

.header__logo img {
    width: clamp(90px, 20vw, 150px);
    height: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-nav__list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav__link {
    display: inline-block;
    padding: clamp(6px, 1vw, 12px) clamp(12px, 2vw, 20px);
    font-size: clamp(1.4rem, 1.8vw, 1.6rem);
    color: var(--c-text);
}

.header-nav__link:hover {
    color: var(--c-accent);
}

.header-nav__item--contact {
    margin-left: clamp(16px, 2.4vw, 24px);
}

/* .headerbtn */
.header-nav__contact-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: clamp(8px, 1vw, 16px) clamp(16px, 2vw, 32px);
    text-align: center;
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    color: var(--c-bg);
    background-color: var(--c-accent);
    border-radius: var(--radius-sm);
    border: var(--c-accent) 2px solid;
}

.header-nav__contact-btn span {
    position: relative;
    z-index: 1;
}

.header-nav__contact-btn::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c-bg);
    border-radius: var(--radius-sm);
    transition: top var(--tr-slow);
    z-index: 0;
}

.header-nav__contact-btn:hover::before {
    top: 0;
}

.header-nav__contact-btn:hover span {
    color: var(--c-accent);
}

/* hamburgerbtn */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger__line {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: var(--c-accent);
    transform: translateX(-50%);
    transition: all var(--tr-fast) ease;
}

.hamburger__line:nth-child(1) {
    top: 10px;
}

.hamburger__line:nth-child(2) {
    top: 18px;
}

.hamburger__line:nth-child(3) {
    top: 26px;
}

.hamburger.active .hamburger__line:nth-child(1) {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
}

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

.hamburger.active .hamburger__line:nth-child(3) {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
}


/* ====================
   .header（RESPONSIVE）
   ==================== */
@media (max-width: 840px) {
    .hamburger {
        display: flex;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        width: 100%;
        height: 50vh;
        background-color: var(--c-bg);
        z-index: 103;
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav__list {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .header-nav__link {
        text-align: center;
        font-size: clamp(2rem, 3vw, 2.5rem);
    }

    .header-nav__item--contact {
        margin-left: 0;
    }

    .header-nav__contact-btn {
        width: 100%;
        max-width: 280px;
    }
}


/* ====================
   .footer
   ==================== */
.footer {
    width: 100%;
    background-color: var(--c-text);
}

.footer .footer-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block: 60px 30px;
    padding-inline: clamp(16px, 2vw, 20px);
    box-sizing: border-box;
}

.footer__nav {
    margin-inline: 20px;
}

.footer-nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin: 0;
    padding: 0;
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    list-style: none;
}

.nav__link {
    color: var(--c-bg);
}

.nav__link:hover {
    color: var(--c-accent);
}

#disclosure ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-inline: 20px;
    padding: 0;
    font-size: clamp(1.3rem, 1.5vw, 1.5rem);
}

#disclosure a {
    color: var(--c-bg);
    text-decoration: none;
    transition: color var(--tr-fast);
}

#disclosure a:hover {
    color: var(--c-accent);
}

.footer__copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(30px, 5vw, 50px);
    padding-block: 16px;
    text-align: center;
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    color: var(--c-bg);
    background-color: var(--c-text);
}


/* ====================
   .footer（RESPONSIVE）
   ==================== */
@media (max-width: 480px) {
    .footer .footer-item {
        flex-direction: column;
        gap: 20px;
    }

    .footer__nav {
        margin-bottom: 30px;
    }

    #disclosure ul {
        margin-bottom: 30px;
    }

    .footer__copyright {
        padding-bottom: 25px;
    }
}


/* ====================
   .page-top
   ==================== */
.page-top {
    position: relative;
    height: clamp(200px, 20vw, 285px);
    z-index: 1;
}

.page-top__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.page-top__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.page-top__title {
    font-family: var(--ff-alt);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 600;
    text-align: center;
    color: var(--c-bg);
}

.page-top__subtitle {
    margin-top: 0.5em;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    text-align: center;
    color: var(--c-bg);
}


/* ====================
   .page-top（img）
   ==================== */
.page-top.companies {
    background: url("../img/company__profile-top.jpg") center/cover no-repeat;
}

.page-top.jobseekers {
    background: url("../img/jobseekers-top.jpg") center/cover no-repeat;
}

.page-top.employers {
    background: url("../img/employers-top.jpg") center/cover no-repeat;
}


/* ====================
   .search__btn
   ==================== */
.search__btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    overflow: hidden;
    padding: clamp(15px, 2vw, 20px) clamp(30px, 4vw, 40px);
    text-align: center;
    font-size: clamp(1.6rem, 2vw, 2.4rem);
    color: var(--c-bg);
    background-color: var(--c-accent);
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: var(--c-accent) 2px solid;
}


/* ====================
   .search__btn（RESPONSIVE）
   ==================== */
@media (min-width: 481px) and (max-width: 840px) {
    .search__btn {
        padding: clamp(20px, 3vw, 25px) clamp(35px, 5vw, 45px);
        font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    }
}

@media (max-width:480px) {
    .search__btn {
        left: 0;
        right: auto;
        bottom: 0px;
        transform: none;
        width: 100vw;
        border-radius: 0px;
        border-bottom: 1px solid var(--c-bg);
    }
}

/* ====================
   .contact
   ==================== */
.contact {
    text-align: center;
    padding: 50px 10px;
    background-color: var(--c-bg);
}

h2.content__title {
    color: var(--c-text);
    font-family: var(--ff-alt);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 600;
    margin: 0 auto 16px;
}

.contact__text {
    color: var(--c-text);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.8;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

.contact__btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(14px, 1vw, 25px) clamp(40px, 5vw, 60px);
    font-size: clamp(1.6rem, 2vw, 2.4rem);
    font-weight: 500;
    color: var(--c-bg);
    background-color: var(--c-accent);
    border-radius: var(--radius-sm);
    border: var(--c-accent) 2px solid;
}

@media (max-width:840px) {
    .contact__btn {
        min-width: 300px;
        width: fit-content;
        padding: 18px 41px 18px 28px;
    }
}


/* ====================
   .mv-wrapper / .mv / #line / .mv__* / .mv-message
   ============*/
.mv-wrapper {
    position: relative;
}

/* ====================
   .mv
   ==================== */
.mv {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 65px;
    left: 0;
    width: 100%;
    height: 100svh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#line {
    position: absolute;
    bottom: 15vh;
    left: -5%;
    width: 110%;
    z-index: 2;
    transition: opacity 1.5s ease;
}

#line.fade-out {
    opacity: 0;
}

.mv__building {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url(../img/mv__building.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.mv__woman {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-image: url(../img/mv__woman.png);
    background-position: right 50% center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mv__catch {
    position: absolute;
    top: clamp(90px, 15%, 15px);
    left: 5%;
    width: min(90%, 1200px);
    z-index: 4;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3.6rem);
    font-weight: 700;
    line-height: 2;
    text-align: left;
    color: #E9464D;
    transform: translateY(20px);
    opacity: 0;
    transition: none;
    /* JSで制御 */
}

.mv__catch.show {
    opacity: 1;
    transform: translateY(0);
}

.mv__catch.fade-out {
    opacity: 0;
}

/* ====================
   .mv（RESPONSIVE）
   ==================== */
@media (max-width: 840px) {
    #line {
        bottom: 18vh;
    }

    .mv__building,
    .mv__woman {
        height: 100%;
        background-size: cover;
    }

    .mv__catch {
        top: 25%;
        font-size: clamp(2rem, 3.2vw, 3.2rem);
    }

    .mv__woman {
        bottom: 0;
        right: 40%;
        height: 75%;
        background-position: right 50% center;
        top: auto;
    }
}

@media (max-width: 480px) {
    #line {
        top: 30vh;
        bottom: auto;
        overflow: visible;
    }

    #line path {
        stroke-width: 3;
    }

    .mv__building,
    .mv__woman {
        height: 100%;
        background-size: cover;
    }

    .mv__woman {
        bottom: 0;
        right: 30%;
        height: 70%;
        background-position: right 40% center;
        top: auto;
    }

    .mv__catch {
        top: 15%;
        font-size: clamp(1.8rem, 2vw, 2rem);
        line-height: 1.5;
        text-align: center;
    }
}

/* ====================
   .mv-message
   ==================== */
.mv-message {
    width: 100%;
    position: relative;
    z-index: 5;

    padding-top: 80px;
    padding-left: clamp(10px, 6vw, 60px);
    padding-right: clamp(10px, 6vw, 60px);
    padding-bottom: 80px;
    background-color: rgba(255, 255, 255, .9);
}

.mv-message::before {
    content: "";
    display: block;
    height: 120px;
    width: 100%;
    position: absolute;
    top: -120px;
    left: 0;
    background-image: linear-gradient(0deg, #ffffffe6, transparent);
}

.mv-message h2.mv-message__title,
.mv-message p.mv-message__text,
.mv-message .btn-link {
    display: block;
}

.mv-message h2,
.mv-message p {
    width: 100%;
    max-width: 1000px;
}

.mv-message h2.mv-message__title {
    padding-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 2.5;
    color: #E9464D;
}

.mv-message p.mv-message__text {
    padding-bottom: 20px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 3;
    color: #333;
}

.mv-message p.mv-message__text span {
    display: block;
}

.mv-message__btn {
    margin-top: 20px;
    text-align: center;
}

/* ====================
   .mv-message（RESPONSIVE）
   ==================== */
@media (max-width: 480px) {
    .mv-message {
        text-align: center;
    }

    .mv-message p.mv-message__text {
        font-size: clamp(1.6rem, 2.8vw, 2rem);
        line-height: 1.8;
        text-align: left;
    }
}


/* ====================
   .btn-link
   ==================== */
.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 300px;
    width: fit-content;
    padding: 18px 41px 18px 28px;
    position: relative;
    overflow: hidden;
    z-index: 1;

    font-size: clamp(1.4rem, 2vw, 1.6rem);
    text-align: center;
    color: var(--c-accent);

    text-decoration: none;
    background-color: var(--c-bg);
    border: 2px solid var(--c-accent);
    border-radius: var(--radius-sm);

    transition: color var(--tr-fast);
}

.btn-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c-accent);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform var(--tr-fast) cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.btn-link:hover {
    color: var(--c-bg);
}

.btn-link:hover::after {
    transform: scale(1, 1);
}

.btn-link span.arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--c-accent);
    border-top: 2px solid var(--c-accent);
    transform: rotate(45deg);
    transition: border-color var(--tr-fast), transform var(--tr-fast);
}

.btn-link:hover span.arrow {
    border-color: var(--c-bg);
    transform: translateX(4px) rotate(45deg);
}

/* ====================
   .btn-link（RESPONSIVE）
   ==================== */
@media (max-width: 840px) {
    .btn-link {
        font-size: clamp(1.6rem, 2vw, 2rem);
    }
}

@media (max-width: 480px) {
    .btn-link {
        box-sizing: border-box;
    }
}

/* ====================
   .service-overview
   ==================== */
.service-overview {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    padding-top: clamp(70px, 5vw, 100px);
    padding-bottom: clamp(10px, 2.5vw, 20px);
    background-color: var(--c-muted);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem 5%;
    margin-bottom: 60px;
    padding: 0 clamp(20px, 6vw, 60px);
}

.service-item--reverse {
    flex-direction: row-reverse;
}

.service-item__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 50%;
    height: 100%;
}

.service-item__img {
    display: inline-block;
    width: 50%;
}

.service-item__img img {
    display: block;
    width: 100%;
    height: 100%;
}

.service-item__content__title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--c-accent);
}

.service-item__text {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: var(--c-text);
    margin: 0;
    text-align: left;
}

.service-item__btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.br-sp {
    display: none;
}

/* ====================
   .service-overview（RESPONSIVE）
   ==================== */
@media (max-width: 840px) {

    .service-item,
    .service-item--reverse {
        flex-direction: column;
        text-align: center;
    }

    .service-item__content,
    .service-item__img {
        width: 100%;
    }

    .service-item__img img {
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-item__btn {
        margin-top: 0;
    }

    .service-item__content,
    .service-item__img {
        width: 100%;
    }

    .br-sp {
        display: inline;
    }
}

/* ====================
   .company-profile
   ==================== */
.company-profile {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-block: 60px;
    background-color: var(--c-muted);
}

.company-profile .company-table {
    margin: 0 auto;
}

.company-profile .company-table th,
.company-profile .company-table td {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    font-weight: 400;
    text-align: left;

    border: none;
    border-bottom: 1px solid var(--c-border);
    padding: 12px 18px;
}

.company-profile .company-table th {
    font-weight: 700;
}

/* ====================
   .company-profile (RESPONSIVE)
   ==================== */
@media (max-width: 480px) {

    .company-profile .company-table,
    .company-profile .company-table tbody,
    .company-profile .company-table tr {
        display: flex;
        flex-direction: column;
        max-width: 300px;
    }

    .company-profile .company-table th,
    .company-profile .company-table td {
        display: block;
        width: 100%;
        padding: 8px 0;
    }

    .company-profile .company-table th {
        border-bottom: none;
    }
}


/* ====================
   .map
   ==================== */
.map {
    display: block;
    width: 100%;
    max-height: 400px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
}

.map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ====================
   .map (RESPONSIVE)
   ==================== */
@media (max-width: 480px) {
    .map {
        aspect-ratio: 16 / 9;
    }
}

/* ====================
   .reasons (animation)
   ==================== */
.animate-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-card.show {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (min-width: 768px) {
    .animate-card:nth-child(1) {
        transition-delay: 0.2s;
    }

    .animate-card:nth-child(2) {
        transition-delay: 0.4s;
    }

    .animate-card:nth-child(3) {
        transition-delay: 0.6s;
    }
}


/* ====================
   .reasons-for-jobseekers
   ==================== */
.reasons-for-jobseekers {
    width: 100%;
    margin: 60px auto;
    box-sizing: border-box;
}

h2.jobseekers-reason__title {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 70px);
}

h2.jobseekers-reason__title small.jobseekers-reason__subtitle {
    font-size: clamp(1.6rem, 2vw, 2.4rem);
}

.text-dark {
    font-size: clamp(2rem, 3vw, 3.6rem);
    font-weight: 700;
}

.text-red {
    font-size: clamp(2rem, 3vw, 3.6rem);
    font-weight: 700;
    color: var(--c-accent);
}

.jobseekers-reason__cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(15px, 2vw, 20px);
}

.jobseekers-reason__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 clamp(235px, 30%, 350px);
    width: 100%;
    max-width: 400px;
    padding: clamp(80px, 5vw, 120px) clamp(20px, 3vw, 30px) clamp(20px, 3vw, 35px);
    position: relative;
    text-align: center;

    background-color: var(--c-muted);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.jobseekers-reason__card-number {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(-1 * clamp(60px, 8vw, 100px) / 2);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 8vw, 100px);
    height: clamp(60px, 8vw, 100px);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: bold;
    color: var(--c-bg);
    background-color: var(--c-accent);
    border-radius: 50%;
}

.jobseekers-reason__card-icon {
    display: block;
    margin: 0 auto clamp(10px, 2vw, 20px);
    width: auto;
    height: clamp(80px, 10vw, 120px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

h3.jobseekers-reason__card-title {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 10px;
    text-align: center;
}

p.jobseekers-reason__card-text {
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    text-align: left;
}


/* ====================
   .reasons-for-jobseekers（RESPONSIVE）
   ==================== */
@media (max-width: 840px) and (min-width: 481px) {
    .jobseekers-reason__cards {
        flex-direction: column;
        align-items: center;
        gap: clamp(60px, 4vw, 50px);
    }

    .jobseekers-reason__card {
        flex: 1 1 100%;
        max-width: 350px;
        padding: clamp(60px, 6vw, 90px) clamp(20px, 4vw, 30px);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .reasons-for-jobseekers {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .jobseekers-reason__cards {
        flex-direction: column;
        align-items: center;
        gap: clamp(60px, 4vw, 30px);
        flex-wrap: nowrap;
        justify-content: center;
    }

    .jobseekers-reason__card {
        flex: 1 1 100%;
        max-width: 300px;
        min-height: 350px;
        padding: clamp(50px, 8vw, 70px) clamp(15px, 4vw, 25px) clamp(20px, 4vw, 40px);
        text-align: center;
    }

    .jobseekers-reason__card-number {
        font-size: clamp(2rem, 6vw, 3rem);
        width: clamp(60px, 8vw, 80px);
        height: clamp(60px, 8vw, 80px);
        top: calc(-1 * clamp(60px, 8vw, 80px) / 2);
    }

    .jobseekers-reason__card-icon {
        height: clamp(80px, 10vw, 100px);
        margin-bottom: 15px;
    }

    h3.jobseekers-reason__card-title {
        font-size: clamp(1.8rem, 2vw, 2rem);
        margin-bottom: 8px;
    }
}


/* ====================
   .work-flow
   ==================== */
.work-flow {
    width: 100%;
    background-color: var(--c-muted);
    margin-top: clamp(40px, 50vw, 150px);
    padding: 40px;
}

h2.work-flow__title {
    font-size: clamp(2rem, 3vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.work-flow__list {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.work-flow__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.work-flow__step-number {
    font-family: var(--ff-alt);
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    font-weight: 600;
    color: var(--c-accent);
}

.work-flow__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c-bg);
    width: clamp(130px, 6rem, 250px);
    height: clamp(130px, 6vw, 250px);
    border-radius: 50%;
    margin: 0;
    position: relative;
    z-index: 10;
}

.work-flow__name {
    padding: 14px;
    font-size: clamp(1.4rem, 1.5vw, 1.8rem);
}

.work-flow__line {
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 0%;
    height: 4px;
    background-color: var(--c-bg);
}

p.work-flow__text {
    font-size: clamp(1.5rem, 1.5vw, 1.8rem);
    padding-top: 2rem;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}


/* ====================
   .work-flow (RESPONSIVE)
   ==================== */
@media (max-width: 840px) {
    .work-flow__list {
        flex-direction: column;
        align-items: flex-start;
        margin: auto;
        max-width: 300px;
    }

    .work-flow__item:not(:first-child) {
        margin-top: -70px;
    }

    .work-flow__item:nth-child(even) {
        align-self: flex-end;
    }

    .work-flow__item:nth-child(odd) .work-flow__line {
        left: 70%;
        top: 70%;
        transform: rotate(40deg);
        transform-origin: top left;
    }

    .work-flow__item:nth-child(even) .work-flow__line {
        right: 70%;
        top: 70%;
        left: auto;
        transform: rotate(-40deg);
        transform-origin: top right;
    }

    .work-flow__name {
        padding: 5px;
    }
}


/* ====================
   .reasons-for-employers
   ==================== */
.reasons-for-employers {
    box-sizing: border-box;
    background-color: var(--c-muted);
}

h2.employers-reason__title {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 70px);
    padding-top: 60px;
}

h2.employers-reason__title small.employers-reason__subtitle {
    font-size: clamp(1.6rem, 2vw, 2.4rem);
}

.employers-reason__cards {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(15px, 2vw, 20px);
    justify-content: center;
    margin: auto;
}

.employers-reason__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 clamp(235px, 30%, 350px);
    max-width: 400px;
    padding: clamp(80px, 5vw, 120px) clamp(20px, 3vw, 30px) clamp(20px, 3vw, 35px);
    background-color: var(--c-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    text-align: center;
}

.employers-reason__card-number {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(-1 * clamp(60px, 8vw, 100px) / 2);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 8vw, 100px);
    height: clamp(60px, 8vw, 100px);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: bold;
    color: var(--c-bg);
    background-color: var(--c-accent);
    border-radius: 50%;
}

.employers-reason__card-icon {
    display: block;
    width: auto;
    height: clamp(80px, 10vw, 120px);
    margin: 0 auto clamp(10px, 2vw, 20px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

h3.employers-reason__card-title {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 10px;
    text-align: center;
}

p.employers-reason__card-text {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    text-align: left;
}

.employers-reason__annotation-text {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    margin: 0;
    padding: 40px clamp(30px, 5vw, 60px);
    text-align: left;
}


/* ====================
   .reasons-for-employers (RESPONSIVE)
   ==================== */
@media (max-width: 840px) and (min-width: 481px) {
    .employers-reason__cards {
        flex-direction: column;
        align-items: center;
        gap: clamp(60px, 4vw, 50px);
    }

    .employers-reason__card {
        flex: 1 1 100%;
        max-width: 350px;
        padding: clamp(60px, 6vw, 90px) clamp(20px, 4vw, 30px);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .reasons-for-employers {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .employers-reason__cards {
        flex-direction: column;
        align-items: center;
        gap: clamp(60px, 4vw, 30px);
        flex-wrap: nowrap;
        justify-content: center;
    }

    .employers-reason__card {
        flex: 1 1 100%;
        max-width: 300px;
        min-height: 350px;
        padding: clamp(50px, 8vw, 70px) clamp(15px, 4vw, 25px) clamp(20px, 4vw, 40px);
        text-align: center;
    }

    .employers-reason__card-number {
        font-size: clamp(2rem, 6vw, 3rem);
        width: clamp(60px, 8vw, 80px);
        height: clamp(60px, 8vw, 80px);
        top: calc(-1 * clamp(60px, 8vw, 80px) / 2);
    }

    .employers-reason__card-icon {
        height: clamp(80px, 10vw, 100px);
        margin-bottom: 15px;
    }

    h3.employers-reason__card-title {
        font-size: clamp(1.8rem, 2vw, 2rem);
        margin-bottom: 8px;
    }
}


/* ====================
   .corresponding-field
   ==================== */
.corresponding-field {
    box-sizing: border-box;
    margin-bottom: 60px;
    padding-inline: 20px;
    width: 100%;
}

h2.corresponding-field__title {
    font-size: clamp(2rem, 3vw, 3.6rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(20px, 6vw, 60px);
    margin-top: 60px;
}

.corresponding-field table {
    width: clamp(850px, 80%, 1000px);
    table-layout: fixed;
    margin: 0 auto 30px;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    border-collapse: collapse;
    border: 1px solid var(--c-border);
}

.corresponding-field th,
.corresponding-field td {
    border: 1px solid var(--c-border);
    padding: 6px 10px;
    text-align: left;
    vertical-align: middle;
    word-break: break-word;
    white-space: normal;
}

.corresponding-field th {
    width: 25%;
    background-color: var(--c-muted);
}

caption {
    caption-side: top;
    font-size: clamp(1.7rem, 2vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5em;
    position: relative;
}


/* ====================
   .corresponding-field (RESPONSIVE)
   ==================== */
@media (max-width: 840px) {
    .corresponding-field {
        padding-inline: 12px;
    }

    .corresponding-field table {
        width: 90%;
        table-layout: auto;
    }

    .corresponding-field th {
        width: 35%;
    }
}


/* ==================== 
   .contact-form
   ==================== */
.contact-form__form {
    background-color: var(--c-gray);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form__title {
    font-size: clamp(2rem, 3vw, 3.6rem);
    font-weight: 700;
    margin-block: 60px;
    text-align: center;
}

.form-item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 16px;
    margin: 0 auto;
    max-width: 800px;
    min-width: 300px;
    padding: 10px 50px 50px;
    width: 100%;
}

.form-item-text input,
.form-item-text textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 100%;
    padding: 0.8em;
    width: 100%;
}

input,
textarea {
    background: var(--c-bg);
    border: 1px solid var(--c-bg);
    border-radius: 5px;
    display: block;
    font-size: 1.6rem;
    margin: 10px auto;
    outline: none;
}

textarea {
    height: 250px;
}

/* 必須ラベル */
.form-item .required {
    background-color: var(--c-accent);
    border-radius: var(--radius-sm);
    color: var(--c-bg);
    display: inline-block;
    font-size: 1.4rem;
    margin-left: 10px;
    padding: 3px 0;
    text-align: center;
    width: 50px;
}

/* ====================
   inquirybtn・radiobtn
   ==================== */
.form-item-inquiry {
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    gap: 30px;
    margin: 60px auto 10px;
    max-width: 800px;
    min-width: 300px;
    padding: 0 50px;
    width: 100%;
}

.form-item-inquiry label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-item-inquiry__options {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

@media (max-width: 480px) {
    .form-item-inquiry__options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.form-item-customer-type {
    display: flex;
    font-size: 1.6rem;
    gap: 30px;
    margin: 20px auto;
    max-width: 800px;
    min-width: 300px;
    padding: 0 50px;
    width: 100%;
}

.form-item-customer-type label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

@media (max-width: 480px) {
    .form-item-customer-type {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.form-item.privacy {
    display: block;
    margin: 20px auto;
    text-align: center;
}

.form-item.privacy a {
    color: var(--c-accent);
    text-decoration: underline;
}

.form-item.privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 5px 0 0;
    flex-shrink: 0;
    border: 1px solid var(--c-text);
    border-radius: var(--radius-sm);
    accent-color: var(--c-accent);
    position: relative;
    cursor: pointer;
}

.form-item.privacy input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid var(--c-accent);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-item.privacy label {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 1.6rem;
    line-height: 1.5;
}

.privacy-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto 80px;
    max-width: 800px;
    min-width: 300px;
    padding-left: clamp(10px, 5%, 50px);
    padding-right: clamp(10px, 5%, 50px);
    width: 100%;
}

.privacy-text {
    display: inline;
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}

.sp-only {
    display: none;
}

@media (max-width: 480px) {
    .sp-only {
        display: inline;
    }
}

input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--c-bg);
    border-radius: 9999px;
    position: relative;
    cursor: pointer;
}

input[type="radio"]:checked::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--c-accent);
    border-radius: 9999px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-form__submit {
    background-color: var(--c-accent);
    color: var(--c-bg);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 12px 30px;
    margin-inline: auto;
    text-align: center;
    cursor: pointer;
    max-width: 100%;
    width: 350px;
    position: relative;
    border: var(--c-accent) 2px solid;
    overflow: hidden;
}

/* ====================
   .thanks-page
   ==================== */
.thanks-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 300px;
    margin: auto;
    padding: 60px 20px;
}

.thanks-page__item img {
    display: block;
    width: clamp(90px, 30vw, 150px);
    height: auto;
    margin: 0 auto;
    padding-bottom: 25px;
}

.thanks-page__message {
    font-size: clamp(18px, 2vw, 2.4rem);
    padding-bottom: 25px;
}

.thanks-page__text {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    padding-bottom: 25px;
}

.thanks-page__note {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    line-height: 1.6;
    text-indent: 1em;

    color: var(--c-accent);
    padding-bottom: 40px;
}

@media(max-width:480px) {
    .thanks-page__note {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
        text-indent: 1em;
    }
}

/* hover animation */
.btn-hover span {
    position: relative;
    z-index: 2;
    transition: color var(--tr-fast);
}

.btn-hover::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c-bg);
    transition: top var(--tr-slow);
    z-index: 1;
}

.btn-hover:hover::before {
    top: 0;
}

.btn-hover:hover span {
    color: var(--c-accent);
}