#original .fv-title {
    color: var(--color-white);
    font-size: 4.0625rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04063rem;
}
#original .fv-content {
    justify-content: left;
    padding: 10.62rem 0 10.62rem 10.62rem;
}
#original .fv-text {
    text-align: left;
}

@media screen and (max-width: 1200px) {
    #original .fv-content {
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    #original .fv-text {
        text-align: starts;
    }
}

/* Concerns section styles */
.concerns {
    background: #F2F6F8;
    padding-bottom: 11rem;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 6.88rem;
}

.concern-card {
    background-color: var(--color-white);
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    display: flex;
    flex-direction: column;
    padding: 2.81rem;
    /* width: 23.125rem; */
    height: 27.625rem;
    gap: 2.5rem;
}

.concern-animation {
    width: 100%;
    height: 200px;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.concern-text {
    font-size: var(--font-size-text);
    color: var(--color-black-navy);
    font-weight: 500;
    line-height: 1.875rem;
    letter-spacing: 0.0625rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

  /* Responsive adjustments */
@media screen and (max-width: 1600px) {
    #original .fv-title {
        font-size: 3.6875rem;
    }
}
@media screen and (max-width: 1200px) {
    .concerns {
        padding-bottom: 5rem;
    }
    #original .fv-title {
        color: var(--color-white);
        font-size: 3rem;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.16875rem;
    }
    .concern-card {
        padding: 2.3rem 1.5rem 2.81rem; 
        height: auto;
    }
    .concern-text {
        line-height: 1.4;
    }
    .concerns-grid {
        margin-top: 4rem;
    }
}

@media screen and (max-width: 1024px) {
    .concerns .content-wrapper {
        padding: 0 4rem;
    }
    
    .concerns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .concern-animation {
        height: 180px;
    }
}

@media screen and (max-width: 768px) {
    .concerns {
        padding: 0 0 4rem;
    }
    #original .fv-content {
        margin: 3rem 0 0;
    }
    #original .fv-title {
        font-size: 2rem;
    }
    #original .fv-title span {
        font-size: 2rem;
    }
    .concerns .content-wrapper {
        padding: 0 2rem;
    }
    
    .concerns-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 4.37rem;
    }
    
    .concerns-title {
        font-size: var(--font-size-subtitle);
        margin-bottom: 6.19rem;
    }
    
    .concern-animation {
        height: 160px;
    }
}

/* Education content section styles */
.education-content {
    background: linear-gradient(21deg, #0190D6 -9.05%, #01A1F0 97.1%);
    color: var(--color-white);
    padding: 7.5rem 0 6.19rem;
}
#education-content .content-header {
    margin: 0;
}
.education-content-title {
    color: var(--color-white);
    font-size: var(--font-size-big-ttl);
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 25%, #ffffff 25%, #B3CCD8 50%, #B3CCD8 50%, #ffffff 75%, #ffffff 75%, #ffffff 100%);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    background-position: 100% 50%;
    letter-spacing: 0.09375rem;
    font-weight: 700;
}

.education-content-description {
    color: var(--color-white);
    font-size: var(--font-size-text);
    font-weight: 500;
    line-height: 2.625rem;
    letter-spacing: 0.0625rem;
    text-align: center;
    margin-top: 3rem;
}
#education-content .divider {
    background: linear-gradient(90deg, #B3CCD8 0%,  #FFF 100%);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 8rem;
    padding: 0 9.37rem;
}

.feature-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    padding: 3.5rem 5rem;
    transform: skew(-21deg);
    width: 100%;
    height: 17.6875rem;
    filter: drop-shadow(10px 10px 15px rgba(0, 84, 125, 0.40));
}

.feature-text {
    color: var(--color-black-navy);
    font-size: 1.25rem;
    transform: skew(21deg);
    font-weight: 700;
    line-height: 1.875rem;
    letter-spacing: 0.03375rem;
}

.laptop-preview {
    max-width: 1100px;
    margin: 4.13rem auto 0;
    text-align: center;
}

.laptop-image {
    width: 100%;
    height: auto;
}

.content-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-top: 4rem;
    justify-items: center;
    align-items: center;
}

.content-type-circle {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(270deg, #D9E6EC 0%, #F9FBFC 100%);
}

.content-type-circle span {
    color: #0C6E9E;
    font-size: var(--font-size-text);
    font-weight: 500;
    line-height: 1.4;
}

#education-content .cta-container {
    margin-top: 6.25rem;
    display: flex;
    justify-content: center;
    text-align: center;
}   

