/* ============================================
   Additional CSS - Extracted from HTML files
   ============================================
   
   IMPORTANT: When removing inline styles and replacing with classes,
   ALWAYS update CSS selectors that target those inline styles to also
   target the new classes. Search for [style*="..."] selectors and
   add the new class selectors alongside them.
   ============================================ */

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    max-width: 98px;
    width: 98px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.loading-bar-container {
    width: 98px;
    max-width: 98px;
    height: 4px;
    background-color: #f3f3f3;
    border-radius: 2px;
    margin-top: 30px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background-color: #1d2088;
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Preloader hidden */
#preloader.preloader-hidden {
    display: none !important;
}

/* Ribbon */
.ribbon {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    --f: .5em;
    --r: .8em;
    position: absolute;
    top: 10px;
    left: calc(-1*var(--f));
    padding-inline: .25em;
    line-height: 2.0;
    background: #e60012;
    border-bottom: var(--f) solid #0005;
    border-right: var(--r) solid #0000;
    z-index: 100;
    clip-path: polygon(calc(100% - var(--r)) 0,0 0,0 calc(100% - var(--f)),var(--f) 100%,
        var(--f) calc(100% - var(--f)),calc(100% - var(--r)) calc(100% - var(--f)),
        100% calc(50% - var(--f)/2));
}

/* Sub-text styling for English text */
.sub-text {
    color: #1d2088 !important;
    font-size: 0.5em;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

/* Remove rounded corners from video section buttons */
.ars-btn-top {
    border-radius: 0 !important;
}

/* Language Buttons - PC */
.language-buttons-pc {
    position: absolute;
    top: 5px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.language-buttons-pc .lang-btn {
    text-decoration: none;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    transition: all 0.3s ease;
    border: none;
    background: #858585;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 21px;
}

.language-buttons-pc .lang-btn:hover {
    background: #6b6b6b;
    color: #ffffff !important;
}

.language-buttons-pc .lang-btn.active {
    background: #1d2088;
    color: #ffffff !important;
    font-weight: 600;
}

/* Language Buttons - Mobile */
.language-buttons-mobile {
    display: flex;
    gap: 2px;
    align-items: center;
    margin-right: 5px;
    height: 100%;
    margin-left: auto;
}

.language-buttons-mobile .lang-btn {
    text-decoration: none;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    transition: all 0.3s ease;
    border: none;
    background: #858585;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    min-width: 40px;
}

.language-buttons-mobile .lang-btn:hover {
    background: #6b6b6b;
    color: #ffffff !important;
}

.language-buttons-mobile .lang-btn.active {
    background: #1d2088;
    color: #ffffff !important;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .language-buttons-pc {
        display: none;
    }
    .language-buttons-mobile {
        display: flex;
    }
}

@media only screen and (min-width: 768px) {
    .language-buttons-pc {
        display: flex;
    }
    .language-buttons-mobile {
        display: none;
    }
}

/* Navbar Mobile */
.navbar-right-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width: 767px) {
    .navbar-right-mobile {
        display: flex;
    }
    
    .classy-navbar-toggler {
        display: block !important;
    }
}

@media only screen and (min-width: 768px) {
    .navbar-right-mobile {
        display: none;
    }
}

/* Prevent horizontal scroll on mobile */
html, body { 
    overflow-x: hidden; 
}

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

/* Hero videos */
.movie_blk,
.sp-video {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
}

.movie_blk video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    overflow: hidden;
}

/* Mobile portrait - show mobile video with natural aspect ratio */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .pc-video {
        display: none !important;
    }
    
    .sp-video {
        display: block !important;
    }
    
    .movie_blk {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .movie_blk video {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }
}

/* Mobile landscape - show PC video with full height */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .pc-video {
        display: block !important;
    }
    
    .sp-video {
        display: none !important;
    }
    
    .movie_blk {
        height: 100vh !important;
    }
    
    .movie_blk video {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
}

.footer-cta .btn { 
    padding: 6px 12px; 
    font-size: 12px; 
    line-height: 1.2; 
}

.footer-cta .btn + .btn { 
    margin-left: 8px !important; 
}

