:root {

    /* color */
    --black: #0F1524;
    --blue: #0084CE;
    --blueDeep: #0071BC;
    --white: #fff;
    --lightBlue:#E5F3FA;
    --gray: #707070;
    --GrayDark:#808080;
    --grayLight: #BDBDBD;
    --gradation: linear-gradient(90deg, #0071BC 0%, #0097E0 100%);    
  

    /* font family */
    --ja-font: "noto-sans-cjk-jp", sans-serif;
    --en-font:"Roboto", sans-serif;


    /* border radius */
    --radius-s: 0.3125rem;
    --radius-r: 0.625rem;


    /* font size */
    --fontSize-pcS: 1.05rem;
    --fontSize-pcR: 1.125rem;
    --fontSize-tabR: 1rem;
    --fontSize-spR: 1rem;
    --fontSize-spS: 0.875rem;


    /* line height */
    --lineHeight-pcR: 1.875;
    --lineHeight-tabR: 1.75;


    /* margin */
    --sp-contentMargin: 4.37rem;
    --sec-margin-r: 4.38rem;
    --sec-margin-l: 6.25rem;
  }



  
/* Main Content */
.main-content {
    padding-top: 7.35rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -3%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/common/mood-BG.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9.1vw;
    
   
}

/* Hero Badge Animation */
.hero-badge {
    position: relative;
    height: 2.8125rem;
    padding: 0.9375rem 1.375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    border-radius: var(--radius-s);
    overflow: hidden;
}
.hero-badge span {
    color:var(--white);
    font-size: var(--fontSize-pcR);
    font-style: normal;
    font-weight: 700;
    line-height: 2.5rem; /* 181.818% */
    letter-spacing: 0.09rem;
    opacity: 0;
    font-weight: 500;
    transform-origin: left;
    animation: textFadeIn 1.8s ease-out 1s forwards;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--blue);
    z-index: -1;
    animation: heroBadgeBackground 0.4s ease-out forwards;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transform-origin: left;
    background: var(--blue);
    z-index: 1;
    animation: heroBadgeTextMask 1.5s ease-out 0.3s forwards;
}

@keyframes heroBadgeBackground {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}



@keyframes heroBadgeTextMask {
    0% {
        width: 0%;
        left: 0;
    }
    10% {
        width: 100%;
    }
    100% {
        width: 100%;
        left: 100%;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Hero Title Animation */
.hero-title {
    font-size: 4.1rem;
    font-style: normal;
    font-weight: 700;
    line-height:1.5; 
    letter-spacing: 0.07rem;
    color: var(--black);
    margin-bottom: 1.3rem;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: heroTitleMask 1.5s ease-out 0.5s forwards;
}

@keyframes heroTitleMask {
    0% {
        left: 0;
        width: 100%;
    }
    100% {
        left: 100%;
        width: 0%;
    }
}

/* Highlight Animation */
/* 
.highlight {
    color: var(--black);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--blue);
    z-index: -1;
    animation: highlightBlueMask 1.5s ease-out 2.8s forwards;
}

.highlight::after {
    content: '法解釈';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    z-index: 1;
    background: linear-gradient(90deg, white 0%, white 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    mask: linear-gradient(90deg, transparent 0%, black 0%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, black 0%);
    animation: highlightTextReveal 1.5s ease-out 2.8s forwards;
}

@keyframes highlightBlueMask {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes highlightTextReveal {
    0% {
        mask: linear-gradient(90deg, transparent 0%, black 0%);
        -webkit-mask: linear-gradient(90deg, transparent 0%, black 0%);
    }
    100% {
        mask: linear-gradient(90deg, transparent 0%, black 100%);
        -webkit-mask: linear-gradient(90deg, transparent 0%, black 100%);
    }
} */


/* Highlight Animation - Color Change from Black to Blue */
.highlight {
    color: var(--black);
    position: relative;
    display: inline-block;
    background-clip: text;
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, var(--black) 0%,var(--black) 30%,var(--blue) 50%,  var(--blue) 80%, var(--blue) 100%);
    background-size: 300%;
    background-position: 0% 0%;
    animation: highlightColorChange 1.5s ease-out 2.8s forwards;
}

@keyframes highlightColorChange {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 100% 300%;
    }
}




/* Hero Subtitle Animation */
.hero-subtitle {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8rem; /* 144% */
    letter-spacing: 0.09rem;
    padding-left: 0.1rem;
    font-family: var(--en-font);
    color: var(--blue);
    opacity: 0;
    transform: scale(1.05);
    animation: heroSubtitleFadeIn 1.4s ease-out 1.8s forwards;
}

@keyframes heroSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



