@charset "UTF-8";
/* CSS Document */

/* =========================================
   メインビジュアル
========================================= */
.top-img {
    min-height: 50vh;
    background-image: url("../img/recruit-img/DSC09851.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* =========================================
   採用情報・準備中
========================================= */
.recruit-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 110px 24px 130px;
    box-sizing: border-box;
    color: #1f0c06;
}

.preparing-section {
    text-align: center;
}

.preparing-en {
    margin: 0 0 16px;
    color: #6a1917;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.28em;
}

.preparing-section h1 {
    margin: 0;
    color: #1f0c06;
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.08em;
}

.preparing-section h1::after {
    display: block;
    width: 58px;
    height: 3px;
    margin: 34px auto 0;
    background-color: #6a1917;
    content: "";
}

/* 3つの丸のアニメーション */
.preparing-mark {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 60px 0 40px;
}

.preparing-mark span {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #6a1917;
    animation: preparing-bounce 1.4s ease-in-out infinite;
}

.preparing-mark span:nth-child(2) {
    animation-delay: 0.18s;
}

.preparing-mark span:nth-child(3) {
    animation-delay: 0.36s;
}

@keyframes preparing-bounce {
    0%,
    60%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

.preparing-section h2 {
    margin: 0 0 34px;
    color: #6a1917;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 500;
    line-height: 1.6;
}

.preparing-message {
    margin: 0;
    font-size: 1.3rem;
    line-height: 2.2;
    letter-spacing: 0.03em;
}

.contact-btn-wrapper {
    margin-top: 56px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 380px;
    min-height: 70px;
    padding: 16px 34px;
    border: 1px solid #6a1917;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #6a1917;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-contact:hover {
    background-color: #ffffff;
    color: #6a1917;
}

/* =========================================
   タブレット
========================================= */
@media screen and (max-width: 1024px) {
    .recruit-wrapper {
        padding: 96px 24px 110px;
    }

    .preparing-message {
        font-size: 1.2rem;
    }
}

/* =========================================
   スマートフォン
========================================= */
@media screen and (max-width: 768px) {
    .top-img {
        min-height: 38vh;
    }

    .recruit-wrapper {
        padding: 76px 20px 92px;
    }

    .preparing-en {
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .preparing-section h1 {
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 1.35;
    }

    .preparing-section h1::after {
        width: 48px;
        height: 2px;
        margin-top: 26px;
    }

    .preparing-mark {
        gap: 13px;
        margin: 46px 0 32px;
    }

    .preparing-mark span {
        width: 12px;
        height: 12px;
    }

    .preparing-section h2 {
        margin-bottom: 26px;
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .preparing-message {
        font-size: 1.08rem;
        line-height: 2;
    }

    .preparing-message br {
        display: none;
    }

    .contact-btn-wrapper {
        margin-top: 42px;
    }

    .btn-contact {
        max-width: 320px;
        min-height: 62px;
        padding: 14px 24px;
        font-size: 1.08rem;
    }
}

/* =========================================
   小さいスマートフォン
========================================= */
@media screen and (max-width: 480px) {
    .recruit-wrapper {
        padding-right: 18px;
        padding-left: 18px;
    }

    .preparing-en {
        font-size: 0.88rem;
        letter-spacing: 0.22em;
    }

    .preparing-section h1 {
        font-size: 2.15rem;
    }

    .preparing-section h2 {
        font-size: 1.45rem;
    }

    .preparing-message {
        font-size: 1rem;
    }
}

/* =========================================
   動きを減らす設定
========================================= */
@media (prefers-reduced-motion: reduce) {
    .preparing-mark span {
        animation: none;
        opacity: 1;
    }

    .btn-contact {
        transition: none;
    }
}