#education-content .cta-button {
    background-color: var(--color-white);
    color: var(--color-lightblue);
    position: relative;
    z-index: 1;
    transition: background-color var(--transition-medium);
    padding: 1.87rem 1.69rem 1.75rem 4.19rem;
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: 0.0625rem;
    border-radius: 2.3125rem;
    gap: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 23.1875rem;
    height: 4.625rem;
}
#education-content .cta-button::before {
    content: "";
    position: absolute;
    transition: background-color var(--transition-medium);
    width: 23.1875rem;
    height: 4.625rem;
    top: 0;
    left: 0;
    border: 2px solid var(--color-white);
    border-radius: 2.3125rem;
    box-sizing: border-box;
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: transform ease .3s, opacity .3s;
}

#education-content .cta-button .right-arrow,
#original-case-studies .cta-button .right-arrow  {
    transition: transform ease .3s;
    margin-right: 0.5rem;
}
#education-content .cta-button:hover .right-arrow,
#original-case-studies .cta-button:hover .right-arrow  {
    transform: translateX(0.5rem);
}


@media (hover: hover) and (pointer: fine) {
#education-content .cta-button:hover {
    background-color: var(--color-white);
    color: var(--color-lightblue);
}
#education-content .cta-button:hover::before {
    transform: scale(1);
    opacity: 1;
}

#education-content .cta-button:hover {
    color: var(--color-white);
    background-color: var(--color-lightblue);
}
}