/* Animated Text Section */
.animated-text-section {
    background-color: var(--white);
    padding: var(--spacing-2xl) 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .animated-text-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 2.8125rem;
    padding: 0.9375rem 1.375rem ;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .animated-text-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--blue);
    border-radius: var(--radius-s);
    animation: expandBackground .4s .35s ease-out forwards;
    z-index: 1;
  }
  
  .animated-text {
    position: relative;
    font-size: var(--fontSize-pcR);
    font-style: normal;
    font-weight: 700;
    line-height: var(--lineHeight-pcR); /* 181.818% */
    letter-spacing: 0.09rem;
    color: var(--white);
    white-space: nowrap;
    z-index: 2;
  }
  
  .animated-text .char {
    opacity: 0;
    display: inline-block;
  }
  
  /* Background expansion animation */
  @keyframes expandBackground {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  
  /* Character reveal animation */
  @keyframes revealChar {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  

.hero-image {
    position: relative;
    width: 34.5rem;
    height: 36.6875rem;

}
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-size: cover;
    background-position: center;
    border-radius: .875rem;
    background:linear-gradient(131deg, rgba(0, 151, 224, 0.50) -2.58%, rgba(0, 131, 205, 0.12) 45.95%, rgba(0, 113, 188, 0.60) 102.92%);;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .875rem;

}

/* Partners Section */
.partners-section {
    padding-top: 6.15rem;
    overflow: hidden;
}

/* Desktop Partners Carousel */
.partners-desktop {
    display: block;
}

.partners-mobile {
    display: none;
}

/* Partner Logo Styles */
.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    height: 2.59056rem;
}

.partner-logo img {
    width: 11rem;
    height: 2.5rem;
    object-fit: contain;
}

.partner-logo.small img {
    width: 9.3rem;
    height: 2.1rem;
    object-fit: contain;
}


/*  Customization */
.splide__track {
    overflow: visible;
}

.splide__list {
    align-items: center;
}

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Hide Splide arrows and pagination */
.splide__arrows,
.splide__pagination {
    display: none;
}

/* Mobile Partners Carousel */
.mobile-carousel-top,
.mobile-carousel-bottom {
    margin-bottom: 20px;
}

.mobile-carousel-bottom {
    margin-bottom: 0;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design - PC First */
@media screen and (max-width: 1500px) {
    .main-content {
        padding-top: 5rem;
    }

    .hero-image {
        width: 26.25rem;
        height: 27.78125rem;
    
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-content {
        gap: 8vw;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.6rem;
    }

    .hero-badge span {
        font-size: var(--fontSize-tabR);
        line-height: var(--lineHeight-tabR);
    }

    .animated-text {
        font-size: var(--fontSize-tabR);
        line-height: var(--lineHeight-tabR);
      }

      .partners-section {
        padding-top: 4.15rem;
    }
    


}

@media screen and (max-width: 1300px) {

    .hero-title {
        font-size: 3.4rem;
    }
}
@media screen and (max-width: 1100px) {
    
    .hero-title {
        font-size: 3.4rem;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 20.625rem;
        
    }


    .hero-content {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 4.56rem;
        text-align: center;
    }

    .hero-image {
        position: relative;
        width: 54vw;
        margin: 0 calc(50% - 50vw);
        height: 24rem;
        border-radius: 1rem;
    }


    .hero-image img {
        border-radius: .875rem;
    }

    .animated-text-container {
        margin-bottom: 2.56rem;
      }


}

@media screen and (max-width: 768px) {

    .hero-image {
        width: 100%;
        height: 20rem;
        border-radius: 0;
    }

    .hero-content {
        gap: 4.06rem;
    }


    .hero-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 0;
        background:linear-gradient(131deg, rgba(0, 151, 224, 0.50) -2.58%, rgba(0, 131, 205, 0.12) 45.95%, rgba(0, 113, 188, 0.60) 102.92%);

    }


    .hero-section::before {
        content: '';
        position: absolute;
        top: -2.2%;
        left: 0;
        transform: rotate(180deg);
        width: 100%;
        height: 11.625rem;
        background: url('../img/top/fv-BG-sp.webp') no-repeat center center;
        background-size: cover;
        opacity: 0.2;
        z-index: -1;
    }

    .partner-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
        height: 1.6rem;
    }
    


    .main-content {
        padding-top: 4rem;
    }

    
    .hero-section {
        padding-top: 5rem;
    }

    .hero-badge {
        position: relative;
        height: auto;
        padding: 0.5rem 0.62rem;
        margin-bottom: 2.3rem;
    }

    .hero-badge span {
        font-size: 1rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1.75rem; 
        opacity: 0;
        transform-origin: left;
        animation: textFadeIn 1.8s ease-out 1s forwards;
    }

    
    .hero-title {
        font-size: 2.5rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1.28; /* 125% */
        letter-spacing: 0.09rem;
        margin-bottom: 1.6rem;
    }

        
    .hero-subtitle {
        font-size: 0.8125rem;
        line-height: 1.25rem; /* 153.846% */
        letter-spacing: 0.03125rem;
        padding-left: 0;
    }
    
    .hero-image img {
        height: 100%;
        border-radius: 0;
        object-position: -10% 100%;
    }
    
    .partners-section {
        padding-top: 2rem;
        padding-bottom: 0;
    }
    
    /* Switch to mobile carousel layout */
    .partners-desktop {
        display: none;
    }
    
    .partners-mobile {
        display: block;
        margin-bottom: .75rem;
    }
      
  .animated-text-container::before {
    border-radius: var(--radius-s);
  }

    .animated-text-container {
        padding: 0.5rem 0.625rem; 
        height: auto;
    }

    .animated-text {
        font-size: var(--fontSize-spR);
        line-height: 1.3;
      }
      
      .partner-logo img {
        width: 100%;
        height: 2rem;
      }

      .partners-mobile {
        margin-bottom: 0;
      }
      .mobile-carousel-top, .mobile-carousel-bottom {
        margin-bottom: 1.85rem;
      }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
body {
    opacity: 0;
    animation: fadeInBody 0.5s ease forwards;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}






/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: 10%;
    padding-bottom: 6.25rem;

}


