/* ========================================
   求人ページ共通CSS
   ======================================== */

/* 画像保存防止（スマホ長押し） */
img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

a img, .swiper-slide img {
    pointer-events: none;
}

:root {
    --rc-primary: #ff5081;
    --rc-primary-light: #ff7ca3;
    --rc-primary-dark: #e0456e;
    --rc-bg: #f5f0eb;
    --rc-bg-alt: #ffffff;
    --rc-text: #3a3a3a;
    --rc-text-light: #6b6b6b;
    --rc-text-white: #ffffff;
    --rc-dark: #2a2a2a;
    --rc-dark-light: #3e3e3e;
    --rc-border: #e0dbd5;
    --rc-font-en: 'Quicksand', sans-serif;
    --rc-font-ja: 'Noto Sans JP', sans-serif;
    --rc-container: 1100px;
    --rc-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--rc-font-ja);
    font-size: 16px;
    line-height: 1.8;
    color: var(--rc-text);
    background-color: var(--rc-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========================================
   ヘッダー
   ======================================== */
.rc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rc-border);
    transition: all 0.3s ease;
}

.rc-header-inner {
    max-width: var(--rc-container);
    margin: 0 auto;
    padding: 0 20px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rc-header-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.rc-header-logo-main {
    font-family: var(--rc-font-en);
    font-size: 22px;
    font-weight: 700;
    color: var(--rc-primary);
}

.rc-header-logo-sub {
    font-size: 11px;
    color: var(--rc-text-light);
}

.rc-header-nav {
    display: flex;
    gap: 24px;
}

.rc-header-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    transition: color 0.3s;
    position: relative;
    color: var(--rc-text);
}

.rc-nav-en {
    font-family: var(--rc-font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.rc-nav-ja {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1.2;
}



.rc-header-nav-link:hover {
    color: var(--rc-primary);
}

.rc-header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rc-primary);
    transition: width 0.3s;
}

.rc-header-nav-link:hover::after {
    width: 100%;
}

.rc-header-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.rc-header-sub-btn {
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    border: 1.5px solid #00BCD4;
    color: #00BCD4;
    text-decoration: none;
    transition: all 0.2s;
}

.rc-header-sub-btn:hover {
    background: #00BCD4;
    color: var(--rc-text-white);
}

.rc-header-entry-btn {
    background: var(--rc-primary);
    color: var(--rc-text-white);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    transition: background 0.2s;
}

.rc-header-entry-btn:hover {
    background: var(--rc-primary-dark);
}

/* スマホ用ヘッダーバッジ（PC非表示） */
.rc-header-badges {
    display: none;
}

/* ドロップダウンメニュー */
.rc-header-dropdown {
    position: relative;
}

.rc-dropdown-trigger {
    cursor: pointer;
}

.rc-dropdown-arrow {
    font-size: 9px;
    margin-left: 3px;
    transition: transform 0.3s;
}

.rc-header-dropdown:hover .rc-dropdown-arrow {
    transform: rotate(180deg);
}

.rc-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    z-index: 1001;
    margin-top: 8px;
}

.rc-header-dropdown:hover .rc-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.rc-dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--rc-text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.rc-dropdown-item:hover {
    background: #f0fafb;
    color: var(--rc-primary);
}

.rc-header-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.rc-header-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--rc-text);
    transition: all 0.3s;
}

/* ========================================
   ヒーロー（固定背景）
   ======================================== */
.rc-hero-fixed-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.rc-hero-fixed-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


.rc-hero {
    position: relative;
    height: calc(100vh - 65px);
    margin-top: 65px;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.rc-hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.rc-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--rc-container);
    margin: 0 auto;
    padding: 0 20px 120px;
    width: 100%;
}

/* メインコピー - マスクスライドイン */
.rc-hero-copy {
    margin-bottom: 20px;
}

.rc-hero-copy-line {
    overflow: hidden;
}

.rc-hero-copy-line span {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: var(--rc-text-white);
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(110%);
    animation: slideUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.rc-hero-copy-line:nth-child(2) span {
    animation-delay: 0.25s;
}

/* サブコピー - 店名 */
.rc-hero-sub-copy {
    margin-bottom: 28px;
}

.rc-hero-sub-copy .rc-hero-copy-line span {
    font-family: var(--rc-font-en);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    opacity: 0.85;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    animation-delay: 0.55s;
}

/* メッセージ文 */
.rc-hero-message {
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.9s;
}

.rc-hero-message p {
    font-size: 15px;
    color: var(--rc-text-white);
    opacity: 0.9;
    line-height: 2;
}

/* ボタン */
.rc-hero-btns {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 1.1s;
}

/* スクロールインジケーター */
.rc-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1.4s;
}

.rc-hero-scroll span {
    font-family: var(--rc-font-en);
    font-size: 11px;
    font-weight: 600;
    color: var(--rc-text-white);
    letter-spacing: 0.15em;
    opacity: 0.7;
}

.rc-hero-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.rc-hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: scrollLine 1.5s ease-in-out infinite;
}

