/* デザインの定義 */
:root {
    --main-red: #e63946; /* 明るい赤 */
    --accent-blue: #f1f8f9; /* 清潔感のある薄い水色 */
    --text-color: #333;
    --white: #ffffff;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
}

/* ヘッダー */
header {
    background: var(--white);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--main-red);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.nav-cta a {
    background: var(--main-red);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
}

/* ヒーロー（清潔感のあるドット背景） */
#hero {
    background-color: var(--accent-blue);
    background-image: radial-gradient(#d1eef0 0.8px, transparent 0.8px);
    background-size: 24px 24px;
    padding: 100px 20px;
    text-align: center;
}

#hero h1 {
    font-size: 2.2rem;
    color: var(--main-red);
    margin-bottom: 20px;
}

.brand-name {
    background: white;
    padding: 0 10px;
}

/* 共通セクション */
.container { padding: 80px 10%; text-align: center; }
.bg-light { background: #fdfdfd; }
.section-title {
    font-size: 1.8rem;
    color: var(--main-red);
    margin-bottom: 40px;
}

/* こだわりポイント */
.about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.point { flex: 1; min-width: 250px; }
.point .icon { font-size: 2rem; }

/* 料金表 */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: var(--white);
    padding: 40px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
}

.featured {
    border: 2px solid var(--main-red);
    position: relative;
    background: #fffafa;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-red);
    color: white;
    padding: 4px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--main-red);
    margin: 15px 0;
}

/* キャストボタン */
.btn-cast {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--main-red);
    color: white;
    padding: 25px 60px;
    text-decoration: none;
    border-radius: 60px;
    font-weight: bold;
    font-size: 1.3rem;
    transition: 0.3s;
}

.btn-cast:hover { opacity: 0.8; transform: translateY(-2px); }
.sub-btn { font-size: 0.7rem; font-weight: normal; margin-top: 5px; }

/* エリア */
.area-box {
    background: white;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.area-list span {
    background: #eee;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* コンタクト */
.btn-primary, .btn-line, .btn-tel {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    margin: 10px;
}

.btn-primary { background: var(--main-red); color: white; }
.btn-line { background: #06C755; color: white; }
.btn-tel { background: #555; color: white; }

footer { background: #eee; padding: 20px; font-size: 0.8rem; }

/* スマホ対応 */
@media (max-width: 768px) {
    nav ul { display: none; }
    #hero h1 { font-size: 1.6rem; }
    .container { padding: 60px 5%; }
}