@charset "UTF-8";

/* --- 共通レイアウト --- */
.under-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.side-left { width: 250px; flex-shrink: 0; }
.under-main { width: 920px; flex-shrink: 0; }

.system-main-title {
    background-color: #3ec6f0;
    color: #fff;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}

/* --- 女の子一覧専用スタイル --- */
.girls-page-container {
    background-color: #fff;
    padding-bottom: 50px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.girls-intro {
    padding: 0 20px;
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

/* 5列グリッド */
.girls-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 10px;
    padding: 0 15px;
}

.girl-card {
    width: calc(20% - 8px); /* 横5列 */
    border: 1px solid #ddd;
    box-sizing: border-box;
    padding-bottom: 10px;
    text-align: center;
}

/* 写真エリアとバッジ */
.girl-photo {
    position: relative; /* バッジ配置の基準点 */
    padding: 10px;
}

.girl-photo img {
    width: 100%;
    aspect-ratio: 3 / 4; /* 写真の比率を3:4に固定 */
    object-fit: cover;
    border: 1px solid #eee;
}

/* NEWバッジ */
.badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff0000;
    color: #fff;
    font-size: 10px;
    padding: 1px 6px;
    font-weight: bold;
    border-radius: 2px;
}

/* 本日出勤バッジ */
.badge-today {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff9900; /* オレンジ */
    color: #fff;
    font-size: 10px;
    padding: 1px 4px;
    font-weight: bold;
    border-radius: 2px;
}

/* 女の子情報テキスト */
.girl-info {
    padding: 0 5px;
}

.girl-name {
    color: #f180ba; /* ピンク */
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.girl-spec {
    font-size: 11px;
    color: #ff9900; /* スペックはオレンジ */
    line-height: 1.3;
    margin-bottom: 5px;
}

.girl-stars {
    font-size: 10px;
    color: #999;
    transform: scale(0.9);
}