:root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --accent-color: #F57C00; /* Orange */
    --accent-hover: #EF6C00;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --max-width: 1000px;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(245, 124, 0, 0.3);
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-green {
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.btn-green:hover {
    background-color: var(--primary-dark);
}

/* Header / Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-catch {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: rgba(46, 125, 50, 0.9);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
}

.hero-main-text {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-sub {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Intro */
.intro {
    background-color: var(--bg-light);
}

.intro-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.check-list {
    text-align: left;
    display: inline-block;
    margin: 0 auto 30px;
}

.check-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.intro-cause {
    font-weight: 700;
    color: #D32F2F;
    font-size: 1.2rem;
    background: #FFEBEE;
    padding: 15px;
    border-radius: var(--radius);
    display: inline-block;
}

/* Before After */
.before-after-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.ba-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.ba-before {
    background-color: #ECEFF1;
    border: 2px solid #CFD8DC;
}

.ba-after {
    background-color: #E8F5E9;
    border: 2px solid var(--primary-color);
    position: relative;
}

.ba-after::before {
    content: 'AFTER';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    font-weight: bold;
    border-radius: 20px;
}

.ba-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.ba-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
}

.ba-list li:last-child {
    border-bottom: none;
}

/* Service */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-num {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Reasons */
.reasons {
    background-color: var(--primary-color);
    color: var(--white);
}

.reasons .section-title {
    color: var(--white);
}

.reasons .section-title::after {
    background-color: var(--white);
}

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

.reason-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Price */
.price-box {
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 20px 0;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Profile */
.profile-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
}

.profile-img {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.profile-list li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.profile-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Form */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    padding-bottom: 80px; /* Space for sticky footer */
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none; /* Hidden by default on desktop */
    text-align: center;
}

.sticky-btn {
    display: block;
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(245, 124, 0, 0.3);
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-main-text {
        font-size: 1.8rem;
    }
    
    .profile-container {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-list {
        text-align: left;
        display: inline-block;
    }

    .sticky-footer {
        display: block;
    }
    
    .section {
        padding: 60px 0;
    }
}