@media screen and (max-width: 1600px) {
    .feature-text {
        font-size: 1.125rem;
    }

.laptop-image {
    width: 70%;
    margin: 0 auto;
}
}
@media screen and (max-width: 1500px) {
    .concern-card {
        width: 18rem;
        height: 21.5rem;
        gap: 1.5rem;
    }
    .concern-animation {
        width: 100%;
        height: 55%;
    }
    .concern-text {
        font-size: 1rem;
        line-height: 1.5rem;
        padding: 0.5rem 0 0 0;
    }


    .content-types {
        gap: 2rem;
    }
    

    .content-type-circle {
        width: 13.5rem;
        height: 13.5rem;
    }
    
    .education-content-description {
        line-height: 2rem;
        margin-top: 3rem;
        font-size: 1.105rem;
    }
    .feature-card {
        padding: 3.5rem 3rem;
    }
    .laptop-preview {
        max-width: 1100px;
        margin: 4.13rem auto 0;
    }
    .laptop-image {
        width: 80%;
        margin: 0 auto;
    }


.content-type-circle span {
    color: #0C6E9E;
    font-size: 1.1rem;
}

}
@media screen and (max-width: 1200px) {
    .education-content {
        padding: 4.5rem 0 4.5rem;
    }
    .education-content-description {
        line-height: 1.875rem;
        margin-top: 3rem;
    }
    .features {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 2rem;
        justify-items: center;
        align-items: center;
        padding: 0;
    }
    .content-type {
        width: 100%;
        justify-self: center;
        display: flex;
        justify-content: center;
    }
    .content-type-circle {
        width: 15rem;
        height: 15rem;
    }

    .feature-card {
        height: 12.6875rem;
    }
    .feature-card-wrap {
        display: flex;
        position: relative;
        width: 100%;
        max-width: 100%;
        left: 50%;
        transform: translateX(-50%);
        filter: drop-shadow(10px 10px 15px rgba(0, 84, 125, 0.40));
        margin: 0;
    }
    .feature-card-wrap:nth-child(1),
    .feature-card-wrap:nth-child(3) {
        justify-content: flex-end;
    }
    .feature-card-wrap:nth-child(2) {
        justify-content: flex-start;
    }
    .feature-card {
        width: 43rem;
        position: relative;
        background-color: #fff;
        padding: 2rem 1.5rem 2rem 1.5rem;
        min-height: 7rem;
        margin: 0;
        transform: skew(0);
    }
    .feature-card-wrap:nth-child(1) .feature-card,
    .feature-card-wrap:nth-child(3) .feature-card {
        margin-right: 0;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
        padding: 2rem 3.5rem 2rem 10rem;
    }
    .feature-card-wrap:nth-child(2) .feature-card {
        margin-left: -4rem;
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        padding: 2rem 10rem 2rem 7.5rem;
    }
    .feature-text {
        transform: skew(0);
        font-size: 1.15rem;
        line-height: 1.6;
        letter-spacing: 0.0625rem;
    }
    .laptop-image {
        width: 100%;
        margin: 0 auto;
        max-width: none;
    }
}
  /* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .content-types {
        flex-wrap: wrap;
        justify-content: center;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.65rem;
    }
    .content-type {
        flex: 0 0 calc(50% - 1rem);
    }

    .concern-animation {
        width: 100%;
        height: 11.5rem
    }
}

@media screen and (max-width: 768px) {
    .education-content {
        padding: 3rem 0 4rem;
    }

    .education-content .content-wrapper {
        padding: 0;
    }
    
    .education-content-title {
        font-size: 1.5rem;
        padding: 0 1rem;
        margin-bottom: 0rem;
    }
    
    .features {
        gap: 1.5rem;
        margin: 4.3rem 0 3rem;
    }
    
    .feature-card {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .feature-text {
        text-align: start;
        width: 85%;
    }
    
    .laptop-preview {
        margin: 0 1rem 3rem;
    }
    .laptop-image {
        width: 90%;
        margin: 0 auto;
        transform: none;
    }


    
    .content-types {
        flex-direction: column;
        gap: 1.5rem;
        margin: 0 3rem 0;
    }
    
    .content-type-circle {
        width: 8.1875rem;
        height: 8.1875rem;
        margin: 0 auto;
    }
    
    .content-type-circle span {
        font-size: 0.875rem;
    }
    
    .contact-button {
        margin: 0 1rem;
        width: calc(100% - 2rem);
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }

    .contact-button .arrow {
        margin-left: 0.5rem;
    }
    .education-content-description {
        padding: 0 1.87rem;
    }
    .feature-card-wrap:nth-child(1) .feature-card,
    .feature-card-wrap:nth-child(3) .feature-card {
        margin-right: 0;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
        padding:1rem 1.5rem 1rem 3.5rem;
    }
    .feature-card-wrap:nth-child(2) .feature-card {
        margin-left: -7rem;
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        padding: 1rem 1.5rem 1rem 6.5rem;
    }

    #education-content .cta-container {
        margin-top: 2rem;
    }  
}

/* 選ばれる理由 ======================================*/
.reason {
    background: var(--color-white);
    padding-bottom: 5.87rem;
}
.reason-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8.81rem;
    margin-top: 1rem;
}
.reason-text {
    color: var(--color-black-navy);
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 2.625rem;
    letter-spacing: 0.0625rem;
    width: 50%;
    margin-left: 10rem;
}
.reason-img {
    width: 50%;
}
.reason-img img {
    width: 500px;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1200px) {
    .reason-content {
        flex-direction: column-reverse;
        gap: 3.75rem;
        margin-top: 3.12rem;
    }
    .reason-text {
        width: 100%;
        margin-left: 0;
        font-size: 1rem;
        line-height: 1.8;
    }
    .reason-img {
        aspect-ratio: 4/2.4;
        width: 100%;
        height: auto;
        max-width: 100%;
        overflow: hidden;
    }
    .reason-img img {
        width: 80%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        display: block;
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {
    .reason-img {
        aspect-ratio: 1/1;
        height: 16rem;
    }

    .reason-img img {
        width: 100%;
    }
    .reason-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-left: 0;
    }
    .concern-card {
        height: auto;
    }
}
/* Case studies section styles======================================== */
.original-case-studies {
    background-color: #DBEDF6;
    padding: 0 0 9.87rem;
}
#original-case-studies .content-wrapper {
    padding: 4rem 9.37rem 0;
}
#original-case-studies .content-header {
    margin: 0;
}
.case-studies-title {
    font-size: var(--font-size-subtitle);
    font-weight: 700;
    text-align: center;
    color: var(--color-black-navy);
    margin-bottom: 4rem;
    position: relative;
}

.case-studies-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background-color: var(--color-navy);
}
.case-studies-content {
    display: flex;
    flex-direction: column;
    margin-top: 3.75rem;
    gap: 1.8rem;
}

.case-study-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.case-study {
    background-color: var(--color-white);
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 4.88rem 3.87rem 6.25rem 5.19rem;
    gap: 6.5rem;
    transition: box-shadow 0.3s ease;
}

.case-study:last-child {
    margin-bottom: 0;
}

