body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* 横スクロールを防止 */
}

.custom-header {
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
}

.custom-header .inner {
    width: 100%;
    margin: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-header h1 {
    margin: 0;
}

.custom-header h1 img {
    height: 40px;
    display: block;
}

.custom-header .menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.custom-header .menu-row {
    display: flex;
    gap: 35px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-header .menu-row li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.menu-text {
    display: block;
    transition: opacity 0.3s ease-out;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #DE3545 0%, #DE5535 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    clip-path: inset(0 100% 0 0);
}

.custom-header .menu-row li a:hover .menu-text {
    opacity: 0;
}

.hero {
    position: relative;
    text-align: center;
    overflow: hidden; /* 縦横両方のスクロールを防止 */
    height: calc(100vh - 76px - 146px); /* 高さを明確に指定 */
}

/* 右上バナー */
.hero-banner {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 315px;
    height: 55px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}


.hero-banner:hover {
    transform: translateY(-2px);
}

/* 人的資本経営とは */
.about-hcm {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.about-hcm::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: #F6F6F6;
    border-radius: 0 20px 20px 0;
}

.about-hcm-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10%;
    position: relative;
    z-index: 1;
}

.about-hcm-content {
    width: 40%;
}

.about-hcm-title {
    font-size: 25px;
    font-weight: 700;
    margin: 10px 0 5px;
    line-height: 1.3;
}

.about-hcm-subtitle {
    font-size: 15px;
    color: #DE3545;
    font-weight: 600;
    margin: 5px 0 32px;
    margin-left: 20px;
    letter-spacing: 0.5px;
    position: relative;
}

.about-hcm-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 10px;
    height: 10px;
    background: #DE3545;
    border-radius: 50%;
    transform: translateY(-50%);
}

.about-hcm-text p {
    font-size: 16px;
    font-weight: 600;
    line-height: 2.5;
    margin-bottom: 20px;
}

.about-hcm-text p:last-child {
    margin-bottom: 0;
}

.about-hcm-button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 15px 60px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 32px;
    margin-left: auto;
    transition: all 0.3s ease;
}

.button-text {
    display: block;
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #DE3545;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-hcm-button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-hcm-button:hover .button-icon {
    background: #c82333;
}

.about-hcm-image {
    flex: 1;
    text-align: center;
}