@media only screen and (max-width: 767px) {
    .ars-services-area .container-fluid .row.no-gutters > [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .ars-btn02, .ars-btn03 {
        font-size: 14px !important;
        padding: 8px 16px !important;
        word-wrap: break-word;
    }
    
    .btn-area-sp .btn.ars-btn-top,
    .btn-area-sp .btn.ars-btn-top.btn-2 {
        width: 70%;
    }
    
    .btn-area-sp {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* View All Button */
.view-all-btn {
    display: inline-block;
    background: #1d2088;
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: background .2s ease;
}

.view-all-btn:hover { 
    background: #0f1555; 
    color: #fff !important; 
}

.view-all-btn:focus { 
    box-shadow: none; 
}

/* CTA buttons color theme */
a.ars-btn02 { 
    background: #e60012 !important; 
    color: #fff !important; 
    border: none !important; 
}

a.ars-btn02:hover { 
    filter: brightness(0.9); 
    color: #fff !important; 
}

a.ars-btn03 { 
    background: #1d2088 !important; 
    color: #fff !important; 
    border: none !important; 
}

a.ars-btn03:hover { 
    filter: brightness(0.9); 
    color: #fff !important; 
}

/* CTA sub text */
.cta-sub { 
    display: block; 
    font-size: 12px; 
    opacity: 0.9; 
    margin-top: 2px; 
}

.cta-desc { 
    display: block; 
    font-size: 11px; 
    opacity: 0.85; 
    margin-top: 2px; 
}

/* Footer widget titles size */
.footer-area .widget-title { 
    font-size: 100%; 
}

/* Image hover zoom effect */
.image-zoom-container {
    overflow: hidden;
    position: relative;
    display: block;
}

.image-zoom-container img {
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    display: block;
}

.image-zoom-container:hover img {
    transform: scale(1.1);
}

/* Apply to images in INFORMATION section */
.single-blog-post .post-content > div > img,
.single-blog-post .post-content img,
.single-blog-post .news-image-wrapper img {
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    display: block;
}

.single-blog-post:hover .post-content > div > img,
.single-blog-post:hover .post-content img,
.single-blog-post:hover .news-image-wrapper img {
    transform: scale(1.1);
}

/* Only apply overflow hidden to first div child if it's not in INFORMATION section */
.single-blog-post:not(.ars-services-area .single-blog-post) .post-content > div:first-child {
    overflow: hidden;
}

/* For INFORMATION section, handle overflow differently */
.ars-services-area .single-blog-post .post-content > div:first-of-type {
    overflow: visible !important;
}

/* PC site h5 text size */
@media only screen and (min-width: 768px) {
    .single-blog-post .post-content h5[style*="margin-top"],
    .single-blog-post .post-content .info-title {
        font-size: 1.1rem !important;
    }
    
    .ars-services-area .single-blog-post .post-content h5[style*="margin-top"],
    .ars-services-area .single-blog-post .post-content .info-title {
        font-size: 13px !important;
    }
    
    .ars-services-area .single-blog-post .post-content p.text-left,
    .ars-services-area .single-blog-post .post-content .info-text {
        font-size: 13px !important;
    }
    
    .ars-services-area .single-blog-post .post-content p:not(.text-left):not(.view-more-btn),
    .ars-services-area .single-blog-post .post-content .info-date {
        font-size: 13px !important;
    }
}

/* Text size for INFORMATION section text-left paragraphs - PC版のみ */
@media only screen and (min-width: 768px) {
    .single-blog-post .post-content p.text-left {
        font-size: 13px;
    }
}

/* Reduce spacing between INFORMATION items on mobile (50%) */
@media only screen and (max-width: 767px) {
    .ars-services-area .single-blog-post.mb-80 {
        margin-bottom: 40px !important;
    }
    
    .ars-services-area .single-blog-post {
        box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.15) !important;
        border-radius: 8px;
        overflow: visible !important;
        margin-bottom: 30px;
    }
    
    .ars-services-area .single-blog-post .post-content {
        padding-bottom: 20px !important;
        margin-bottom: 0;
        overflow: visible !important;
        background-color: #f4f8ff !important;
    }
    
    /* Only apply overflow hidden to the image wrapper, not the parent div */
    .ars-services-area .single-blog-post .post-content .news-image-wrapper {
        overflow: hidden;
        border-radius: 0;
    }
    
    /* Keep parent div visible so images show */
    .ars-services-area .single-blog-post .post-content > div:first-of-type {
        overflow: visible !important;
    }
    
    .ars-services-area .single-blog-post .post-content > div:last-child {
        overflow: visible !important;
    }
    
    /* Mobile: Keep padding-bottom for mobile */
    .ars-services-area .single-blog-post .post-content {
        padding-bottom: 20px !important;
    }
}

/* Ensure View More button is visible in all news items */
.single-blog-post .post-content .view-more-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #1d2088 !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
}

.single-blog-post .post-content .view-more-btn span,
.single-blog-post .post-content .view-more-btn i {
    color: #1d2088 !important;
}

.single-blog-post .post-content .view-more-btn i {
    transition: transform 0.3s ease !important;
}

.single-blog-post .post-content .view-more-btn:hover i {
    transform: translateX(5px) !important;
}

.single-blog-post .post-content.heigt270 {
    overflow: visible !important;
    min-height: auto !important;
}

/* Apply to images in Our Business section */
.single-service-area > div > img {
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    display: block;
}

.single-service-area:hover > div > img {
    transform: scale(1.1);
}

.single-service-area > div.mb-15 {
    overflow: hidden;
}

/* Apply to portfolio carousel images */
.single-portfolio-slide {
    overflow: hidden;
    position: relative;
}

.single-portfolio-slide img {
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    display: block;
}

.single-portfolio-slide:hover img {
    transform: scale(1.1);
}

/* Apply to blog post background images (MENU section) */
.single-blog-post.bg-img {
    overflow: visible;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: background-size 0.6s ease;
}

.single-blog-post.bg-img:hover {
    background-size: 110%;
}

/* Ensure MENU section background images show and zoom on hover - matching other sections' smooth zoom */
.ars-blog-area .single-blog-post.bg-img {
    background-size: 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: background-size 0.6s ease !important;
    overflow: hidden !important;
}

.ars-blog-area .single-blog-post.bg-img:hover {
    background-size: 115% !important;
}

/* Banner images */
.home-bnr {
    display: block;
    overflow: hidden;
}

.home-bnr-img {
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    display: block;
}

.home-bnr:hover .home-bnr-img {
    transform: scale(1.1);
}

/* WOW.js scroll animation styles */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/* Mobile INFORMATION section font sizes */
@media only screen and (max-width: 767px) {
    html body section.ars-services-area.section-padding-80-0 .single-blog-post .post-content .info-title,
    html body section.ars-services-area.section-padding-80-0 .single-blog-post .post-content > div .info-title,
    html body .ars-services-area.section-padding-80-0 .single-blog-post .post-content .info-title,
    html body .ars-services-area.section-padding-80-0 .single-blog-post .post-content > div .info-title,
    html body .ars-services-area .single-blog-post .post-content .info-title,
    html body .ars-services-area .single-blog-post .post-content > div .info-title,
    body section.ars-services-area.section-padding-80-0 .info-title,
    body .ars-services-area.section-padding-80-0 .info-title,
    body .ars-services-area .info-title,
    .info-title {
        font-size: 14px !important;
        line-height: 1.4 !important;
        text-size-adjust: 100% !important;
        -webkit-text-size-adjust: 100% !important;
    }
    
    html body section.ars-services-area.section-padding-80-0 .single-blog-post .post-content .info-text,
    html body section.ars-services-area.section-padding-80-0 .single-blog-post .post-content > div .info-text,
    html body .ars-services-area.section-padding-80-0 .single-blog-post .post-content .info-text,
    html body .ars-services-area.section-padding-80-0 .single-blog-post .post-content > div .info-text,
    html body .ars-services-area .single-blog-post .post-content .info-text,
    html body .ars-services-area .single-blog-post .post-content > div .info-text,
    body section.ars-services-area.section-padding-80-0 .info-text,
    body .ars-services-area.section-padding-80-0 .info-text,
    body .ars-services-area .info-text,
    .info-text {
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-size-adjust: 100% !important;
        -webkit-text-size-adjust: 100% !important;
    }
    
    html body section.ars-services-area.section-padding-80-0 .single-blog-post .post-content .info-date,
    html body section.ars-services-area.section-padding-80-0 .single-blog-post .post-content > div .info-date,
    html body .ars-services-area.section-padding-80-0 .single-blog-post .post-content .info-date,
    html body .ars-services-area.section-padding-80-0 .single-blog-post .post-content > div .info-date,
    html body .ars-services-area .single-blog-post .post-content .info-date,
    html body .ars-services-area .single-blog-post .post-content > div .info-date,
    body section.ars-services-area.section-padding-80-0 .info-date,
    body .ars-services-area.section-padding-80-0 .info-date,
    body .ars-services-area .info-date,
    .info-date {
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-size-adjust: 100% !important;
        -webkit-text-size-adjust: 100% !important;
    }
}

/* Image hover zoom effect for content images */
.choose-us-thumbnail {
    overflow: hidden;
    position: relative;
}

.choose-us-thumbnail img {
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    display: block;
}

.choose-us-thumbnail:hover img {
    transform: scale(1.1);
}

/* Breadcrumb page title styling - responsive */
.breadcrumb-area h1 {
    font-size: 3rem;
}

/* Ensure breadcrumb curve is positioned to the right */
.breadcrumb-area .breadcrumb-bg-curve {
    right: 0 !important;
}

.breadcrumb-area .breadcrumb-bg-curve img {
    margin-left: auto;
    display: block;
}

@media only screen and (max-width: 991px) {
    .breadcrumb-area h1 {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb-area {
        padding-top: 100px !important;
        margin-top: 30px !important;
        min-height: 250px !important;
    }
    
    .breadcrumb-area .container {
        padding-top: 0 !important;
    }
    
    .breadcrumb-area .row {
        align-items: flex-start !important;
        padding-top: 20px !important;
    }
    
    .breadcrumb-area h1 {
        font-size: 2.2rem !important;
    }
    
    .breadcrumb-area .title {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    .breadcrumb-area .breadcrumb {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }
    
    .breadcrumb-area .breadcumb--con {
        margin-bottom: 20px !important;
    }
}

/* Company building image zoom */
.col-md-6.mb-4 img.img-fluid {
    transition: transform 0.6s ease;
}

.col-md-6.mb-4:hover img.img-fluid {
    transform: scale(1.05);
}

.col-md-6.mb-4 {
    overflow: hidden;
}

/* Strengths section */
.strengths-section .section-title {
    font-size: 1.6rem;
    color: #111;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #1d2088;
    border-radius: 2px;
}

/* Mobile: Reduce mission-vision-title font size by 20% */
@media only screen and (max-width: 767px) {
    .mission-vision-title {
        font-size: 1.92rem !important;
    }
}

/* Hexagon shape for service-icon */
.single-service-area .service-icon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border-radius: 0 !important;
    background-color: #1d2088 !important;
    color: #ffffff !important;
}

/* Swap hover colors - light blue on hover */
.single-service-area:hover .service-icon {
    background-color: #e7f2fd !important;
    color: #303030 !important;
    box-shadow: 0 6px 50px 8px rgba(29, 32, 136, 0.15);
}

/* Default h5 color - brand blue */
.single-service-area h5 {
    color: #1d2088 !important;
}

/* Hover h5 color - keep brand blue or change as needed */
.single-service-area:hover h5 {
    color: #1d2088 !important;
}

/* Add bottom padding to value items */
.single-service-area .col-md-6.col-lg-3 {
    padding-bottom: 20px;
}

/* Strengths section - Card and icon styles */
.strengths-section .icon i {
    font-size: 80px;
    color: #1d2088;
    transition: transform 0.2s ease, color 0.2s ease;
}

.strengths-section .card:hover .icon i {
    transform: scale(1.1);
    color: #0d6efd;
}

.strengths-section .card {
    border-radius: 0.75rem;
    background-color: #f4f8fe;
    transition: transform 0.2s ease;
}

.strengths-section .card:hover {
    transform: translateY(-3px);
}

/* Mobile only: Add padding-bottom to items and set icon size */
@media only screen and (max-width: 767px) {
    .strengths-section .col-md-6.col-lg-3 {
        padding-bottom: 20px;
    }
    
    .strengths-section .icon i {
        font-size: 60px;
    }
    
    /* スマホ版のみテキストのフォントサイズを小さく調整 */
    .choose-us-content .section-heading p {
        font-size: 0.9rem !important;
    }
    
    .choose-us-content p {
        font-size: 0.9rem !important;
    }
    
    /* スマホ版のみ「AIロボット"ARISA"「プロジェクトストーリー」」のフォントサイズを小さく調整 */
    .choose-us-content .section-heading h3 {
        font-size: 1.3rem !important;
    }
    
    /* 主な機能セクションのコンテンツテキストのフォントサイズを少し小さく調整 */
    .strengths-section .card p {
        font-size: 0.85rem !important;
    }
}

/* Icon link styles */
.icon-link i {
    font-size: 1.5em;
    margin-left: 18px;
    line-height: 1.4;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon-link:hover i {
    color: #1d2088;
    transform: translateX(5px);
}

/* MENU section Read More button - Right align and animation */
.ars-blog-area .read-more-btn {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    margin-left: auto !important;
    gap: 5px;
}

.ars-blog-area .read-more-btn i {
    transition: transform 0.3s ease !important;
}

.ars-blog-area .read-more-btn:hover i {
    transform: translateX(5px) !important;
}

/* Mobile font size adjustments */
@media only screen and (max-width: 767px) {
    /* 人と技術をつなぐ、次世代のロボットソリューション。 - ars-portfolio-areaセクション内 */
    .ars-portfolio-area .section-heading h2 {
        font-size: 1.3rem !important;
    }
    
    /* 快適な未来へつなげるために - ars-services-areaセクション内（INFORMATION以外） */
    .ars-services-area .section-heading h2 {
        font-size: 2.2rem !important;
    }
    
    /* INFORMATIONセクションのh2タイトルのフォントサイズを大きく（最後に定義して確実に適用） */
    section.ars-services-area.section-padding-80-0:nth-of-type(1) .section-heading.text-center h2,
    section.ars-services-area.section-padding-80-0:first-of-type .section-heading.text-center h2 {
        font-size: 1.5rem !important;
    }
    
    /* 説明文のフォントサイズを小さく調整 */
    .ars-services-area .section-heading p {
        font-size: 0.9rem !important;
    }
    
    .ars-services-area .single-service-area p {
        font-size: 0.9rem !important;
        text-align: left !important;
    }
    
    /* ブラウザのテキストサイズ自動調整を無効化 */
    .ars-services-area .single-blog-post .post-content {
        text-size-adjust: 100% !important;
        -webkit-text-size-adjust: 100% !important;
    }
    
    /* スマホ版INFORMATIONセクションのフォントサイズを大きく - index.html only, NOT information.html */
    /* Note: The rules at line 601-647 already set .info-title to 13px for section.ars-services-area.section-padding-80-0 */
    /* This rule is removed to avoid conflicts. If index.html INFORMATION section needs larger text, */
    /* it should be handled by the more specific selectors at line 601-647, not a general .info-title rule */
    /* information.html page (.ars-portfolio-area) correctly uses 13px for h5, 12px for p (see line 1371-1378) */
}

/* ============================================
   Inline Style Replacements - Utility Classes
   ============================================ */

/* Breadcrumb nav */
.breadcrumb-area nav[aria-label="breadcrumb"] {
    margin-bottom: 10px;
}

/* Breadcrumb title */
.breadcrumb-area .title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #303030;
}

/* Breadcrumb h1 */
.breadcrumb-area h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #1d2088;
    margin: 0;
    line-height: 1.2;
    font-family: 'Lato', 'Noto Sans JP', sans-serif;
}

/* Section position relative */
.ars-why-choose-us-area {
    position: relative;
}

/* Privacy policy content wrapper */
.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Privacy policy paragraphs */
.privacy-policy-content p {
    margin-bottom: 20px;
}

/* Privacy policy h4 headings */
.privacy-policy-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1d2088;
    font-size: 1.2rem;
}