.case-study-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.case-study-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.case-study-content {
    flex: 1;
    padding: 0 0 0.75rem;
}

.case-study-type {
    color: var(--color-true-black);
    position: relative;
    padding-bottom: 1.5rem;
    font-size: 2.3125rem;
    font-weight: 500;
    line-height: 3.4375rem;
    letter-spacing: -0.02313rem;
    margin-top: -0.29rem;
}

.case-study-points {
    display: flex;
    flex-direction: column;
    margin-top: 2.2rem;
    gap: 1.8rem;
}

.case-study-points p {
    position: relative;
    padding-left: 2.5rem;
    color: var(--color-black-navy);
    font-size: var(--font-size-text);
    line-height: 1.65;
    font-weight: 500;
    letter-spacing: 0.0625rem;
}

.case-study-points p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 1.75rem;
    height: 1.75rem;
    background-image: url("../../assets/third/original-casestudy-check.svg");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
#original-case-studies .cta-container {
    margin-top: 4.8rem;
    display: flex;
    justify-content: center;
    text-align: center;
}   
#original-case-studies .cta-button {
    background-color: var(--color-lightblue);
    color: var(--color-white);
    position: relative;
    z-index: 1;
    transition: background-color var(--transition-medium);
    padding: 1.87rem 1.69rem 1.75rem 4.19rem;
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: 0.0625rem;
    border-radius: 2.3125rem;
    gap: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 23.1875rem;
    height: 4.625rem;
}
#original-case-studies .cta-button::before {
    width: 23.1875rem;
    height: 4.625rem;
    border: 2px solid var(--color-lightblue);
}

@media (hover: hover) and (pointer: fine) {
#original-case-studies .cta-button:hover {
    background-color: var(--color-lightblue);
    color: var(--color-white);
}

#original-case-studies .cta-button:hover {
    color: var(--color-lightblue);
    background-color: var(--color-white);
}
}

@media screen and (max-width: 1500px) {
    #original-case-studies .cta-button {
        padding: 1rem 1.2rem 1rem 3.5rem;
        gap: 1.5rem;
        width: 18rem;
        height: 3.3rem;
        font-size: 1rem;
        }

        #education-content .cta-button {
            padding: 1rem 1.2rem 1rem 3.5rem;
            gap: 1.5rem;
            width: 18rem;
            height: 3.3rem;
            font-size: 1rem;
            line-height: 2;
        }

        #education-content .cta-button::before {
            width: 100%;
            height: 100%;
        }


}


  /* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .case-study {
        flex-direction: column;
        gap: 2.5rem;
        padding: 4rem 2.5rem 3.56rem 2.5rem;
    }
    .case-study-image {
        flex: 0 0 100%;
        max-width: 100%;
      }
      .original-case-studies {
        padding: 0 0 4.87rem;
    }
    #original-case-studies .cta-container {
        margin-top: 1.4rem;
    }

    .case-study-type {
        font-size: 1.75rem;
        margin-bottom: 1rem;
      }

      #education-content .cta-button {
        height: 4rem;
    }

}   
  @media screen and (max-width: 1024px) {
    #original .case-studies .content-wrapper {
        padding: 0 4rem;
    }

    #original-case-studies .content-wrapper {
        padding: 4rem 7rem 0;
    }
}

@media screen and (max-width: 768px) {
    #original .case-studies {
      padding: 3rem 0;
    }
  
    #original .case-studies .content-wrapper {
      padding: 0 1rem;
    }
  
    .case-studies-title {
      font-size: var(--font-size-subtitle);
      margin-bottom: 2rem;
    }
  
    .case-study {
      flex-direction: column;
      margin-bottom: 1.5rem;
      padding: 2rem 1.56rem 2rem 1.56rem;
      gap: 0;
    }
  
    .case-study-img {
      height: 200px;
    }
  
    .case-study-content {
        padding: 1rem 0 1.5rem;
    }
  
    .case-study-type {
      font-size: 1.25rem;
      margin-bottom: 1rem;
      padding-bottom: .5rem;
    }
  
    .case-study-points {
      margin-bottom: 1.5rem;
    }
  
    .case-study-points li {
      font-size: 0.875rem;
      padding-left: 1.25rem;
    }
  
    .case-study-points li::before {
      width: 0.875rem;
      height: 0.875rem;
      background-size: 0.625rem;
    }
  
    .case-study .contact-button {
      width: 100%;
      justify-content: center;
      font-size: 0.875rem;
    }
    #original-case-studies .content-wrapper {
        padding: 4rem 1.87rem 0;
    }
    .case-studies .cta-button,
    #original-case-studies .cta-button {
        width: 16.4375rem;
        font-size: 1rem;
        padding: 1.87rem 1.3rem 1.75rem 2.5rem;
        gap: 1.3rem;
        height: 3.125rem;
    }
    #original-case-studies .cta-container {
        margin-top: 0rem;
    }
}

  /* Pricing section styles */