/* アニメーション */
@keyframes slideUp {
    0% { transform: translateY(110%); }
    100% { transform: translateY(0); }
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* セクションヘッダーアニメーション（サブページ用） */
.rc-section-header-animated .rc-section-label,
.rc-section-header-animated .rc-section-title {
    overflow: hidden;
}

.rc-anim-slide {
    display: block;
    transform: translateY(110%);
    animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.rc-anim-slide.rc-anim-delay-1 {
    animation-delay: 0.2s;
}

.rc-anim-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.5s;
}

/* サブページヒーロー */
.rc-page-hero {
    margin-top: 65px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1a2e3b 0%, #2a4a5e 100%);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.rc-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 80, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.rc-page-hero-label {
    font-family: var(--rc-font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--rc-primary-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    overflow: hidden;
}

.rc-page-hero-label span {
    display: block;
    transform: translateY(110%);
    animation: slideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.rc-page-hero-title {
    overflow: hidden;
    margin-bottom: 16px;
}

.rc-page-hero-title span {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    font-family: var(--rc-font-en);
    transform: translateY(110%);
    animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.15s;
}

.rc-page-hero-desc {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.5s;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.rc-page-hero-line {
    width: 40px;
    height: 2px;
    background: var(--rc-primary);
    margin: 20px auto 0;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.7s;
}

@media (max-width: 768px) {
    .rc-page-hero {
        padding: 60px 20px 48px;
    }

    .rc-page-hero-title span {
        font-size: 32px;
    }
}

/* ========================================
   コンセプト文（固定背景の上をスクロール）
   ======================================== */
.rc-concept {
    position: relative;
    background: transparent;
    padding: 0 20px;
    z-index: 1;
}

.rc-concept-inner {
    max-width: 680px;
    margin: 0 auto;
}

.rc-concept-block {
    padding: 80px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.rc-concept-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.rc-concept-lead-block {
    padding-top: 140px;
}

.rc-concept-lead {
    font-size: 36px;
    font-weight: 700;
    color: var(--rc-text-white);
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.rc-concept-block p {
    font-size: 17px;
    line-height: 2.4;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.04em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.rc-concept-strong {
    font-size: 24px !important;
    font-weight: 700;
    color: var(--rc-text-white) !important;
    margin-top: 20px;
    line-height: 1.6 !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.rc-concept-closing {
    padding-top: 100px;
    padding-bottom: 140px;
}

.rc-concept-catchcopy {
    font-size: 28px !important;
    font-weight: 700;
    color: var(--rc-text-white) !important;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.rc-concept-sign {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding-top: 24px;
}

.rc-concept-sign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .rc-concept-block {
        padding: 50px 0;
    }

    .rc-concept-lead-block {
        padding-top: 80px;
    }

    .rc-concept-lead {
        font-size: 26px;
    }

    .rc-concept-block p {
        font-size: 15px;
        line-height: 2.2;
    }

    .rc-concept-block p br {
        display: none;
    }

    .rc-concept-strong {
        font-size: 20px !important;
    }

    .rc-concept-closing {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .rc-concept-catchcopy {
        font-size: 22px !important;
    }
}

/* ========================================
   ボタン共通
   ======================================== */
.rc-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
}

.rc-btn-primary {
    background: var(--rc-primary);
    color: var(--rc-text-white);
}

.rc-btn-primary:hover {
    background: var(--rc-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 80, 129, 0.4);
}

.rc-btn-outline {
    background: transparent;
    color: var(--rc-text-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.rc-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ========================================
   セクション共通
   ======================================== */
.rc-container {
    max-width: var(--rc-container);
    margin: 0 auto;
    padding: 0 20px;
}

.rc-section {
    padding: 80px 0;
}

.rc-section-alt {
    background: var(--rc-bg-alt);
}

.rc-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.rc-section-label {
    font-family: var(--rc-font-en);
    font-size: 42px;
    font-weight: 700;
    color: var(--rc-text);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 6px;
    line-height: 1.2;
}

.rc-section-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--rc-text-light);
    line-height: 1.4;
}

.rc-section-desc {
    font-size: 15px;
    color: var(--rc-text-light);
    margin-top: 12px;
}

/* ========================================
   ブロックセクション（About / Works等）
   ======================================== */
.rc-block-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rc-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rc-block-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #fce4ec;
    transition: transform 0.5s ease;
}

.rc-block-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 80, 129, 0.08);
}

.rc-block-section:hover .rc-block-bg-image {
    transform: scale(1.03);
}

.rc-block-content {
    position: relative;
    z-index: 2;
    max-width: var(--rc-container);
    margin: 0 auto;
    padding: 100px 20px;
    width: 100%;
}

.rc-block-text {
    max-width: 480px;
}

.rc-block-label {
    font-family: var(--rc-font-en);
    font-size: 14px;
    font-weight: 600;
    color: var(--rc-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.rc-block-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--rc-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.rc-block-desc {
    font-size: 15px;
    color: var(--rc-text-light);
    line-height: 1.9;
    margin-bottom: 32px;
}

/* VIEWボタン */
.rc-block-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--rc-font-en);
    font-size: 14px;
    font-weight: 600;
    color: var(--rc-text);
    letter-spacing: 0.1em;
    transition: gap 0.3s;
}

.rc-block-view-btn:hover {
    gap: 24px;
}

.rc-block-view-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--rc-border);
    font-size: 14px;
    color: var(--rc-text);
    transition: all 0.3s;
}

.rc-block-view-btn:hover .rc-block-view-arrow {
    background: var(--rc-dark);
    color: var(--rc-text-white);
    border-color: var(--rc-dark);
}

/* 装飾テキスト（小） */
.rc-block-deco {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--rc-font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

/* 装飾テキスト（大・背景文字） */
.rc-block-deco-large {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--rc-font-en);
    font-size: clamp(100px, 15vw, 200px);
    font-weight: 700;
    color: rgba(255, 80, 129, 0.06);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 0.05em;
    line-height: 1;
}

/* ========================================
   こんな不安抱えていませんか？
   ======================================== */
.rc-worries-slider-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.rc-worries-swiper {
    overflow: hidden;
}

.rc-worries-swiper .swiper-slide {
    height: auto;
}

.rc-worries-slide {
    border-radius: var(--rc-radius);
    overflow: hidden;
}

.rc-worries-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.rc-worries-placeholder {
    background: var(--rc-border);
    aspect-ratio: 490/560;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rc-font-en);
    font-size: 14px;
    color: #999;
    border-radius: var(--rc-radius);
}

.rc-worries-pagination {
    text-align: center;
    margin-top: 20px;
}

.rc-worries-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--rc-border);
    opacity: 1;
    margin: 0 5px;
}

.rc-worries-pagination .swiper-pagination-bullet-active {
    background: var(--rc-primary);
}

@media (max-width: 768px) {
    .rc-worries-slider-wrap {
        padding: 0 16px;
    }
}

/* ========================================
   募集要項スライダー
   ======================================== */
.rc-requirements-slider-wrap {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 50px;
}

.rc-requirements-swiper {
    overflow: hidden;
    border-radius: var(--rc-radius);
}

.rc-requirements-slide {
    border-radius: var(--rc-radius);
    overflow: hidden;
}

.rc-requirements-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.rc-requirements-placeholder {
    background: var(--rc-border);
    aspect-ratio: 580/250;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rc-font-en);
    font-size: 14px;
    color: #999;
    border-radius: var(--rc-radius);
}

.rc-requirements-nav-prev,
.rc-requirements-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rc-bg-alt);
    border: 1px solid var(--rc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    color: var(--rc-text);
    transition: all 0.2s;
}

.rc-requirements-nav-prev:hover,
.rc-requirements-nav-next:hover {
    background: var(--rc-dark);
    color: var(--rc-text-white);
    border-color: var(--rc-dark);
}

.rc-requirements-nav-prev { left: 0; }
.rc-requirements-nav-next { right: 0; }

.rc-requirements-pagination {
    text-align: center;
    margin-top: 16px;
}

.rc-requirements-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--rc-border);
    opacity: 1;
    margin: 0 5px;
}

.rc-requirements-pagination .swiper-pagination-bullet-active {
    background: var(--rc-primary);
}

@media (max-width: 768px) {
    .rc-requirements-slider-wrap {
        padding: 0 20px;
    }

    .rc-requirements-nav-prev,
    .rc-requirements-nav-next {
        display: none;
    }
}

/* ========================================
   ブログ
   ======================================== */
.rc-blog-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.rc-blog-tab {
    padding: 6px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--rc-border);
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: var(--rc-text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.rc-blog-tab:hover {
    border-color: var(--rc-primary);
    color: var(--rc-primary);
}

.rc-blog-tab.active {
    background: var(--rc-primary);
    border-color: var(--rc-primary);
    color: var(--rc-text-white);
}

/* スライダーラップ */
.rc-blog-slider-wrap {
    position: relative;
    margin-bottom: 48px;
    padding: 0 50px;
}

.rc-blog-swiper {
    overflow: hidden;
}

.rc-blog-swiper .swiper-slide {
    height: auto;
}

/* ナビゲーション矢印 */
.rc-blog-nav-prev,
.rc-blog-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rc-bg-alt);
    border: 1px solid var(--rc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    color: var(--rc-text);
    transition: all 0.2s;
}

.rc-blog-nav-prev:hover,
.rc-blog-nav-next:hover {
    background: var(--rc-dark);
    color: var(--rc-text-white);
    border-color: var(--rc-dark);
}

.rc-blog-nav-prev {
    left: 0;
}

.rc-blog-nav-next {
    right: 0;
}

.rc-blog-card {
    background: var(--rc-bg-alt);
    border-radius: var(--rc-radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.rc-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.rc-blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.rc-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.rc-blog-card:hover .rc-blog-card-image img {
    transform: scale(1.05);
}

.rc-blog-card-image-placeholder {
    background: var(--rc-border);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rc-font-en);
    font-size: 14px;
    color: #999;
    transition: transform 0.4s;
}

.rc-blog-card:hover .rc-blog-card-image-placeholder {
    transform: scale(1.05);
}

.rc-blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--rc-primary);
    color: var(--rc-text-white);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}

.rc-blog-card-body {
    padding: 18px 20px 22px;
}

.rc-blog-card-date {
    font-family: var(--rc-font-en);
    font-size: 12px;
    color: var(--rc-text-light);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.rc-blog-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--rc-text);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rc-blog-more {
    text-align: center;
}

.rc-blog-more-btn {
    color: var(--rc-text) !important;
}

