.elementor-kit-215{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-45774bb:#DB2777;--e-global-color-1eca0a0:#FFFFFF;--e-global-color-c801e3d:#FFE4E6;--e-global-color-99ddab7:#C026D3;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-215 e-page-transition{background-color:#FFBC7D;}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ヒーローセクション */
.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(249, 168, 212, 0.1), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(196, 181, 253, 0.1), transparent 50%);
    pointer-events: none;
}
.hero-content {
    display: grid;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* バッジ */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #fce7f3 0%, #e9d5ff 100%);
    color: #be185d;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(190, 24, 93, 0.2);
    box-shadow: 0 2px 8px rgba(190, 24, 93, 0.1);
    transition: all 0.3s ease;
}
.badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(190, 24, 93, 0.15);
}

/* タイトル */
.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.highlight {
    color: #db2777;
    position: relative;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #db2777, #f472b6);
    opacity: 0.3;
}

/* 画像 */
.hero-image-mobile img,
.hero-image-desktop img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.hero-image-mobile img:hover,
.hero-image-desktop img:hover {
    transform: scale(1.02);
}

/* アラートボックス */
.alert-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.alert-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.alert-title {
    font-weight: 700;
    color: #b91c1c;
    font-size: 0.95rem;
}
.alert-text {
    color: #dc2626;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* 説明文 */
.hero-description {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* CTAボタン */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-line {
    background: linear-gradient(135deg, #06d755 0%, #05c251 100%);
    color: white;
}
.btn-line:hover {
    background: linear-gradient(135deg, #05c251 0%, #059142 100%);
}
.btn-phone {
    background: transparent;
    color: #db2777;
    border: 2px solid #f9a8d4;
}
.btn-phone:hover {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-color: #db2777;
}

/* レスポンシブ */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .cta-buttons {
        flex-direction: row;
    }
    .btn {
        flex: 1;
        min-width: 200px;
    }
    .hero-title {
        font-size: 3rem;
    }
}/* End custom CSS */