.pricing {
    padding: 4rem 0 0;
  }
  
.pricing .content-header {
    margin-top: 5rem;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
  }
  
  .pricing-card {
    background-color: var(--color-white);
    overflow: hidden;
  }
  
  .pricing-type {
    color: var(--color-white);
    padding: 1.rem 1rem;
    font-size: var(--font-size-text);
    text-align: center;
    font-weight: 700;
    line-height: 1.875rem; 
    letter-spacing: 0.0625rem;
    min-height: 92px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
.pricing-card:nth-child(1) {
    border: 3px solid var(--color-lightblue);
}
.pricing-card:nth-child(2) {
    border: 3px solid #018ACD;
}
.pricing-card:nth-child(3) {        
    border: 3px solid #006DA2;
}
.pricing-card:last-child {
    border: 3px solid var(--color-navy);
}

#pricing-type-1 {
    background-color: var(--color-lightblue);
}
#pricing-type-2 {
    background-color: #018ACD;
}
#pricing-type-3 {    
    background-color: #006DA2;
}
#pricing-type-4 {
    background-color: var(--color-navy);
    padding: 1rem 1rem;
  }
  
  .price {
    display: flex;
    align-items: flex-end;
    padding: 3rem 2.4rem;
    justify-content: center;
}
  .price-main {
    font-size: 4rem; /* 数字を大きく */
    line-height: 1;
    color: var(--color-black-navy);
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.04375rem;
    margin-bottom: -.56rem;
    padding-bottom: 0.5rem;
  }
  .price-sub {
    font-size: 2.6rem;
    line-height: 1;
    margin-left: 0.2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
  }

.yen {
    margin-right: 0.4rem;
}
.mann {
    padding-bottom: 0.25rem;
}

  .pricing-notes {
    text-align: center;
    margin: 4.38rem  0 0;
    color: var(--color-contents-description);
  }

.pricing-notes-content {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
  
  .note {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem;
    letter-spacing: 0.0625rem;
  }
  
  .contact-button-wrapper {
    text-align: center;
  }
  
  .pricing .contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-lightblue);
    color: var(--color-white);
    padding: 1rem 4rem;
    border-radius: 2rem;
    font-size: var(--font-size-tag-text);
    transition: transform var(--transition-medium);
  }
  
  #banner-wrapper .content-wrapper {
    padding: 0 1.87rem 0;
  }

  @media (hover: hover) and (pointer: fine) {

  .pricing .contact-button:hover {
    transform: translateY(-2px);
  }
}
  .pricing .contact-button .arrow {
    margin-left: 5rem;
  }


  /* Responsive adjustments */

  @media screen and (max-width: 1200px) {
    .pricing .content-header {
        margin-top: 0;
      }
  }
  @media screen and (max-width: 1024px) {
    .pricing .content-wrapper {
      padding: 3rem 3rem;
    }
  
    .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .note {
        text-align: left;
    }


    .pricing .cta-container {
        margin-top: 5rem;
    }
    
    .pricing .cta-button {
        margin: 0 auto;
      }
    
      .pricing {
        padding: 0;
      }
    

  .price {
    padding: 2.5rem 3rem;
  }

  .pricing-type {
    padding: 1.65rem 3rem;
}

  .price-main {
    font-size: 3.8rem;
  }

  .price-sub {
    font-size: 2.6rem;
    line-height: 1;
    margin-left: 0.2em;
  }
  .pricing-notes-content {
    gap: 1.125rem;
}
  }
  
  @media screen and (max-width: 768px) {
    .pricing {
      padding: 0;
    }
  
    .pricing .content-wrapper {
      padding: 2rem 1rem;
    }
  
    .pricing-grid {
        grid-template-columns: 1fr;
        margin-top: 2.5rem;
    }

  
    .pricing-type {
        height: 4.12rem;
        font-size: 1rem;
        padding: 1.2rem 2.5rem;
        min-height: auto;
        line-height: 1.3rem; 
    }
  
    .price {
      padding: 1.5rem 1rem;
      font-size: 2.5rem;
    }
    .price-main {
        font-size: 2.8125rem;
    }
    .price-sub {
        font-size: 1.5625rem;
    }
  
    .note {
      font-size: 0.9rem;
      padding: 0 1rem;
      line-height: 1.7;
      margin-bottom: 0;
    }
  
    .pricing .contact-button {
      width: calc(100% - 2rem);
      padding: 0.875rem;
      font-size: 0.875rem;
    }
    .case-studies .cta-button,
    #original-case-studies .cta-button {
        height: 4rem;
    }
    .pricing .cta-button {
        height: 4rem;
    }
  }

