/* Layout */
.l-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* 24px / 16 */
    padding-right: 1.5rem; /* 24px / 16 */
    width: 100%;
}

.b-hero-section .l-hero {
    /* Block-specific container */
    padding-top: 6.25rem; /* 100px / 16 */
    padding-bottom: 5rem; /* 80px / 16 */
    position: relative;
    overflow: hidden;
}

.b-hero-section .l-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to top, rgba(11, 136, 227, 1) 0%, rgba(11, 136, 227, 0) 100%);
    z-index: 1;
    opacity: 0.1;
}

.b-hero-section .l-hero__inner {
    display: flex;
    align-items: center;
    gap: 2.5rem; /* 40px / 16 */
    margin-bottom: 3.125rem; /* 50px / 16 */
    position: relative;
    z-index: 2;
}

.b-hero-section .l-hero__content {
    flex: 1 1 50%;
    max-width: 520px;
}

.b-hero-section .l-hero__image_area {
    flex: 1 1 50%;
    position: relative;
}

.b-hero-section .l-hero__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 2.2rem; /* 40px / 16 */
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 1.5625rem; /* 25px / 16 */
}

.b-hero-section .l-hero__description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.125rem; /* 18px / 16 */
    letter-spacing: 0.05em;
    line-height: 1.7;
    color: #333333;
    margin-top: 1.5625rem; /* 25px / 16 */
}

.b-hero-section .l-hero__actions {
    display: flex;
    gap: 1.25rem; /* 20px / 16 */
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

/* Component adjustments for block context */
.b-hero-section .c-highlight_box {
    border: 1px solid #0B88E3;
    padding: 0.625rem 0.9375rem;
    display: inline-block;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.b-hero-section .c-highlight_box p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    color: #0B88E3;
    margin: 0; /* Reset margin if needed */
}

.b-hero-section .c-image_placeholder {
    position: relative;
    display: block;
}

.b-hero-section .c-image_placeholder img {
     display: block;
     border-radius: 16px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     max-width: 100%; /* Ensure image responsiveness */
     height: auto;
}

/* c-image_overlay styles are not used in the provided PHP, omitting */

.b-hero-section .c-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.1875rem;
    border-radius: 50px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    flex-grow: 1;
    max-width: 400px;
    text-align: center;
}

.b-hero-section .c-hero-button--primary {
    background: linear-gradient(to right, #0B88E3, #67BFFF);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(11, 136, 227, 0.3);
}

.b-hero-section .c-hero-button--primary:hover {
     background: linear-gradient(to right, #0053B5, #0B88E3);
     box-shadow: 0 6px 15px rgba(11, 136, 227, 0.4);
}

.b-hero-section .c-hero-button--secondary {
    background-color: #ffffff;
    color: #0B88E3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.b-hero-section .c-hero-button--secondary:hover {
    background-color: #f8f8f8;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.b-hero-section .c-hero-button--tertiary {
    background: linear-gradient(to right, #28a745, #20c997);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.b-hero-section .c-hero-button--tertiary:hover {
    background: linear-gradient(to right, #218838, #1e7e34);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

.c-hero-button {
    position: relative;
}
.b-hero-section .c-icon {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    margin-left: 0.9375rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.b-hero-section .c-hero-button--primary .c-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.b-hero-section .c-hero-button--secondary .c-icon {
     background-color: #0B88E3;
     color: #ffffff;
}

.b-hero-section .c-hero-button--tertiary .c-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .b-hero-section .l-hero__inner {
        flex-direction: column;
        text-align: center;
        gap: 3.125rem;
    }
     .b-hero-section .l-hero__content {
         max-width: 600px;
         order: 2;
     }
     .b-hero-section .l-hero__image_area {
         order: 1;
         width: 100%;
         max-width: 600px;
     }
     .b-hero-section .l-hero__actions {
         flex-direction: row;
         align-items: center;
         max-width: 900px;
         gap: 1rem;
     }
     .b-hero-section .c-hero-button {
          width: 100%;
          max-width: 280px;
          min-width: 250px;
     }
    /* Breadcrumb styles removed as they are not part of the block */
}

@media (max-width: 767px) {
    .b-hero-section .l-hero {
         padding-top: 3rem;
         padding-bottom: 3rem;
     }
    .b-hero-section .l-hero__title {
         font-size: 1.8rem;
    }
    .b-hero-section .l-hero__description {
         font-size: 0.875rem;
         text-align: left;
    }
    .b-hero-section .c-highlight_box p {
         font-size: 0.8125rem;
    }
    .b-hero-section .c-hero-button {
         font-size: 1rem;
         padding: 0.875rem 1.5625rem;
         max-width: none;
         min-width: auto;
    }
    .b-hero-section .l-hero__actions {
        flex-direction: column;
        gap: 1rem;
    }
     .b-hero-section .c-icon {
         width: 32px;
         height: 32px;
         font-size: 1.25rem;
     }
     /* Image overlay styles removed */
     /* Breadcrumb styles removed */
} 



.c-image_placeholder.is-logo {
    box-shadow: none;
    max-width: 490px;
    margin-bottom: 24px;
}


.c-image_placeholder.is-logo img {
    box-shadow: none;
}