.page-hero {
    background: #EAEBEF !important;
}

/* ========================================
   採用メインビジュアルセクション
======================================== */
.recruitment-hero-section {
    background-color: #EAEBEF;
    padding: 120px 0 150px;
    position: relative;
    overflow: hidden;
    min-height: 1000px;
}

.initial-circle-blue {
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    width: 250px;
    height: 250px;
    background: linear-gradient(180deg, #7BC1FE 0%, #A7F2FB 50%, #FFFFFF 100%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: burstAnimation 0.6s ease-out 1s forwards;
}

/* 弾けるアニメーション */
@keyframes burstAnimation {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
        visibility: hidden;
    }
}

/* 背景装飾円形 */
.recruitment-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.recruit-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    animation: appearAndFloat 0.3s ease-out forwards, floatingCircle 10s ease-in-out infinite;
}

/* 円の出現アニメーション */
@keyframes appearAndFloat {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* 浮遊アニメーション */
@keyframes floatingCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-20px) scale(1.05);
    }
    50% {
        transform: translateY(15px) scale(0.95);
    }
    75% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* 円形1: 左下大 */
.recruit-circle-1 {
    width: 250px;
    height: 250px;
    bottom: 37%;
    left: 5%;
    background: linear-gradient(60deg, #7BC1FE 0%, #A7F2FB 50%, #FFFFFF 100%);
    animation-delay: 1.6s, calc(1.6s + 0.5s);
}

/* 円形2: 左中央 */
.recruit-circle-2 {
    width: 91px;
    height: 91px;
    top: 35%;
    left: 35%;
    background: linear-gradient(130deg, #7BC1FE 0%, #A7F2FB 50%, #FFFFFF 100%);
    animation-delay: 1.65s, calc(1.65s + 0.5s);
}

/* 円形3: 右上大 */
.recruit-circle-3 {
    width: 153px;
    height: 153px;
    top: 8%;
    right: 10%;
    background: linear-gradient(240deg, #7BC1FE 0%, #A7F2FB 50%, #FFFFFF 100%);
    animation-delay: 1.7s, calc(1.7s + 0.5s);
}

/* 円形4: 右中央 */
.recruit-circle-4 {
    width: 91px;
    height: 91px;
    top: 42%;
    right: 20%;
    background: linear-gradient(320deg, #7BC1FE 0%, #A7F2FB 50%, #FFFFFF 100%);
    animation-delay: 1.75s, calc(1.75s + 0.5s);
}

/* 円形5: 中央下小 */
.recruit-circle-5 {
    width: 47px;
    height: 47px;
    top: 25%;
    left: 55%;
    background: linear-gradient(320deg, #7BC1FE 0%, #A7F2FB 50%, #FFFFFF 100%);
    animation-delay: 1.8s, calc(1.8s + 0.5s);
}

/* メインコンテンツ */
.recruitment-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.recruitment-main-copy {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 140px;
    letter-spacing: 2px;
    max-width: 800px;
}

.recruitment-text {
    max-width: 1000px;
    margin-left: auto;
    margin-top: 450px;
    text-align: left;
}

.recruitment-catchphrase {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media screen and (max-width: 1024px) {
    .recruitment-hero-section {
        padding: 100px 0 120px;
        min-height: 500px;
    }
    
    .recruitment-main-copy {
        font-size: 40px;
        margin-bottom: 60px;
    }
    
    .recruitment-catchphrase {
        font-size: 18px;
    }
    
    .recruitment-description {
        font-size: 15px;
    }
    
    /* 円形のサイズ調整 */
    .recruit-circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .recruit-circle-2 {
        width: 120px;
        height: 120px;
    }
    
    .recruit-circle-3 {
        width: 180px;
        height: 180px;
    }
    
    .recruit-circle-4 {
        width: 100px;
        height: 100px;
    }
    
    .recruit-circle-5 {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 768px) {
    .recruitment-hero-section {
        padding: 80px 0 100px;
        min-height: 450px;
    }
    
    .recruitment-main-copy {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .recruitment-catchphrase {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .recruitment-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .recruitment-circles {
        height: 50%;
        top: 15%;
    }
    
    /* 円形のサイズと配置調整 */
    .recruit-circle-1 {
        width: 110px;
        height: 110px;
        bottom: 5%;
        left: 2%;
    }
    
    .recruit-circle-2 {
        width: 50px;
        height: 50px;
        top: 35%;
        left: 10%;
    }
    
    .recruit-circle-3 {
        width: 100px;
        height: 100px;
        top: 10%;
        right: 2%;
    }
    
    .recruit-circle-4 {
        width: 40px;
        height: 40px;
        top: 45%;
        right: 15%;
    }
    
    .recruit-circle-5 {
        width: 30px;
        height: 30px;
        bottom: 20%;
        left: 50%;
    }

    .recruitment-text {
        margin-top: 300px;
    }
}

/* ========================================
   スクロールテキストセクション
======================================== */
.recruitment-scrolling-text-section {
    background-color: #EAEBEF;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.recruitment-scrolling-wrapper {
    width: 100%;
    overflow: hidden;
}

.recruitment-scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: slideLeft 15s linear infinite;
    will-change: transform;
}

.recruitment-scrolling-text span {
    font-family: 'Secular One', sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: #FFFFFF;
    padding: 0 40px;
    letter-spacing: 2px;
    font-style: italic;
}

.gradient-text {
    background: linear-gradient(90deg, #7BC1FE 0%, #CCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* フォールバック用 */
    color: #CCC;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* ========================================
   福利厚生セクション
======================================== */
.benefits-section {
    background-color: #EAEBEF;
    padding: 100px 0;
    border-bottom: 1px solid #AAAAAA;
}

.benefits-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.benefits-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 左側：ヘッダー */
.benefits-header {
    margin-bottom: 40px;
}

.benefits-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label-icon {
    width: 15px;
    height: 15px;
    background: linear-gradient(315deg, #7BC1FE 0%, #A7F2FB 50%, #FFFFFF 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.section-label-en {
    font-family: 'Secular One', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 1px;
    position: relative;
    padding-right: 15px;
}

/* 縦線を追加 */
.section-label-en::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #AAAAAA;
}

.section-label-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    padding-left: 5px;
}

.benefits-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.6;
    letter-spacing: 2px;
    margin: 0;
}

/* 右側：カード */
.benefit-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-card-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.card-label-icon {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #7BC1FE 0%, #A7F2FB 50%, #FFFFFF 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.card-label-text {
    font-family: 'Secular One', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.5px;
}

.benefit-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.benefit-card-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 1.9;
    margin: 0;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media screen and (max-width: 1024px) {
    .recruitment-scrolling-text span {
        font-size: 60px;
    }
    
    .benefits-section {
        padding: 80px 0;
    }
    
    .benefits-layout {
        gap: 60px;
    }
    
    .benefits-left {
        flex: 0 0 350px;
        top: 100px;
    }
    
    .benefits-title {
        font-size: 32px;
    }
    
    .benefit-card {
        padding: 35px;
    }
    
    .benefit-card-title {
        font-size: 22px;
    }
    
    .benefit-card-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .recruitment-scrolling-text-section {
        padding: 40px 0;
    }
    
    .recruitment-scrolling-text span {
        font-size: 40px;
        padding: 0 20px;
    }
    
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .benefits-left {
        flex: 0 0 auto;
        position: static;
        width: 100%;
    }
    
    .benefits-header {
        margin-bottom: 30px;
    }
    
    .section-label-en,
    .section-label-jp {
        font-size: 14px;
    }
    
    .benefits-title {
        font-size: 28px;
    }
    
    .benefits-right {
        gap: 25px;
    }
    
    .benefit-card {
        padding: 30px;
    }
    
    .card-label-text {
        font-size: 13px;
    }
    
    .benefit-card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .benefit-card-description {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ========================================
   特徴セクション
======================================== */
.features-section {
    background-color: #EAEBEF;
    padding: 100px 0;
    border-bottom: 1px solid #AAAAAA;
}

/* セクションヘッダー */
.features-section-header {
    margin-bottom: 60px;
}

.features-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 特徴グリッド */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* カードラベル */
.feature-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-label-icon {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #7BC1FE 0%, #A7F2FB 50%, #FFFFFF 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-label-text {
    font-family: 'Secular One', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.5px;
}

/* 番号 */
.feature-number {
    font-family: 'Secular One', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 2px;
    display: inline-block;
    background: linear-gradient(135deg, #FFFFFF 0%, #A7F2FB 50%, #7BC1FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* タイトル */
.feature-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* 説明文 */
.feature-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 1.9;
    margin: 0;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media screen and (max-width: 1024px) {
    .features-section {
        padding: 80px 0;
    }
    
    .features-section-header {
        margin-bottom: 50px;
    }
    
    .section-label-en,
    .section-label-jp {
        font-size: 18px;
    }
    
    .features-grid {
        gap: 25px;
    }
    
    .feature-card {
        padding: 35px;
    }
    
    .feature-number {
        font-size: 56px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-section-header {
        margin-bottom: 40px;
    }
    
    .section-label-en,
    .section-label-jp {
        font-size: 16px;
    }
    
    .section-label-en::after {
        height: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .feature-number {
        font-size: 48px;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .feature-description {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ========================================
   募集要項セクション
======================================== */
.job-details-section {
    background-color: #EAEBEF;
    padding: 100px 0;
}

/* セクションヘッダー */
.job-details-header {
    margin-bottom: 60px;
}

.job-details-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 詳細案内文 */
.job-details-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: #555555;
    max-width: 1000px;
    margin: 32px auto 0;
    text-align: center;
}

/* 募集要項テーブル */
.job-details-table {
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.job-detail-row {
    display: flex;
    border-bottom: 1px solid #AAAAAA;
}

/* 左列：項目名 */
.job-detail-label {
    flex: 0 0 180px;
    padding: 30px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: flex-start;
}

/* 右列：内容 */
.job-detail-content {
    flex: 1;
    padding: 30px 40px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.9;
}

.job-detail-content p {
    margin: 0;
}

/* リスト */
.job-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-detail-list li {
    padding-left: 20px;
    position: relative;
}

.job-detail-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 18px;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media screen and (max-width: 1024px) {
    .job-details-section {
        padding: 80px 0;
    }
    
    .job-details-header {
        margin-bottom: 50px;
    }
    
    .job-detail-label {
        flex: 0 0 150px;
        padding: 25px 20px;
        font-size: 15px;
    }
    
    .job-detail-content {
        padding: 25px 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .job-details-section {
        padding: 60px 0;
    }
    
    .job-details-header {
        margin-bottom: 40px;
    }
    
    .job-details-table {
        border-radius: 8px;
    }
    
    .job-detail-row {
        flex-direction: column;
    }
    
    .job-detail-label {
        flex: 0 0 auto;
        width: 100%;
        padding: 20px;
        background-color: transparent;
        font-size: 14px;
        border-bottom: 1px solid #E0E0E0;
    }
    
    .job-detail-content {
        padding: 20px;
        font-size: 14px;
        line-height: 1.8;
    }
    
    .job-detail-list li {
        padding: 6px 0 6px 18px;
        font-size: 14px;
    }
    
    .job-detail-list li::before {
        font-size: 16px;
    }
}

/* ========================================
   包括的レスポンシブ対応追加
   タブレット: 768px - 1024px
   モバイル: 767px以下
======================================== */

/* ========================================
   採用ページヒーロー - レスポンシブ
======================================== */
@media screen and (max-width: 1024px) {
    .recruitment-hero-section {
        padding: 100px 0 120px;
        min-height: 800px;
    }
    
    .recruitment-hero-copy {
        font-size: 52px;
    }
    
    .recruitment-hero-subcopy {
        font-size: 18px;
    }
    
    .initial-circle-blue {
        width: 220px;
        height: 220px;
    }
}

@media screen and (max-width: 767px) {
    .recruitment-hero-section {
        padding: 80px 0 0;
        min-height: 600px;
    }
    
    .recruitment-hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .recruitment-hero-copy {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .recruitment-hero-copy br {
        display: none;
    }
    
    .recruitment-hero-subcopy {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .initial-circle-blue {
        width: 180px;
        height: 180px;
        top: 50%;
    }
}

/* ========================================
   採用情報テーブル - レスポンシブ
======================================== */
@media screen and (max-width: 1024px) {
    .recruitment-info-section {
        padding: 80px 0;
    }
    
    .recruitment-info-table th {
        width: 140px;
        font-size: 15px;
        padding: 18px 25px;
    }
    
    .recruitment-info-table td {
        font-size: 15px;
        padding: 18px 20px;
    }
}

@media screen and (max-width: 767px) {
    .recruitment-info-section {
        padding: 60px 0;
    }
    
    .recruitment-info-table {
        display: block;
    }
    
    .recruitment-info-table tbody {
        display: block;
    }
    
    .recruitment-info-table tr {
        display: block;
        border-bottom: 1px solid #E0E0E0;
        padding: 15px 0;
    }
    
    .recruitment-info-table th {
        width: 100%;
        padding: 0 0 8px 0;
        text-align: left;
        font-size: 13px;
        border-bottom: 1px solid #F0F0F0;
        margin-bottom: 8px;
        background-color: transparent;
    }
    
    .recruitment-info-table td {
        width: 100%;
        padding: 0;
        font-size: 14px;
    }
}

/* ========================================
   メンバー紹介セクション - レスポンシブ
======================================== */
@media screen and (max-width: 1024px) {
    .team-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .team-grid {
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .member-name {
        font-size: 20px;
    }
    
    .member-bio {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .team-section {
        padding: 60px 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-top: 8px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .team-member {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .member-name {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .member-role {
        font-size: 13px;
    }
    
    .member-bio {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* ========================================
   福利厚生セクション - レスポンシブ
======================================== */
@media screen and (max-width: 1024px) {
    .benefits-section {
        padding: 80px 0;
    }
    
    .benefits-grid {
        gap: 30px;
    }
    
    .benefit-title {
        font-size: 18px;
    }
    
    .benefit-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .benefit-title {
        font-size: 16px;
        margin-top: 15px;
    }
    
    .benefit-description {
        font-size: 13px;
        line-height: 1.7;
        margin-top: 10px;
    }
}

/* ========================================
   共通調整
======================================== */
@media screen and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    body {
        overflow-x: hidden;
    }
}

/* タッチデバイス向け */
@media (hover: none) and (pointer: coarse) {
    .team-member:hover {
        transform: none;
        box-shadow: none;
    }
    
    .benefit-card:hover {
        transform: none;
        box-shadow: none;
    }
}