/* 日本語站特定样式 */

/* 日本語字体优化 */
:root {
  --jp-font-sans: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --jp-font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
}

body {
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
}

/* 日本語标题样式优化 */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif JP', serif;
}

/* 日本語英雄区样式调整 */
.hero h1 {
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.hero p {
  letter-spacing: 0.02em;
}

/* 优化日本語按钮样式 */
.btn {
  padding: 12px 28px;
}

.btn-small {
  padding: 8px 18px;
}

/* 目的地卡片日本語样式优化 */
.destination-info h3 {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.destination-info p {
  min-height: 48px;
}

/* 日本語服务卡片样式优化 */
.service-card h3 {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.service-content p {
  min-height: 60px;
}

/* 日本語客户评价样式优化 */
.testimonial-content p {
  font-family: var(--jp-font-serif);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.testimonial-author h4 {
  font-weight: 600;
}

/* 日本語页脚样式优化 */
.footer-column h3 {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-column ul li a {
  letter-spacing: 0.02em;
}

.contact-info li {
  letter-spacing: 0.02em;
}

/* 服务报价单板块样式 */
.pricing-section {
    padding: 60px 0;
}

/* 地区卡片容器样式 */
.region-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
}

/* 地区卡片样式 */
.region-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* 确保关东卡片显示 */
.kanto-card {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* 确保关西卡片显示 */
.kansai-card {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* 关西图片样式 */
.kansai-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.kansai-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.region-card:hover .kansai-hero-image {
    transform: scale(1.05);
}

.kansai-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 25px 25px;
}

.kansai-overlay h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.kansai-overlay p {
    font-size: 1.6rem;
    opacity: 0.9;
    color: white;
}

/* 关西定价内容样式 */
.kansai-pricing-content {
    padding: 30px 25px;
}

.pricing-services {
    margin-bottom: 25px;
}

.service-section {
    margin-bottom: 25px;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-section h4 {
    font-size: 1.76rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    letter-spacing: 0.02em;
}

.service-section h4 strong {
    font-weight: 900 !important;
    font-weight: bold !important;
    text-shadow: 0 0 0.5px currentColor;
}

.service-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: transparent;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(234, 232, 228, 0.3);
    border-radius: 8px;
    border-left: 3px solid transparent;
}

.service-name {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 500;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* 关西详情按钮样式 */
.kansai-button-container {
    text-align: right;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(234, 232, 228, 0.5);
}

.kansai-detail-btn {
    background: rgba(234, 232, 228, 0.8);
    color: var(--text-dark);
    border: 2px solid rgba(51, 51, 51, 0.3);
    padding: 11px 21px;
    border-radius: 0;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 133px;
    letter-spacing: 0.5px;
}

.kansai-detail-btn:hover {
    background: rgba(234, 232, 228, 1);
    border-color: rgba(51, 51, 51, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .region-cards-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        width: 100% !important;
    }
    
    .region-card {
        display: block !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    .kansai-image {
        height: 250px;
    }
    
    .kansai-overlay h3 {
        font-size: 2.4rem;
    }
    
    .kansai-overlay p {
        font-size: 1.4rem;
    }
    
    .kansai-pricing-content {
        padding: 25px 20px;
    }
    
    .service-section h4 {
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: 0.02em;
    }
    
    .service-section h4 strong {
        font-weight: 900 !important;
        font-weight: bold !important;
        text-shadow: 0 0 0.5px currentColor;
    }
    
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-item {
        padding: 10px 12px;
    }
    
    .service-name {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .kansai-detail-btn {
        padding: 9px 19px;
        font-size: 1.2rem;
        min-width: 120px;
        background: rgba(234, 232, 228, 0.8);
        border: 2px solid rgba(51, 51, 51, 0.3);
        border-radius: 0;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: var(--text-dark);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .kansai-detail-btn:hover {
        background: rgba(234, 232, 228, 1);
        border-color: rgba(51, 51, 51, 0.5);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .hero h1 {
        letter-spacing: 0.03em;
    }
    
    /* 日本語移动导航间距调整 */
    nav ul li {
        margin: 0 0 18px 0;
    }
    
    /* 调整日本語按钮在移动端的显示 */
    .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .logo img {
        max-width: 120px !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .language-selector {
        position: relative;
        margin-left: 15px;
    }
    
    .language-selector select {
        background: transparent;
        border: none;
        color: var(--text-dark);
        font-size: 1.4rem;
        padding: 5px 10px;
        cursor: pointer;
        outline: none;
    }
} 