@charset "utf-8";

/* ================================================
   recruit.css - たかお動物病院 採用LP
   ================================================ */

/* ----- カスタムプロパティ ----- */
#recruit {
    --r-blue: #87c3e6;
    --r-blue-dark: #6baed4;
    --r-blue-light: #e7f3fa;
    --r-blue-pale: #d5eaf6;
    --r-orange: #ff9664;
    --r-yellow: #ffffd7;
    --r-gray-bg: #f5f5f5;
    --r-white: #ffffff;
    --r-text: #333333;
    --r-radius: 8px;
}


/* ----- ユーティリティ ----- */
#recruit .u-sp-br {
    display: none;
}

/* ----- 全体リセット・上書き ----- */
#recruit {
    background: var(--r-white);
}

#recruit #wrap {
    min-width: auto;
    max-width: 100%;
}

/* ----- 共通レイアウト ----- */
#recruit .l-inner {
    width: 90%;
    max-width: 1160px;
    margin: 0 auto;
}

/* ----- 共通見出し ----- */
#recruit .c-ttl {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--r-text);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

#recruit .c-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--r-blue);
    border-radius: 2px;
}

/* ================================================
   ヘッダー
   ================================================ */
#recruit .r-header {
    width: 100%;
    background: var(--r-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

#recruit .r-header__inner {
    width: 90%;
    max-width: 1160px;
    margin: 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#recruit .r-header__logo img {
    height: 45px;
    width: auto;
}

#recruit .r-header__cta {
    display: flex;
    gap: 10px;
}

#recruit .r-header__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--r-white);
    line-height: 1;
    transition: transform 0.2s, box-shadow 0.2s;
}

#recruit .r-header__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

#recruit .r-header__btn svg {
    flex-shrink: 0;
}

#recruit .r-header__btn--phone {
    background: linear-gradient(0deg, rgba(0, 105, 215, 1) 0%, rgba(0, 125, 255, 1) 100%);
    border: 1px solid #cce0ff;
}

#recruit .r-header__btn--form {
    background: linear-gradient(0deg, rgba(233, 93, 0, 1) 0%, rgba(255, 131, 0, 1) 100%);
    border: 1px solid #ffe7cc;
}

/* ================================================
   FV（ファーストビュー）
   ================================================ */
#recruit .fv {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}

#recruit .fv__bg {
    position: absolute;
    inset: 0;
    background: url("../img/recruit/fv-bg.webp") center center / cover no-repeat;
    z-index: 0;
}

#recruit .fv__bg::after {
    display: none;
}

#recruit .fv__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

#recruit .fv__content::before {
    display: none;
}

#recruit .fv__ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

#recruit .fv__ttl-brand {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--r-text);
    letter-spacing: 0.1em;
    text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 24px rgba(255, 255, 255, 0.8);
}

#recruit .fv__ttl-main {
    font-size: 5.2rem;
    font-weight: 600;
    color: var(--r-blue);
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 24px rgba(255, 255, 255, 0.8);
}

#recruit .fv__ttl-en {
    font-size: 2.0rem;
    font-weight: 600;
    color: var(--r-text);
    letter-spacing: 0.15em;
    text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 24px rgba(255, 255, 255, 0.8);
}

#recruit .fv__list {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

#recruit .fv__item {
    padding: 8px 20px;
    border: 2px solid var(--r-blue);
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--r-text);
    background: var(--r-white);
}

#recruit .fv__catch {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--r-text);
    line-height: 1.8;
    text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 24px rgba(255, 255, 255, 0.8);
}

/* ================================================
   Aboutセクション
   ================================================ */
#recruit .about {
    padding: 80px 0;
    background: var(--r-white);
}

#recruit .about__text {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2;
    text-align: center;
    margin-bottom: 50px;
}

#recruit .about__ttl {
    color: var(--r-text);
    display: inline-block;
    background: linear-gradient(transparent 60%, var(--r-blue) 60%);
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

