.elementor-588 .elementor-element.elementor-element-7a54fc5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-588 .elementor-element.elementor-element-51f3888{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-588 .elementor-element.elementor-element-bd342a6{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b707cbd */.mp-bl-banner-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
}
.mp-bl-banner-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* rounded corners? Image doesn't show clearly. Let's keep it square for banner. */
}
.mp-bl-banner-img img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 300px;
    /* Ensure height on mobile */
    object-fit: cover;
}
/* Text Overlay */
.mp-bl-banner-text-wrap {
    position: absolute;
    top: 20%;
    left: 10%;
    /* Specific positioning as per designs usually */
    z-index: 2;
}
.mp-bl-title {
    /* Web font or system Mincho */
    font-size: 3rem;
    /* Large size */
    font-weight: 500;
    color: #fff;
    margin: 0;
    padding-left: 20px;
    /* Space between line and text */
    border-left: 3px solid #000;
    /* Vertical line */
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    /* In case text overlaps complex image parts, though image seems to have white space there */
}
.mp-bl-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
    width: 3px;
    /* Line thickness */
    height: 150%;
    /* 1.4 times the text height - Adjust this to make it longer/shorter */
    background-color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
    .mp-bl-title {
        font-size: 1.8rem;
        padding-left: 15px;
        border-left-width: 3px;
    }
    .mp-bl-banner-text-wrap {
        top: 15%;
        left: 5%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9fd4412 */.service-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* number circle */
.service-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 22px;
    font-family: serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* text */
.service-text span {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    color: #444;
}

.service-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

/* themes */
.theme-blue  .service-number { background: #cceeff; }
.theme-green .service-number { background: #d9f2ce; }
.theme-yellow.service-number,
.theme-yellow .service-number { background: #fff5ca; }
.theme-pink  .service-number { background: #ffd6d6; }

/* responsive */
@media (max-width: 991px) {
    .service-summary {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }
}

@media (max-width: 600px) {
    .service-summary {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-44f97f4 *//* Reset & Base for this specific component */
.mp-section * {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    background-color: #fff;
}

.mp-section {
    padding: 60px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.mp-container {
    width: 100%;
    max-width: 1200px;
}

/* Header Styles */
.mp-header-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.mp-title-container {
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
    padding: 0 10px;
}

.mp-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
    margin: 0;
    letter-spacing: 0.05em;
}

/* Brush stroke background effect */
.mp-title-bg {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    width: 110%;
    height: 35%;
    background-color: #d1f0d1;
    /* Light pastel green */
    z-index: 1;
    border-radius: 5px;
    opacity: 0.8;
}

/* To simulate the brush ends roughly */
.mp-title-bg::before,
.mp-title-bg::after {
    content: '';
    position: absolute;
    background-color: #d1f0d1;
    width: 20px;
    height: 100%;
    top: 0;
    border-radius: 50%;
}

.mp-title-bg::before {
    left: -10px;
}

.mp-title-bg::after {
    right: -10px;
}


.mp-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    text-align-last: center;
}

/* Table Styles */
.mp-table-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #888;
}

.mp-bucket-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    /* Ensure table doesn't squash too much */
}

/* Headers */
.mp-bucket-table thead th {
    background-color: #fff8d6;
    /* Light lime green header */
    padding: 15px 10px;
    border-bottom: 1px solid #888;
    border-right: 1px solid #888;
    color: #2c2c2c;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    font-size: 0.95rem;
}

.mp-bucket-table thead th:last-child {
    border-right: none;
}

/* Header Columns Widths */
.mp-col-no {
    width: 2%;
}

.mp-col-list {
    width: 20%;
}

.mp-col-date {
    width: 20%;
}

.mp-col-20 {
    width: 20%;
}

.mp-col-status {
    width: 20%;
}


/* Rows & Cells */
.mp-bucket-table tbody tr {
    background-color: #fff;
}

.mp-bucket-table td {
    border-bottom: 1px solid #888;
    border-right: 1px solid #888;
    padding: 12px 15px;
    vertical-align: middle;
    font-size: 0.95rem;
    color: #333;
}

.mp-bucket-table td:last-child {
    border-right: none;
}

.mp-cell-no {
    text-align: center;
    font-weight: 500;
}

.mp-cell-list {
    text-align: left;
    font-weight: 500;
}

.mp-cell-date,
.mp-cell-period,
.mp-cell-status {
    text-align: center;
}

/* Date Pills */
.mp-date-pill {
    display: inline-block;
    background-color: #f2f2f2;
    /* Light grey pill */
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Roboto', sans-serif;
    /* A bit more tech/number friendly */
    color: #444;
    min-width: 100px;
}

/* Status Badges */
.mp-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    width: 140px;
    /* Fixed width for alignment */
    cursor: pointer;
    position: relative;
    justify-content: center;  
    gap: 6px; 
}

.mp-status-inprogress {
    background-color: #fff3e0;
    /* Pale orange */
    color: #e65100;
    border: 1px solid #ffe0b2;
}

.mp-status-notstarted {
    background-color: #eee;
    color: #666;
    border: 1px solid #ddd;
}

.mp-status-completed {
    background-color: #e8f5e9;
    /* Light green */
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Small arrow for dropdown feel */
.mp-arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.6;
}

/* Empty State Placeholders */
.mp-bucket-table tbody tr:nth-child(n+5) td {
    height: 60px;
    /* Taller empty rows */
}

.mp-input-placeholder {
    display: inline-block;
    background-color: #e0e0e0;
    width: 120px;
    height: 24px;
    border-radius: 12px;
    position: relative;
    color: #757575;
    text-align: left;
    padding-left: 10px;
    line-height: 24px;
    font-size: 0.8rem;
}

.mp-status-placeholder {
    display: inline-block;
    background-color: #e0e0e0;
    width: 140px;
    height: 24px;
    border-radius: 12px;
    position: relative;
    text-align: right;
    padding-right: 10px;
}

.mp-status-placeholder .mp-arrow-down {
    margin-bottom: 2px;
    color: #757575;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mp-section {
        padding: 40px 10px;
    }

    .mp-title {
        font-size: 1.5rem;
    }

    /* Enable horizontal scrolling for the table on mobile */
    .mp-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Editable List Cells */
.mp-cell-list[contenteditable="true"] {
    outline: none;
    cursor: text;
    transition: background-color 0.2s;
}

.mp-cell-list[contenteditable="true"]:hover,
.mp-cell-list[contenteditable="true"]:focus {
    background-color: #f9f9f9;
}

.mp-cell-list[contenteditable="true"]:empty::before {
    content: 'Input your goal...';
    color: #999;
    font-style: italic;
    pointer-events: none;
}

/* Status Dropdown - now Portal Based */
#mp-portal-dropdown {
    display: none;
    /* managed by JS */
    /* Position styling handled by JS */
}

.mp-status-dropdown {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    min-width: 170px;
    text-align: left;
}

.mp-dropdown-item {
    padding: 10px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #333;
    transition: background-color 0.1s;
}

.mp-dropdown-item:hover {
    background-color: #f0f0f0;
}

/* Specific Badge Styles for New Statuses */
.mp-status-blocked {
    background-color: #ffebee;
    /* Light Red */
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.mp-status-review {
    background-color: #e8eaf6;
    /* Light Indigo/Blue */
    color: #283593;
    border: 1px solid #c5cae9;
}

/* Date Picker styling - Ensure functionality */
.mp-date-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.mp-date-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 50 !important;
    /* High z-index to catch clicks */
    margin: 0;
    padding: 0;
}

/* ========================================= */
/* INTERACTION FIXES (PORTAL)                */
/* ========================================= */
#mp-portal-dropdown {
    z-index: 99999 !important;
}

#mp-portal-dropdown.mp-status-dropdown {
    display: none;
    position: absolute;
    min-width: 170px;
    margin-top: 0;
}

