/* 1: style.css */
/* 人妻ワールド LP共通スタイルシート */
/* デザインコンセプト: 最先端かつオシャレ（淡いピンク×ホワイト基調）、老人でも見やすい大きめ文字、優しい日本語フォント、スマホ完全対応 */
/* レスポンシブ・モバイルファースト */

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

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #fffafa; /* 淡い雪色 */
    color: #333;
    line-height: 1.8;
    font-size: 18px; /* 基本文字サイズ大きめ */
}

a {
    color: #d14783; /* 優しいピンク */
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー */
header {
    background: linear-gradient(135deg, #ffefef, #ffebee);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #d14783;
}

h1 {
    font-size: 36px;
    color: #d14783;
    margin: 15px 0 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 10px;
}

/* トップ画像 */
.top-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    margin: 30px 0;
}

/* 料金表 */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.price-table th,
.price-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0e0e0;
    font-size: 20px;
}

.price-table th {
    background: #d14783;
    color: #fff;
    font-size: 22px;
}

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

.price-table .highlight {
    font-size: 28px;
    color: #d14783;
    font-weight: 700;
}

/* キャスト一覧 */
.cast-section {
    margin: 60px 0;
}

.cast-section h2 {
    font-size: 32px;
    color: #d14783;
    text-align: center;
    margin-bottom: 40px;
}

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

.cast-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    text-align: center;
    padding: 20px;
}

.cast-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.cast-name {
    font-size: 26px;
    color: #d14783;
    margin-bottom: 10px;
}

.cast-age {
    font-size: 20px;
    color: #555;
}

.cast-comment {
    font-size: 18px;
    margin: 15px 0;
    color: #444;
}

.cast-area {
    font-size: 18px;
    color: #777;
}

/* セクション見出し */
section h2 {
    font-size: 32px;
    color: #d14783;
    text-align: center;
    margin: 60px 0 40px;
}

/* テキストコンテンツ */
.content-text {
    font-size: 19px;
    margin: 30px 0;
    line-height: 2;
}

/* ラブホテルリスト */
.hotel-list {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    margin: 40px 0;
}

.hotel-list h3 {
    font-size: 26px;
    color: #d14783;
    margin-bottom: 20px;
}

.hotel-list ul {
    list-style: none;
}

.hotel-list li {
    font-size: 20px;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

/* 固定電話ボタン（スマホのみ） */
.fixed-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #d14783;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 24px;
    font-weight: 700;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.fixed-call a {
    color: #fff;
    display: block;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .price-table th,
    .price-table td {
        padding: 15px;
        font-size: 18px;
    }
    
    .price-table .highlight {
        font-size: 24px;
    }
    
    .fixed-call {
        display: block;
    }
    
    section h2 {
        font-size: 28px;
    }
    
    .cast-name {
        font-size: 24px;
    }
}

/* PCで固定ボタン非表示 */
@media (min-width: 769px) {
    .fixed-call {
        display: none;
    }
}