/* 修正用CSS - 株式会社トラベルステーション */

/* 共通スタイル */
/* 志望動機欄の調整 */
.form-motivation,
.Form-Item-Textarea[name="志望動機"],
textarea[placeholder*="志望動機"] {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    line-height: 1.8;
    resize: vertical;
}

/* ヒーローセクション */
.hero {
    position: relative;
}

/* 店舗名の1行収め */
.shop-name,
.shop-item h3,
.shop-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.05em;
    font-size: clamp(0.875rem, 2vw, 1.125rem);
}


/* 長い文章の改行制御 */
.about-text,
.ceo-text,
.philosophy-text {
    text-wrap: balance;
    overflow-wrap: break-word;
    line-height: 1.8;
    max-width: 60ch;
}

/* 画像のはみ出し防止（ヒーロー画像を除く） */
img:not(.index-slide-item img):not(.hero img) {
    max-width: 100%;
}

.member-photo img,
.staff-photo img,
.kimura-photo img {
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* スマホ対応 */
@media (max-width: 768px) {
    /* ヒーロー見出しの位置調整 */
    .hero-text,
    .hero-content {
        bottom: 2rem;
        padding: 1rem;
    }
    
    /* 採用サイトTOPの見出し調整 */
    .recruit-hero .hero-text {
        bottom: 3rem;
    }
    
    /* 不要な改行を削除 */
    br.sp-only {
        display: none;
    }
    
    /* 経営理念ボタンの1行化 */
    .philosophy-button,
    .ceo-link-button {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: clamp(0.75rem, 3vw, 0.875rem);
    }
    
    /* 沿革の年表示調整 */
    .history-year {
        display: inline-block;
        min-width: 4em;
    }
    
    /* UQ写真の切れ解消 */
    .shop-photo img[alt*="UQ"],
    .shop-image img[src*="uq"] {
        object-fit: contain;
        background: #f5f5f5;
    }
    
    /* フォーム内文字の視認性向上 */
    input,
    textarea,
    select {
        font-size: 16px;
        padding: 0.75rem;
    }
}

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text {
        padding: 2rem;
    }
    
    .shop-name {
        font-size: 1rem;
    }
}

/* 大画面対応 */
@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
}