/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

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

.bg-light {
    background-color: #f9f9f9;
}

/* ヘッダー */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.5rem;
    color: #ff6b6b; /* 引越しらしい元気な色 */
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* ボタン */
.btn-large {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    background: #ee5253;
}

.btn-small {
    background: #ff6b6b;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 5px;
}

/* ヒーローエリア */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* グリッドレイアウト */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.card h3 {
    margin-bottom: 15px;
    color: #ff6b6b;
}

/* 料金テーブル */
.price-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
}

.price-table th, .price-table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
}

.price-table th {
    background: #ff6b6b;
    color: #fff;
}

/* フォーム */
.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 120px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-content h2 { font-size: 1.8rem; }
    header .container { flex-direction: column; gap: 10px; }
}


/* お客様の声の装飾 */
.tag {
    display: inline-block;
    background: #fff0f0;
    color: #ff6b6b;
    font-size: 0.8rem;
    padding: 2px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

.review-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.user-info {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px dotted #ddd;
    padding-top: 10px;
}

/* FAQの装飾 */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-left: 5px solid #ff6b6b;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    font-size: 0.95rem;
}
/* アニメーションの初期状態（隠しておく） */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* アニメーション実行時の状態 */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* フォームのアップグレード装飾 */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-btn {
    flex: 1;
    min-width: 100px;
    border: 2px solid #ddd;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.radio-btn:has(input:checked) {
    border-color: #ff6b6b;
    background-color: #fff0f0;
}

.radio-btn input {
    display: none; /* ラジオボタンのポチを隠してボタン化 */
}
/* ヘッダーロゴの調整 */
.logo img {
    height: 60px; /* お好みの高さに調整してください */
    width: auto;
    display: block;
}

/* ついでに会社名も「MATSUZAWA」に変更しましょう */
header h1, .hero-content h2 {
    /* 「ワクワク引越センター」を「MATSUZAWA引越センター」へ変更 */
}