/*
Theme Name: Pikapika House Cleaning
Author: 君の名前
Description: エアコンクリーニングに強い、地域No.1を目指すテーマ
Version: 1.0
*/

/* --- ここから下がデザインの本体です --- */

/* 全体の基本設定 */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* レイアウトの幅を整える箱 */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ヘッダー（看板部分） */
.site-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.main-nav a:hover {
    color: #007bff;
}

/* お問い合わせボタン（ナビ内） */
.nav-btn {
    background: #ffc107;
    padding: 10px 20px;
    border-radius: 5px;
    color: #333 !important;
}

/* インパクト抜群のファーストビュー */
.hero {
    background: linear-gradient(rgba(0,123,255,0.7), rgba(0,123,255,0.7)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6958?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.badge {
    background: #ff5722;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

/* ボタンのデザイン */
.hero-buttons {
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.1);
    background-color: #ffdb11;
}

.btn-insta {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-left: 10px;
    transition: 0.3s;
}

.btn-insta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* サービスの紹介セクション */
.services {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.services h2 {
    color: #007bff;
    border-left: 5px solid #007bff;
    padding-left: 15px;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

/* フッター */
footer {
    text-align: center;
    padding: 30px;
    background: #333;
    color: #fff;
    margin-top: 50px;
}
/* メニューセクション全体の余白 */
.menu-detail {
    padding: 60px 20px;
}

.menu-detail h2 {
    text-align: center;
    color: #007bff;
    margin-bottom: 30px;
}

/* メニューを横に並べる魔法 */
.menu-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* 画面が狭くなったら自動で折り返す */
}

/* 各メニューの箱 */
.menu-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* 天井埋込（強み）をさらに目立たせる */
.menu-item.highlight {
    border: 2px solid #007bff;
    transform: translateY(-5px); /* 少し上に浮かせる */
    background-color: #f0f7ff;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff5722; /* 目立つオレンジ色 */
    margin: 15px 0;
}
/* お問い合わせセクションのデザイン */
.cta-section {
    margin: 80px auto;
    text-align: center;
}

.cta-box {
    background: #007bff; /* 信頼の青色 */
    color: white;
    padding: 50px 20px;
    border-radius: 20px;
}

.cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* 電話ボタン */
.btn-tel {
    background: #fff;
    color: #007bff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* LINEボタン */
.btn-line {
    background: #06C755; /* LINEカラー */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-tel:hover, .btn-line:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}
/* 文字切れを直して、メニューを綺麗に整える */
.menu-detail h2 {
    width: 100%;
    text-align: center;
    display: block;
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* メニューを真ん中に寄せる */
}