#recruit .about__ttl::after {
    display: none;
}

#recruit .about__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

#recruit .about__content {
    text-align: center;
}

#recruit .about__card {
    background: var(--r-white);
    border-radius: var(--r-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-right: 4px solid var(--r-blue);
    border-bottom: 4px solid var(--r-blue);
    text-align: left;
}

#recruit .about__card-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

#recruit .about__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#recruit .about__card-ttl {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--r-text);
    padding: 16px 16px 8px;
    line-height: 1.6;
    min-height: 8.2rem;
}

#recruit .about__desc {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0 16px 20px;
    color: var(--r-text);
}

/* About CTA */
#recruit .about__cta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

#recruit .btn--phone,
#recruit .btn--form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 320px;
    min-height: 70px;
    padding: 16px 40px;
    border-radius: .4em;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--r-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

#recruit .btn--phone {
    background: linear-gradient(0deg, rgba(0, 105, 215, 1) 0%, rgba(0, 125, 255, 1) 100%);
    border: 1px solid #cce0ff;
    border-radius: .4em;
}

#recruit .btn--form {
    background: linear-gradient(0deg, rgba(233, 93, 0, 1) 0%, rgba(255, 131, 0, 1) 100%);
    border: 1px solid #ffe7cc;
    border-radius: .4em;
}

#recruit .btn--phone:hover,
#recruit .btn--form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

#recruit .btn--phone svg,
#recruit .btn--form svg {
    flex-shrink: 0;
}

/* ================================================
   Flowセクション
   ================================================ */
#recruit .flow {
    padding: 80px 0;
    background: var(--r-blue-light);
    position: relative;
    overflow: hidden;
}

#recruit .flow__ashiato {
    position: absolute;
    inset: 0;
    background: url("../img/recruit/flow_ashiato.webp") center center / cover no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

#recruit .flow__content {
    position: relative;
    z-index: 1;
}

#recruit .flow__heading {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

#recruit .flow__ttl {
    color: var(--r-blue);
    display: inline-block;
    background: linear-gradient(transparent 60%, #ffffd7 60%);
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

#recruit .flow__ttl::after {
    display: none;
}

#recruit .flow__cat {
    width: 130px;
    position: absolute;
    bottom: 0;
    right: calc(50% - 310px);
    transform: translateY(calc(100% + -35px));
    z-index: 2;
}

/* タイムライン */
#recruit .flow__timeline {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    padding-left: 100px;
}

#recruit .flow__timeline::before {
    content: "";
    position: absolute;
    left: 92px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--r-orange);
}

#recruit .flow__group {
    position: relative;
    padding-bottom: 8px;
}

#recruit .flow__label {
    position: absolute;
    left: -100px;
    top: 12px;
    width: 80px;
    font-size: 2.0rem;
    font-weight: 600;
    color: var(--r-orange);
    text-align: right;
}

#recruit .flow__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0;
}

#recruit .flow__item {
    background: var(--r-white);
    border-radius: var(--r-radius);
    padding: 18px 24px;
    position: relative;
    border: 2px solid var(--r-blue);
}

#recruit .flow__item::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--r-orange);
    border: 2px solid var(--r-white);
}

#recruit .flow__item-ttl {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--r-text);
}

#recruit .flow__item-desc {
    font-size: 1.6rem;
    color: #666;
    margin-top: 4px;
}

#recruit .flow__note {
    text-align: center;
    font-size: 1.6rem;
    color: #888;
    margin-top: 24px;
}

/* ================================================
   Trainingセクション
   ================================================ */
#recruit .training {
    padding: 80px 0 60px;
    background: var(--r-white);
}

#recruit .training__ttl {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--r-text);
    text-align: center;
    padding-bottom: 16px;
    margin-bottom: 40px;
    display: inline-block;
    background: linear-gradient(transparent 60%, var(--r-blue) 60%);
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

#recruit .training__ttl::after {
    display: none;
}