.mp-status-notstarted { background:#eee; color:#555; }
.mp-status-inprogress { background:#fff3cd; color:#856404; }
.mp-status-completed  { background:#d4edda; color:#155724; }
.mp-status-default    { background:#f8f9fa; color:#333; }/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-d92ffc4 */.mp-unique-contact-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #333;
}
.mp-contact-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: normal;
    color: #444;
}
.mp-contact-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
    /* Or justify based on specific preference, defaults left usually ok */
}
.mp-contact-desc a {
    color: #333;
    text-decoration: underline;
    font-weight: bold;
}
/* Form Box */
.mp-contact-form-box {
    background-color: #fff8d6;
    /* Pale beige/yellow matching image */
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e0d8b0;
    /* Subtle border if needed, usually just bg */
}
.mp-form-group {
    margin-bottom: 20px;
}
.mp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: bold;
    /* Image looks somewhat bold or just dark */
    color: #444;
}
.mp-form-group input,
.mp-form-group select,
.mp-form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    /* Maybe lighter or just shadow? Image has distinct white boxes */
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fff;
    box-sizing: border-box;
    /* Critical for padding */
}
.mp-form-group textarea {
    resize: vertical;
    min-height: 150px;
}
/* Button */
.mp-form-btn-row {
    text-align: center;
    margin-top: 30px;
}
.mp-contact-submit-btn {
    background-color: #ff6b6b;
    /* Pinkish red */
    color: #fff;
    border: none;
    padding: 12px 60px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    /* Pill shape */
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.mp-contact-submit-btn:hover {
    background-color: #ff5252;
}

/* Responsive */
@media (max-width: 600px) {
    .mp-contact-form-box {
        padding: 20px;
    }
    .mp-contact-submit-btn {
        width: 100%;
    }
}/* End custom CSS */