/* ========================================
   リセット＆基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', 'M PLUS Rounded 1c', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fafafa;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================================
   カラー変数
======================================== */
:root {
    --primary-color: #ff82b2;
    --primary-dark: #ff5a96;
    --primary-light: #ffe4ef;
    --secondary-color: #ff9f43;
    --text-dark: #333;
    --text-gray: #666;
    --text-light: #999;
    --bg-white: #fff;
    --bg-light: #fffafb;
    --bg-cream: #fff5f8;
    --shadow: 0 4px 15px rgba(255, 130, 178, 0.15);
    --shadow-hover: 0 8px 25px rgba(255, 130, 178, 0.25);
}

/* ========================================
   共通クラス
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.sp-only {
    display: none;
}

.pc-only {
    display: inline;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.header-cta-btn {
    background: #00b900;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.header-cta-btn:hover {
    background: #009900;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    background: url('../images/hero-mama.jpg') center center / cover no-repeat;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 251, 0.90) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding: 4rem 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-subtitle {
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.badge {
    background: white;
    color: var(--primary-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-light);
}

.hero-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-hover);
}

/* ========================================
   CTAボタン
======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #00b900;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
}

.cta-button:hover {
    background: #009900;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4);
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* ========================================
   共感セクション
======================================== */
.empathy {
    padding: 4rem 0;
    background: var(--bg-white);
}

.empathy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.empathy-card {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--bg-light);
    box-shadow: var(--shadow);
}

.empathy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.empathy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empathy-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.empathy-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.empathy-message {
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff5f8 100%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border-left: 6px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.empathy-message-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1.8;
}

/* ========================================
   約束セクション
======================================== */
.promise {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.promise-list {
    max-width: 900px;
    margin: 0 auto;
}

.promise-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--bg-light);
}

.promise-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.promise-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.promise-content {
    flex: 1;
}

.promise-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.promise-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.promise-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   特別サービスセクション
======================================== */
.special-services {
    padding: 4rem 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 3px solid var(--bg-light);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   対応エリアセクション
======================================== */
.area {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--primary-light) 100%);
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.area-tag {
    background: white;
    color: var(--primary-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 35px;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-light);
    cursor: pointer;
}

.area-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.area-examples {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.area-examples h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.area-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-gray);
    padding: 0.5rem;
}

.area-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ========================================
   料金セクション
======================================== */
.pricing {
    padding: 4rem 0;
    background: var(--bg-white);
}

.pricing-image {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.pricing-image img {
    width: 100%;
}

.pricing-notes {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 25px;
}

.pricing-notes h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-notes i {
    color: var(--primary-color);
}

.pricing-notes ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.pricing-notes li {
    font-size: 1rem;
    color: var(--text-gray);
    padding: 0.5rem 0;
}

.pricing-notes strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff5f8 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.cta-box-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ========================================
   信頼セクション
======================================== */
.trust {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.trust-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.trust-message {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    text-align: center;
}

.trust-message p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
}

/* ========================================
   お問い合わせセクション
======================================== */
.contact {
    padding: 4rem 0;
    background: var(--bg-white);
}

.contact-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff5f8 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-text > p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-list {
    margin-bottom: 1.5rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.contact-note {
    background: white;
    padding: 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-note i {
    color: #e74c3c;
}

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

.contact-qr img {
    max-width: 200px;
    margin: 0 auto 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.qr-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.line-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #00b900;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
}

.line-button:hover {
    background: #009900;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4);
}

/* ========================================
   最終CTAセクション
======================================== */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.final-cta-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    opacity: 0.95;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
}

.footer-logo p {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.footer-info i {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   スクロールトップボタン
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   レスポンシブデザイン (タブレット)
======================================== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .empathy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .promise-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .promise-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-list {
        grid-template-columns: 1fr;
    }
    
    .pricing-notes ul {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   レスポンシブデザイン (スマートフォン)
======================================== */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .sp-only {
        display: inline;
    }
    
    .pc-only {
        display: none;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .header-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .empathy,
    .promise,
    .special-services,
    .area,
    .pricing,
    .trust,
    .contact,
    .final-cta {
        padding: 3rem 0;
    }
    
    .empathy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .empathy-card {
        padding: 1.5rem;
    }
    
    .empathy-message {
        padding: 1.5rem;
    }
    
    .empathy-message-text {
        font-size: 1.1rem;
    }
    
    .promise-item {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .area-examples {
        padding: 1.5rem;
    }
    
    .pricing-notes {
        padding: 1.5rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .cta-button.large {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .contact-box {
        padding: 2rem 1.5rem;
    }
    
    .final-cta-title {
        font-size: 1.5rem;
    }
    
    .final-cta-text {
        font-size: 1rem;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   アニメーション
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   印刷用スタイル
======================================== */
@media print {
    .header,
    .scroll-top,
    .cta-button,
    .line-button,
    .header-cta-btn {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero,
    .empathy,
    .promise,
    .special-services,
    .area,
    .pricing,
    .trust,
    .contact,
    .final-cta {
        page-break-inside: avoid;
    }
}