.about-hcm-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-hcm-large-text {
    font-size: 90px;
    font-weight: 700;
    color: #c5c5c5;
    margin: 0 0 15px;
    letter-spacing: 2px;
    text-align: right; /* 右寄せ */
    margin-right: calc(100% / 3 * 1 / 6);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .about-hcm-container {
        gap: 40px;
    }
    
    .about-hcm-title {
        font-size: 32px;
    }
    
    .about-hcm-large-text {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .about-hcm {
        padding: 60px 0;
    }
    
    .about-hcm-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-hcm-subtitle::before {
        left: 0;
        width: 8px;
        height: 8px;
    }
    
    .about-hcm-title {
        font-size: 28px;
    }
    
    .about-hcm-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        margin-left: 16px;
    }
    
    .about-hcm-text p {
        font-size: 15px;
    }
    
    .about-hcm-button {
        font-size: 14px;
        padding: 14px 20px;
        margin-top: 24px;
        gap: 10px;
    }
    
    .button-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .about-hcm-large-text {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .about-hcm {
        padding: 40px 0;
    }
    
    .about-hcm-container {
        padding: 0 16px;
        gap: 32px;
    }
    
    .about-hcm-subtitle::before {
        left: 0;
        width: 6px;
        height: 6px;
    }
    
    .about-hcm-title {
        font-size: 24px;
    }
    
    .about-hcm-subtitle {
        margin-left: 12px;
    }
    
    .about-hcm-button {
        font-size: 13px;
        padding: 12px 18px;
        margin-top: 20px;
        gap: 8px;
    }
    
    .button-icon {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .about-hcm-large-text {
        font-size: 24px;
        letter-spacing: 1px;
    }
}

.banner-image {
    width: 70px;
    height: 50px;
    flex-shrink: 0;
    margin-right: 12px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    image-rendering: auto; /* ブラウザ最適化 */
    transform: translateZ(0); /* ハードウェアアクセラレーション */
    backface-visibility: hidden; /* レンダリング最適化 */
    filter: contrast(1.05) brightness(1.02); /* 画質補正 */
}

.banner-content {
    flex: 1;
    display: flex;
    justify-content: center; /* 左右中央寄せ */
    align-items: center; /* 上下中央寄せ */
    height: 54px;
}

.banner-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px; /* 要素間のgap */
    text-align: right; /* 内部テキストを右寄せ */
}

.banner-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.banner-link {
    font-size: 11px;
    color: #000000;
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
}

.banner-link:hover {
    text-decoration: underline;
}

.hero-image {
    width: 100%;
    height: calc(100vh - 76px - 146px);
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4; /* テキストより前面に配置 */
}

/* 上段装飾 */
.hero-vector-top {
    position: absolute;
    top: -57px;  /* Vector_top1の高さ分上に配置 */
    left: 0;
    display: flex;
    align-items: flex-end;  /* 下揃え */
}

.hero-vector-top1 {
    display: block;
    width: 430px;  /* SVGの元サイズ 430×57 */
    height: 57px;
    max-width: 50vw;  /* レスポンシブ対応 */
}

.hero-vector-top2 {
    width: 17px;   /* SVGの元サイズ 17×13 */
    height: 13px;
    margin-bottom: 0;  /* 下揃えのため */
    position: relative;
    left: -1px;  /* 1px左に移動 */
    top: 1px;    /* 1px下に移動 */
}

.hero-text-top {
    position: absolute;
    bottom: 4px;  /* Vector内の適切な位置（下にずらし） */
    left: 40px;
    z-index: 3;
}

.hero-top-text {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

/* 下段装飾 */
.hero-vector-bottom {
    position: relative;
    display: flex;
    align-items: flex-end;  /* 下揃え */
}

.hero-vector-bottom1 {
    display: block;
    width: 530px;  /* SVGの元サイズ 530×73 */
    height: 73px;
    max-width: 60vw;  /* レスポンシブ対応 */
}

.hero-vector-bottom2 {
    width: 16px;   /* SVGの元サイズ 16×12 */
    height: 12px;
    margin-bottom: 0;  /* 下揃えのため */
    position: relative;
    left: -1px;  /* 1px左に移動 */
    top: 1px;    /* 1px下に移動 */
}

.hero-text-bottom {
    position: absolute;
    bottom: 20px;  /* Vector内の適切な位置 */
    left: 40px;
    z-index: 3;
}

.hero-bottom-text {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.text-red {
    color: #DE3545; /* 赤色 */
}

/* 流れるテキスト */
.hero-scroll-text-container {
    position: absolute;
    left: 0;
    bottom: 65px;
    width: 100vw; /* 全幅を使用 */
    height: 100px;
    z-index: 1; /* hero-overlayより下層 */
    transform: translateY(50%);
}

.hero-scroll-text {
    position: absolute;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
}

.hero-scroll-main {
    font-size: 100px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    user-select: none; /* テキスト選択を無効化 */
    -webkit-user-select: none; /* Safari対応 */
    -moz-user-select: none; /* Firefox対応 */
    -ms-user-select: none; /* IE対応 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-banner {
        width: 280px;
        height: 60px;
        top: 15px;
        right: 15px;
        padding: 6px;
    }
    
    .banner-image {
        width: 48px;
        height: 48px;
        margin-right: 10px;
    }
    
    .banner-content {
        height: 48px;
    }
    
    .banner-title {
        font-size: 13px;
    }
    
    .banner-link {
        font-size: 11px;
    }
    
    .hero-vector-top1 {
        max-width: 55vw;
    }
    
    .hero-vector-bottom1 {
        max-width: 70vw;
    }
    
    .hero-text-top {
        bottom: 6px;
        left: 30px;
    }
    
    .hero-text-bottom {
        bottom: 15px;
        left: 30px;
    }
    
    .hero-top-text {
        font-size: 24px;
    }
    
    .hero-bottom-text {
    font-size: 24px;
    }
    
    .hero-scroll-text-container {
        width: 100vw;
        bottom: 50px;
    }
    
    .hero-scroll-main {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        width: 260px;
        height: 55px;
        top: 10px;
        right: 10px;
        padding: 5px;
    }
    
    .banner-image {
        width: 45px;
        height: 45px;
        margin-right: 8px;
    }
    
    .banner-content {
        height: 45px;
    }
    
    .banner-title {
        font-size: 12px;
    }
    
    .banner-link {
        font-size: 10px;
    }
    
    .hero-vector-top1 {
        max-width: 65vw;
    }
    
    .hero-vector-bottom1 {
        max-width: 80vw;
    }
    
    .hero-text-top {
        bottom: 4px;
        left: 20px;
    }
    
    .hero-text-bottom {
        bottom: 12px;
        left: 20px;
    }
    
    .hero-top-text {
        font-size: 20px;
    }
    
    .hero-bottom-text {
        font-size: 20px;
    }
    
    .hero-scroll-text-container {
        width: 100vw;
        bottom: 40px;
    }
    
    .hero-scroll-main {
        font-size: 36px;
    }
}

/* サービス紹介セクション */
.services {
    padding: 30px 0 76px;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); /* x0y4ぼかし4 000000の25% */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px 0; /* ユーザーエージェントスタイルをリセット */
    color: #333;
    line-height: 1.4;
    display: block; /* 明示的に指定 */
}

.service-card p {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 14px;
    }
    
    .service-card p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* イベントコラム */
.events-columns {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}



.events-columns-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.events-columns-content {
    width: 100%;
    text-align: left;
}

.events-columns-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.events-columns-title-wrapper {
    flex: 1;
}

.events-columns-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.events-columns-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #DE3545;
    background: #ffffff;
    color: #DE3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-columns-btn:hover {
    background: #DE3545;
    color: #ffffff;
}

.events-columns-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.events-columns-btn:disabled:hover {
    background: #ffffff;
    color: #DE3545;
}

.events-columns-title {
    font-size: 25px;
    font-weight: 700;
    margin: 10px 0 5px;
    line-height: 1.3;
}

.events-columns-subtitle {
    font-size: 15px;
    color: #DE3545;
    font-weight: 600;
    margin: 5px 0 32px;
    margin-left: 20px;
    letter-spacing: 0.5px;
    position: relative;
}

.events-columns-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 10px;
    height: 10px;
    background: #DE3545;
    border-radius: 50%;
    transform: translateY(-50%);
}



.events-columns-carousel {
    position: relative;
    width: 100%;
}

.events-columns-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.events-columns-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.events-columns-list {
    display: flex;
    gap: 35px;
    padding: 10px 0;
}

.events-columns-item {
    flex: 0 0 265px;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box; /* ボーダーやパディングを含めてサイズ計算 */
}

.events-columns-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.3s ease;
}

