@charset "utf-8";
/* =====================================================================
   採用ページ 追加コンテンツ用スタイル（訪問看護ステーションタオ）
   既存トンマナ（モノクロ基調 / M PLUS 1p 英字見出し / 角ばったカード）に準拠
   すべて rc- 接頭辞で既存クラスと衝突しないようにしています
   ===================================================================== */

/* =====================================================================
   00. HERO｜採用ページ専用 LP風フルスクリーンヒーロー
   背景スライダー（クロスフェード）＋ Ken Burns（徐々に拡大）
   ＋ アニメーション付きキャッチコピー
   ※画像はダミー。ご提供画像・動画に差し替えてください。
   ===================================================================== */
.rc-hero{
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    max-height: 920px;
    overflow: hidden;
    background-color: #0d0f12;
}
.rc-hero-slides{
    position: absolute;
    inset: 0;
    z-index: 1;
}
.rc-hero-slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s ease;
}
.rc-hero-slide.is-active{
    opacity: 1;
}
.rc-hero-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    will-change: transform;
    animation: rcKenburns 16s ease-out infinite alternate;
}
.rc-hero-slide:nth-child(1) .rc-hero-img{ transform-origin: center center; }
.rc-hero-slide:nth-child(2) .rc-hero-img{ transform-origin: right top; animation-duration: 18s; }
.rc-hero-slide:nth-child(3) .rc-hero-img{ transform-origin: left bottom; animation-duration: 17s; }
@keyframes rcKenburns{
    from{ transform: scale(1.02); }
    to{ transform: scale(1.16); }
}
/* 可読性のためのオーバーレイ */
.rc-hero-slides:after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.20) 38%, rgba(0,0,0,0.62) 100%);
}
.rc-hero-inner{
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* 英字ラベル（先頭に横線アクセント） */
.rc-hero-en{
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #fff;
    margin-bottom: 34px;
    opacity: 0;
    animation: rcFadeInLeft 1s ease 0.15s forwards;
}
.rc-hero-en:before{
    content: "";
    width: 56px;
    height: 1px;
    background-color: #fff;
    display: inline-block;
}
/* キャッチコピー（行ごとにマスクから立ち上がる） */
.rc-hero-copy{
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 5.6rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.rc-hero-line{
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
}
.rc-hero-line > span{
    display: inline-block;
    transform: translateY(115%);
    animation: rcRise 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.rc-hero-line:nth-child(1) > span{ animation-delay: 0.45s; }
.rc-hero-line:nth-child(2) > span{ animation-delay: 0.66s; }
.rc-hero-line:nth-child(3) > span{ animation-delay: 0.87s; }
@keyframes rcRise{
    to{ transform: translateY(0); }
}
.rc-hero-sub{
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.9;
    margin-top: 34px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    opacity: 0;
    animation: rcFadeInUp 1.1s ease 1.15s forwards;
}
/* スクロールインジケーター */
.rc-hero-scroll{
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: rcFadeInUp 1s ease 1.6s forwards;
}
.rc-hero-scroll span{
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: #fff;
    writing-mode: vertical-rl;
}
.rc-hero-scroll:after{
    content: "";
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
    animation: rcScrollLine 2s ease-in-out infinite;
    transform-origin: top center;
}
@keyframes rcScrollLine{
    0%{ transform: scaleY(0); opacity: 0; }
    30%{ opacity: 1; }
    100%{ transform: scaleY(1); opacity: 0; }
}
@keyframes rcFadeInLeft{
    from{ opacity: 0; transform: translateX(-24px); }
    to{ opacity: 1; transform: translateX(0); }
}
@keyframes rcFadeInUp{
    from{ opacity: 0; transform: translateY(20px); }
    to{ opacity: 1; transform: translateY(0); }
}
@media screen and (max-width:1023px){
    .rc-hero-copy{ font-size: 4.2rem; }
}
@media screen and (max-width:767px){
    .rc-hero{ height: 88vh; min-height: 480px; }
    .rc-hero-en{ font-size: 1.3rem; gap: 14px; margin-bottom: 24px; }
    .rc-hero-en:before{ width: 36px; }
    .rc-hero-copy{ font-size: 2.9rem; line-height: 1.55; }
    .rc-hero-sub{ font-size: 1.4rem; margin-top: 24px; }
    .rc-hero-scroll span{ font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce){
    .rc-hero-img{ animation: none; }
    .rc-hero-line > span{ transform: none; animation: none; }
    .rc-hero-en, .rc-hero-sub, .rc-hero-scroll{ opacity: 1; animation: none; }
}

/* =====================================================================
   トップページ 採用CTAバナー（index.php｜採用ページへの誘導強化）
   ===================================================================== */
.top-recruit-cta{
    position: relative;
    overflow: hidden;
    padding: 130px 15px;
    text-align: center;
    background-color: #0d0f12;
}
.top-recruit-cta-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
}
.top-recruit-cta-bg img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: rcKenburns 20s ease-out infinite alternate;
}
.top-recruit-cta:before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0,0,0,0.5);
}
.top-recruit-cta-inner{
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}
.top-recruit-cta-en{
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    color: #fff;
    margin-bottom: 24px;
}
.top-recruit-cta-copy{
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 26px;
}
.top-recruit-cta-sub{
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    line-height: 1.9;
    margin-bottom: 44px;
}
.top-recruit-cta-btn{
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background-color: #fff;
    color: #0d0f12;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 22px 40px;
    min-width: 320px;
    justify-content: center;
    transition: background .4s, color .4s;
    position: relative;
}
.top-recruit-cta-btn:after{
    content: "";
    width: 34px;
    height: 1px;
    background-color: currentColor;
    position: relative;
    transition: width .3s;
}
.top-recruit-cta-btn:hover{
    background-color: #0d0f12;
    color: #fff;
    opacity: 1;
}
.top-recruit-cta-btn:hover:after{
    width: 46px;
}
@media screen and (max-width:767px){
    .top-recruit-cta{ padding: 80px 15px; }
    .top-recruit-cta-en{ font-size: 1.3rem; }
    .top-recruit-cta-copy{ font-size: 2.6rem; }
    .top-recruit-cta-sub{ font-size: 1.4rem; margin-bottom: 34px; }
    .top-recruit-cta-btn{ width: 100%; min-width: 0; padding: 18px 24px; }
}

