/************************************
** 在籍一覧
************************************/

.girls-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
    margin:30px 0;
}

.girl-card{
    display:block;
    width:100%;
    text-decoration:none;
    background:linear-gradient(180deg,#222,#111);
    color:#fff;
    border-radius:16px;
    overflow:hidden;
    transition:.3s;
    box-sizing:border-box;
    border:1px solid #3b3b3b;
    box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.girl-card:hover{
    transform:translateY(-5px);
}

.girl-card img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    display:block;
}

.girl-card h3{
    margin:0;
    padding:12px;
    background:#111;
    border:1px solid #666;
    color:#fff;
    text-align:center;
    font-size:20px;
    font-weight:bold;
    letter-spacing:2px;
}

.girl-card p{
    margin:12px 10px 16px;
    color:#eee;
    text-align:center;
    line-height:1.7;
    font-size:16px;
}


/************************************
** 女の子カード 年齢・身長
************************************/

.girl-info{
    margin:10px 0 6px;
    font-size:17px;
    color:#f5f5f5;
    text-align:center;
    letter-spacing:.5px;
}

.girl-size{
    margin:0 0 14px;
    font-size:16px;
    color:#d4af37;
    text-align:center;
    font-weight:600;
    letter-spacing:.5px;
}


/************************************
** 女の子詳細ページ
************************************/

.girl-profile{
    max-width:900px;
    margin:40px auto;
}

.girl-photo img{
    width:100%;
    max-width:500px;
    display:block;
    margin:0 auto 30px;
    border-radius:12px;
}

.girl-name{
    text-align:center;
    font-size:32px;
    font-weight:bold;
    margin-bottom:30px;
}

.girl-table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:40px;
}

.girl-table th{
    width:180px;
    background:#111;
    color:#fff;
    padding:14px;
    border:1px solid #ddd;
}

.girl-table td{
    padding:14px;
    border:1px solid #ddd;
    background:#fff;
}

.girl-box{
    margin-bottom:30px;
}

.girl-box h2{
    font-size:22px;
    border-left:5px solid #d4af37;
    padding-left:10px;
    margin-bottom:15px;
}

.girl-box p{
    white-space:pre-wrap;
    line-height:1.9;
}


/************************************
** レスポンシブ
************************************/

@media(max-width:834px){

    .girl-name{
        font-size:24px;
    }

    .girl-table th{
        width:110px;
    }

}


/************************************
** 在籍一覧 レスポンシブ
************************************/

/* タブレット */
@media screen and (max-width:1023px){

    .girls-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:15px;
    }

}


/* スマホ */
@media screen and (max-width:834px){

    .girls-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:8px;
    }

    .girl-card h3{
        font-size:14px;
    }

    .girl-card p{
        font-size:11px;
        white-space:nowrap;
    }

    .girl-size{
        font-size:10px !important;
    }

}


/* 小さいスマホ */
@media screen and (max-width:480px){

    .girls-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:6px;
    }

    .girl-card h3{
        font-size:13px;
    }

    .girl-card p{
        white-space:nowrap;
    }

}


/************************************
** Swiper
************************************/

.girlSwiper{
    width:100%;
    max-width:500px;
    margin:0 auto 30px;
    border-radius:12px;
    overflow:hidden;
}

.girlSwiper .swiper-slide{
    text-align:center;
}

.girlSwiper .swiper-slide img{
    display:block;
    width:100%;
    height:auto;
    border-radius:12px;
}

.girlSwiper .swiper-button-next,
.girlSwiper .swiper-button-prev{
    color:#fff;
}

.girlSwiper .swiper-pagination-bullet{
    background:#fff;
    opacity:.6;
}

.girlSwiper .swiper-pagination-bullet-active{
    opacity:1;
    background:#d4af37;
}

@media screen and (max-width:834px){

    .girlSwiper{
        max-width:100%;
    }

}


/************************************
** スマホ背景画像
************************************/

@media screen and (max-width:834px){

    body{
        background-image:url("https://clubdeephakat.com/wp-content/uploads/2026/07/287016-スマホスライド-1.jpg") !important;
        background-size:100% auto !important;
        background-position:center top !important;
        background-repeat:no-repeat !important;
    }

}


/************************************
** サイトタイトル・キャッチフレーズ
************************************/

/* サイトタイトル */
.site-name-text{
    color:#fff;
    font-size:38px;
    font-weight:700;
    letter-spacing:2px;

    text-shadow:
        0 2px 4px rgba(0,0,0,0.9),
        0 0 10px rgba(0,0,0,0.7);
}


/* キャッチフレーズ */
.tagline{
    color:#fff;
    font-size:16px;
    font-weight:bold;
    letter-spacing:1px;

    text-shadow:
        0 2px 5px rgba(0,0,0,0.9),
        0 0 8px rgba(0,0,0,0.7);
}