.rc-blog-more-btn .rc-block-view-arrow {
    background: transparent;
    border: 1.5px solid var(--rc-border);
    color: var(--rc-text);
}

.rc-blog-more-btn:hover .rc-block-view-arrow {
    background: var(--rc-dark);
    color: var(--rc-text-white);
    border-color: var(--rc-dark);
}

@media (max-width: 768px) {
    .rc-blog-tabs {
        gap: 6px;
        margin-bottom: 24px;
    }

    .rc-blog-tab {
        padding: 5px 14px;
        font-size: 12px;
    }

    .rc-blog-slider-wrap {
        padding: 0;
    }

    .rc-blog-nav-prev,
    .rc-blog-nav-next {
        display: none;
    }

    .rc-blog-card-title {
        font-size: 14px;
    }
}

/* ========================================
   お給料
   ======================================== */
.rc-salary-highlight {
    text-align: center;
    margin-bottom: 40px;
}

.rc-salary-badge {
    display: inline-block;
    background: var(--rc-primary);
    color: var(--rc-text-white);
    padding: 4px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rc-salary-amount {
    font-family: var(--rc-font-en);
    font-size: 64px;
    font-weight: 700;
    color: var(--rc-primary);
    line-height: 1;
}

.rc-salary-unit {
    font-size: 20px;
    font-weight: 500;
    color: var(--rc-text);
}

.rc-salary-note {
    font-size: 14px;
    color: var(--rc-text-light);
    margin-top: 8px;
}

.rc-salary-table {
    max-width: 700px;
    margin: 0 auto 48px;
}

.rc-salary-table table {
    width: 100%;
    border-collapse: collapse;
}

.rc-salary-table th,
.rc-salary-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--rc-border);
}

.rc-salary-table th {
    background: var(--rc-dark);
    color: var(--rc-text-white);
    font-size: 14px;
    font-weight: 600;
}

.rc-salary-table th:first-child {
    border-radius: var(--rc-radius) 0 0 0;
}

.rc-salary-table th:last-child {
    border-radius: 0 var(--rc-radius) 0 0;
}

.rc-salary-highlight-cell {
    font-size: 18px;
    font-weight: 700;
    color: var(--rc-primary);
}

/* コース別タブ */
.rc-salary-course-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--rc-text);
    margin-bottom: 20px;
    margin-top: 48px;
}

.rc-salary-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.rc-salary-tab {
    padding: 10px 28px;
    border-radius: 100px;
    border: 2px solid var(--rc-primary);
    background: var(--rc-bg-alt);
    font-size: 14px;
    font-weight: 700;
    color: var(--rc-primary);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.rc-salary-tab:hover {
    background: #fff0f4;
}

.rc-salary-tab.active {
    background: var(--rc-primary);
    border-color: var(--rc-primary);
    color: var(--rc-text-white);
    box-shadow: 0 4px 12px rgba(255, 80, 129, 0.3);
}

.rc-salary-course-table {
    display: none;
}

.rc-salary-course-table.active {
    display: block;
}

/* リアルなお給料スライダー */
.rc-salary-real-wrap {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 50px;
}

.rc-salary-real-swiper {
    overflow: hidden;
    border-radius: var(--rc-radius);
}

.rc-salary-real-slide {
    border-radius: var(--rc-radius);
    overflow: hidden;
}

.rc-salary-real-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.rc-salary-real-placeholder {
    background: var(--rc-border);
    aspect-ratio: 540/617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rc-font-en);
    font-size: 14px;
    color: #999;
    border-radius: var(--rc-radius);
}

.rc-salary-real-prev,
.rc-salary-real-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rc-bg-alt);
    border: 1px solid var(--rc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    color: var(--rc-text);
    transition: all 0.2s;
}

.rc-salary-real-prev:hover,
.rc-salary-real-next:hover {
    background: var(--rc-dark);
    color: var(--rc-text-white);
    border-color: var(--rc-dark);
}

.rc-salary-real-prev { left: 0; }
.rc-salary-real-next { right: 0; }

.rc-salary-real-pagination {
    text-align: center;
    margin-top: 16px;
}

.rc-salary-real-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--rc-border);
    opacity: 1;
    margin: 0 5px;
}

.rc-salary-real-pagination .swiper-pagination-bullet-active {
    background: var(--rc-primary);
}

@media (max-width: 768px) {
    .rc-salary-real-wrap {
        padding: 0 20px;
        max-width: 100%;
    }

    .rc-salary-real-prev,
    .rc-salary-real-next {
        display: none;
    }
}

/* 待機所紹介スライダー */
.rc-waiting-wrap {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 50px;
}

.rc-waiting-swiper {
    overflow: hidden;
    border-radius: var(--rc-radius);
}

.rc-waiting-slide {
    border-radius: var(--rc-radius);
    overflow: hidden;
}

.rc-waiting-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.rc-waiting-prev,
.rc-waiting-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--rc-border);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    color: var(--rc-text);
    transition: all 0.2s;
}

.rc-waiting-prev:hover,
.rc-waiting-next:hover {
    background: var(--rc-dark);
    color: var(--rc-text-white);
    border-color: var(--rc-dark);
}

.rc-waiting-prev { left: 0; }
.rc-waiting-next { right: 0; }

.rc-waiting-pagination {
    text-align: center;
    margin-top: 16px;
}

.rc-waiting-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--rc-border);
    opacity: 1;
    margin: 0 5px;
}

.rc-waiting-pagination .swiper-pagination-bullet-active {
    background: var(--rc-primary);
}

@media (max-width: 768px) {
    .rc-waiting-wrap {
        padding: 0;
        max-width: 100%;
    }

    .rc-waiting-swiper {
        overflow: hidden;
    }

    .rc-waiting-prev,
    .rc-waiting-next {
        display: none;
    }

    .rc-waiting-slide {
        border-radius: 0;
    }
}

/* シミュレーター */
.rc-simulator {
    max-width: 500px;
    margin: 0 auto;
    background: var(--rc-bg);
    border-radius: var(--rc-radius);
    padding: 32px;
}

.rc-simulator-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--rc-text);
}

.rc-simulator-title i {
    color: var(--rc-primary);
    margin-right: 8px;
}

.rc-simulator-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.rc-simulator-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rc-simulator-row label {
    font-size: 14px;
    font-weight: 500;
}

.rc-simulator-row select {
    padding: 8px 16px;
    border: 1px solid var(--rc-border);
    border-radius: 8px;
    font-size: 14px;
    background: white;
    min-width: 120px;
}

.rc-simulator-result {
    text-align: center;
    padding: 20px;
    background: var(--rc-primary);
    border-radius: var(--rc-radius);
    color: var(--rc-text-white);
}

.rc-simulator-result-label {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.rc-simulator-result-amount {
    font-family: var(--rc-font-en);
    font-size: 42px;
    font-weight: 700;
}

.rc-simulator-result-unit {
    font-size: 16px;
    margin-left: 4px;
}

/* ========================================
   待遇・環境
   ======================================== */
.rc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rc-benefit-card {
    background: var(--rc-bg-alt);
    border-radius: var(--rc-radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.rc-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.rc-benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--rc-primary), var(--rc-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--rc-text-white);
}

.rc-benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.rc-benefit-card p {
    font-size: 14px;
    color: var(--rc-text-light);
    line-height: 1.6;
}

/* ========================================
   出稼ぎ・地元向け
   ======================================== */
.rc-target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.rc-target-card {
    position: relative;
    border-radius: var(--rc-radius);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: var(--rc-text-white);
}

.rc-target-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--rc-border);
    transition: transform 0.5s ease;
}

.rc-target-card:hover .rc-target-card-image {
    transform: scale(1.05);
}

.rc-target-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
}

.rc-target-card-content {
    position: relative;
    z-index: 2;
    padding: 36px;
    width: 100%;
}

