*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary: #ffb7c5;
    /* Sakura Pink */
    --primary-dark: #f08080;
    --text: #5d4037;
    /* Warm Brown */
    --accent: #88c999;
    /* Soft Green */
    --bg-cream: #fffaf0;
    --white: #ffffff;
}

body {
    font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic Pro", sans-serif;
    color: var(--text);
    background-color: var(--bg-cream);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

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

/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: var(--primary-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--primary-dark);
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-pink {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255, 183, 197, 0.4);
}

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

.btn-hero {
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 15px 40px;
    margin-top: 20px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    background-color: var(--bg-cream);
    color: var(--text);
}

.btn-line-round {
    background-color: #06C755;
    color: white;
    padding: 18px 60px;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.3);
}

.btn-line-round:hover {
    background-color: #05b34c;
    transform: scale(1.02);
}

/* Hero */
.hero {
    height: 90vh;
    min-height: 500px;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 250, 240, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.5;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-sakura {
    background-color: #fff0f5;
}

.bg-green {
    background-color: #f0fff4;
}

.bg-white {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    color: var(--text);
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '✿';
    color: var(--primary);
    margin-right: 10px;
}

.section-title::after {
    content: '✿';
    color: var(--primary);
    margin-left: 10px;
}

.about-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Philosophy */
.philosophy-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 2;
}

.philosophy-lead {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

/* Cards */
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-bottom: 5px solid var(--primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Flow */
.flow-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.flow-step {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    border: 1px solid #eee;
}

.flow-step:not(:last-child)::after {
    content: "▼";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 5px 0;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.voice-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #ffe4e1;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}

.voice-icon {
    font-size: 2rem;
}

.voice-meta {
    font-size: 0.9rem;
}

.voice-meta .name {
    font-weight: bold;
    display: block;
    color: var(--text);
}

.voice-meta .tag {
    color: var(--primary-dark);
    font-size: 0.8rem;
}

.voice-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Checklist */
.checklist-box {
    background: #fff5f7;
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.checklist-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.checklist-items {
    text-align: left;
    display: inline-block;
    list-style: none;
    padding: 0;
}

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

.checklist-items li::before {
    content: "✔";
    color: var(--primary-dark);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* FAQ */
.faq-box {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px;
    background: #fdfdfd;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-q-mark {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 900;
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
    display: flex;
    gap: 15px;
}

.faq-a-mark {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 900;
}

.price-card {
    background: var(--white);
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 2px dashed #eee;
    font-size: 1.2rem;
}

.price-row:last-child {
    border-bottom: none;
}

.price-note {
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin: 10px 0;
}

.label {
    color: var(--text);
}

.value {
    color: var(--primary-dark);
    font-weight: bold;
}

.tax {
    font-size: 0.8rem;
    color: #888;
    font-weight: normal;
}

/* Contact */
.contact-area {
    text-align: center;
}

.office-info {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text);
}

.text-center {
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 10px;
        justify-content: center;
        /* Force centering of logo/text group */
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .cards-wrapper {
        grid-template-columns: 1fr;
    }

    .voice-wrapper {
        grid-template-columns: 1fr;
    }

    .price-row {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}