/* 名前の下の線 */
.profile-line{
    width:180px;
    height:1px;
    background:#caa64a;
    margin:0 auto 20px;
    opacity:.8;
}


/************************************
** サイトタイトル・キャッチフレーズ スマホ
************************************/

@media screen and (max-width:834px){

    .site-name-text{
        font-size:28px;
        letter-spacing:1px;
    }

    .tagline{
        font-size:13px;
    }

}


/************************************
** プロフィールカード
************************************/

.girl-profile-card{
    margin:30px auto 40px;
    padding:22px 28px;

    background:#111;
    border:1px solid #caa64a;
    border-radius:16px;

    box-shadow:
        0 8px 24px rgba(0,0,0,.35);
}

.profile-title{
    text-align:center;
    color:#caa64a;

    font-size:24px;
    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

    text-transform:none;
}

.profile-info{
    display:flex;

    justify-content:center;
    align-items:center;

    flex-wrap:wrap;
    gap:12px;

    color:#fff;

    font-size:16px;
    line-height:1.8;
}

.profile-info span{
    display:flex;
    align-items:center;
}

.profile-info span:not(:last-child)::after{
    content:"｜";
    color:#666;
    margin-left:12px;
}

.profile-info label{
    color:#caa64a;

    font-size:12px;
    letter-spacing:1px;

    margin-right:6px;

    font-weight:700;
}


/************************************
** プロフィールカード スマホ
************************************/

@media(max-width:834px){

    .profile-title{
        font-size:20px;
        letter-spacing:1px;
    }

    .profile-info{
        font-size:13px;
        gap:8px;
    }

    .profile-info span:not(:last-child)::after{
        margin-left:8px;
    }

    .profile-info label{
        font-size:10px;
    }

    .girl-profile-card{
        padding:18px;
    }

}


/************************************
** ヘッダー
** 電話番号・営業時間・女性求人
************************************/

/* ヘッダー本体 */
#header-in{
    position:relative;
}


/************************************
** 電話番号・営業時間
************************************/

#header-in .header-contact{
    position:absolute;

    right:155px;
    top:50%;

    transform:translateY(-50%);

    text-align:right;

    background:rgba(0,0,0,0.4);

    padding:8px 15px;

    border-radius:8px;

    z-index:10;

    box-sizing:border-box;
}


/* 電話番号 */
#header-in .header-contact a{
    display:block;

    font-size:24px;
    font-weight:bold;

    color:#fff;

    text-decoration:none;
}


/* 営業時間 */
#header-in .header-contact div{
    font-size:14px;

    color:#fff;
}


/************************************
** 女性求人ボタン
************************************/

#header-in .header-recruit{
    position:absolute;

    right:20px;
    top:50%;

    transform:translateY(-50%);

    z-index:20;

    box-sizing:border-box;
}


/* 女性求人ボタン本体 */
#header-in .header-recruit-button{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:100px;

    padding:12px 18px;

    background:#ff4f9a;

    color:#fff !important;

    text-decoration:none !important;

    border-radius:8px;

    border:2px solid rgba(255,255,255,0.7);

    font-size:15px;

    font-weight:bold;

    line-height:1.4;

    white-space:nowrap;

    box-shadow:0 4px 12px rgba(0,0,0,0.35);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* 女性求人ボタン ホバー */
#header-in .header-recruit-button:hover{
    opacity:.9;

    transform:translateY(-2px);

    box-shadow:0 6px 16px rgba(0,0,0,0.45);
}


/************************************
** ヘッダー スマートフォン
************************************/

@media screen and (max-width:834px){

    /* ヘッダー */
    #header-in{
        position:relative;

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        padding-bottom:10px;
    }


    /* 電話番号・営業時間 */
    #header-in .header-contact{
        position:static;

        transform:none;

        margin-top:10px;

        padding:5px 12px;

        text-align:center;

        background:rgba(0,0,0,0.4);

        border-radius:8px;

        z-index:auto;
    }


    /* 電話番号 */
    #header-in .header-contact a{
        font-size:18px;
    }


    /* 営業時間 */
    #header-in .header-contact div{
        font-size:12px;
    }


    /* 女性求人 */
    #header-in .header-recruit{
    
    position:static;
    
    transform:none;
    
    margin-top:8px;
    
    z-index:auto;
    }

    /* 女性求人ボタン */
    #header-in .header-recruit-button{
    
    min-width:105px;
    
    padding:7px 12px;
    
    font-size:12px;
    
    border-radius:6px;
    }

}


/************************************
** ヘッダー 小さいスマートフォン
************************************/

@media screen and (max-width:480px){

    #header-in .header-contact{
        margin-top:8px;
    }

    #header-in .header-contact a{
        font-size:16px;
    }

    #header-in .header-contact div{
        font-size:11px;
    }

    #header-in .header-recruit{
        margin-top:8px;
    }

    #header-in .header-recruit-button{