.rc-target-label {
    display: inline-block;
    background: var(--rc-primary);
    color: var(--rc-text-white);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.rc-target-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.rc-target-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.rc-target-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.rc-target-list li i {
    color: var(--rc-primary-light);
    font-size: 13px;
}

.rc-target-view {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--rc-font-en);
    font-size: 14px;
    font-weight: 600;
    color: var(--rc-text-white);
    letter-spacing: 0.1em;
    transition: gap 0.3s;
}

.rc-target-card:hover .rc-target-view {
    gap: 22px;
}

.rc-target-view .rc-block-view-arrow {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: var(--rc-text-white);
}

.rc-target-card:hover .rc-target-view .rc-block-view-arrow {
    background: var(--rc-text-white);
    color: var(--rc-dark);
    border-color: var(--rc-text-white);
}

/* ========================================
   左右分割セクション（テキスト左 + 画像右）
   ======================================== */
.rc-split-section {
    position: relative;
    display: flex;
    min-height: 500px;
    overflow: hidden;
}

.rc-split-text {
    width: 45%;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: var(--rc-bg);
}

.rc-split-text-inner {
    max-width: 440px;
    margin-left: auto;
    padding: 0 48px 0 20px;
}

.rc-split-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--rc-text);
    line-height: 1.5;
    margin-bottom: 20px;
}

.rc-split-desc {
    font-size: 15px;
    color: var(--rc-text-light);
    line-height: 1.9;
    margin-top: 16px;
    margin-bottom: 32px;
}

.rc-split-view-btn {
    color: var(--rc-text) !important;
}

.rc-split-view-btn .rc-block-view-arrow {
    background: transparent;
    border: 1.5px solid var(--rc-border);
    color: var(--rc-text);
}

.rc-split-view-btn:hover .rc-block-view-arrow {
    background: var(--rc-dark);
    color: var(--rc-text-white);
    border-color: var(--rc-dark);
}

.rc-split-image {
    width: 55%;
    overflow: hidden;
}

.rc-split-image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--rc-border);
    transition: transform 0.5s ease;
}

.rc-split-section:hover .rc-split-image-inner {
    transform: scale(1.03);
}

.rc-split-deco {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--rc-font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
}

@media (max-width: 768px) {
    .rc-split-section {
        flex-direction: column;
        min-height: auto;
    }

    .rc-split-text {
        width: 100%;
        padding: 40px 20px;
    }

    .rc-split-text-inner {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .rc-split-title {
        font-size: 24px;
    }

    .rc-split-image {
        width: 100%;
        height: 250px;
    }

    .rc-split-deco {
        display: none;
    }
}

/* ========================================
   1日の流れ（非表示・テンプレート用に残す）
   ======================================== */
.rc-flow-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-left: 100px;
}

.rc-flow-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--rc-border);
}

.rc-flow-item {
    position: relative;
    padding-bottom: 40px;
}

.rc-flow-item:last-child {
    padding-bottom: 0;
}

.rc-flow-time {
    position: absolute;
    left: -100px;
    top: 0;
    font-family: var(--rc-font-en);
    font-size: 16px;
    font-weight: 600;
    color: var(--rc-primary);
    width: 70px;
    text-align: right;
}

.rc-flow-dot {
    position: absolute;
    left: -24px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--rc-primary);
    border-radius: 50%;
    border: 3px solid var(--rc-bg);
}

.rc-flow-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.rc-flow-content p {
    font-size: 14px;
    color: var(--rc-text-light);
}

/* ========================================
   スタッフ紹介
   ======================================== */
.rc-staff-section {
    padding: 80px 0;
    background: var(--rc-bg-alt);
    overflow: hidden;
}

.rc-staff-slider-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.rc-staff-swiper {
    overflow: hidden;
}

.rc-staff-swiper .swiper-slide {
    height: auto;
}

/* カード全体 */
.rc-staff-slide {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--rc-radius);
    overflow: hidden;
    cursor: grab;
}

/* 背景色レイヤー */
.rc-staff-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* 人物画像 */
.rc-staff-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.rc-staff-slide-image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rc-font-en);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.rc-staff-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

/* テキスト情報 */
.rc-staff-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.rc-staff-slide-quote {
    font-size: 14px;
    color: var(--rc-text-white);
    line-height: 1.8;
    margin-bottom: 14px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.rc-staff-slide-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.rc-staff-slide-role {
    font-size: 11px;
    font-weight: 700;
    color: var(--rc-primary-light);
    background: rgba(255, 80, 129, 0.2);
    padding: 2px 10px;
    border-radius: 100px;
}

.rc-staff-slide-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--rc-text-white);
}

.rc-staff-slide-since {
    font-family: var(--rc-font-en);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* ナビゲーション */
.rc-staff-nav-prev,
.rc-staff-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rc-bg-alt);
    border: 1px solid var(--rc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    color: var(--rc-text);
    transition: all 0.2s;
}

.rc-staff-nav-prev:hover,
.rc-staff-nav-next:hover {
    background: var(--rc-dark);
    color: var(--rc-text-white);
    border-color: var(--rc-dark);
}

.rc-staff-nav-prev { left: 6px; }
.rc-staff-nav-next { right: 6px; }

@media (max-width: 768px) {
    .rc-staff-section {
        padding: 60px 0;
    }

    .rc-staff-slider-wrap {
        padding: 0 20px;
    }

    .rc-staff-slide {
        height: 420px;
    }

    .rc-staff-nav-prev,
    .rc-staff-nav-next {
        display: none;
    }
}

/* ========================================
   先輩の声
   ======================================== */
.rc-voices-slider-wrap {
    position: relative;
    max-width: var(--rc-container);
    margin: 0 auto;
    padding: 0 50px;
}

.rc-voices-swiper {
    overflow: hidden;
}

.rc-voices-swiper .swiper-slide {
    height: auto;
}

.rc-voices-nav-prev,
.rc-voices-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rc-bg-alt);
    border: 1px solid var(--rc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    color: var(--rc-text);
    transition: all 0.2s;
}

.rc-voices-nav-prev:hover,
.rc-voices-nav-next:hover {
    background: var(--rc-dark);
    color: var(--rc-text-white);
    border-color: var(--rc-dark);
}

.rc-voices-nav-prev { left: 0; }
.rc-voices-nav-next { right: 0; }

.rc-voices-pagination {
    text-align: center;
    margin-top: 16px;
}

.rc-voices-pagination .swiper-pagination-bullet-active {
    background: var(--rc-primary);
}

.rc-voices-more {
    text-align: center;
    margin-top: 32px;
}

/* 口コミ一覧ページ */
.rc-voice-full-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.rc-voice-full-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--rc-bg-alt);
    border-radius: var(--rc-radius);
    padding: 32px;
    border: 1px solid var(--rc-border);
}

.rc-voice-full-card p {
    font-size: 15px;
    color: var(--rc-text-light);
    line-height: 1.9;
    margin-bottom: 12px;
}

.rc-voice-full-date {
    font-size: 12px;
    color: #bbb;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--rc-border);
}

/* ========================================
   ブログ一覧ページ (note風)
   ======================================== */
.rc-blog-page-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.rc-blog-page-main {
    min-width: 0;
}

.rc-blog-page-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

/* スマホ用タブ（PCでは非表示） */
.rc-blog-page-tabs-sp {
    display: none;
}

.rc-blog-page-tab {
    padding: 10px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--rc-text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.rc-blog-page-tab:hover {
    color: var(--rc-text);
}

.rc-blog-page-tab.active {
    color: var(--rc-text);
    border-bottom-color: var(--rc-text);
}

.rc-blog-page-list {
}

.rc-blog-page-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--rc-border);
    text-decoration: none;
    color: var(--rc-text);
    transition: opacity 0.2s;
}

