/* ========================================
   字体声明
   ======================================== */
/* @font-face {
    font-family: 'Cinzel';
    src: url('fonts/Cinzel.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

/* ========================================
   基础样式与变量
   ======================================== */
:root {
    --bg-color: #fff;
    --text-primary: #000;
}

* {
    margin: 0;
    padding: 0;
}

body {
     font-family: "Noto Sans SC", "Noto Sans JP", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "黑体", sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
}

img {
    width: 100%;
    vertical-align: top;
}

iframe {
    border: none;
}

/* ========================================
   汉堡导航
   ======================================== */
.header {
    position: relative;
}

.top-image {
    padding-top: 50px;
}

.mobile-nav {
    position: relative;
}

.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: opacity 0.3s ease;
}

.menu-toggle:hover {
    opacity: 0.8;
}

.menu-toggle img {
    width: 60px;
    height: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background-color: rgb(210 207 202);
    padding: 80px 20px 20px;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-list li a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #000;
    text-decoration: none;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 24px;
}

.mobile-nav-list li a span:first-child {
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav-list li a span:last-child {
    font-size: 13px;
    opacity: 0.7;
}

/* ========================================
   轮播板块
   ======================================== */
.banner-section {
    width: 100%;
    overflow: hidden;
    margin: 20px auto 0 auto;
    position: relative;
}



.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 34%;
    background-image: url('../img/title4.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    z-index: 0;
}

.banner-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 66%;
    background-image:url('../img/bg.png');
        background-size: 100%;
    background-color: #f0e1fe;
    z-index: 0;
}

.banner-swiper {
    width: 85%;
}

.banner-swiper .swiper-slide {
    width: 100%;
}

.banner-swiper .swiper-slide a {
    display: block;
    width: 100%;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    display: block;
}



.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next {
    color: #fff;
}

/* ========================================
   优惠板块
   ======================================== */
.campaign-section {
    padding: 50px 0 30px 0;
    text-align: center;
    position: relative;
}

.campaign-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
     background-image:url('../img/bg.png');
   
    z-index: 0;
}

.section-title-img {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    margin-top: 15px;
}

.section-title-img .title-img {
    width: auto;
    max-width: 60%;
    display: block;
    margin: 0 auto;
}

.campaign-content {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.campaign-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 女孩板块 */
.girls-content {
    width: 85%;
    margin: 20px auto;
}

.girl-item {
    position: relative;
    display: flex;
}

.girl-item-left .girl-info {
    padding: 15px 15px 10px 0px;
    margin-left: 25px;
    align-items: flex-end;
        background-color: #fff;
}

.girl-item-right .girl-info {
    padding: 15px 0 10px 20px;
    margin-right: 25px;
    align-items: flex-start;
    background-color: #fff;
}

.girl-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 3px solid #d2cfca;
    margin-top: 30px;
    border-radius: 50px;

}

.girl-name-age {
    justify-content: center;
    width: 80%;
    display: flex;
    margin-bottom: 5px;
}

.girl-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.girl-age {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.girl-size {
    font-size: 14px;
    margin: 0;
    color: #666;
}

.girl-desc {
    width: 80%;
    margin: 0;
}

.desc-scroll {
    font-weight: 600;
    font-size: 12px;
    height: 100px;
    overflow-y: auto;
    line-height: 1.5;
}

.girl-img-wrapper {
    display: flex;
    border: 3px solid #d2cfca;
    border-radius: 50%;
    position: absolute;
    top: 10px;
}

.girl-img-wrapper-right {
    right: 0px;
}

.girl-img-wrapper-left {
    left: 0px;
}


.girl-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    padding: 7px;
    background-color: #fff;
}

/* 料金板块 */
.price-section {
     background-image: url('../img/bg.png') !important;
}

.section-content {
    padding: 20px;
}

.price-content {
    text-align: center;
}

.price-img {
    max-width: 100%;
}

/* 店内风景板块 */
.room-section {
  
}

.room-content {
    text-align: center;
}

.room-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


/* ========================================
   新着情報板块
   ======================================== */
.news-section {
    padding: 40px 20px;
    box-sizing: border-box;
}

.news-content {
    margin-top: 40px;
}

.news-bar {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    background-image: url('../img/title1.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 50px;
}

.news-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}



.news-top {
    margin: 15px;
    border: 4px solid #d2cfca;
    background-color: #ffffff;
}

.news-title {
    background-color: #d2cfca;
    font-size: 20px;
    padding: 5px;
    color: #4f0907;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white;
}

.news-date {
    font-size: 14px;
    color: #27271d;
    margin-bottom: 8px;
    font-weight: bold;
}

.news-body {
    background-color: #d2cfca;
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    padding: 5px;
}


/* ========================================
   地址信息板块
   ======================================== */
.address-section {
    padding: 40px 20px;
    box-sizing: border-box;
}

.address-bar {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    background-color: #d2cfca;
    height: 20px;
    border-radius: 10px;
}

.map-wrapper {
    position: relative;
    margin-top: 40px;
}

.map-content {
    margin: 5px 5px 0 5px;
    overflow: hidden;
    font-size: 0;
}

.map-content iframe {
    display: block;
    margin: 0;
}

.address-content {
   margin: 0px 5px 5px 5px;
    background-color: #6699cc;
    /*padding: 5px;*/
    /*border: 13px solid #ffcc99;*/
}


.access-table {
        width: 100%;
    border-collapse: collapse;
    border:none;
}

.access-table th,
.access-table td {
    color: #000;
   border: 2px solid #fff;
    text-align: left;
    padding: 5px;
    background-color: #d2cfca;
}

.access-table th {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    min-width: 80px;
    border-right: none;
}

.access-table td {
    font-size: 0.9rem;
    border-left: none;
}

.address-item {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.address-item:last-child {
    border-bottom: none;
}

.address-label {
    width: 120px;
    font-weight: bold;
    color: #883a13;
    font-size: 16px;
}

.address-value {
    flex: 1;
    color: #333;
    font-size: 16px;
}


.recruit-section {
     background-image: url('../img/bg.png') !important;
        padding: 40px 20px;
        box-sizing: border-box;
}

.recruit-content {
    margin: 0px 5px 5px 5px;
    border: 3px solid #fff;
}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
    border:none;
}

.recruit-table th,
.recruit-table td {
    color: #000;
   border-bottom: 2px dashed #FFFFFF;
    text-align: left;
    padding: 5px;
    background-color: #d2cfca;
}





/* ========================================
   Footer
   ======================================== */
.footer {
    background: transparent;
    padding: 0;
    border-top: none;
    margin-top: 20px;
}

.footer-bottom {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 30px;
}

.footer-nav-item {
    flex: 1;
    display: flex;
    justify-content: center;
    text-decoration: none;
    padding: 5px;
}

.footer-nav-item:hover {
    opacity: 0.8;
}

.footer-nav-img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-contact {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
}

.footer-phone img {
    padding: 10px;
    max-width: 300px;
}




.footer-slogan {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2em;
    -webkit-text-stroke: 0.5px #8B4513;
}

.footer-campaign {
    display: flex;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.footer-campaign p {
    font-size: 0.75rem;
    margin-bottom: 5px;
}

.footer-copyright {
    text-align: center;
}

.faguang {
   color: #000;
        -webkit-text-stroke: 5px #FFFFFF;
        paint-order: stroke fill;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.05em;
        text-align: center;
}