.events-columns-item-link:hover {
    /* 記事全体の拡大を削除 */
}

.events-columns-item-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border: 2px solid #B6B6B6;
    border-radius: 15px;
    position: relative;
    box-sizing: border-box; /* ボーダーを含めてサイズ計算 */
}

.events-columns-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 13px; /* 親の角丸より2px小さく */
}

.events-columns-item-link:hover .events-columns-item-image img {
    transform: scale(1.05);
}

.events-columns-no-posts {
    flex: 0 0 100%;
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}

.events-columns-item-content {
    padding: 20px 0;
}

.events-columns-item-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #7D7D7D;
    margin-bottom: 8px;
}

.events-columns-item-date {
    font-weight: 500;
}

.events-columns-item-date::after {
    content: '/';
    font-size: 12px;
    margin: 0 8px;
}

.events-columns-item-category {
    font-weight: 600;
}

.events-columns-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .events-columns-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .events-columns {
        padding: 60px 0;
    }
    
    .events-columns-subtitle::before {
        left: 0;
        width: 8px;
        height: 8px;
    }
    
    .events-columns-title {
        font-size: 28px;
    }
    
    .events-columns-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        margin-left: 16px;
    }
    

    

    
    .events-columns-scroll-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .events-columns-item {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .events-columns {
        padding: 40px 0;
    }
    
    .events-columns-container {
        padding: 0 16px;
        gap: 32px;
    }
    
    .events-columns-subtitle::before {
        left: 0;
        width: 6px;
        height: 6px;
    }
    
    .events-columns-title {
        font-size: 24px;
    }
    
    .events-columns-subtitle {
        margin-left: 12px;
    }
    
    .events-columns-scroll-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .events-columns-item {
        flex: 0 0 260px;
    }
    
    .events-columns-item-content {
        padding: 16px;
    }
    
    .events-columns-item-title {
        font-size: 15px;
    }
    

}