.rc-blog-page-item:hover {
    opacity: 0.7;
}

.rc-blog-page-item-body {
    flex: 1;
    min-width: 0;
}

.rc-blog-page-item-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--rc-primary);
    background: #fff0f4;
    padding: 2px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.rc-blog-page-item-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rc-blog-page-item-meta {
    font-size: 12px;
    color: #aaa;
}

.rc-blog-page-item-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.rc-blog-page-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-blog-page-item-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--rc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
}

/* ========================================
   ブログ詳細ページ
   ======================================== */
.rc-blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.rc-blog-detail-main {
    min-width: 0;
}

.rc-blog-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rc-blog-detail-date {
    font-size: 13px;
    color: #aaa;
}

.rc-blog-detail-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--rc-text);
}

.rc-blog-detail-thumb {
    float: left;
    margin: 0 20px 16px 0;
}

.rc-blog-detail-thumb img {
    width: 240px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.rc-blog-detail-thumb-placeholder {
    width: 240px;
    height: 320px;
    background: var(--rc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #999;
    border-radius: 8px;
}

.rc-blog-detail-content {
    font-size: 15px;
    line-height: 2;
    color: var(--rc-text);
    overflow: hidden;
}


.rc-blog-detail-content p {
    margin-bottom: 20px;
}

.rc-blog-detail-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 16px;
    padding-left: 14px;
    border-left: 4px solid var(--rc-primary);
}

/* 前の記事 / 次の記事 */
.rc-blog-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--rc-border);
}

.rc-blog-detail-nav-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--rc-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--rc-text);
    transition: all 0.2s;
}

.rc-blog-detail-nav-item:hover {
    background: var(--rc-bg);
}

.rc-blog-detail-nav-label {
    font-size: 12px;
    color: var(--rc-primary);
    font-weight: 600;
}

.rc-blog-detail-nav-next .rc-blog-detail-nav-label {
    text-align: right;
}

.rc-blog-detail-nav-title {
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* サイドバー */
.rc-blog-detail-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.rc-blog-sidebar-section {
    margin-bottom: 32px;
}

.rc-blog-sidebar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--rc-text);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--rc-text);
    margin-bottom: 12px;
}

.rc-blog-sidebar-list {
    display: flex;
    flex-direction: column;
}

.rc-blog-sidebar-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--rc-border);
    text-decoration: none;
    color: var(--rc-text);
    transition: opacity 0.2s;
}

.rc-blog-sidebar-item:hover {
    opacity: 0.7;
}

.rc-blog-sidebar-item-thumb {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
}

.rc-blog-sidebar-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--rc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #999;
}

.rc-blog-sidebar-item-body {
    flex: 1;
    min-width: 0;
}

.rc-blog-sidebar-item-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.rc-blog-sidebar-item-body time {
    font-size: 11px;
    color: #aaa;
}

/* サイドバー アーカイブリスト */
.rc-blog-sidebar-archive {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rc-blog-sidebar-archive li {
    border-bottom: 1px solid var(--rc-border);
}

.rc-blog-sidebar-archive a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    color: var(--rc-text);
    text-decoration: none;
    transition: color 0.2s;
}

.rc-blog-sidebar-archive a:hover {
    color: var(--rc-primary);
}

.rc-blog-sidebar-archive span {
    font-size: 12px;
    color: #aaa;
    background: var(--rc-bg);
    padding: 2px 8px;
    border-radius: 100px;
}

/* ページネーション */
.rc-blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    padding-top: 24px;
}

.rc-blog-pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--rc-text-light);
    border: 1px solid var(--rc-border);
    transition: all 0.2s;
}

.rc-blog-pagination-item:hover {
    border-color: var(--rc-primary);
    color: var(--rc-primary);
}

.rc-blog-pagination-item.active {
    background: var(--rc-primary);
    border-color: var(--rc-primary);
    color: white;
}

.rc-blog-pagination-next {
    font-size: 12px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .rc-blog-page-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rc-blog-page-sidebar {
        display: none;
    }

    .rc-blog-page-tabs-sp {
        display: flex;
        gap: 0;
        border-bottom: 1px solid var(--rc-border);
        margin-bottom: 8px;
    }

    .rc-blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .rc-blog-detail-sidebar {
        position: static;
    }

    .rc-blog-detail-title {
        font-size: 20px;
    }

    .rc-blog-detail-nav {
        grid-template-columns: 1fr;
    }

    .rc-blog-detail-nav-next .rc-blog-detail-nav-label {
        text-align: left;
    }

    .rc-blog-detail-thumb {
        float: none;
        margin: 0 auto 20px;
        text-align: center;
        width: 200px;
    }

    .rc-blog-detail-thumb img,
    .rc-blog-detail-thumb-placeholder {
        width: 200px;
    }
}