.banner-wrapper {
    background-color: var(--color-white);
}

.banner-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
    border-top: 1px solid var(--color-subtitle);
    margin-top: 10rem;
}
.banner-img {
    position: relative;
    width: 100%;
    height: 21rem;
    overflow: hidden;
    margin: 1rem 9.37rem 0;
}
.banner-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 100%;
    background-image: url("../../assets/top/fv-bg1.webp");
    background-size: cover;
    background-position:center center;
    background-repeat: no-repeat;
    transform: translateX(-5%);
    transition: transform 0.5s ease;
    z-index: 0;
}

@media (hover: hover) and (pointer: fine) {
.banner-img:hover::after {
    transform: scale(1.05) translateX(-5%);
}
}
.banner-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.81;
    background: linear-gradient(0deg, #19334C 0%, #1F415F 22.5%, #2B5375 44%, #395F80 67.5%, #7191AC 100%);
    z-index: 1;
}

.banner-title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-weight: 700;
    text-align: center;
    z-index: 2;
    width: 100%;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-family-ja);
    font-size: 6.25rem;
    letter-spacing: 0.1875rem;
    line-height: normal;
}

.banner-subtitle {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-weight: 700;
    text-align: center;
    z-index: 2;
    width: 100%;
    font-size: var(--font-size-ttl-ja);
    line-height: 2.5rem;
    letter-spacing: 0.03375rem;
}

@media screen and (max-width: 1500px) {
    .banner-title {
        font-size: 5rem;
    }
    .banner-img {
        height: 18rem;
    }
}

@media screen and (max-width: 1200px) {
    .banner-img {
        height: 15rem;
        margin: 0;
    }

    .banner-title {
        font-size: 4rem;
    }
}
@media screen and (max-width: 768px) {
    .banner-content {
        padding-top: 3rem;
        margin-top: 4.8rem;
    }

    .banner-title {
        font-size: 2.8125rem;
        }
        .banner-img {
            height: 9rem;
            margin: 0;
        }
        .banner-subtitle {
            font-size: 0.875rem;
        }
  }

/* ワークフローセクションの新しいスタイル */
.workflow-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4vw;
  margin-top: 6.56rem;
  position: relative;
}

.workflow-image {
  flex: 1 1 0;
  max-width: 100%;
  position: relative;
  display: inline-block;
  margin-top: 10rem;
}

.workflow-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
  display: block;
}

.workflow-lottie-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 7rem;
  padding: 0 5rem 0 3rem;
}

.workflow-lottie {
  aspect-ratio: 1 / 1;
  width: 10rem;
  height: auto;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:none;
}

.workflow-lottie svg,
.workflow-lottie canvas {
  width: 6rem !important;
  height: 6rem !important;
  display: block;
}

.workflow-lottie img {
    width: 55%;
    height: 4rem;
}
.workflow-lottie img:first-child {
    width: 48%;
}
/* レスポンシブ対応 */
@media screen and (min-width: 1900px) {
    .workflow-image {
        margin-top: 12rem;
    }
}

@media screen and (max-width: 1500px) {
    .workflow-lottie-container {
        gap: 4rem;
    }

    .workflow-lottie svg,
.workflow-lottie canvas {
  width: 5rem !important;
  height: 5rem !important;
  display: block;
}
}

