.company-child {
    padding: 50px 0 100px 0;
}

.company-child .sec-company-child-box {
    border-radius: 32px;
    padding-bottom: 0px;
    margin: 50px 0;
}


.company-child .sec-company-child-box::after {
    border-radius: 32px
}

@media (max-width: 767px) {
    .company-child .sec-company-child-box {
        border-radius:20px
    }

    .company-child .sec-company-child-box::after {
        border-radius: 20px
    }
}

.company-child .sec-company-child-box02 {
    padding-bottom: 80px
}

@media (max-width: 767px) {
    .company-child .sec-company-child-box02 {
        padding-bottom:66px
    }
}

.sec-company-child-box {
    background: linear-gradient(270deg, #1C2732 0%, #172E47 50%, #1C2732 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    padding-bottom: 78px;
    position: relative
}

.sec-company-child-box::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border: 1px solid #2A3D4F;
    border-radius: 24px;
    z-index: 1;
    pointer-events: none
}

@media (max-width: 767px) {
    .sec-company-child-box {
        border-radius:16px;
        padding-bottom: 64px
    }

    .sec-company-child-box::after {
        border-radius: 16px
    }
}

/* ===== ENHANCED OUTLINE TABLE STYLES ===== */
.company-child .sec-company-child-box:first-of-type {
    margin-top: 0;
}

.sec-company-child-box:first-of-type .outline-table {
    margin-top: 0;
}

.outline-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 16px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
    animation: fadeInUp 0.8s ease-out both;
}

.outline-table tbody {
    display: table-row-group;
}

.outline-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: slideInLeft 0.4s ease-out both;
}

.outline-table tr:last-child {
    border-bottom: none;
}

.outline-table tr:hover {
    background-color: rgba(246, 73, 85, 0.15);
    transform: translateX(5px);
}

.outline-table tr:nth-child(1) { animation-delay: 0.1s; }
.outline-table tr:nth-child(2) { animation-delay: 0.2s; }
.outline-table tr:nth-child(3) { animation-delay: 0.3s; }
.outline-table tr:nth-child(4) { animation-delay: 0.4s; }
.outline-table tr:nth-child(5) { animation-delay: 0.5s; }
.outline-table tr:nth-child(6) { animation-delay: 0.6s; }
.outline-table tr:nth-child(7) { animation-delay: 0.7s; }
.outline-table tr:nth-child(8) { animation-delay: 0.8s; }
.outline-table tr:nth-child(9) { animation-delay: 0.9s; }
.outline-table tr:nth-child(10) { animation-delay: 1.0s; }

.outline-label {
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    text-align: left;
    vertical-align: top;
    width: 180px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
}

.outline-table tr:hover .outline-label {
    background-color: rgba(246, 73, 85, 0.2);
}

.outline-value {
    background-color: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    padding: 20px 25px;
    vertical-align: top;
    transition: background-color 0.3s ease;
}

.outline-table tr:hover .outline-value {
    background-color: rgba(246, 73, 85, 0.1);
}

/* Enhanced Link Styles */
.outline-value .profile-link {
    color: #f64955;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(246, 73, 85, 0.15);
    margin-top: 8px;
}

.outline-value .profile-link:hover {
    color: #ffffff;
    background: rgba(246, 73, 85, 0.3);
    transform: translateX(3px);
}