#recruit .training__content {
    text-align: center;
}

#recruit .training__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

#recruit .training__item {
    background: linear-gradient(180deg, #ffffff 0%, #e7f3fa 100%);
    border: 1px solid #ddd;
    border-radius: var(--r-radius);
    padding: 30px 20px;
    text-align: center;
}

#recruit .training__item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
}

#recruit .training__item h3 {
    font-size: 2.0rem;
    font-weight: 600;
    color: var(--r-blue-dark);
    margin-bottom: 10px;
}

#recruit .training__item p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
}

/* ================================================
   Stepセクション
   ================================================ */
#recruit .step {
    padding: 60px 0 80px;
    background: var(--r-blue-light);
    position: relative;
}

#recruit .step__ashiato {
    position: absolute;
    inset: 0;
    background: url("../img/recruit/step_ashiato.webp") center center / cover no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

#recruit .step__content {
    position: relative;
    z-index: 1;
}

#recruit .step__heading {
    text-align: center;
    position: relative;
}

#recruit .step__dog {
    width: 80px;
    position: absolute;
    left: 26px;
    bottom: 107px;
    z-index: 2;
}

#recruit .step__ttl {
    color: var(--r-blue);
    display: inline-block;
    background: linear-gradient(transparent 60%, #ffffd7 60%);
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

#recruit .step__ttl::after {
    display: none;
}

#recruit .step__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    counter-reset: step;
    position: relative;
}

/* 矢印（ステップ間） */
#recruit .step__item + .step__item::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 14px;
    border-color: transparent transparent transparent var(--r-blue-dark);
}

#recruit .step__item {
    background: var(--r-white);
    border-radius: var(--r-radius);
    padding: 30px 20px 24px;
    text-align: center;
    position: relative;
    border: 2px solid var(--r-blue-pale);
}

#recruit .step__badge {
    display: inline-block;
    padding: 6px 24px;
    background: var(--r-blue);
    color: var(--r-white);
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

#recruit .step__item-ttl {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--r-text);
    margin-bottom: 8px;
}

#recruit .step__item-desc {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.6;
}

#recruit .step__note {
    text-align: center;
    font-size: 1.6rem;
    color: #888;
    margin-top: 24px;
}

/* ================================================
   Infoセクション
   ================================================ */
#recruit .info {
    padding: 80px 0;
    background: var(--r-gray-bg);
}

#recruit .info__heading {
    position: relative;
    text-align: center;
}

#recruit .info__ttl {
    display: inline-block;
    background: linear-gradient(transparent 60%, var(--r-blue) 60%);
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

#recruit .info__ttl::after {
    display: none;
}

#recruit .info__table-wrap {
    position: relative;
}

#recruit .info__illust {
    width: 120px;
    position: absolute;
    right: 62px;
    top: 0;
    transform: translateY(-74%);
    z-index: 2;
}

#recruit .info__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    background: var(--r-white);
}

#recruit .info__table th,
#recruit .info__table td {
    padding: 18px 24px;
    font-size: 1.8rem;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
}

#recruit .info__table th {
    width: 200px;
    background: var(--r-blue);
    color: var(--r-white);
    font-weight: 600;
    white-space: nowrap;
}

#recruit .info__table td {
    font-weight: 400;
}

#recruit .info__row--salary td {
    background: var(--r-yellow);
}

/* ================================================
   FAQセクション
   ================================================ */
#recruit .faq {
    padding: 80px 0;
    background: var(--r-white);
}

#recruit .faq__ttl {
    display: inline-block;
    background: linear-gradient(transparent 60%, var(--r-blue) 60%);
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

#recruit .faq__ttl::after {
    display: none;
}

#recruit .faq__content {
    text-align: center;
}

#recruit .faq__list {
    max-width: 1160px;
    margin: 0 auto;
    text-align: left;
}

#recruit .faq__item {
    margin-bottom: 16px;
}