@media screen and (max-width: 1200px) {
.workflow-image {
    display: none;
}
#original .breadcrumb {
    margin-left: 0rem;
}
.workflow-lottie-container {
    display: none;
}
.workflow-lottie-sp {
    aspect-ratio: 1 / 1;
    width: 6rem;
    height: auto;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: -2rem;
  }
  
  .workflow-lottie-sp svg,
  .workflow-lottie-sp canvas {
    width: 4rem !important;
    height: 4rem !important;
    display: block;
  }
    .workflow-section {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        margin-top: 3.12rem;
 
    }
    
    /* Workflow item */
    .workflow-item {
        position: relative;
        display: flex;
        align-items: flex-start;
        margin-bottom: 4.5rem;
        position: relative;
        animation: fadeInUp 0.6s ease-out forwards;
    }

    
    /* Icon container */
    .icon-container {
        flex-shrink: 0;
        position: relative;
        z-index: 3;
    } 

    .workflow-item:not(:last-child):after {
        content: '';
        position: absolute;
        left: 30px;
        top: 6.5rem;
        /* transform: translateY(-50%); */
        width: 43px;
        height: 16px;
        background-image: url(../../assets/third/gray-arrow.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        z-index: 1;
    }
    .workflow-item:last-child::after {
        display: none;
    }


    .icon {
        width: 5.625rem;
        height: 5.625rem;
        background-color: #EEF3F6;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 4px 12px rgba(238, 243, 246, 0.3);
        position: relative;
        z-index: 3;
        margin: -1.5rem 0 0;
    }
    
    /* Content styles */
    .content {
        flex: 1;
        position: relative;
        z-index: 2;
    }
    
    .step-header {
        background-color: var(--color-navy);
        color: white;
        padding: 0.4rem 1.25rem 0.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(52, 73, 94, 0.2);
        position: relative;
        margin-left: -40px;
        padding-left: 60px;
        font-size: 1.375rem;
    }
    
    .step-number {
        margin-right: 8px;
        font-weight: 700;
    }
    
    .step-description {
        color: #0D172A;
        font-weight: 500;
        font-size: 1.15rem;
        line-height: 1.8;
        padding-left: 5px;
    }

    /* 個別のstep-descriptionを調整 */
    /* 1番目のworkflow-itemのstep-description */
    .workflow-item:nth-child(1) .step-description {
        line-height: 3.6rem;
    }

    /* 3番目のworkflow-itemのstep-description */
    .workflow-item:nth-child(3) .step-description {
        line-height: 3.6rem;
    }

    /* 4番目のworkflow-itemのstep-description */
    .workflow-item:nth-child(4) .step-description {
        /* 個別調整例 */
        line-height: 3.6rem;
    }

    /* 5番目のworkflow-itemのstep-description */
    .workflow-item:nth-child(5) .step-description {
        line-height: 3.6rem;
    }

    /* 6番目のworkflow-itemのstep-description */
    .workflow-item:nth-child(6) .step-description {
        /* 個別調整例 */
        /* font-weight: 700; */
        /* padding-left: 20px; */
    }


    .workflow-lottie-sp img {
        width: 3.5rem;
        height: 4rem;
    }
    }
    @media screen and (max-width: 768px) {
        .step-header {  
            font-size: 1rem;
            padding: 0.4rem 1.25rem 0.5rem 4rem;
        }
        .workflow-lottie-sp {
            width: 6rem;
        }
        .workflow-lottie-sp svg,
        .workflow-lottie-sp canvas {
            width: 4rem !important;
            height: 4rem !important;
        }

        .step-description {
            font-size: 0.9125rem;
            line-height: 1.8;
            padding-left: 5px;
        }
        
    /* 1番目のworkflow-itemのstep-description */
    .workflow-item:nth-child(1) .step-description {
        line-height: 1.8rem;
    }
        /* 3番目のworkflow-itemのstep-description */
        .workflow-item:nth-child(3) .step-description {
            line-height: 1.8rem;
        }


        /* 5番目のworkflow-itemのstep-description */
        .workflow-item:nth-child(5) .step-description {
            line-height: 1.8rem;
        }

        .workflow-item {
            display: flex;
            align-items: flex-start;
            /* gap: 1.5rem; */
            margin-bottom: 60px;
            position: relative;
            animation: fadeInUp 0.6s ease-out forwards;
            /* transform: translateY(20px); */
        }
        

        .workflow-item:not(:last-child):after {
            content: '';
            position: absolute;
            left: 30px;
            top: 5.8rem;
            width: 43px;
            height: 16px;
            background-image: url("../../assets/third/gray-arrow.webp");
            background-repeat: no-repeat;
            background-position: center;
            z-index: 1;
        }
    }