.outline-value .profile-link.with-arrow::before {
    content: "→";
    margin-right: 5px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.outline-value .profile-link.with-arrow:hover::before {
    transform: translateX(3px);
    color: #ffffff;
}

.outline-value .email-link {
    color: #f64955;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
}

.outline-value .email-link:hover {
    color: #ffffff;
    background: rgba(246, 73, 85, 0.3);
    transform: translateX(3px);
}

.outline-value .phone-link {
    color: #f64955;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
}

.outline-value .phone-link:hover {
    color: #ffffff;
    background: rgba(246, 73, 85, 0.3);
    transform: translateX(3px);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design for Outline Table */
@media (max-width: 1024px) {
    .outline-table {
        font-size: 15px;
    }
    
    .outline-label {
        width: 150px;
        padding: 18px 20px;
    }
    
    .outline-value {
        padding: 18px 20px;
    }
}

@media (max-width: 768px) {
    .company-child {
        padding: 30px 0 50px 0;
    }

    .company-child .sec-company-child-box {
        margin: 30px 0;
    }

    .outline-table {
        font-size: 14px;
        margin: 15px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .outline-label {
        width: 120px;
        padding: 15px 15px 15px 15px;
        font-size: 14px;
    }
    
    .outline-value {
        padding: 15px;
        font-size: 14px;
    }
    
    .outline-value .profile-link {
        font-size: 13px;
    }
    
    .outline-value .email-link,
    .outline-value .phone-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .company-child {
        padding: 20px 0 30px 0;
    }

    .company-child .sec-company-child-box {
        margin: 20px 0;
    }
    
    .outline-table {
        font-size: 13px;
        margin: 10px 0;
    }
    
    .outline-label {
        width: 100px;
        padding: 12px 10px 12px 10px;
        font-size: 13px;
    }
    
    .outline-value {
        padding: 12px;
        font-size: 13px;
    }
    
    .outline-value .profile-link {
        font-size: 12px;
    }
    
    .outline-value .email-link,
    .outline-value .phone-link {
        font-size: 13px;
    }
}

/* ===== COMPANY MISSION SECTION STYLES ===== */

.company-mission-section {
    width: 100%;
    margin: 40px 0 0 0;
    padding: 0;
    background: transparent;
}

.company-mission-section .story-section {
    margin-bottom: 30px;
    animation: slideInLeft 0.6s ease-out both;
}

.company-mission-section .story-section:nth-child(even) {
    animation: slideInRight 0.6s ease-out both;
}

.company-mission-section .story-paragraph {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #e8e8e8;
    font-family: "Noto Sans JP", "IBM Plex Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    text-align: justify;
}

.company-mission-section .story-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #f64955, transparent);
    margin: 40px 0;
    border-radius: 1px;
    animation: fadeIn 0.8s ease-out 1s both;
}

/* Responsive for Mission Section */
@media (max-width: 768px) {
    .company-mission-section {
        margin: 0;
    }

    .company-mission-section .story-paragraph {
        font-size: 1.4rem;
        line-height: 1.7;
    }
    
    .company-mission-section .story-section {
        margin-bottom: 25px;
    }
    
    .company-mission-section .story-divider {
        margin: 30px 0;
    }
}

/* ===== SIGNATURE SECTION STYLES ===== */

.signature-section {
    width: 100%;
    text-align: right;
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

.signature-image.desktop {
    width: 350px;
    display: block;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease-out 2s both;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.signature-image.mobile {
    display: none;
}

.signature-img {
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 1;
    filter: contrast(1.1) brightness(0.95);
}

.signature-img:hover {
    transform: scale(1.03);
    filter: contrast(1.2) brightness(1);
    opacity: 1;
}

/* Responsive for Signature Section */
@media (max-width: 768px) {
    .signature-image.desktop {
        display: none;
    }
    
    .signature-image.mobile {
        display: block;
        width: 300px;
        padding: 10px 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        animation: fadeInUp 0.6s ease-out 2s both;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 3px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .signature-img {
        max-width: 250px;
    }
    
    /* Disable complex animations on small screens */
    .signature-img:hover {
        transform: none;
    }
}

.text-red-desc {
    color: #f64955;
    font-weight: 700;
    background: rgba(246, 73, 85, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ===== MANAGER CARD STYLES ===== */

.manager-card__quote-section {
    background: rgba(248, 249, 250, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f64955;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.manager-card__quote-section:hover {
    background: rgba(248, 249, 250, 0.15);
    border-left-color: #d63447;
    transform: translateX(5px);
}

.manager-card__quote-title {
    font-size: 16px;
    font-weight: 600;
    color: #f64955;
    margin: 0 0 15px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.manager-card__quote-content {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    text-align: justify;
}

.manager-card__quote-content p {
    margin: 0 0 10px 0;
}

.manager-card__quote-content p:last-child {
    margin-bottom: 0;
}

.manager-card__position-info {
    background: rgba(248, 249, 250, 0.1);
    padding: 20px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.manager-card__position-info:hover {
    background: rgba(248, 249, 250, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.manager-card__position {
    font-size: 14px;
    color: #cccccc;
    margin: 0 0 10px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.manager-card__name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.manager-card__name-japanese {
    font-style: normal;
    color: #ffffff;
    font-size: 28px;
}

.manager-card__name-english {
    font-size: 16px;
    color: #cccccc;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0 0 5px;
}

.manager-card__social-link {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.manager-card__social-link:hover {
    transform: scale(1.1);
    background: rgba(246, 73, 85, 0.2);
}

.manager-card__social-icon {
    width: 25px;
    height: 25px;
    opacity: 1;
    filter: brightness(1.2);
}

.manager-card__history {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.manager-card__history:hover {
    background: rgba(255, 255, 255, 0.08);
}

.manager-card__history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.manager-card__history-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.manager-card__history-row:hover {
    background-color: rgba(246, 73, 85, 0.1);
}

.manager-card__history-row:last-child {
    border-bottom: none;
}

.manager-card__history-date {
    font-weight: 600;
    color: #f64955;
    padding: 12px 15px 12px 15px;
    vertical-align: top;
    width: 120px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.manager-card__history-description {
    color: #ffffff;
    padding: 12px 0;
    vertical-align: top;
    line-height: 1.5;
    font-size: 14px;
}

.company-child--managers .block {
    margin-bottom: 100px;
}

.block--staff .block__img .img{
    max-width: 450px!important;
}

.block--staff {
    margin-top: 100px;
    margin-bottom: 50px;
}

.block--staff:first-of-type {
    margin-top: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.map-static {
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

.map-static img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.map-static a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.map-static a:hover {
   background: #005a87;
}


/* Responsive Design for Manager Cards */
@media (max-width: 768px) {

    [rel~="js-lazy"] {
        opacity: 1!important;
    }

    .map-static {
        display: none;
    }

    .map-container {
        display: block;
    }
    
    .block--staff {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .company-child--managers .block {
        margin-bottom: 50px;
    }

    .manager-card__quote-section {
        padding: 15px;
        margin-top: 15px;
    }
    
    .manager-card__quote-title {
        font-size: 14px;
    }
    
    .manager-card__quote-content {
        font-size: 13px;
    }
    
    .manager-card__position-info {
        padding: 15px;
        margin-bottom: 15px;
        margin-top: 20px;
    }
    
    .manager-card__name {
        font-size: 20px;
    }
    
    .manager-card__name-japanese {
        font-size: 22px;
    }
    
    .manager-card__name-english {
        font-size: 14px;
    }
    
    .manager-card__history {
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .manager-card__history-table {
        font-size: 13px;
    }
    
    .manager-card__history-date {
        width: 100px;
        padding: 10px 10px 10px 10px;
        font-size: 12px;
    }
    
    .manager-card__history-description {
        padding: 10px 0;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .block--staff {
        margin-top: 50px;
    }
    
    .company-child--managers .block {
        margin-bottom: 30px;
    }

    .manager-card__quote-section {
        padding: 12px;
        margin-top: 12px;
    }
    
    .manager-card__quote-title {
        font-size: 13px;
    }
    
    .manager-card__quote-content {
        font-size: 12px;
    }
    
    .manager-card__position-info {
        padding: 12px;
        margin-bottom: 12px;
        margin-top: 15px;
    }
    
    .manager-card__name {
        font-size: 18px;
    }
    
    .manager-card__name-japanese {
        font-size: 20px;
    }
    
    .manager-card__name-english {
        font-size: 12px;
    }
    
    .manager-card__history {
        padding-top: 12px;
        margin-top: 15px;
    }
    
    .manager-card__history-table {
        font-size: 12px;
    }
    
    .manager-card__history-date {
        width: 100px;
        padding: 8px 8px 8px 8px;
        font-size: 11px;
    }
    
    .manager-card__history-description {
        padding: 8px 0;
        font-size: 12px;
    }
}

/* ===== COMPANY ACCESS STYLES ===== */

.access-desc-section {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out both;
}

.access-desc-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 0 15px 0;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.access-desc-section p:last-child {
    margin-bottom: 0;
}

.access-desc-section p strong {
    color: #f64955;
    font-weight: 600;
    background: rgba(246, 73, 85, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
}

.access-desc-section .phone-link {
    color: #f64955;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
    background: rgba(246, 73, 85, 0.1);
}

.access-desc-section .phone-link:hover {
    color: #ffffff;
    background: rgba(246, 73, 85, 0.3);
    transform: translateX(3px);
    text-decoration: none;
}

.access-map-section {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.access-map-section iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.access-map-section iframe:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    filter: brightness(1) contrast(1.2);
}

/* Responsive Design for Access */
@media (max-width: 1024px) {
    .access-desc-section {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .access-desc-section p {
        font-size: 15px;
    }
    
    .access-map-section iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .access-desc-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .access-desc-section p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .access-map-section iframe {
        height: 350px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .access-desc-section {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    .access-desc-section p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .access-map-section iframe {
        height: 300px;
        border-radius: 6px;
    }
    
    /* Disable hover effects on small screens for better performance */
    .access-map-section iframe:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        filter: brightness(0.9) contrast(1.1);
    }
}

/* ===== STAFF FAQ SECTION STYLES ===== */

.staff-faq-section {
    margin-top: 60px;
    padding: 40px 0 0 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
    animation-delay: 0.8s;
}

.staff-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f64955, transparent);
    animation: slideInLeft 1s ease-out 1s both;
}

.staff-faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(246, 73, 85, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.staff-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.staff-faq-item {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.staff-faq-item:last-of-type {
    margin-bottom: 0!important;
}

.staff-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f64955, #e63946);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.staff-faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    border-color: rgba(246, 73, 85, 0.3);
}

.staff-faq-item:hover::before {
    transform: scaleY(1);
}

.staff-faq-item--with-image {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 35px;
}

.staff-faq-content {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.staff-faq-question {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 45px;
    line-height: 1.3;
}

.staff-faq-question::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #1E90FF, #4169E1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.staff-faq-item:hover .staff-faq-question::before {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.staff-faq-answer {
    position: relative;
    padding-left: 45px;
}

.staff-faq-answer::before {
    content: "A";
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f64955, #e63946);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(246, 73, 85, 0.3);
    transition: all 0.3s ease;
}

.staff-faq-item:hover .staff-faq-answer::before {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(246, 73, 85, 0.4);
}

.staff-faq-answer p {
    font-size: 1.6rem;
    color: #e8e8e8;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.staff-faq-image {
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.staff-faq-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(246, 73, 85, 0.1), rgba(76, 175, 80, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.staff-faq-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.staff-faq-image:hover::before {
    opacity: 1;
}

.staff-faq-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.staff-faq-image:hover img {
    filter: brightness(1.1) contrast(1.2);
    transform: scale(1.1);
}

.staff-faq-image--desktop {
    display: block;
}

.staff-faq-image--mobile {
    display: none;
    margin-top: 25px;
}

.staff-faq-image--left {
    order: -1;
}

.staff-faq-image--right {
    order: 1;
}

/* Responsive Design for Staff FAQ Section */
@media (max-width: 1024px) {
    .staff-faq-section {
        margin-top: 50px;
        padding: 30px 0 0 0;
        border-radius: 16px;
    }
    
    .staff-faq-item--with-image {
        gap: 30px;
    }
    
    .staff-faq-content {
        min-width: 280px;
    }
    
    .staff-faq-question {
        font-size: 1.8rem;
        padding-left: 40px;
    }
    
    .staff-faq-question::before {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .staff-faq-answer {
        padding-left: 40px;
    }
    
    .staff-faq-answer::before {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .staff-faq-answer p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .staff-faq-section {
        margin-top: 40px;
        padding: 25px 0 0 0;
        border-radius: 12px;
    }
    
    .staff-faq-item {
        padding: 25px;
        margin-bottom: 35px;
    }
    
    .staff-faq-item--with-image {
        flex-direction: column;
        gap: 25px;
    }
    
    .staff-faq-content {
        min-width: auto;
    }
    
    .staff-faq-question {
        font-size: 1.6rem;
        padding-left: 35px;
        margin-bottom: 20px;
    }
    
    .staff-faq-question::before {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .staff-faq-answer {
        padding-left: 35px;
    }
    
    .staff-faq-answer::before {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .staff-faq-answer p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .staff-faq-image--desktop {
        display: none;
    }
    
    .staff-faq-image--mobile {
        display: block;
    }
    
    .staff-faq-image--left,
    .staff-faq-image--right {
        order: 0;
    }
}

@media (max-width: 480px) {
    .staff-faq-section {
        margin-top: 30px;
        padding: 20px 0 0 0;
        border-radius: 10px;
    }
    
    .staff-faq-item {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .staff-faq-question {
        font-size: 1.4rem;
        padding-left: 32px;
        margin-bottom: 18px;
    }
    
    .staff-faq-question::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .staff-faq-answer {
        padding-left: 32px;
    }
    
    .staff-faq-answer::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .staff-faq-answer p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .staff-faq-image {
        border-radius: 8px;
    }
}

/* ===== MAP SECTION STYLES ===== */

.map-container {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.map-static {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}

.map-static .map-placeholder {
  width: 100%;
  height: 200px;
  background: url(../../img/company/map-placeholder.png) no-repeat center center;
  background-size: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-static a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f64955, #e63946);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(246, 73, 85, 0.3);
}

.map-static a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 73, 85, 0.4);
  background: linear-gradient(135deg, #e63946, #d63447);
}

.c-lst-item .item {
    padding: 25px 15px 27px 15px;
}

.c-lst-item .item .ttl {
    font-size: 2.5rem;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .c-lst-item .item {
        width: calc(555 / 1171 * 100%)!important;;
        margin: 0 calc(60 / 1171 * 100%) 60px 0!important;;
    }

    .c-lst-item .item:nth-child(2n) {
        margin-right: 0!important;; 
    }

    .c-lst-item .item:nth-child(3n) {
        margin-right: 60px!important;
    }
}

/* Responsive Map Styles */
@media (max-width: 768px) {
  .map-container {
    height: 250px;
    border-radius: 8px;
  }
  
  .map-container iframe {
    border-radius: 8px;
  }
  
  .map-static .map-placeholder {
    height: 190px;
    border-radius: 8px;
  }
  
  .map-static a {
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 200px;
    border-radius: 6px;
  }
  
  .map-container iframe {
    border-radius: 6px;
  }
  
  .map-static a {
    padding: 8px 16px;
    font-size: 13px;
  }
}