/* Privacy policy ul lists */
.privacy-policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Privacy policy date */
.privacy-policy-date {
    margin-top: 40px;
    text-align: right;
    color: #666;
    font-size: 0.9rem;
}

/* Footer container max-width */
.footer-area .container {
    max-width: 80%;
}

/* Footer logo image */
.footer-area .widget-title img {
    height: 22px;
    vertical-align: middle;
    margin-right: 8px;
}

/* Footer bottom row */
.footer-bottom-row {
    margin: 20px 0 30px 0;
}

.footer-bottom-row .col-12.col-md-8 {
    margin-left: 0px;
}

.footer-col-left-margin {
    margin-left: 0px;
}

/* Utility classes for common inline styles */
.txt-area {
    color: #fff;
}

.txt-area-sp {
    color: #fff;
}

.top-area-sp {
    padding-top: 100px;
}

.banner-area-sp {
    align-items: center;
}

.home-bnr_text {
    font-size: 14px;
}

.home-bnr-text-size {
    font-size: 14px;
}

.news-link {
    text-decoration: none;
    color: inherit;
}

.news-image-wrapper {
    overflow: hidden;
}

.info-title-spacing {
    margin-top: 8px;
}

.view-more-btn-spacing {
    margin-top: 10px;
    margin-bottom: 0 !important;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
    margin-left: auto;
}