/* 共通：セクション導入文 */
.rc-lead{
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
    letter-spacing: 0.05em;
}
@media screen and (max-width:767px){
    .rc-lead{
        margin-bottom: 40px;
        text-align: left;
    }
}

/* ---------------------------------------------------------------------
   01. NUMBERS｜数字で見るタオ
   --------------------------------------------------------------------- */
.rc-num-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.rc-num-card{
    width: calc((100% - 60px) / 3);
    background-color: #fff;
    border: solid 1px #000;
    padding: 44px 20px 40px;
    text-align: center;
}
.rc-num-en{
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #5c6b7b;
    margin-bottom: 18px;
}
.rc-num-value{
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 6.4rem;
    font-weight: 900;
    line-height: 1;
    color: #000;
    letter-spacing: 0.02em;
}
.rc-num-value .rc-num-unit{
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding-left: 4px;
}
.rc-num-value .rc-num-sub{
    font-size: 1.6rem;
    font-weight: 700;
    color: #5c6b7b;
    padding-left: 2px;
}
.rc-num-label{
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
    margin-top: 20px;
    padding-top: 20px;
    position: relative;
    line-height: 1.6;
}
.rc-num-label:before{
    content: "";
    background-color: #000;
    width: 40px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.rc-num-note{
    text-align: center;
    font-size: 1.3rem;
    color: #5c6b7b;
    letter-spacing: 0.05em;
    margin-top: 40px;
}
@media screen and (max-width:1023px){
    .rc-num-card{
        width: calc((100% - 30px) / 2);
    }
}
@media screen and (max-width:767px){
    .rc-num-grid{
        gap: 15px;
    }
    .rc-num-card{
        width: calc((100% - 15px) / 2);
        padding: 30px 10px 28px;
    }
    .rc-num-value{
        font-size: 4.4rem;
    }
    .rc-num-value .rc-num-unit{
        font-size: 1.8rem;
    }
    .rc-num-label{
        font-size: 1.4rem;
        margin-top: 14px;
        padding-top: 14px;
    }
}

/* ---------------------------------------------------------------------
   02. WORKPLACE｜職場の雰囲気（写真ギャラリー）
   --------------------------------------------------------------------- */
.rc-gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}
.rc-gallery-cell{
    overflow: hidden;
}
.rc-gallery-cell.rc-gallery-wide{
    grid-column: span 2;
}
.rc-gallery-cell.rc-gallery-wide.ojf:before{
    padding-top: 48.5%;
}
.rc-gallery-cap{
    text-align: center;
    letter-spacing: 0.05em;
    color: #5c6b7b;
    font-size: 1.4rem;
    margin-top: 30px;
}
@media screen and (max-width:767px){
    .rc-gallery-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .rc-gallery-cell.rc-gallery-wide{
        grid-column: span 2;
    }
    .rc-gallery-cell.rc-gallery-wide.ojf:before{
        padding-top: 60%;
    }
}

