* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;

}

body {
    font-family: 'Inter', sans-serif;
    background: #0f0c14;
    color: #e5ddd5;
    line-height: 1.4;
}

.top-bar {
    background: #000000cc;
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    border-bottom: 1px solid #ff844e;
    flex-wrap: wrap;
}

.logo-area h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffb347, #ff6b4a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-area p {
    font-size: 0.7rem;
    color: #ffaa77;
}

.header-contact {
    text-align: right;
}

.header-contact span {
    display: inline-block;
    background: #2e2420;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    font-weight: 500;
}

.header-contact .tel {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffaa66;
}

@media (max-width: 700px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .header-contact {
        text-align: center;
    }
}

.nav-tiger {
    background: #1a1622;
    padding: 0.5rem 1.5rem;
    border-top: 1px solid #ff7a4833;
    border-bottom: 1px solid #2a2235;
    position: sticky;
    top: 77.8px;
    /* 关键 */
    z-index: 99;
}

.nav-links {
    display: flex;
    gap: 0.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ddcbb8;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.2s;
    border-radius: 40px;
}

.nav-links a:hover,
.nav-links .active {
    background: #ff7a48;
    color: #0b0710;
}

/* ===== カルーセル ===== */
.main-visual {
    background: #07030e;
    padding: 2.5rem 0 2rem;
    overflow: hidden;
}

.carousel-scene {
    position: relative;
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item {
    position: absolute;
    width: 580px;
    height: 295px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.6s ease,
        opacity 0.6s ease,
        box-shadow 0.6s ease;
    user-select: none;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: transform 0.6s ease;
}

/* グラデーションオーバーレイ */
.carousel-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.5s;
}

.carousel-item.pos-center .overlay {
    opacity: 1;
}

.slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1.6rem 1.1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.45s, transform 0.45s;
}

.carousel-item.pos-center .slide-label {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff7a48;
    color: #0b0710;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 30px;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.4s 0.1s;
}

.carousel-item.pos-center .slide-badge {
    opacity: 1;
}

/* 位置クラス */
.carousel-item.pos-center {
    transform: translateX(0) scale(1);
    z-index: 10;
    filter: brightness(1);
    box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.9),
        0 0 0 1.5px rgba(255, 150, 80, 0.35);
}

.carousel-item.pos-left {
    transform: translateX(-510px) scale(0.76);
    z-index: 5;
    filter: brightness(0.38) saturate(0.6);
    box-shadow: none;
}

.carousel-item.pos-right {
    transform: translateX(510px) scale(0.76);
    z-index: 5;
    filter: brightness(0.38) saturate(0.6);
    box-shadow: none;
}

.carousel-item.pos-far-left {
    transform: translateX(-810px) scale(0.58);
    z-index: 1;
    filter: brightness(0.15) saturate(0.3);
    pointer-events: none;
    box-shadow: none;
}

.carousel-item.pos-far-right {
    transform: translateX(810px) scale(0.58);
    z-index: 1;
    filter: brightness(0.15) saturate(0.3);
    pointer-events: none;
    box-shadow: none;
}

.carousel-item.pos-hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transform: scale(0.5);
    box-shadow: none;
}

/* ドット */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 1.4rem;
}

.carousel-dots button {
    height: 4px;
    border: none;
    border-radius: 2px;
    background: #3a2e3a;
    cursor: pointer;
    transition: all 0.35s;
    padding: 0;
    width: 24px;
}

.carousel-dots button.active {
    background: #ff7a48;
    width: 44px;
}

@media (max-width: 900px) {
    .carousel-item {
        width: 76vw;
        height: 42vw;
    }

    .carousel-item.pos-left {
        transform: translateX(-68vw) scale(0.76);
    }

    .carousel-item.pos-right {
        transform: translateX(68vw) scale(0.76);
    }

    .carousel-item.pos-far-left {
        transform: translateX(-110vw) scale(0.55);
    }

    .carousel-item.pos-far-right {
        transform: translateX(110vw) scale(0.55);
    }
}

@media (max-width: 600px) {
    .carousel-scene {
        height: 52vw;
    }

    .carousel-item {
        width: 82vw;
        height: 46vw;
        border-radius: 14px;
    }

    .carousel-item.pos-left {
        transform: translateX(-74vw) scale(0.76);
    }

    .carousel-item.pos-right {
        transform: translateX(74vw) scale(0.76);
    }

    .slide-label {
        font-size: 0.8rem;
        padding: 0.8rem 1rem 0.8rem;
    }
}