.about-content {
    width: 45%;
}



/* About Images */
.about-images {
    position: relative;
    height: 100%;
    width: 65%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-images-outer {
    position: absolute;
    width: 66.5625rem;
    height: 38.0625rem;
    top: -20%;
    right: -34%;
    overflow: hidden;
}

.about-images-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    width: 100%;
}

.about-images-wrapper.top {
    margin-bottom: 0;
}

.about-images-wrapper.top::before {
    content: '';
    width: 135px;
    height: 200px;
    background: transparent;
    flex-shrink: 0;
}

.about-images-container.half {
    width: 135px;
}

.about-images-wrapper.bottom {
    margin-top: 1rem;
}

.about-images-wrapper.bottom .about-scroll-image.sp {
    display: none;
}

.about-images-container {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.about-scroll-image {
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
    will-change: transform;
}


/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}




/* Responsive Design - PC First */
@media screen and (max-width: 1680px) {
    .about-images-outer {
        position: absolute;
        width: 52.59375rem;
        height: 30.0625rem;
        top: -20%;
        right: -34%;
        overflow: hidden;
    }


    .about-images {
        max-width: 700px;
    }
    
    .about-images-container {
        height: 180px;
        
    }

    .about-content {
        width: 50%;
    }
    
    .about-images-wrapper.top::before {
        height: 180px;
    }
}

@media screen and (max-width: 1480px) {
    .about-images-outer {
        position: absolute;
        width: 45.59375rem;
        height: 26.64375rem;
        top: -20%;
        right: -22%;
        overflow: hidden;
    }

}


@media screen and (max-width: 1100px) {

    .about-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        column-gap: 0;
        width: 100%;
        padding: 0;
    }

    .about-content {
        width: 100%;
        text-align: center;
        padding: 0 1rem;
        margin-bottom: 5rem;
    }

    .about-images-wrapper.bottom .about-scroll-image.sp {
        display: block;
    }

    .about-images-wrapper.bottom .about-scroll-image.pc {
        display: none;
    }

    .about-images-outer {
        position: initial;
        display: block;
        top: 0;
        right: 0;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        overflow: hidden;
        height: 100%;
    }


    .about-images { 
        max-width: 100%;
        width: 100vw;
        height: 580px;
        margin: 0;
        padding: 0 1rem;
    }

    .about-images-wrapper {
        gap: 1.6rem;
        justify-content: center;
    }
    .about-images-wrapper.bottom {
        margin-top: 1.6rem;
    }

    .about-images-container {
        height: 250px;
        width: 420px;
    }

    .about-images-wrapper.bottom  .about-images-container.shape {
        width: 145px;
    }

    .about-images-container.shape.half {
        width: 145px;
    }
    .about-images-wrapper.top::before {
        display: none;
    }

    .about-container {
        padding-bottom: 0;
    }

    .about-images-container::after {
        display: none;
    }
}

@media screen and (max-width: 768px) {

    /* About Section Mobile */

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.75rem; 
    }

    .about-images {
        max-width: 100%;
        height: 300px;
        margin-top: 0;
    }

    .about-images-wrapper {
        gap: 1rem;
    }

    .about-images-container {
        height: 120px;
    }

    .about-images-wrapper.bottom {
        margin-top: 1rem;
    }


}