/* ---------------------------------------------------------------------
   03. STAFF｜スタッフ紹介（インタビュー）
   --------------------------------------------------------------------- */
.rc-staff-card{
    display: flex;
    flex-wrap: wrap;
    gap: 55px;
    align-items: flex-start;
    background-color: #fff;
    padding: 50px;
    margin-bottom: 40px;
}
.rc-staff-list .rc-staff-card:last-child{
    margin-bottom: 0;
}
.rc-staff-list .rc-staff-card:nth-child(even){
    flex-direction: row-reverse;
}
.rc-staff-photo{
    width: 34%;
}
.rc-staff-photo .ojf:before{
    padding-top: 120%;
}
.rc-staff-cap{
    margin-top: 20px;
    border-left: solid 2px #000;
    padding-left: 18px;
}
.rc-staff-role{
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #5c6b7b;
    margin-bottom: 6px;
}
.rc-staff-name{
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #000;
    line-height: 1.4;
}
.rc-staff-name span{
    font-size: 1.4rem;
    font-weight: 700;
    color: #5c6b7b;
    letter-spacing: 0.05em;
    padding-left: 12px;
}
.rc-staff-body{
    flex: 1;
    min-width: 280px;
}
.rc-staff-qa{
    margin-bottom: 30px;
}
.rc-staff-qa:last-child{
    margin-bottom: 0;
}
.rc-staff-q{
    display: inline-block;
    border-bottom: solid 1px #000;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #000;
    padding-bottom: 6px;
    margin-bottom: 16px;
}
.rc-staff-a{
    letter-spacing: 0.05em;
}
@media screen and (max-width:1023px){
    .rc-staff-card{
        gap: 40px;
    }
    .rc-staff-photo{
        width: 40%;
    }
}
@media screen and (max-width:767px){
    .rc-staff-card{
        display: block;
        padding: 25px 15px;
    }
    .rc-staff-photo{
        width: 100%;
        max-width: 340px;
        margin: 0 auto 25px;
    }
    .rc-staff-photo .ojf:before{
        padding-top: 90%;
    }
    .rc-staff-name{
        font-size: 2rem;
    }
    .rc-staff-q{
        font-size: 1.6rem;
    }
}

/* ---------------------------------------------------------------------
   04. EDUCATION｜教育・研修制度
   --------------------------------------------------------------------- */
.rc-edu-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.rc-edu-card{
    width: calc((100% - 30px) / 2);
    background-color: #fff;
    border: solid 1px #e2e2e2;
    border-top: solid 3px #222;
    padding: 40px 40px 44px;
}
.rc-edu-no{
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
    color: #222;
    letter-spacing: 0.05em;
}
.rc-edu-ttl{
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #000;
    margin: 14px 0 18px;
    line-height: 1.5;
}
.rc-edu-text{
    letter-spacing: 0.05em;
}
@media screen and (max-width:767px){
    .rc-edu-grid{
        gap: 20px;
    }
    .rc-edu-card{
        width: 100%;
        padding: 28px 20px 30px;
    }
    .rc-edu-ttl{
        font-size: 1.8rem;
        margin: 10px 0 14px;
    }
}

/* ---------------------------------------------------------------------
   05. STEP｜入社後の流れ
   --------------------------------------------------------------------- */
.rc-steps{
    max-width: 940px;
    margin: 0 auto;
}
.rc-step{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}
.rc-step-no{
    flex: 0 0 auto;
    width: 120px;
}
.rc-step-no span{
    display: block;
    background-color: #222;
    color: #fff;
    text-align: center;
    line-height: 46px;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 1.5rem;
}
.rc-step-body{
    flex: 1;
    min-width: 260px;
    border-left: solid 1px #d5d5d5;
    padding: 0 0 45px 40px;
    margin-left: 19px;
}
.rc-step:last-child .rc-step-body{
    border-left-color: transparent;
    padding-bottom: 0;
}
.rc-step-ttl{
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 12px;
    margin-top: -6px;
    line-height: 1.5;
}
.rc-step-text{
    letter-spacing: 0.05em;
}
@media screen and (max-width:767px){
    .rc-step{
        gap: 15px;
    }
    .rc-step-no{
        width: 92px;
    }
    .rc-step-no span{
        line-height: 40px;
        font-size: 1.3rem;
    }
    .rc-step-body{
        min-width: 0;
        width: calc(100% - 107px);
        padding: 0 0 35px 20px;
        margin-left: 0;
    }
    .rc-step-ttl{
        font-size: 1.7rem;
        margin-top: 0;
    }
}