.view-more-icon {
    font-size: 16px;
}

/* Text muted small font */
.text-muted-small {
    font-size: 0.95rem;
}

/* Company table styles */
.company-table {
    border-collapse: collapse;
    width: 100%;
}

.company-table th {
    color: #1d2088;
    font-weight: 600;
    font-size: 0.95rem !important;
    border-bottom: 1px solid rgba(29, 32, 136, 0.15);
    padding: 8px 0;
    width: 35%;
    vertical-align: top;
}

.company-table td {
    padding: 8px 0;
    color: #707070;
    font-size: 0.9rem !important;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

/* バリューセクションの英語表記のスタイル調整 */
.shadow-sm h5 small.text-muted {
    font-size: 0.75rem !important;
    color: #1d2088 !important;
}

/* 代表あいさつとミッション・ビジョン・バリューのテキスト横幅を統一 */
.strengths-section .text-center.mb-5,
#mission .text-center.mb-5 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* PC版のみバリューセクションの説明文のフォントサイズを少し小さく */
@media only screen and (min-width: 768px) {
    .shadow-sm p.text-muted {
        font-size: 0.9rem !important;
    }
    
    /* PC版のみ英語表記を次の行に配置 */
    .shadow-sm h5 small.text-muted {
        display: block !important;
        margin-top: 4px !important;
        margin-left: 0 !important;
    }
}

/* スマホ版のみテキストを左揃え・サイズ調整 */
@media only screen and (max-width: 767px) {
    /* 代表あいさつセクションのテキストサイズ調整 */
    .strengths-section .text-center.mb-5 p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* ミッション・ビジョン・バリューのセクションタイトル（h2）のサイズ調整 */
    .mission-vision-title {
        font-size: 1.5rem !important;
    }
    
    /* ミッション・ビジョンセクション内のテキストを左揃え */
    .single-service-area.mb-5 p {
        text-align: left !important;
    }
    
    /* 太字のテキスト（メインタイトル）のサイズ調整 */
    .single-service-area.mb-5 p.fw-semibold {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    /* 説明文のサイズ調整 */
    .single-service-area.mb-5 p.text-muted {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    
    /* バリューセクション内のテキストサイズ調整 */
    .shadow-sm p.text-muted {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    
    /* 会社概要テーブルのテキストサイズ調整（バリューセクションと同じサイズ） */
    .company-table th,
    .company-table td {
        font-size: 0.85rem !important;
    }
}

.btn-icon {
    margin-left: 6px;
    font-size: 1.5em;
    line-height: 1;
}

.btn-margin-left {
    margin-left: 5%;
}

.btn-no-radius {
    border-radius: 0;
}

.footer-container {
    max-width: 80%;
}

.footer-logo-img {
    height: 22px;
    vertical-align: middle;
    margin-right: 8px;
}

/* News detail page styles */
.news-detail-section {
    position: relative;
    padding-top: 0;
}

.post-date-style {
    color: #a6a6a6;
    font-size: 14px;
}

.news-image-container {
    overflow: hidden;
    margin-bottom: 30px;
}

.news-detail-img {
    width: 100%;
    height: auto;
}

.news-detail-h2 {
    margin-bottom: 20px;
}

.post-text-style {
    line-height: 1.8;
}

/* News detail page content text - 16px for PC, 13px for Mobile */
@media only screen and (min-width: 768px) {
    .blog-details-content .post-content .post-text-style p,
    .blog-details-content .post-content .post-text p {
        font-size: 16px !important;
    }
}

@media only screen and (max-width: 767px) {
    .blog-details-content .post-content .post-text-style p,
    .blog-details-content .post-content .post-text p {
        font-size: 14px !important;
    }
}

.news-date-signature {
    margin-top: 30px;
}

/* Breadcrumb styles */
.breadcrumb-nav-spacing {
    margin-bottom: 10px;
}

.breadcrumb-title-spacing {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #303030;
}

.breadcrumb-h1-style {
    font-size: 3rem;
    font-weight: bold;
    color: #1d2088;
    margin: 0;
    line-height: 1.2;
    font-family: 'Lato', 'Noto Sans JP', sans-serif;
}

/* Privacy Policy page styles */
.privacy-policy-section {
    position: relative;
}

.privacy-policy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-policy-p {
    margin-bottom: 20px;
}

.privacy-policy-p-small-margin {
    margin-bottom: 10px;
}

.privacy-policy-h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1d2088;
    font-size: 1.2rem;
}

.privacy-policy-ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-policy-date {
    margin-top: 40px;
    text-align: right;
    color: #666;
    font-size: 0.9rem;
}

/* Case Studies page styles */
.case-studies-text-muted {
    font-size: 0.95rem;
}

/* Company page styles */
.company-mission-section-bg {
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.company-icon-brand-color {
    color: #1d2088;
}

.company-building-img {
    max-height: 500px;
    object-fit: cover;
}

/* Icon brand color */
.icon-brand-color {
    color: #1d2088;
}

/* Mission section background gradient */
.mission-section-bg {
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

/* Mission vision title */
.mission-vision-title-h2 {
    color: #111;
    font-weight: bold;
    font-size: 2.16rem;
}

/* Company building image */
.company-building-img {
    max-height: 500px;
    object-fit: cover;
}

/* ============================================
   Information Page Specific Styles
   ============================================ */

/* Text size for information page text-left paragraphs - PC only */
@media only screen and (min-width: 768px) {
    .ars-portfolio-area p.text-left,
    .ars-services-area p.text-left {
        font-size: 13px;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Information page description text - 13px for PC */
    .ars-portfolio-area .single-blog-post .post-content p.text-left,
    .ars-portfolio-area .single-blog-post .post-content .info-text {
        font-size: 13px !important;
    }
    
    /* Information page date - 13px for PC */
    .ars-portfolio-area .single-blog-post .post-content p:not(.text-left):not(.view-more-btn),
    .ars-portfolio-area .single-blog-post .post-content .info-date {
        font-size: 13px !important;
    }
    
    /* Ensure all paragraphs in .ars-services-area .single-service-area have same font-size on PC */
    .ars-services-area .single-service-area p {
        font-size: 15px;
    }
}

/* Ribbon styling for "pick up!" badge */
.ribbon {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    --f: .5em; /* control the folded part*/
    --r: .8em; /* control the ribbon shape */
    position: absolute;
    top: 10px;
    left: calc(-1*var(--f));
    padding-inline: .25em;
    line-height: 2.0;
    background: #e60012;
    border-bottom: var(--f) solid #0005;
    border-right: var(--r) solid #0000;
    z-index: 9999;
    clip-path: 
        polygon(calc(100% - var(--r)) 0,0 0,0 calc(100% - var(--f)),var(--f) 100%,
          var(--f) calc(100% - var(--f)),calc(100% - var(--r)) calc(100% - var(--f)),
          100% calc(50% - var(--f)/2));
}

/* Image hover zoom effect for content images - Information page */
.ars-portfolio-area .single-blog-post .post-content > div > img,
.ars-portfolio-area .single-blog-post .post-content img,
.ars-services-area .single-blog-post .post-content > div > img,
.ars-services-area .single-blog-post .post-content img,
.ars-portfolio-area .single-blog-post .news-image-wrapper img,
.ars-services-area .single-blog-post .news-image-wrapper img {
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    display: block;
}

.ars-portfolio-area .single-blog-post:hover .post-content > div > img,
.ars-portfolio-area .single-blog-post:hover .post-content img,
.ars-services-area .single-blog-post:hover .post-content > div > img,
.ars-services-area .single-blog-post:hover .post-content img,
.ars-portfolio-area .single-blog-post:hover .news-image-wrapper img,
.ars-services-area .single-blog-post:hover .news-image-wrapper img {
    transform: scale(1.1);
}

.ars-portfolio-area .single-blog-post,
.ars-services-area .single-blog-post {
    overflow: visible;
    position: relative;
}

/* Ensure post-content is positioned relative for ribbon absolute positioning */
.ars-portfolio-area .single-blog-post .post-content,
.ars-services-area .single-blog-post .post-content {
    position: relative;
    overflow: visible;
    z-index: 10;
    padding: 20px 20px 10px 20px !important; /* top right bottom left - bottom is 10px for PC */
}

/* Ensure image container has overflow hidden for zoom effect - but only for the image wrapper itself */
.ars-portfolio-area .single-blog-post .post-content .news-image-wrapper,
.ars-services-area .single-blog-post .post-content .news-image-wrapper {
    overflow: hidden;
}

/* Don't hide the parent div - let images be visible */
.ars-portfolio-area .single-blog-post .post-content > div:first-of-type,
.ars-services-area .single-blog-post .post-content > div:first-of-type {
    overflow: visible !important;
}

/* Remove bottom space from text-left paragraphs and their containers */
.ars-portfolio-area .single-blog-post .post-content > div:last-child,
.ars-services-area .single-blog-post .post-content > div:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove any bottom margin from inner content divs to eliminate white space after View More */
.ars-portfolio-area .single-blog-post .post-content > div,
.ars-services-area .single-blog-post .post-content > div {
    margin-bottom: 0 !important;
}

/* Change text color on hover for news items - only title */
a:hover .ars-portfolio-area .single-blog-post .post-content h5[style*="margin-top"],
a:hover .ars-portfolio-area .single-blog-post .post-content .info-title {
    color: #1d2088 !important;
}

/* PC site h5 text size - Information page */
@media only screen and (min-width: 768px) {
    .ars-portfolio-area .single-blog-post .post-content h5[style*="margin-top"],
    .ars-portfolio-area .single-blog-post .post-content .info-title {
        font-size: 13px !important; /* 13px for PC */
    }
    
    /* Align height of INFORMATION items on PC */
    .ars-portfolio-area .row:last-child,
    .ars-services-area .row {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    
    /* Remove display: flex from col-lg-4-2 to fix white space issue */
    /* .ars-portfolio-area .col-lg-4-2,
    .ars-services-area .col-lg-4-2 {
        display: flex;
        align-items: stretch;
    } */
    
    .ars-portfolio-area .col-lg-4-2 > a,
    .ars-services-area .col-lg-4-2 > a {
        display: flex;
        width: 100%;
        align-items: stretch;
    }
    
    .ars-portfolio-area .single-blog-post,
    .ars-services-area .single-blog-post {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        min-height: 100%;
    }
    
    .ars-portfolio-area .single-blog-post .post-content,
    .ars-services-area .single-blog-post .post-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    /* Remove bottom space from text-left paragraphs */
    .ars-portfolio-area .single-blog-post .post-content p.text-left,
    .ars-services-area .single-blog-post .post-content p.text-left {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Ensure all View More buttons align the same - no flex layout on content div */
    .ars-portfolio-area .single-blog-post .post-content > div:last-child,
    .ars-services-area .single-blog-post .post-content > div:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Add 10px padding-bottom for PC between View More button and box bottom */
    .ars-portfolio-area .single-blog-post .post-content,
    .ars-services-area .single-blog-post .post-content {
        padding: 20px 20px 10px 20px !important; /* top right bottom left - bottom is 10px */
    }
}

/* Mobile Information page text sizes - 14px for all */
@media only screen and (max-width: 767px) {
    .ars-portfolio-area .single-blog-post h5,
    .ars-services-area .single-blog-post h5,
    .ars-portfolio-area .single-blog-post .post-content .info-title,
    .ars-services-area .single-blog-post .post-content .info-title {
        font-size: 14px !important;
    }
    
    /* Information page description and date - 14px for mobile */
    .ars-portfolio-area .single-blog-post .post-content p.text-left,
    .ars-portfolio-area .single-blog-post .post-content p:not(.text-left):not(.view-more-btn),
    .ars-portfolio-area .single-blog-post .post-content .info-text,
    .ars-portfolio-area .single-blog-post .post-content .info-date,
    .ars-services-area .single-blog-post .post-content p.text-left,
    .ars-services-area .single-blog-post .post-content p:not(.text-left):not(.view-more-btn),
    .ars-services-area .single-blog-post .post-content .info-text,
    .ars-services-area .single-blog-post .post-content .info-date {
        font-size: 14px !important;
    }
    
    /* Enhance bottom shadow/gradient visibility on mobile */
    .ars-portfolio-area .single-blog-post,
    .ars-services-area .single-blog-post {
        box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.15) !important;
        border-radius: 8px;
        overflow: visible !important;
        margin-bottom: 30px;
    }
    
    .ars-portfolio-area .single-blog-post .post-content,
    .ars-services-area .single-blog-post .post-content {
        padding-bottom: 20px !important;
        margin-bottom: 0;
        overflow: visible !important;
        background-color: #f4f8ff !important;
    }
    
    /* Ensure image container has overflow hidden for zoom effect - but only for the image wrapper itself */
    .ars-portfolio-area .single-blog-post .post-content .news-image-wrapper,
    .ars-services-area .single-blog-post .post-content .news-image-wrapper {
        overflow: hidden;
        border-radius: 0;
    }
    
    /* Don't hide the parent div - let images be visible */
    .ars-portfolio-area .single-blog-post .post-content > div:first-of-type,
    .ars-services-area .single-blog-post .post-content > div:first-of-type {
        overflow: visible !important;
    }
    
    /* Ensure content and View More buttons are visible */
    .ars-portfolio-area .single-blog-post .post-content > div:last-child,
    .ars-services-area .single-blog-post .post-content > div:last-child {
        overflow: visible !important;
    }
    
    /* Mobile: Keep padding-bottom for mobile */
    .ars-portfolio-area .single-blog-post .post-content,
    .ars-services-area .single-blog-post .post-content {
        padding-bottom: 20px !important;
    }
}

/* Ensure View More button is visible in all news items */
.ars-portfolio-area .single-blog-post .post-content .view-more-btn,
.ars-services-area .single-blog-post .post-content .view-more-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #1d2088 !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
    margin-bottom: 0 !important;
}

.ars-portfolio-area .single-blog-post .post-content .view-more-btn span,
.ars-portfolio-area .single-blog-post .post-content .view-more-btn i,
.ars-services-area .single-blog-post .post-content .view-more-btn span,
.ars-services-area .single-blog-post .post-content .view-more-btn i {
    color: #1d2088 !important;
}

.ars-portfolio-area .single-blog-post .post-content .view-more-btn i,
.ars-services-area .single-blog-post .post-content .view-more-btn i {
    transition: transform 0.3s ease !important;
}

.ars-portfolio-area .single-blog-post .post-content .view-more-btn:hover i,
.ars-services-area .single-blog-post .post-content .view-more-btn:hover i {
    transform: translateX(5px) !important;
}

.ars-portfolio-area .single-blog-post .post-content.heigt270,
.ars-services-area .single-blog-post .post-content.heigt270 {
    overflow: visible !important;
    min-height: auto !important;
}

/* Portfolio background images - English pages */
.portfolio-bg-img-1-en {
    background-image: url(../img/bg-img/portfolio15.jpg);
}

.portfolio-bg-img-2-en {
    background-image: url(../img/bg-img/portfolio04.jpg);
}

.portfolio-bg-img-3-en {
    background-image: url(../img/bg-img/portfolio02.jpg);
}

.portfolio-bg-img-4-en {
    background-image: url(../img/bg-img/portfolio17.jpg);
}

/* Rectangular button with rounded corners - 製品詳細を見る button */
.ars-btn.btn-2 {
    border-radius: 3px !important;
}

.portfolio-bg-img-5-en {
    background-image: url(../img/bg-img/portfolio03.jpg);
}

.portfolio-bg-img-6-en {
    background-image: url(../img/bg-img/portfolio16.jpg);
}

/* Portfolio background images - Japanese pages */
.ars-blog-area .portfolio-bg-img-1,
.portfolio-bg-img-1 {
    background-image: url(../img/bg-img/portfolio15.jpg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.ars-blog-area .portfolio-bg-img-2,
.portfolio-bg-img-2 {
    background-image: url(../img/bg-img/portfolio04.jpg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.ars-blog-area .portfolio-bg-img-3,
.portfolio-bg-img-3 {
    background-image: url(../img/bg-img/portfolio02.jpg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.ars-blog-area .portfolio-bg-img-4,
.portfolio-bg-img-4 {
    background-image: url(../img/bg-img/portfolio17.jpg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.ars-blog-area .portfolio-bg-img-5,
.portfolio-bg-img-5 {
    background-image: url(../img/bg-img/portfolio03.jpg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.ars-blog-area .portfolio-bg-img-6,
.portfolio-bg-img-6 {
    background-image: url(../img/bg-img/portfolio16.jpg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Preloader display none - for JavaScript control */
#preloader.preloader-hidden {
    display: none;
}

/* Contact Form Page Styles - matching privacy policy structure */
.ars-why-choose-us-area .strengths-section .text-left.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
    padding: 0;
    display: block;
    visibility: visible;
    opacity: 1;
}

.ars-why-choose-us-area .strengths-section .contact-form-container > p {
    color: #707070;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1rem;
}

.ars-why-choose-us-area .strengths-section .contact-form-container .contact-form {
    width: 100%;
    display: block;
    visibility: visible;
    opacity: 1;
}

.ars-why-choose-us-area .strengths-section .contact-form-container .form-grid {
    width: 100%;
    visibility: visible;
    opacity: 1;
    /* display: block removed - handled by public/css/style.css */
}

/* Mobile contact form styles */
@media only screen and (max-width: 767px) {
    .ars-why-choose-us-area .strengths-section .text-left.contact-form-container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .ars-why-choose-us-area .strengths-section .contact-form-container > p {
        font-size: 0.9rem;
    }
    
    .ars-why-choose-us-area .strengths-section .contact-form-container .contact-form {
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .ars-why-choose-us-area .strengths-section .contact-form-container .form-grid {
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-wrap: nowrap !important;
    }
    
    /* Mobile button styles */
    .ars-why-choose-us-area .strengths-section .contact-form-container .actions {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }
    
    .ars-why-choose-us-area .strengths-section .contact-form-container .actions .btn,
    .ars-why-choose-us-area .strengths-section .contact-form-container .actions .btn.ars-btn.btn-2 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;
        font-size: 0.95rem !important;
        padding: 0 20px !important;
        border-radius: 3px !important;
        line-height: 1 !important;
        box-sizing: border-box !important;
    }
    
    /* Mobile checkbox - larger size for better touch interaction */
    .ars-why-choose-us-area .strengths-section .contact-form-container .checkbox-label input[type="checkbox"] {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
        margin-right: 10px !important;
        cursor: pointer;
        flex-shrink: 0;
    }
    
    .ars-why-choose-us-area .strengths-section .contact-form-container .checkbox-label,
    .ars-why-choose-us-area .strengths-section .contact-form-container .checkbox-label * {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
}

/* PC specific contact form styles */
@media only screen and (min-width: 768px) {
    .ars-why-choose-us-area .strengths-section .text-left.contact-form-container {
        padding: 0;
    }
    
    .ars-why-choose-us-area .strengths-section .contact-form-container .form-group {
        margin-bottom: 1.5rem;
    }
    
    .ars-why-choose-us-area .strengths-section .contact-form-container .form-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        gap: 0 30px !important;
        align-items: flex-start !important;
    }
    
    .ars-why-choose-us-area .strengths-section .contact-form-container .form-group.half-width {
        flex: 0 0 calc((100% - 30px) / 2) !important;
        width: calc((100% - 30px) / 2) !important;
        max-width: calc((100% - 30px) / 2) !important;
        min-width: 0 !important;
    }
    
    /* Full width fields (company, email, subject, message, privacy policy) */
    .ars-why-choose-us-area .strengths-section .contact-form-container .form-group:not(.half-width) {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* PC checkbox - larger size for better visibility */
    .ars-why-choose-us-area .strengths-section .contact-form-container .checkbox-label input[type="checkbox"] {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
        margin-right: 10px !important;
        cursor: pointer;
        flex-shrink: 0;
    }
    
    .ars-why-choose-us-area .strengths-section .contact-form-container .checkbox-label {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
}

/* Note: iframe styles are kept as they are specific to each iframe */

/* Remove underline from submenu items when parent menu item is current-item (PC version) */
.breakpoint-off .classynav ul li.current-item .dropdown li a::before,
.breakpoint-off .classynav ul li.current-item .dropdown li a:hover::before,
.breakpoint-off .classynav ul li.current-item .dropdown li a:focus::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
}

