/* 共通スタイル */
:root {
    --primary-color: #f39c12; /* ゴールド系 */
    --accent-color: #e74c3c; /* レチE系 */
    --bg-dark: #111;
    --text-main: #333;
    --text-light: #fff;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    background-color: #f9f9f9;
    line-height: 1.6;
}

h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--bg-dark);
}

.section-title span {
    color: var(--primary-color);
}

.bg-gray {
    background-color: #f4f4f4;
}

/* ボタン */
.cta-btn-wrapper {
    text-align: center;
    margin: 40px 0;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #f39c12, #f1c40f);
    color: #111;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(243, 156, 18, 0.6);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ヒEローセクション */
.hero {
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--primary-color);
}

.hero .subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: bold;
}

.hero .highlight {
    background-color: var(--primary-color);
    color: #111;
    padding: 5px 15px;
    display: inline-block;
    margin: 10px 0;
    border-radius: 3px;
}

.hero-subtext {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.hero .tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.hero .tags span {
    background-color: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    font-size: 14px;
}

/* なぜ水なのぁE*/
.reason-subtitle {
    text-align: center;
    margin-bottom: 30px;
}

.reason-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 400px;
}

.reason-list li {
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    border-bottom: 1px dashed #ccc;
    position: relative;
    padding-left: 30px;
}

.reason-list li::before {
    content: '💧';
    position: absolute;
    left: 0;
}

.reason-text {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background: #e8f4f8;
    padding: 20px;
    border-radius: 10px;
}

.accent-text {
    color: var(--accent-color);
}

/* 追加E水の画像用のスタイル */
.reason-image-wrapper {
    text-align: center;
    margin: 0 auto 30px;
    max-width: 400px; /* PCで見ても大きくなりすぎなぁEぁE制陁E*/
    padding: 0 20px;
}

.reason-img {
    width: 100%;
    border-radius: 12px; /* 角を少し丸くして柔らかい印象に */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* 軽ぁEをつけて立体感をEぁE*/
    object-fit: cover;
}
/* 3つの魁E */
.charm-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
}

.charm-card h3 {
    font-size: 22px;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.charm-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* 収E侁E*/
.income {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.income .section-title {
    color: var(--primary-color);
}

.income-step {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #444;
}

.income-step h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.income-step p {
    font-size: 18px;
    margin: 5px 0;
}

.income-highlight {
    color: #f1c40f;
    font-weight: bold;
}

.income-highlight-large {
    color: #f1c40f;
    font-weight: bold;
    font-size: 24px;
}

.income-avg {
    text-align: center;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(to right, #2c3e50, #1a252f);
    border-radius: 10px;
}

.income-avg .big-text {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: bold;
    display: block;
    margin: 10px 0;
}

.note-text {
    font-size: 12px;
    color: #aaa;
}

/* 現場の雰囲気（ギャラリーEE*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.gallery-tags {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #555;
}

/* 1日の流れ */
.flow-timeline {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    padding-left: 30px;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
}

.flow-item {
    position: relative;
    margin-bottom: 30px;
}

.flow-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--primary-color);
}

.flow-item p {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.no-zangyo {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    margin-top: 30px;
}

/* 代表メチEージ */
.message-box {
    background: #f1f1f1;
    padding: 40px;
    border-radius: 10px;
}

.message-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.message-content strong {
    font-size: 18px;
    color: var(--bg-dark);
}

.message-closing {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-top: 30px;
}

.rep-photo-placeholder {
    width: 150px;
    height: 150px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-q {
    font-size: 18px;
    font-weight: bold;
    color: var(--bg-dark);
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.faq-q::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 22px;
}

.faq-a {
    font-size: 16px;
    color: #555;
    padding-left: 30px;
}

/* 最後に */
.closing {
    text-align: center;
    background: var(--bg-dark);
    color: #fff;
}

.closing h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.closing-text {
    font-size: 20px;
    margin-bottom: 40px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #777;
    font-size: 12px;
}

/* レスポンシブ対忁E*/
@media (max-width: 600px) {
    .hero h1 { font-size: 32px; }
    .hero .subtitle { font-size: 18px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img { height: auto; }
}


/* --- LINE応募ボタンエリア --- */
.cta-area {
    text-align: center;
    margin: 40px auto;
    max-width: 500px;
    padding: 0 15px;
}

/* 吹きEぁE*/
.cta-balloon {
    display: inline-block;
    position: relative;
    background: #fff;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-balloon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: var(--accent-color) transparent transparent transparent;
}

/* LINEボタン本佁E*/
.cta-btn.line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06C755; /* LINE公式グリーン */
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(6, 199, 85, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    letter-spacing: 1px;
}

.cta-btn.line-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(6, 199, 85, 0.6);
    background: #05b34c;
}

.line-icon {
    font-size: 26px;
    margin-right: 10px;
}

/* ボタン下E補足チEスチE*/
.cta-note {
    font-size: 14px;
    font-weight: bold;
    margin-top: 15px;
    color: #555;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@media (max-width: 600px) {
    .cta-btn.line-btn {
        font-size: 18px;
        padding: 15px 20px;
    }
    .cta-balloon {
        font-size: 14px;
        padding: 8px 15px;
    }
}

/* \ʐ^ */
.rep-image-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.rep-img {
    width: 100%;
    max-width: 400px; /* PC{傫Ȃ肷Ȃ悤ɒ */
    border-radius: 12px; /* pۂĐe݂₷o */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* ʐ^o悤ȉe */
    object-fit: cover;
}