/* ---------------------------------------------------------------------
   06. MESSAGE｜代表・管理者メッセージ
   --------------------------------------------------------------------- */
.rc-msg{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
}
.rc-msg-list .rc-msg:last-child{
    margin-bottom: 0;
}
.rc-msg-list .rc-msg:nth-child(even){
    flex-direction: row-reverse;
}
.rc-msg-photo{
    width: 36%;
}
.rc-msg-photo .ojf:before{
    padding-top: 122%;
}
.rc-msg-body{
    flex: 1;
    min-width: 300px;
}
.rc-msg-en{
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #5c6b7b;
    margin-bottom: 14px;
}
.rc-msg-lead{
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #000;
    line-height: 1.6;
    margin-bottom: 28px;
}
.rc-msg-text{
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.rc-msg-text:last-of-type{
    margin-bottom: 0;
}
.rc-msg-sign{
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 30px;
    border-top: solid 1px #ddd;
    padding-top: 24px;
}
.rc-msg-sign-role{
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #5c6b7b;
}
.rc-msg-sign-name{
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #000;
}
@media screen and (max-width:1023px){
    .rc-msg{
        gap: 40px;
    }
    .rc-msg-photo{
        width: 42%;
    }
    .rc-msg-lead{
        font-size: 2.4rem;
    }
}
@media screen and (max-width:767px){
    .rc-msg{
        display: block;
        margin-bottom: 60px;
    }
    .rc-msg-photo{
        width: 100%;
        max-width: 360px;
        margin: 0 auto 30px;
    }
    .rc-msg-photo .ojf:before{
        padding-top: 90%;
    }
    .rc-msg-lead{
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .rc-msg-sign{
        justify-content: flex-start;
    }
}

/* ---------------------------------------------------------------------
   07. FAQ｜よくある質問（開閉アコーディオン / 純CSS）
   --------------------------------------------------------------------- */
.rc-faq{
    max-width: 940px;
    margin: 0 auto;
}
.rc-faq-item{
    border-bottom: solid 1px #ccc;
    background-color: #fff;
}
.rc-faq-item:first-of-type{
    border-top: solid 1px #ccc;
}
.rc-faq-q{
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px 54px 26px 24px;
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
    line-height: 1.6;
    transition: background .3s;
}
.rc-faq-q::-webkit-details-marker{
    display: none;
}
.rc-faq-q:hover{
    background-color: #f7f7f7;
}
.rc-faq-mark{
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.3;
    color: #222;
    flex: 0 0 auto;
}
.rc-faq-icon{
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}
.rc-faq-icon:before,
.rc-faq-icon:after{
    content: "";
    position: absolute;
    background-color: #222;
}
.rc-faq-icon:before{
    left: 0;
    top: 50%;
    width: 16px;
    height: 2px;
    transform: translateY(-50%);
}
.rc-faq-icon:after{
    left: 50%;
    top: 0;
    width: 2px;
    height: 16px;
    transform: translateX(-50%);
    transition: transform .3s;
}
.rc-faq-item[open] .rc-faq-icon:after{
    transform: translateX(-50%) scaleY(0);
}
.rc-faq-a{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0 40px 30px 24px;
    letter-spacing: 0.05em;
}
.rc-faq-a .rc-faq-mark{
    color: #a8a8a8;
}
.rc-faq-a-text{
    flex: 1;
    padding-top: 4px;
}
@media screen and (max-width:767px){
    .rc-faq-q{
        font-size: 1.6rem;
        gap: 12px;
        padding: 20px 44px 20px 14px;
    }
    .rc-faq-mark{
        font-size: 1.9rem;
    }
    .rc-faq-icon{
        right: 16px;
    }
    .rc-faq-a{
        gap: 12px;
        padding: 0 14px 24px 14px;
    }
}

/* ---------------------------------------------------------------------
   セクション見出し補助（英語ラベルが長い場合の折返し防止解除）
   --------------------------------------------------------------------- */
.rc-ttl-narrow .ttl-cmn12{
    line-height: 1.1;
}