#recruit .faq__question {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--r-blue);
    color: var(--r-white);
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: var(--r-radius) var(--r-radius) 0 0;
}

#recruit .faq__q-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--r-white);
    color: var(--r-blue);
    font-size: 1.6rem;
    font-weight: 900;
    flex-shrink: 0;
}

#recruit .faq__answer {
    padding: 16px 20px 16px 58px;
    background: var(--r-white);
    font-size: 1.6rem;
    line-height: 1.8;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 var(--r-radius) var(--r-radius);
}

/* ================================================
   Contactセクション
   ================================================ */
#recruit .contact {
    padding: 80px 0;
    background: var(--r-blue-light);
}

#recruit .contact__ttl {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--r-text);
    display: inline-block;
    background: linear-gradient(transparent 60%, var(--r-blue) 60%);
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

#recruit .contact__ttl::after {
    display: none;
}

#recruit .contact__content {
    text-align: center;
}

#recruit .contact__cta {
    margin-bottom: 30px;
}

#recruit .btn--phone-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 48px;
    background: linear-gradient(0deg, rgba(0, 105, 215, 1) 0%, rgba(0, 125, 255, 1) 100%);
    border: 1px solid #cce0ff;
    color: var(--r-white);
    border-radius: .4em;
    font-size: 2.0rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

#recruit .btn--phone-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

#recruit .btn--phone-lg svg {
    flex-shrink: 0;
}

#recruit .contact__text {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 700;
}

#recruit .contact__form {
    max-width: 1160px;
    margin: 0 auto;
    text-align: left;
}

#recruit .contact__form-group {
    margin-bottom: 20px;
}

#recruit .contact__label {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--r-text);
    margin-bottom: 8px;
}

#recruit .contact__required {
    display: inline-block;
    padding: 2px 8px;
    background: #e74c3c;
    color: var(--r-white);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 4px;
}

#recruit .contact__input,
#recruit .contact__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: var(--r-radius);
    font-size: 1.6rem;
    font-family: inherit;
    background: var(--r-white);
    transition: border-color 0.2s;
}

#recruit .contact__input:focus,
#recruit .contact__textarea:focus {
    outline: none;
    border-color: var(--r-blue);
    box-shadow: 0 0 0 3px rgba(135, 195, 230, 0.3);
}

#recruit .contact__textarea {
    min-height: 150px;
    resize: vertical;
}

#recruit .contact__input::placeholder,
#recruit .contact__textarea::placeholder {
    color: #aaa;
}

#recruit .contact__privacy {
    text-align: center;
    margin: 30px 0;
}

#recruit .contact__privacy label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
}

#recruit .contact__privacy input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background: var(--r-white);
    cursor: pointer;
    flex-shrink: 0;
}

#recruit .contact__privacy input[type="checkbox"]:checked {
    background: var(--r-blue);
    border-color: var(--r-blue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

#recruit .contact__submit {
    text-align: center;
}

#recruit .btn--submit {
    display: inline-block;
    padding: 18px 80px;
    background: linear-gradient(0deg, rgba(233, 93, 0, 1) 0%, rgba(255, 131, 0, 1) 100%);
    color: var(--r-white);
    border: 1px solid #ffe7cc;
    border-radius: .4em;
    font-size: 2.0rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 150, 100, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

#recruit .btn--submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 150, 100, 0.4);
    opacity: 1;
}

/* ================================================
   フッター
   ================================================ */
#recruit .r-footer {
    background: var(--r-blue-dark);
    padding: 20px 0;
    text-align: center;
}

#recruit .r-footer__copy {
    color: var(--r-white);
    font-size: 1.6rem;
}

/* ================================================
   レスポンシブ（768px以下）
   ================================================ */