.rc-voice-card {
    background: var(--rc-bg-alt);
    border-radius: var(--rc-radius);
    padding: 28px;
    border: 1px solid var(--rc-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.rc-voice-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--rc-primary);
    background: #fff0f4;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.rc-voice-text {
    font-size: 14px;
    color: var(--rc-text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.rc-voice-date {
    font-size: 12px;
    color: #bbb;
    margin-top: auto;
    padding-top: 12px;
}

/* 口コミ種別バッジ */
.rc-voice-type-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rc-voice-type-positive {
    background: #e8f5e9;
    color: #2e7d32;
}

.rc-voice-type-improvement {
    background: #fff3e0;
    color: #e65100;
}

/* 改善要望カード */
.rc-voice-card-improvement {
    border-left: 3px solid #FF9800;
}

/* 口コミ返信 */
.rc-voice-reply {
    margin-top: 16px;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-left: 3px solid #90a4ae;
    background: #fafafa;
    border-radius: 0 4px 4px 0;
}

.rc-voice-reply-header {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e0e0e0;
}

.rc-voice-reply-body {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

.rc-voice-reply-name {
    font-size: 13px;
    color: #777;
    margin-top: 12px;
    text-align: right;
}

/* ========================================
   Q&A
   ======================================== */
.rc-faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.rc-faq-more {
    text-align: center;
    margin-top: 32px;
}

/* FAQカテゴリナビ */
.rc-faq-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rc-faq-nav-item {
    padding: 10px 24px;
    border: 2px solid var(--rc-primary);
    border-radius: 100px;
    background: var(--rc-bg-alt);
    font-size: 14px;
    font-weight: 700;
    color: var(--rc-primary);
    text-decoration: none;
    transition: all 0.2s;
}

.rc-faq-nav-item:hover {
    background: var(--rc-primary);
    color: white;
}

/* FAQカテゴリセクション */
.rc-faq-category-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.rc-faq-category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--rc-text);
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid var(--rc-primary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .rc-faq-nav {
        gap: 8px;
    }

    .rc-faq-nav-item {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.rc-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rc-faq-tab {
    padding: 8px 20px;
    border: 1px solid var(--rc-border);
    border-radius: 100px;
    background: var(--rc-bg-alt);
    font-size: 13px;
    font-weight: 600;
    color: var(--rc-text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.rc-faq-tab:hover {
    border-color: var(--rc-primary);
    color: var(--rc-primary);
}

.rc-faq-tab.active {
    background: var(--rc-primary);
    color: white;
    border-color: var(--rc-primary);
}

.rc-faq-item {
    border-bottom: 1px solid var(--rc-border);
    cursor: pointer;
}

.rc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
}

.rc-faq-question i {
    color: var(--rc-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.rc-faq-item.open .rc-faq-question i {
    transform: rotate(45deg);
}

.rc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.rc-faq-item.open .rc-faq-answer {
    max-height: 1000px;
    padding-bottom: 20px;
}

.rc-faq-answer p {
    font-size: 14px;
    color: var(--rc-text-light);
    line-height: 1.8;
    white-space: pre-wrap;
}

/* ========================================
   応募セクション
   ======================================== */
.rc-entry {
    background: #e8f5e9 !important;
    color: var(--rc-text);
}

.rc-entry .rc-section-label {
    color: #2e7d32;
}

.rc-entry .rc-section-title {
    color: var(--rc-text-light);
}

.rc-entry .rc-section-desc {
    color: var(--rc-text-light);
}

.rc-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rc-entry-card {
    background: var(--rc-bg-alt);
    border-radius: var(--rc-radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid #c8e6c9;
}

.rc-entry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.rc-entry-card i {
    font-size: 32px;
    margin-bottom: 8px;
}

.rc-entry-tel i { color: #2e7d32; }
.rc-entry-line i { color: #06C755; }
.rc-entry-web i { color: #2e7d32; }

.rc-entry-card-title {
    font-size: 16px;
    font-weight: 700;
}

.rc-entry-card-info {
    font-family: var(--rc-font-en);
    font-size: 18px;
    font-weight: 600;
    color: var(--rc-text);
}

.rc-entry-card-sub {
    font-size: 12px;
    color: var(--rc-text-light);
}

/* ========================================
   寮にある物スライダー
   ======================================== */
.rc-dormitory-slider-wrap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px;
}

.rc-dormitory-slide {
    width: 100%;
}

.rc-dormitory-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--rc-radius);
    display: block;
}

.rc-ryou-prev,
.rc-ryou-next,
.rc-dormitory-prev,
.rc-dormitory-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    color: var(--rc-text);
    transition: background 0.2s;
}

.rc-ryou-prev:hover,
.rc-ryou-next:hover,
.rc-dormitory-prev:hover,
.rc-dormitory-next:hover {
    background: var(--rc-primary);
    color: white;
}

.rc-ryou-prev,
.rc-dormitory-prev {
    left: 4px;
}

.rc-ryou-next,
.rc-dormitory-next {
    right: 4px;
}

.rc-ryou-pagination,
.rc-dormitory-pagination {
    text-align: center;
    margin-top: 20px;
}

.rc-ryou-pagination .swiper-pagination-bullet-active,
.rc-dormitory-pagination .swiper-pagination-bullet-active {
    background: var(--rc-primary);
}

@media (max-width: 768px) {
    .rc-dormitory-slider-wrap {
        padding: 0 16px;
    }
}

/* ========================================
   フッター
   ======================================== */
/* SNSエリア（白背景） */
.rc-footer-sns {
    background: #fff;
    text-align: center;
    padding: 32px 20px;
    border-top: 1px solid #e0e0e0;
}

.rc-footer-sns-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.rc-footer-sns-icons {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
}

.rc-footer-sns-icon {
    font-size: 28px;
    color: #444;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-footer-sns-icon:hover {
    color: #E91E90;
}

.rc-footer-sns-note {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ダークエリア */
.rc-footer-dark {
    background: #1a2e3b;
    color: rgba(255, 255, 255, 0.85);
    padding: 40px 0 0;
}

/* PC用フッター */
.rc-footer-inner {
    max-width: var(--rc-container);
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.rc-footer-logo {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.rc-footer-text {
    font-size: 13px;
}

.rc-footer-links-pc {
    display: flex;
    gap: 0 48px;
}

.rc-footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rc-footer-links-pc a,
.rc-footer-sp a {
    font-size: 13px;
    transition: color 0.2s;
    display: inline-block;
    overflow: hidden;
}

.rc-footer-links-pc a span {
    display: inline-block;
}

.rc-footer-links-pc a:hover span {
    animation: footerLinkFlip 400ms ease-out forwards;
}

@keyframes footerLinkFlip {
    0% { transform: translateY(0); }
    40% { transform: translateY(-100%); }
    41% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}

.rc-footer-links-pc a:hover {
    color: var(--rc-text-white);
}

.rc-footer-entry-btn {
    display: inline-block;
    background: var(--rc-text-white);
    color: var(--rc-primary);
    padding: 10px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.rc-footer-entry-btn:hover {
    background: rgba(255, 255, 255, 0.85);
}

/* スマホ用アコーディオンフッター（デフォルト非表示） */
.rc-footer-sp {
    display: none;
}

.rc-footer-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.rc-footer-accordion:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.rc-footer-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.rc-footer-accordion-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.rc-footer-accordion-btn i {
    font-size: 12px;
    transition: transform 0.3s;
    color: rgba(255, 255, 255, 0.5);
}

.rc-footer-accordion.active .rc-footer-accordion-btn i {
    transform: rotate(45deg);
}

.rc-footer-accordion-body {
    display: none;
    flex-direction: column;
    padding: 0 20px 16px 32px;
    gap: 12px;
}

.rc-footer-accordion.active .rc-footer-accordion-body {
    display: flex;
}

.rc-footer-accordion-body a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: color 0.2s;
}

.rc-footer-accordion-body a:hover {
    color: white;
}

.rc-footer-copy {
    text-align: center;
    font-size: 12px;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   応募フォーム
   ======================================== */
.rc-entry-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    background: var(--rc-bg-alt);
    border-radius: var(--rc-radius);
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* 連絡方法選択カード */
.rc-entry-methods {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.rc-entry-method-card {
    position: relative;
    background: var(--rc-bg-alt);
    border-radius: var(--rc-radius);
    padding: 36px 24px 28px;
    text-align: center;
    text-decoration: none;
    color: var(--rc-text);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rc-entry-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.rc-entry-method-line {
    border-color: #06C755;
}

.rc-entry-method-line:hover {
    background: #f0fdf4;
}

.rc-entry-method-tel {
    border-color: var(--rc-primary);
}

.rc-entry-method-tel:hover {
    background: #fff5f7;
}

.rc-entry-method-form {
    border-color: var(--rc-border);
}

.rc-entry-method-form:hover {
    border-color: #90a4ae;
    background: #fafafa;
}

.rc-entry-method-recommend {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #06C755;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.rc-entry-method-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.rc-entry-method-line .rc-entry-method-icon { color: #06C755; }
.rc-entry-method-tel .rc-entry-method-icon { color: var(--rc-primary); }
.rc-entry-method-form .rc-entry-method-icon { color: #78909c; }

.rc-entry-method-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rc-entry-method-desc {
    font-size: 13px;
    color: var(--rc-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.rc-entry-method-action {
    font-size: 14px;
    font-weight: 600;
    color: var(--rc-text);
    margin-top: auto;
}

.rc-entry-method-action i {
    margin-left: 4px;
    font-size: 12px;
}

.rc-entry-method-phone {
    display: block;
    font-family: var(--rc-font-en);
    font-size: 22px;
    font-weight: 700;
    color: var(--rc-text);
    margin-bottom: 6px;
}

.rc-entry-method-hours {
    display: block;
    font-size: 11px;
    color: var(--rc-text-light);
    margin-top: auto;
}

@media (max-width: 768px) {
    .rc-entry-methods {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rc-entry-method-card {
        padding: 28px 20px 24px;
    }
}

.rc-entry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rc-entry-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rc-entry-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--rc-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rc-entry-form-required {
    font-size: 11px;
    font-weight: 600;
    color: white;
    background: var(--rc-primary);
    padding: 1px 8px;
    border-radius: 100px;
}

.rc-entry-form-input,
.rc-entry-form-select,
.rc-entry-form-textarea {
    padding: 12px 16px;
    border: 1px solid var(--rc-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--rc-font-ja);
    color: var(--rc-text);
    background: white;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.rc-entry-form-input:focus,
.rc-entry-form-select:focus,
.rc-entry-form-textarea:focus {
    outline: none;
    border-color: var(--rc-primary);
    box-shadow: 0 0 0 3px rgba(255, 80, 129, 0.1);
}

.rc-entry-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.rc-entry-form-privacy {
    background: var(--rc-bg);
    border-radius: 8px;
    padding: 16px;
}

.rc-entry-form-privacy p {
    font-size: 12px;
    color: var(--rc-text-light);
    line-height: 1.7;
    margin: 0;
}

.rc-entry-form-submit {
    text-align: center;
    margin-top: 8px;
}

.rc-entry-form-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

/* CTAセクション（ピンク背景 + カード） */
.rc-entry-cta {
    padding: 60px 0;
    background: #e8f5e9;
    text-align: center;
}

.rc-entry-cta-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--rc-text);
    margin-bottom: 36px;
    line-height: 1.6;
}

.rc-entry-cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.rc-entry-cta-card {
    background: white;
    border-radius: var(--rc-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.rc-entry-cta-card-inner {
    padding: 32px 24px;
    text-align: center;
}

.rc-entry-cta-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.rc-entry-cta-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--rc-text);
    margin-bottom: 12px;
}

.rc-entry-cta-card-text {
    font-size: 13px;
    color: var(--rc-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.rc-entry-cta-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.rc-entry-cta-btn-line {
    background: #06C755;
    color: white;
}

.rc-entry-cta-btn-line:hover {
    background: #05b04c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
}

.rc-entry-cta-btn-tel {
    background: var(--rc-primary);
    color: white;
}

.rc-entry-cta-btn-tel:hover {
    background: var(--rc-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 80, 129, 0.4);
}

.rc-entry-cta-card-company {
    font-size: 13px;
    color: var(--rc-text-light);
    margin-bottom: 12px;
}

.rc-entry-cta-phone {
    display: block;
    font-family: var(--rc-font-en);
    font-size: 28px;
    font-weight: 700;
    color: var(--rc-text);
    text-decoration: none;
    margin-bottom: 8px;
}

.rc-entry-cta-card-hours {
    font-size: 12px;
    color: var(--rc-text-light);
}

@media (max-width: 768px) {
    .rc-entry-cta-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rc-entry-cta-card-inner {
        padding: 24px 20px;
    }
}

/* ========================================
   スマホ固定バー
   ======================================== */
.rc-fixed-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
}

.rc-fixed-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 4px;
    text-decoration: none;
    border-right: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.rc-fixed-bar-item:last-child {
    border-right: none;
}

.rc-fixed-bar-item:active {
    background: #f5f5f5;
}

.rc-fixed-bar-item i {
    font-size: 20px;
}

.rc-fixed-bar-item span {
    font-size: 10px;
    font-weight: 600;
}

.rc-fixed-bar-item:nth-child(1) i { color: #4CAF50; }
.rc-fixed-bar-item:nth-child(1) span { color: #4CAF50; }

.rc-fixed-bar-item:nth-child(2) i { color: #06C755; }
.rc-fixed-bar-item:nth-child(2) span { color: #06C755; }

.rc-fixed-bar-item:nth-child(3) i { color: var(--rc-primary); }
.rc-fixed-bar-item:nth-child(3) span { color: var(--rc-primary); }

.rc-fixed-bar-blog {
    background: #E91E63 !important;
    border-right: none !important;
}

.rc-fixed-bar-blog i,
.rc-fixed-bar-blog span {
    color: #fff !important;
}

.rc-fixed-bar-blog:active {
    background: #C2185B !important;
}

/* ========================================
   フェードインアニメーション
   ======================================== */
.rc-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rc-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.rc-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.rc-slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   レスポンシブ（タブレット）
   ======================================== */
@media (max-width: 1024px) {
    .rc-header-nav {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--rc-border);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .rc-nav-open .rc-header-nav {
        display: flex;
    }

    .rc-header-hamburger {
        display: flex;
    }

    .rc-header-nav-link {
        flex-direction: row;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid var(--rc-border);
        color: var(--rc-text);
    }

    .rc-nav-en {
        font-size: 14px;
        min-width: 70px;
    }

    .rc-nav-ja {
        font-size: 13px;
        opacity: 1;
    }

    .rc-header-nav-link::after {
        display: none;
    }

    .rc-header-dropdown {
        width: 100%;
    }

    .rc-nav-open .rc-header-hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .rc-nav-open .rc-header-hamburger span:nth-child(2) {
        opacity: 0;
    }
    .rc-nav-open .rc-header-hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .rc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ========================================
   レスポンシブ（スマホ）
   ======================================== */
@media (max-width: 768px) {
    /* スマホ用ヘッダーバッジ */
    .rc-header-badges {
        display: flex;
        gap: 6px;
        margin-left: auto;
        margin-right: 12px;
    }

    .rc-header-badge {
        padding: 4px 10px;
        border-radius: 100px;
        font-size: 10px;
        font-weight: 700;
        border: 1.5px solid #00BCD4;
        color: #00BCD4;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.2s;
    }

    .rc-header-badge:active {
        background: #00BCD4;
        color: white;
    }

    /* ナビ */
    .rc-header-nav {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--rc-border);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .rc-nav-open .rc-header-nav {
        display: flex;
    }

    .rc-header-nav-link {
        flex-direction: row;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid var(--rc-border);
        color: var(--rc-text);
    }

    .rc-nav-en {
        font-size: 14px;
        min-width: 70px;
    }

    .rc-nav-ja {
        font-size: 13px;
        opacity: 1;
    }

    .rc-header-nav-link::after {
        display: none;
    }

    /* スマホ用ドロップダウン */
    .rc-header-dropdown {
        width: 100%;
    }

    .rc-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
        background: #f8f9fa;
    }

    .rc-header-dropdown.is-open .rc-dropdown-menu {
        max-height: 400px;
    }

    .rc-dropdown-item {
        padding: 12px 20px 12px 32px;
        border-bottom: 1px solid var(--rc-border);
        font-size: 13px;
    }

    .rc-header-btns {
        display: none;
    }

    .rc-nav-open .rc-header-hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .rc-nav-open .rc-header-hamburger span:nth-child(2) {
        opacity: 0;
    }
    .rc-nav-open .rc-header-hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ヒーロー */
    .rc-hero {
        height: auto;
        min-height: 0;
        margin-top: 65px;
        aspect-ratio: 1/1;
    }

    .rc-hero-fixed-bg img {
        object-fit: cover;
    }

    .rc-hero-copy-line span {
        font-size: 32px;
    }

    .rc-hero-btns {
        flex-direction: column;
    }

    .rc-hero-btns .rc-btn {
        text-align: center;
    }

    .rc-hero-scroll {
        display: none;
    }

    /* セクション */
    .rc-section {
        padding: 60px 0;
    }

    .rc-section-label {
        font-size: 32px;
    }

    .rc-section-title {
        font-size: 13px;
    }

    /* ブロックセクション */
    .rc-block-section {
        min-height: 400px;
    }

    .rc-block-content {
        padding: 60px 20px;
    }

    .rc-block-text {
        max-width: 100%;
    }

    .rc-block-title {
        font-size: 26px;
    }

    .rc-block-deco {
        display: none;
    }

    .rc-block-deco-large {
        font-size: 60px;
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.6;
    }

    /* お給料 */
    .rc-salary-amount {
        font-size: 48px;
    }

    .rc-simulator {
        padding: 24px 20px;
    }

    /* 待遇 */
    .rc-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .rc-benefit-card {
        padding: 24px 16px;
    }

    /* 出稼ぎ・地元 */
    .rc-target-grid {
        grid-template-columns: 1fr;
    }

    .rc-target-card {
        min-height: 400px;
    }

    /* 1日の流れ */
    .rc-flow-timeline {
        padding-left: 80px;
    }

    .rc-flow-timeline::before {
        left: 60px;
    }

    .rc-flow-time {
        left: -80px;
        width: 55px;
        font-size: 14px;
    }

    .rc-flow-dot {
        left: -24px;
    }

    /* 先輩の声 */
    .rc-voices-slider-wrap {
        padding: 0 20px;
    }

    .rc-voices-nav-prev,
    .rc-voices-nav-next {
        display: none;
    }

    /* 応募 */
    .rc-entry-grid {
        grid-template-columns: 1fr;
    }

    .rc-entry-form-wrap {
        padding: 24px 20px;
    }

    /* フッター */
    .rc-footer-sns {
        padding: 24px 20px;
    }

    .rc-footer-sns-icons {
        gap: 24px;
    }

    .rc-footer-sns-icon {
        font-size: 24px;
    }

    .rc-footer-pc {
        display: none;
    }

    .rc-footer-sp {
        display: block;
        padding: 0 0 16px;
    }

    .rc-footer-dark {
        padding: 0;
    }

    .rc-footer {
        padding-bottom: 70px;
    }

    /* 固定バー表示 */
    .rc-fixed-bar {
        display: flex;
    }
}

/* ========================================
   スタッフ一覧カード
   ======================================== */
.rc-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.rc-staff-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.rc-staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.rc-staff-card-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #fce4ec;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.rc-staff-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-staff-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ccc;
    font-weight: 700;
    letter-spacing: 2px;
    background: #f5f5f5;
}

.rc-staff-card-body {
    padding: 20px;
}

.rc-staff-card-role {
    display: inline-block;
    background: #E91E90;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.rc-staff-card-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.rc-staff-card-quote {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 12px;
}

.rc-staff-card-more {
    font-size: 13px;
    color: #E91E90;
    font-weight: 600;
}

.rc-staff-card-more i {
    margin-left: 4px;
    transition: transform 0.2s;
}

.rc-staff-card:hover .rc-staff-card-more i {
    transform: translateX(4px);
}

/* ========================================
   スタッフ詳細ページ
   ======================================== */

/* ヒーロー */
.rc-staff-hero {
    position: relative;
    height: 520px;
    margin-bottom: 60px;
}

.rc-staff-hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    overflow: hidden;
}

.rc-staff-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-staff-hero-card {
    position: absolute;
    left: 5%;
    bottom: -40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 48px 52px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.rc-staff-hero-label {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 20px;
    font-weight: 600;
}

.rc-staff-hero-quote {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    line-height: 1.8;
    margin-bottom: 24px;
}

.rc-staff-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 17px;
    color: #777;
    line-height: 1.6;
    font-weight: 600;
}

/* インタビュー */
.rc-staff-interview {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 0;
}

.rc-staff-qa {
    margin-bottom: 40px;
}

.rc-staff-question {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.rc-staff-q-mark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #E91E90;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.rc-staff-question p {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.8;
    padding-top: 4px;
}

.rc-staff-answer {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.rc-staff-a-mark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    color: #E91E90;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.rc-staff-answer p {
    font-size: 15px;
    color: #555;
    line-height: 2;
    padding-top: 4px;
}

.rc-staff-interview-image {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
}

.rc-staff-interview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* プロフィール */
.rc-staff-profile {
    display: flex;
    gap: 40px;
    max-width: 820px;
    margin: 0 auto;
    align-items: flex-start;
}

.rc-staff-profile-image {
    width: 300px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.rc-staff-profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rc-staff-profile-info {
    flex: 1;
}

.rc-staff-profile-table {
    width: 100%;
    border-collapse: collapse;
}

.rc-staff-profile-table th {
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #E91E90;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(233, 30, 144, 0.2);
    white-space: nowrap;
    vertical-align: top;
    width: 120px;
}

.rc-staff-profile-table td {
    font-size: 14px;
    color: #555;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(233, 30, 144, 0.2);
    line-height: 1.7;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .rc-staff-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 24px;
    }

    .rc-staff-hero {
        height: 360px;
    }

    .rc-staff-hero {
        height: auto;
        margin-bottom: 0;
    }

    .rc-staff-hero-bg {
        position: relative;
        width: 100%;
        height: 360px;
    }

    .rc-staff-hero-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -60px 0 0;
        max-width: none;
        padding: 32px 24px;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }

    .rc-staff-hero-quote {
        font-size: 17px;
    }

    .rc-staff-hero-meta {
        font-size: 12px;
    }

    .rc-staff-interview {
        padding: 32px 0;
    }

    .rc-staff-question p {
        font-size: 15px;
    }

    .rc-staff-answer p {
        font-size: 14px;
    }

    .rc-staff-profile {
        flex-direction: column;
        align-items: center;
    }

    .rc-staff-profile-image {
        width: 160px;
    }

    .rc-staff-profile-table th {
        width: 100px;
        font-size: 12px;
    }

    .rc-staff-profile-table td {
        font-size: 13px;
    }
}

/* ========================================
   CMS本文エリア
   ======================================== */
.rc-about-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.rc-about-body h3 {
    font-size: 1.2em;
    margin: 30px 0 15px;
    font-weight: 700;
}

.rc-about-body p {
    margin-bottom: 8px;
}

/* Quillエディタのアラインメント対応 */
.rc-about-body .ql-align-center {
    text-align: center;
}

.rc-about-body .ql-align-right {
    text-align: right;
}

.rc-about-body .ql-align-justify {
    text-align: justify;
}

/* ========================================
   他店との比較表
   ======================================== */
.rc-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 10px;
}

.rc-compare-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 14px;
}

.rc-compare-table thead th {
    padding: 10px 8px;
    font-weight: 700;
    text-align: center;
    border-bottom: 3px solid #ddd;
    font-size: 14px;
}

.rc-compare-feature-head {
    width: 140px;
}

th.rc-compare-diary {
    background: #E91E90;
    color: #fff;
    font-size: 16px !important;
    border-radius: 8px 8px 0 0;
    border-bottom-color: #E91E90 !important;
}

th.rc-compare-other {
    color: #999;
}

.rc-compare-table tbody tr {
    border-bottom: 1px solid #f0c0d0;
}

.rc-compare-table tbody tr:last-child {
    border-bottom: none;
}

.rc-compare-table tbody td {
    padding: 8px 8px;
    text-align: center;
    vertical-align: middle;
}

td.rc-compare-diary {
    background: rgba(233, 30, 144, 0.06);
    border-left: 2px solid #E91E90;
    border-right: 2px solid #E91E90;
    font-weight: 700;
    color: #E91E90;
}

.rc-compare-table tbody tr:last-child td.rc-compare-diary {
    border-bottom: 2px solid #E91E90;
    border-radius: 0 0 8px 8px;
}

td.rc-compare-feature {
    text-align: left;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

td.rc-compare-other {
    color: #999;
    font-size: 13px;
}

.rc-compare-bad {
    color: #cc0000;
}

.rc-compare-note {
    display: block;
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .rc-compare-table {
        font-size: 13px;
        min-width: 600px;
    }
    .rc-compare-feature-head {
        width: 100px;
    }
    th.rc-compare-diary {
        font-size: 14px !important;
    }
}

/* ========================================
   ページナビゲーション（前/次）
   ======================================== */
.rc-page-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: var(--rc-container);
    margin: 0 auto;
    padding: 24px 20px;
}

.rc-page-nav-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--rc-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--rc-text);
    transition: all 0.2s;
}

.rc-page-nav-item:hover {
    background: var(--rc-bg);
}

.rc-page-nav-label {
    font-size: 12px;
    color: #E91E90;
    font-weight: 600;
}

.rc-page-nav-next .rc-page-nav-label {
    text-align: right;
}

.rc-page-nav-title {
    font-size: 13px;
    line-height: 1.5;
}

.rc-page-nav-next .rc-page-nav-title {
    text-align: right;
}

@media (max-width: 768px) {
    .rc-page-nav {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 16px;
    }
}