/* ===== 以下は元のスタイル ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.filter-section {
    background: #17121f;
    border-radius: 60px;
    padding: 0.8rem 1.8rem;
    margin-bottom: 2rem;
    border: 1px solid #ff7a4844;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.filter-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #26202f;
    padding: 0.3rem 1rem;
    border-radius: 40px;
}

.region-select {
    background: #100d18;
    border: 1px solid #ff9b66;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    color: #ffcfaa;
    font-weight: 500;
}

.custom-select-wrap {
    position: relative;
}

.custom-select-btn {
    background: #100d18;
    border: 1px solid #ff9b66;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    color: #ffcfaa;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.9rem;
}

.custom-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 500;
    background: #1a1428;
    border: 1px solid #ff7a4844;
    border-radius: 16px;
    padding: 1rem;
    width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.custom-dropdown.open {
    display: block;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.15rem 0.5rem;
}

.dropdown-group-title {
    grid-column: 1 / -1;
    font-size: 0.68rem;
    color: #ff7a48;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 0.7rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #ff7a4822;
}

.dropdown-group-title:first-child {
    margin-top: 0;
}

.dropdown-option {
    padding: 0.28rem 0.3rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ddcbb8;
    cursor: pointer;
    transition: 0.15s;
    white-space: nowrap;
}

.dropdown-option:hover {
    background: #2e2040;
    color: #ffcfaa;
}

.dropdown-option.selected {
    background: #ff7a48;
    color: #0b0710;
    font-weight: 600;
}

.dropdown-all {
    grid-column: 1 / -1;
    text-align: center;
    padding: 0.35rem;
    border-radius: 20px;
    font-size: 0.82rem;
    color: #ddcbb8;
    cursor: pointer;
    transition: 0.15s;
    border: 1px solid #ff7a4844;
    margin-bottom: 0.3rem;
}

.dropdown-all:hover {
    background: #2e2040;
}

.dropdown-all.selected {
    background: #ff7a48;
    color: #0b0710;
    font-weight: 600;
}

@media (max-width: 600px) {
    .custom-dropdown {
        width: calc(100vw - 2rem);
        left: 50%;
        transform: translateX(-50%);
    }
}

.stats-badge,
.total-count {
    background: #1f1a2a;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    border-left: 6px solid #ff7a48;
    padding-left: 1rem;
    letter-spacing: 2px;
}

.girls_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.8rem;
}

.girl {
    background: #15111c;
    border-radius: 1.8rem;
    overflow: hidden;
    border: 1px solid #382e3c;
    transition: transform 0.2s, box-shadow 0.2s;
}

.girl:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px black;
    border-color: #ff9f6e;
}

.image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.tiger_rank {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #000000aa;
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.75rem;
    color: #ffbe76;
}

.comment {
    font-size: 0.85rem;
    padding: 0.6rem 1rem 0;
    color: #cbad93;
    /* 追加这三行 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.name {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0 1rem;
    color: #ffddbb;
}

.size {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
    color: #b7a48e;
}

.option {
    padding: 0.6rem 1rem;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px solid #2e2636;
    margin-top: 6px;
}

.option img {
    width: 36px;
    background: #2a1e2a;
    border-radius: 30px;
}

.syukkin {
    background: #221e2c;
    display: inline-block;
    margin: 0.5rem 1rem;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffb882;
}

.btn-detail {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    background: none;
    border: 1px solid #ff7a48;
    color: #ffaa77;
    padding: 0.5rem;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.btn-detail:hover {
    background: #ff7a48;
    color: #0d0816;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-container {
    background: #1e192b;
    max-width: 500px;
    width: 90%;
    border-radius: 2rem;
    border: 1px solid #ff9566;
    max-height: 85vh;
    overflow: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #ff774433;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #ffbc8c;
}

.modal-body {
    padding: 1.5rem;
}

.modal-img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.modal-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed #4a3a4a;
    padding-bottom: 0.4rem;
}

.contact-line {
    background: #29213a;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
}


/* 料金 */
/* ===== 料金表ページ ===== */
.price-page-header {
    text-align: center;
    padding: 2rem 1rem 1rem;
}

.price-page-header h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffb347, #ff6b4a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.3rem;
}

.price-page-header .subtitle {
    color: #8a7a9a;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.price-system-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    max-width: 1100px;
    margin: 1.5rem auto;
    padding: 0 1rem;
}