@media screen and (max-width: 768px) {

    /* ヘッダー */
    #recruit .r-header__inner {
        height: 60px;
        padding: 0;
    }

    #recruit .r-header__logo img {
        height: 35px;
    }

    #recruit .r-header__btn {
        padding: 8px 14px;
    }

    #recruit .r-header__btn span {
        display: none;
    }

    #recruit .r-header__btn svg {
        width: 20px;
        height: 20px;
    }

    /* FV */
    #recruit .fv {
        padding: 60px 5%;
    }

    #recruit .fv__ttl-brand {
        font-size: 1.8rem;
    }

    #recruit .fv__ttl-main {
        font-size: 3.2rem;
    }

    #recruit .fv__list {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    #recruit .fv__item {
        padding: 6px 12px;
        width: 80%;
        text-align: center;
    }

    #recruit .fv__catch {
        font-size: 1.6rem;
    }

    /* About */
    #recruit .about {
        padding: 60px 0;
    }

    #recruit .about__text {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    #recruit .about__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #recruit .about__cta {
        flex-direction: column;
        align-items: center;
    }

    #recruit .btn--phone,
    #recruit .btn--form {
        min-width: 160px;
        width: 80%;
        padding: 14px 24px;
        font-size: 1.6rem;
    }

    /* Flow */
    #recruit .flow {
        padding: 60px 0;
    }

    #recruit .flow__cat {
        width: 70px;
        right: 5%;
        bottom: 0;
        transform: translateY(calc(100% + -20px));
    }

    #recruit .flow__timeline {
        padding-left: 80px;
    }

    #recruit .flow__timeline::before {
        left: 62px;
    }

    #recruit .flow__label {
        left: -80px;
        width: 60px;
        font-size: 1.8rem;
    }

    #recruit .flow__item {
        padding: 14px 16px;
    }

    #recruit .flow__item::before {
        left: -24px;
        width: 10px;
        height: 10px;
    }

    #recruit .flow__item-ttl {
        font-size: 1.6rem;
    }

    /* Training */
    #recruit .training {
        padding: 60px 0 40px;
    }

    #recruit .training__ttl {
        font-size: 2.2rem;
        display: inline;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }

    #recruit .training__list {
        margin-top: 30px;
    }

    #recruit .training__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #recruit .training__item {
        padding: 24px 16px;
    }

    /* Step */
    #recruit .step {
        padding: 40px 0 60px;
    }

    #recruit .step__dog {
        width: 60px;
        left: 10px;
        bottom: 80px;
    }

    #recruit .step__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #recruit .step__item + .step__item::before {
        left: 50%;
        top: -18px;
        transform: translateX(-50%) rotate(90deg);
    }

    #recruit .step__item {
        padding: 24px 16px 20px;
    }

    #recruit .step__item-ttl {
        font-size: 2.0rem;
    }

    /* Info */
    #recruit .info {
        padding: 60px 0;
    }

    #recruit .info__illust {
        width: 90px;
        right: 0;
        transform: translateY(-80%);
    }

    #recruit .info__table th,
    #recruit .info__table td {
        display: block;
        width: 100%;
        padding: 14px 16px;
        font-size: 1.6rem;
    }

    /* FAQ */
    #recruit .faq {
        padding: 60px 0;
    }

    #recruit .faq__question {
        font-size: 1.6rem;
        padding: 12px 16px;
    }

    #recruit .faq__answer {
        padding: 14px 16px 14px 50px;
    }

    /* Contact */
    #recruit .contact {
        padding: 60px 0;
    }

    #recruit .contact__ttl {
        font-size: 2.8rem;
        display: inline;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }

    #recruit .contact__cta {
        margin-top: 30px;
    }

    #recruit .btn--phone-lg {
        padding: 16px 32px;
        font-size: 1.8rem;
    }

    #recruit .btn--submit {
        padding: 16px 60px;
        font-size: 1.8rem;
    }

    /* 共通 */
    #recruit .c-ttl {
        font-size: 2.4rem;
        padding-bottom: 16px;
        margin-bottom: 30px;
    }

    /* ユーティリティ */
    #recruit .u-sp-br {
        display: block;
    }
}
