/* 人妻ワールド LPサイト - 高級デリヘル集客用スタイルシート（洗練版） */
/* 高級感重視: エレガントなカラー、影、グラデーションでプロフェッショナルに */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif JP', serif; /* エレガントなセリフ体 */
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    background: linear-gradient(to bottom, #f8f4f0, #e8d9c6); /* 柔らかいグラデ */
    overflow-x: hidden;
}

a {
    color: #8b0000; /* ワインレッド */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b22222;
}

/* ヘッダー: 高級感あるフル幅 */
header {
    background: linear-gradient(135deg, #2c1810, #4a2c1a); /* ダークウッド調 */
    padding: 30px 20px;
    border-bottom: 4px solid #d4af37; /* ゴールドアクセント */
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(212,175,55,0.5)); /* ゴールド影 */
    margin-bottom: 15px;
}

.top-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

nav li a {
    font-size: 18px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    color: #fff;
    transition: all 0.3s ease;
}

nav li a:hover {
    background: #d4af37;
    color: #2c1810;
    transform: translateY(-2px);
}

/* メインコンテンツ: 洗練されたカードレイアウト */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2, h3 {
    color: #2c1810;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h1 {
    font-size: 40px;
    background: linear-gradient(135deg, #8b0000, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    margin-bottom: 25px;
    text-align: justify;
    text-indent: 1em; /* 段落インデントで書籍風 */
}

/* キャスト一覧: グリッドでエレガント */
.cast-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.cast-item {
    background: linear-gradient(145deg, #fff, #f0e6d9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212,175,55,0.2);
}

.cast-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.cast-image {
    width: 100%;
    max-width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 3px solid #d4af37;
}

.cast-name {
    font-size: 26px;
    font-weight: 700;
    color: #8b0000;
    margin-bottom: 15px;
}

.cast-desc {
    font-size: 16px;
    color: #6b4c2e;
    line-height: 1.6;
}

/* 利用者情報（レビュー）: タイムライン風 */
.reviews {
    background: linear-gradient(135deg, #f0e6d9, #e8d9c6);
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.review-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border-left: 6px solid #d4af37;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateX(5px);
}

/* コース表: シンプル高級 */
.course-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.course-table th, .course-table td {
    padding: 20px;
    text-align: center;
    font-size: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.3);
}

.course-table th {
    background: linear-gradient(135deg, #8b0000, #b22222);
    color: #fff;
    font-weight: 700;
}

.course-table tr:last-child td {
    border-bottom: none;
}

.course-table tr:hover {
    background: rgba(212,175,55,0.1);
}

/* ラブホテルセクション: リストで洗練 */
.hotel-list {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.hotel-list li {
    background: linear-gradient(145deg, #fff, #f8f4f0);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.hotel-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* フッター: シック */
footer {
    background: linear-gradient(135deg, #2c1810, #4a2c1a);
    color: #e8d9c6;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.contact {
    font-size: 26px;
    margin-bottom: 20px;
    color: #d4af37;
}

/* スマホ固定電話ボタン: ゴールドで高級 */
.phone-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #2c1810;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
    z-index: 1000;
    display: none;
    transition: all 0.3s ease;
}

.phone-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}

.phone-fixed a {
    color: #2c1810;
    text-decoration: none;
}

/* レスポンシブ: スマホ最適 */
@media (max-width: 768px) {
    body {
        font-size: 20px;
    }
    
    h1, h2, h3 {
        font-size: 36px;
    }
    
    .phone-fixed {
        display: flex;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .cast-list {
        grid-template-columns: 1fr;
    }
    
    main {
        padding: 20px 10px;
    }
    
    .top-image {
        height: 250px;
    }
    
    .hotel-list {
        grid-template-columns: 1fr;
    }
}

/* アニメーション: 滑らかで高級 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main > section {
    animation: fadeInUp 0.8s ease-out;
}