@media screen and (max-width: 480px) {



}



@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}





/* ========================================
   SERVICE SECTION
======================================== */

.service-section {
    padding-top: 6.25rem;
    padding-bottom: 11rem;
    background: rgba(0, 132, 206, 0.10);
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10.1875rem;
    background: url('../img/top/service-BG-bottom.webp') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.service-container {
    max-width: 73.90625vw;
    margin: 0 auto;
}

.service-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 30px;
    font-weight: 400;
}

.service-description {
    font-size: var(--fontSize-pcR);
    line-height: 2.5rem; /* 181.818% */
    letter-spacing: 0.09rem;
    text-align: left;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11.46vw;
    margin-bottom: 60px;
}

.service-card {
    padding: 0;
    transition: all 0.3s ease;
    opacity: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
}

.service-card.show {
    opacity: 1;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.service-card.knowledge-card.show {
    transition-delay: 0.1s;
}

.service-card.summary-card.show {
    transition-delay: 0.2s;
}



/* Service Card Icon Container (White Box) */
.service-card-icon {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-r);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 31rem;
    height: 22rem;
 
}


.service-card img {
    width: 75%;
    transition: all 0.3s ease;
}


@media (hover: hover) and (pointer: fine) {
.service-card:hover .service-card-icon img {
    transform: scale(1.1);
}
}

/* Service Card Content (Gray Background) */
.service-card-content {
    flex: 1;
}

.service-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.service-card-category {
    font-size: var(--fontSize-pcR);
    font-style: normal;
    font-weight: 500;
    line-height: 1.5; /* 181.818% */
    letter-spacing: 0.09rem;
    color: var(--gray);
}

.service-card-name {
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.65; /* 156.25% */
    letter-spacing: 0.09rem;
    color: var(--blue);
    margin-bottom: 1.25rem;
}

.service-card-description {
    font-size: var(--fontSize-pcR);
    line-height: var(--lineHeight-pcR); /* 181.818% */
    letter-spacing: 0.09rem;
}



/* Service Responsive */
@media screen and (max-width: 1500px) {
    .service-container {
        max-width: 1200px;
    }

    .service-card-description {
        font-size: var(--fontSize-tabR);
        line-height: var(--lineHeight-tabR); /* 181.818% */
        letter-spacing: 0.09rem;
    }

    .service-card-category {
        font-size: var(--fontSize-tabR);
        line-height: 2.2rem; /* 181.818% */
    }
    .service-card-icon {
        width: 31rem;
        height: 22rem;
    }

.service-card-icon img {
    width: 75%;
    object-fit: contain;
}
    
}

@media screen and (max-width: 1300px) {
    .service-card-icon {
        width: 25rem;
        height: 18rem;
    }
}

@media screen and (max-width: 1100px) {
    .service-cards {
        grid-template-columns: 1fr;
        gap: 6.25rem;
    }

    .service-section {
        padding-bottom: 8rem;
    }
    .service-card-icon {
        margin: 0 auto;
        width: 31rem;
        height: 22rem;
    }

    .service-card-content {
        width: 85%;
        margin: 0 auto;
    }
    

    .service-card-icon img {
        width: 62%;
        transition: all 0.3s ease;
    }


    
}

@media screen and (max-width: 768px) {

    .service-container {
        max-width: 100%;
        padding: 0 1.88rem;
    }

    .service-section {
        padding: 4.38rem 0;
    }

    .service-header {
        margin-bottom: var(--sp-contentMargin);
    }

    .service-cards {
        gap: 4.37rem;
    }
    
    .service-card {
        row-gap: 1.5rem;
    }

    .service-card-category {
        font-size: var(--fontSize-spR);
        line-height: 1.75rem;
        margin-bottom: 0rem;
        font-weight: 600;
    }

    .service-card-description {
        font-size: var(--fontSize-spR);
        line-height: 1.75rem; 
    }

    .service-card.summary-card {
        margin-top: 0;
    }

    .service-card img {
        width: 80%;
        transition: all 0.3s ease;
    }

    .service-card-icon {
        margin: 0 auto;
        max-height: 12rem;
        max-width: 17rem;

    }

    .service-card-content {
        width: 100%;
    }



    .service-card-title {
        font-size: 1.5rem;
    }

    .service-card-name {
        font-size: 1.25rem;
        line-height: 2.1875rem; /* 175% */
        letter-spacing: 0.025rem;
    }

    .service-section::before {
        height: 6.1875rem;
    }
}

@media screen and (max-width: 480px) {
    .service-card-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 1rem;
    }
}