@media (max-width: 750px) {
    .price-system-wrap {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.price-card {
    background: #15111c;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #2e2636;
    transition: box-shadow 0.3s;
}

.price-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* ランクタイトル */
.rank-title {
    padding: 1rem 1.5rem 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

.rank-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    margin: 0.4rem auto 0;
    border-radius: 1px;
}

.gold-title {
    color: #e2b04a;
}

.gold-title::after {
    background: #e2b04a;
}

.platinum-title {
    color: #c0b0d0;
}

.platinum-title::after {
    background: #c0b0d0;
}

.diamond-title {
    color: #5cc9d0;
}

.diamond-title::after {
    background: #5cc9d0;
}

.legend-title {
    color: #e0553d;
}

.legend-title::after {
    background: #e0553d;
}

.other-title {
    color: #ffaa77;
}

.other-title::after {
    background: #ffaa77;
}

/* 料金リスト */
.price-list {
    padding: 0 1.5rem 1.2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid #211c28;
    font-size: 0.9rem;
    transition: background 0.15s;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: #1d1825;
    border-radius: 8px;
}

.price-time {
    color: #c4b5a8;
    letter-spacing: 0.5px;
}

.price-value {
    font-weight: 600;
    color: #ffddbb;
    letter-spacing: 0.5px;
}

.price-value.ask {
    color: #8a7a9a;
    font-style: italic;
    font-weight: 400;
}

.price-note {
    font-size: 0.7rem;
    color: #6b5b7a;
    padding: 0.3rem 0.8rem 1rem;
    text-align: center;
}

/* 追加情報カード（入会金など） */
.price-extra-card {
    background: #17121f;
    border-radius: 1.5rem;
    padding: 1.2rem 1.8rem;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
    border: 1px solid #2e2636;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
}

.price-extra-item {
    text-align: center;
    padding: 0.4rem 1.5rem;
}

.price-extra-item .label {
    font-size: 0.75rem;
    color: #8a7a9a;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.price-extra-item .value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffddbb;
}

/* 注意書き */
.price-attention {
    max-width: 1100px;
    margin: 1.5rem auto 2rem;
    padding: 0 1rem;
    text-align: center;
    color: #6b5b7a;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

footer {
    background: #0b0812;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    font-size: 0.75rem;
    border-top: 1px solid #ff774422;
}

@media (max-width: 700px) {
    .container {
        padding: 1rem;
    }

    .girls_list {
        gap: 1rem;
    }
}

/* ===== LINE予約 ===== */
.line-section-title {
    text-align: center;
    padding: 2rem 1rem 0.5rem;
    margin-top: 1rem;
}

.line-section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #06c755, #00b900);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.3rem;
}

.line-section-title p {
    color: #8a7a9a;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.line-contact-card {
    max-width: 600px;
    margin: 2rem auto;
    background: linear-gradient(135deg, #1a1622, #15111c);
    border: 1px solid #06c755;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.line-contact-card .line-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #06c755;
}

.line-contact-card h3 {
    color: #ffddbb;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.line-contact-card .line-subtitle {
    color: #8a7a9a;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.line-id-box {
    background: #0b0812;
    border-radius: 3rem;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.line-id-box .label {
    color: #c4b5a8;
    font-size: 0.8rem;
}

.line-id-box code {
    color: #ffddbb;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.line-copy-btn {
    background: #06c755;
    border: none;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.line-open-btn {
    display: inline-block;
    background: #06c755;
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}

.line-open-btn:hover {
    opacity: 0.85;
}

.line-contact-card .line-note {
    color: #6b5b7a;
    font-size: 0.7rem;
    margin-top: 1rem;
}

/* ===== 禁止事項 ===== */
.warn-section-title {
    text-align: center;
    padding: 2rem 1rem 0.5rem;
    margin-top: 1rem;
}

.warn-section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #e0553d, #ff6b4a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.3rem;
}

.warn-section-title p {
    color: #8a7a9a;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.warn-card {
    max-width: 700px;
    margin: 2rem auto 3rem;
    background: #15111c;
    border: 1px solid #e0553d;
    border-left: 4px solid #e0553d;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    font-size: 0.82rem;
    line-height: 2;
    color: #c4b5a8;
}

.warn-block {
    margin-bottom: 1.8rem;
}

.warn-block h4 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warn-block h4.red {
    color: #e0553d;
}

.warn-block h4.orange {
    color: #ff6b4a;
}

.warn-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.warn-icon.red {
    background: #e0553d;
}

.warn-icon.orange {
    background: #ff6b4a;
}

.warn-block ul {
    padding-left: 1.5rem;
    margin: 0;
}

.warn-block ul li {
    margin-bottom: 0.2rem;
}

.warn-block ul li .cn {
    color: #6b5b7a;
    font-size: 0.75rem;
}

.warn-penalty {
    background: #1a1425;
    border-radius: 0.8rem;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
}

.warn-penalty p {
    margin: 0 0 0.3rem;
}

.warn-penalty .strong {
    color: #ff6b4a;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.warn-penalty .strong span {
    color: #8a7a9a;
    font-weight: 400;
}

.warn-penalty .text {
    color: #c4b5a8;
    font-size: 0.78rem;
}

.warn-penalty .text .cn {
    color: #6b5b7a;
}

.warn-tel-note {
    color: #8a7a9a;
    font-size: 0.78rem;
    text-align: center;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid #2e2636;
}

.warn-tel-note .cn {
    color: #6b5b7a;
    font-size: 0.72rem;
}

/* ===== ページネーション ===== */
.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination-btn {
    background: #1a1622;
    border: 1px solid #382e3c;
    color: #ddcbb8;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover {
    background: #2e2636;
    border-color: #ff7a48;
    color: #ffddbb;
}

.pagination-btn.active {
    background: #ff7a48;
    border-color: #ff7a48;
    color: #0b0710;
}

.pagination-btn.arrow {
    font-size: 0.7rem;
    letter-spacing: 0;
}