/* ========================================
   船橋デリヘル情報ナビ - メインスタイルシート
   ======================================== */

/* ========================================
   リセット & ベーススタイル
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ========================================
   ヘッダー
   ======================================== */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo i {
    font-size: 1.8rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    border-bottom-color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   パンくずリスト
   ======================================== */
.breadcrumb {
    background: white;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--text-light);
}

/* ========================================
   ページヘッダー
   ======================================== */
.page-header {
    background: white;
    padding: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow);
}

.page-header h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   ボタン
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   セクション
   ======================================== */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -2rem;
    margin-bottom: 2rem;
}

/* ========================================
   特徴セクション
   ======================================== */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ========================================
   店舗カード
   ======================================== */
.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.shop-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.shop-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.shop-image {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.shop-content {
    padding: 1.5rem;
}

.shop-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.shop-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.shop-rating span {
    color: var(--text-color);
    font-weight: 600;
    margin-left: 0.5rem;
}

.shop-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--bg-light);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 0.8rem;
}

.tag-hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
}

.tag-premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    font-weight: 600;
}

/* ========================================
   店舗詳細カード（店舗一覧ページ用）
   ======================================== */
.shop-detail-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.shop-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.shop-badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.shop-card-header {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-card-overlay {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
}

.shop-card-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.shop-card-body {
    padding: 2rem;
}

.shop-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.shop-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.shop-info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.shop-info-item .info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.shop-info-item .info-value {
    display: block;
    font-weight: 600;
    color: var(--text-color);
}

.shop-actions {
    margin-top: 1.5rem;
}

/* ========================================
   検索・フィルター
   ======================================== */
.search-filter {
    background: white;
    padding: 2rem 0;
}

.filter-box {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filter-header h3 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-reset {
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.filter-reset:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.filter-group input[type="text"],
.filter-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: white;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    cursor: pointer;
}

/* ========================================
   店舗一覧ヘッダー
   ======================================== */
.shops-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
}

.shops-count {
    font-weight: 600;
    color: var(--text-color);
}

.shops-count span {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.shops-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shops-sort select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
}

/* ========================================
   ページネーション
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   エリア情報
   ======================================== */
.area-intro {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 10px;
}

.stat-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========================================
   アクセス情報
   ======================================== */
.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.access-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.access-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.access-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.access-route {
    margin-bottom: 1.5rem;
}

.access-route strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.access-route ul {
    list-style: none;
    padding-left: 1rem;
}

.access-route li {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.access-route li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ========================================
   スポット情報
   ======================================== */
.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.spot-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.spot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.spot-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.spot-card h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.spot-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.spot-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.spot-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spot-info i {
    color: var(--primary-color);
}

/* ========================================
   ホテル情報
   ======================================== */
.hotel-category {
    margin-bottom: 3rem;
}

.hotel-category h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.hotel-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.hotel-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hotel-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.hotel-details i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.hotel-note {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hotel-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hotel-tips {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.hotel-tips h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hotel-tips ul {
    list-style: none;
    padding-left: 0;
}

.hotel-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.hotel-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ========================================
   対応エリア
   ======================================== */
.coverage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.coverage-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.coverage-column ul {
    list-style: none;
}

.coverage-column li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.coverage-column i {
    color: var(--primary-color);
}

.area-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
}

.area-note i {
    color: #ffc107;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ========================================
   周辺環境
   ======================================== */
.environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.environment-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.env-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.environment-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.environment-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   利用ガイド - フロー
   ======================================== */
.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin: 1rem 0;
}

.flow-step h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-content {
    color: var(--text-light);
    line-height: 1.8;
}

.step-tips {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.step-tips h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-tips ul {
    list-style: none;
    padding-left: 0;
}

.step-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.step-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.example-conversation {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.example-conversation h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.conversation p {
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.conversation strong {
    color: var(--primary-color);
}

.flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* ========================================
   料金システム
   ======================================== */
.price-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.price-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.price-info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.price-example,
.option-list,
.campaign-list {
    margin-top: 1rem;
}

.price-example h4,
.option-list h4,
.campaign-list h4 {
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.price-example ul,
.option-list ul,
.campaign-list ul {
    list-style: none;
    padding-left: 0;
}

.price-example li,
.option-list li,
.campaign-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.price-example .note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

/* ========================================
   注意事項
   ======================================== */
.precaution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.precaution-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.precaution-card.warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.precaution-card.danger {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
}

.precaution-card.info {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
}

.precaution-card.success {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

.precaution-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.warning .precaution-icon {
    color: #ffc107;
}

.danger .precaution-icon {
    color: #dc3545;
}

.info .precaution-icon {
    color: #17a2b8;
}

.success .precaution-icon {
    color: #28a745;
}

.precaution-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.precaution-card ul {
    list-style: none;
    padding-left: 0;
}

.precaution-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.precaution-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ========================================
   FAQ
   ======================================== */
.faq-categories {
    background: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.faq-category-section {
    margin-bottom: 3rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i.fas.fa-question-circle {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 1.5rem;
    color: var(--text-light);
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.quick-faq {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-quick-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-quick-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-quick-item i {
    flex-shrink: 0;
}

.faq-quick-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   お問い合わせボックス
   ======================================== */
.contact-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-box h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   エリアガイド (ホームページ)
   ======================================== */
.area-guide {
    background: white;
}

.area-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.area-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.area-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.area-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.area-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.area-feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.area-map {
    position: sticky;
    top: 100px;
}

.map-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ========================================
   ガイドステップ (ホームページ)
   ======================================== */
.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: center;
}

.guide-step {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.guide-step .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guide-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.guide-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.guide-arrow {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ========================================
   FAQプレビュー (ホームページ)
   ======================================== */
.faq-preview {
    background: var(--bg-light);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-list {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav.active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        padding: 1rem;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .features-grid,
    .shops-grid,
    .spots-grid,
    .hotel-grid,
    .price-content,
    .precaution-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .filter-content {
        grid-template-columns: 1fr;
    }

    .shops-header {
        flex-direction: column;
        gap: 1rem;
    }

    .intro-content,
    .area-content {
        grid-template-columns: 1fr;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }

    .guide-steps {
        grid-template-columns: 1fr;
    }

    .guide-arrow {
        transform: rotate(90deg);
    }

    .shop-info-grid {
        grid-template-columns: 1fr;
    }

    .coverage-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 0;
    }
}