/* サービス内容紹介 */
.service-detail {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.service-detail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: #FDF5F6;
    border-radius: 0 20px 20px 0;
}

.service-detail-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.service-detail-content {
    width: 100%;
}

.service-detail-title {
    font-size: 25px;
    font-weight: 700;
    margin: 10px 0 5px;
    line-height: 1.3;
}

.service-detail-subtitle {
    font-size: 15px;
    color: #DE3545;
    font-weight: 600;
    margin: 5px 0 60px;
    margin-left: 20px;
    letter-spacing: 0.5px;
    position: relative;
}

.service-detail-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 10px;
    height: 10px;
    background: #DE3545;
    border-radius: 50%;
    transform: translateY(-50%);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service-detail-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-detail-image {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-item:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px;
    line-height: 1.3;
}

.service-detail-description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 25px;
    flex-grow: 1;
}

.service-detail-button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 12px 24px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #DE3545;
    transition: all 0.3s ease;
}

.service-detail-button:hover {
    background: #DE3545;
    color: #ffffff;
}

.service-detail-button:hover .button-icon {
    background: #ffffff;
    color: #DE3545;
}

.service-detail-button .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #DE3545;
    color: #ffffff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .service-detail-grid {
        gap: 30px;
    }
    
    .service-detail-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 60px 0;
    }
    
    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 25px;
    }
    
    .service-detail-title {
        font-size: 28px;
    }
    
    .service-detail-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
        margin-left: 16px;
    }
    
    .service-detail-subtitle::before {
        left: 0;
        width: 8px;
        height: 8px;
    }
    
    .service-detail-item {
        padding: 25px 15px;
    }
    
    .service-detail-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .service-detail-name {
        font-size: 16px;
    }
    
    .service-detail-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .service-detail-button {
        font-size: 13px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .service-detail {
        padding: 40px 0;
    }
    
    .service-detail-container {
        padding: 0 16px;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 20px;
    }
    
    .service-detail-title {
        font-size: 24px;
    }
    
    .service-detail-subtitle {
        margin-bottom: 32px;
        margin-left: 12px;
    }
    
    .service-detail-subtitle::before {
        left: 0;
        width: 6px;
        height: 6px;
    }
    
    .service-detail-item {
        padding: 20px 15px;
    }
    
    .service-detail-image {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .service-detail-name {
        font-size: 15px;
    }
    
    .service-detail-description {
        font-size: 12px;
        margin-bottom: 18px;
    }
    
    .service-detail-button {
        font-size: 12px;
        padding: 8px 16px;
        gap: 6px;
    }
    
    .service-detail-button .button-icon {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
}
