: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.75rem;


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





* {
    
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
}


html,body{
    color: var(--black);
    font-family: var(--ja-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem; /* 181.818% */
    letter-spacing: 0.09rem;
    animation: fadeInBody 0.5s ease forwards;
    overflow-x: hidden;
}

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

/* モバイルナビゲーション開時用のスクロール制御 */
body.mobile-nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
}

body.mobile-nav-open .main-content {
    pointer-events: none;
}

/* モバイルナビゲーション自体はスクロール可能にする */
body.mobile-nav-open .mobile-nav {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}






/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 7.35rem;
    background: var(--white);
    padding: 1.08725vw 5.10833vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
}

/* Logo Styles */

.logo img {
    width: 13.3125rem;
    height: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap:  4.8vw;
    height: 100%;
}

.desktop-nav .nav-list {
    display: flex;
    position: relative;
    height: 100%;
  
}


.desktop-nav .nav-list li {
    height: 100%;
    width: 8vw;
    text-align: center;
}

.desktop-nav .nav-list::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 30%;
    width: 0;
    height: 4px;
    background: var(--blue);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.desktop-nav .nav-item {
    position: relative;
}

.desktop-nav .nav-link {
    text-align: center;
    text-decoration: none;
    color: var(--black);
    font-family: var(--en-font);
    font-size: var(--fontSize-pcR);
    font-style: normal;
    font-weight: 500;
    line-height: 1.8rem;
    letter-spacing: 0.09rem;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .62rem;
    height: 100%;
    cursor: pointer;
}

.desktop-nav .nav-link.about:hover {
    cursor: initial;
}

@media (hover: hover) and (pointer: fine) {
.nav-link:hover {
    color: var(--blue);
}
}

.cta-button {
    display: flex;
    padding: 0.98rem 2.5rem;
    justify-content: center;
    align-items: center;
    background:var(--gradation);
    /* border:solid 2px var(--blue); */
    color: var(--white);
    border-radius: 0.3125rem;

    font-size: 0.95rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.875rem; /* 166.667% */
    letter-spacing: 0.09rem;
    transition: all 0.3s ease;
    position: relative;

}

.cta-button::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.3125rem;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #0071BC 0%, #0097E0 100%) border-box border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
  }

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

.cta-button:hover {
    border: none;
    background: var(--white);
    color: var(--blue);
}

}



/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    box-shadow: 0px 0px 15px 0px rgba(0, 132, 206, 0.20);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 300px;
    padding: 1.3rem 1.87rem;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
}


.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.desktop-nav .nav-list .dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list .dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 1.08rem .5rem;
    font-size: var(--fontSize-pcS);
    font-style: normal;
    font-weight: 500;
    line-height: 1.875rem; /* 166.667% */
    letter-spacing: 0.09rem;
    transition: all 0.3s ease;
    border-radius: 0;
    border-bottom: 1px solid var(--grayLight);
    text-align: left;
}

.dropdown-menu ul > li:first-child a {
    padding-top: 0;
}

.dropdown-menu ul > li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
}


.dropdown-menu a:hover {
    color: var(--blue);
}

/* Ensure dropdown stays visible when hovering over it */
.nav-item:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}





/* Hamburger Menu */
.hamburger {
    width: 3.75rem;
height: 3.75rem;
    display: none;
    background: var(--gradation);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background: var(--blue);
}

.hamburger-line {
    width: 1.5625rem;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 0.1475rem;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-nav.active {
    transform: translateX(0);
}


.mobile-nav-section {
    margin-bottom: 2.1re,;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-section {
    opacity: 1;
    transform: translateY(0);
}


.mobile-nav-section ul {
    list-style: none;
}

.mobile-nav-section li {
    margin-bottom: 1.25rem;
}

.mobile-nav-section .mobile-outLink a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .62rem;
}
.footer-nav-section ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .62rem;
    font-size: var(--fontSize-spR);
    line-height: 1.75rem; 
}

.mobile-nav-section a:hover {
    color: var(--blue);
}


.external-icon {
    width: 1.125rem;
    height: 1.125rem;
}
.external-icon  img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}




/* content */

/* .sec-content {
    max-width: 73.90625vw;
} */

.top-section {
    margin-top:  7.53rem;
}

.case-section.top-section {
    margin-bottom:  9.63rem;
}

.top-container {
    max-width: 72.92vw;
    margin: 0 auto;
}

.top-container.fv {
    max-width: 79.92vw;
    margin: 7.35rem auto 0;
}

.sec-wrapper {
    padding-top: 6.25rem;
    max-width: 79.22vw;
    margin: 0 auto;
}

.sec-wrapper.case,
.sec-wrapper.contact {
    margin-top: 0;
    padding-top: 0;
}

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


.top-container {
    max-width: 1200px;
    margin: 0 auto;
}

.case-section.top-section {
    margin-bottom: 6.25rem;
}

.top-container.fv {
    max-width: 1200px;
}

.sec-wrapper {
    margin-top: 6.25rem;
    max-width: 1200px;
    padding: 0;
}

.sec-wrapper.case {
    margin-top: 0;
}

.header {
    height: 6.25rem;
    padding: 1.1825vw 4.20833vw;
}

.logo img {
    width:  12.64vw;
    height: auto;
    object-fit: contain;
}


.desktop-nav {
    gap:  3.6vw;
}



.nav-link {
    text-align: center;
    text-decoration: none;
    color: var(--black);
    font-family: var(--en-font);
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75;
}


.cta-button {
    display: flex;
    font-size: var(--fontSize-tabR);
    line-height: 1.7;
}

.dropdown-menu a {
    display: block;
    padding: 1.08rem .5rem;
    font-size: var(--fontSize-tabR);
    line-height: var(--lineHeight-tabR); /* 166.667% */
}


}

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


    .top-section {
        padding: 0 5rem;
    } 
}
@media screen and (max-width: 1200px) {


    .top-section {
        padding: 0 3rem;
    } 
    
    .top-container.fv {
        padding: 0 3rem;
        max-width: 1200px;
    }

    .sec-wrapper.case {
        padding: 0 3rem;
    }
    
}

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


    .sec-wrapper {
        padding: 0 5rem;
    }
}

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

    .desktop-nav {
        display: none;
    }

    .top-section {
        margin-top: 6.37rem;
        padding: 0 3rem;
    }


    .sec-wrapper {
        margin-top: 5.37rem;
        max-width: 100%;
        padding: 0 3rem;
    }

    .sec-wrapper.case {
        margin-top: 5rem;
        padding: 0 3rem;
    }
    
    .sec-wrapper.contact {
        margin-top: 5rem;
    }
    

    .header {
        padding: 0;
        padding-left: 1.4rem;
        height: 4.75rem;
    }

    .hamburger {
        display: flex;
        height: 4.75rem;
        width: 4.75rem;
        margin-top: 0.05rem;
    }

    .top-container {
        max-width: 100%;
        width: 100%;
    }

    .top-container.fv {
        margin: 8.65rem auto 0;
        padding: 0;
    }


    
.logo img {
    width:  20.59vw;
    height: auto;
}



.mobile-nav-content {
    padding: 9rem 4.5em 14rem;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 9rem;
    background: url("../img/top/fv-BG-sp.webp") no-repeat center center;
    background-size: cover;
    opacity: .2;
}




.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradation);
    color: white;
    width: 23rem;
    height: 5.0625rem;
    padding: 1.5625rem 2.125rem;
    text-decoration: none;
    border-radius: 0.3125rem;
    font-size: 1.08rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.875rem; /* 166.667% */
    letter-spacing: 0.09rem;
    margin-top: var(--sp-contentMargin);
    text-align: center;
    transition: all 0.3s ease;
}


.mobile-cta {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


.mobile-nav-section h3,
.mobile-nav-section a.mobile-nav-ttl {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1.4rem;
    font-weight: 600;
}


.mobile-nav-section a span{
    text-decoration: none;
    color: var(--black);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}


}



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

    .header {
        padding: 0;
        padding-left: 1.05rem;
        height: 4.35rem;
    }

    .top-section {
        margin-top: 5rem;
        padding: 0 1.88rem;
    }

    .top-container.fv {
        margin: 2.5rem auto 0;
    }

    .case-section.top-section.case-page {
        margin-top: 0rem;
    }


    .sec-wrapper.case {
        padding: 0 1.88rem;
    }

    .sec-wrapper {
        margin-top: 4rem;
        max-width: 100%;
        padding: 0 1.88rem;
    }


    .sec-wrapper.contact {
        margin-top: var(--sp-contentMargin);
    }
    
    
    
    .hamburger {
        height: 4.35rem;
        width: 4.35rem;
    }   


.mobile-nav-section li {
    margin-bottom: .95rem;
    line-height: 1.5;
}
.mobile-nav-section li:last-child {
    margin-bottom: 2rem;
}
.logo img {

width: 9.09863rem;
height: 100%;
    object-fit: contain;
}
    


.mobile-nav-content {
    padding: 6.25rem 3.75rem 10rem;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.mobile-nav-section h3,
.mobile-nav-section a.mobile-nav-ttl {
    font-size: 1.2rem;
    margin-bottom: 1.13rem;
}




.mobile-nav-section a span{
    font-size: 0.95rem;
    gap: 8px;
}

.mobile-nav-content::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    transform: translateY(15px);
    left: 0;
    width: 100%;
    height: 9rem;
    background: url("../img/top/fv-BG-sp.webp") no-repeat center center;
    background-size: cover;
    opacity: .2;
}



.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradation);
    color: white;
    height: 4.0625rem;
    padding: 1.5625rem 1.25rem;
    text-decoration: none;
    border-radius: 0.3125rem;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.875rem; /* 166.667% */
    letter-spacing: 0.09rem;
    margin-top: var(--sp-contentMargin);
    text-align: center;
    transition: all 0.3s ease;
}



.mobile-cta {
    margin-top: 40px;
    padding-bottom: 1.5rem;
}

}



/* content title animation */

/* Content Title (formerly about-title) - GSAP Ready */
.content-outer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 1.5rem;
}

.content-title {
    font-family: var(--en-font);
    font-size: 4.375rem;
    font-weight: 500;
    color: var(--black);

    line-height: 4.5rem;
    display: flex;
    letter-spacing: 0.225rem;
}

.content-title.white,
.content-subtitle.white {
    color: var(--white);
}

/* Character animation styles for GSAP */
.content-title .title-character {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.content-title .title-character.active {
    opacity: 1;
}

/* Content Subtitle (formerly about-subtitle) - GSAP Ready */
.content-subtitle {
    font-size: var(--fontSize-pcR);
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 2.8rem;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.content-description {
    color: var(--black);
    font-size: var(--fontSize-pcR);
    font-style: normal;
    font-weight: 400;
    line-height:1.875; /* 181.818% */
    letter-spacing: 0.09rem;
    text-align: left;
}



@media screen and (max-width: 1500px) {
    .content-description {
        font-size: var(--fontSize-tabR);
        line-height: 1.75;
    }

    .content-subtitle {
        font-size: var(--fontSize-tabR);
    }

    .content-outer {
        row-gap: 1rem;
    }
}

/* Responsive Design - PC First */
@media screen and (max-width: 1100px) {

    .content-description {
        width: 85%;
        margin: 0 auto;
        text-align: center;
    }
    .content-title {
        font-size: 3.2rem;
        justify-content: center;
    }

    .content-outer {
        display: flex;
        flex-direction: column;
        align-items:center;
        justify-content: center;
        row-gap: 0;
    }
    
}

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

    .content-title {
        font-size: 2.5rem;
        line-height: 3.35rem; /* 180% */
        letter-spacing: 0.0625rem;
        margin-bottom: 0;
    }

    .content-subtitle {
        font-size: 1rem;
        line-height: 1.75rem; 
        margin-bottom: 2.65rem;
        letter-spacing: 0.06rem;
    }

    .content-description {
        font-size: 1rem;
        line-height: 1.75rem; /* 175% */
        letter-spacing: 0.06rem;
        width: 100%;
        text-align: left;
    }
    

}


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


}




/* arrow button */

.arrow-button-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6.25rem;
    padding-bottom: 1rem;
}

.arrow-button-container.end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 6.25rem;
}


.arrow-button-container.small {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 4.38rem;
}


.arrow-button {
    width: min(270px, 16.625vw);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 1.05rem 2.15rem;
    background: transparent;
    color: var(--black);
    border-radius: 624.9375rem;
    border: 1px solid var(--blue);
    box-shadow: 0px 0px 15px 0px rgba(0, 132, 206, 0.20);

    font-size: 0.95rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7; /* 166.667% */
    letter-spacing: 0.09rem;
    transition: all 0.3s ease;
    background: var(--white);
}


.arrow-button:hover {
    background: var(--blue);
    color: var(--white);
}




.arrow-icon {
    display: inline-block;
    width: 1.2rem;
    height: .7rem;
    background: url("../img/common/arrow-r-bl.svg") no-repeat center center;
    background-size: contain;
    transition: all 0.3s ease;
}

.arrow-icon.left {
    display: inline-block;
    width: 1.2rem;
    height: .7rem;
    background: url("../img/common/arrow-l-bl.svg") no-repeat center center;
    background-size: contain;
    transition: all 0.3s ease;
}


.arrow-button:hover .arrow-icon {
    display: inline-block;
    width: 1.2rem;
    height: .7rem;
    background: url("../img/common/arrow-r-w.svg") no-repeat center center;
    background-size: contain;

}


.arrow-button:hover .arrow-icon.left {
    display: inline-block;
    width: 1.2rem;
    height: .7rem;
    background: url("../img/common/arrow-l-w.svg") no-repeat center center;
    background-size: contain;
    transition: all 0.3s ease;
}


@media screen and (max-width: 1680px) {
    .arrow-button {
        width: min(290px, 17.625vw);
        gap: 10px;
        line-height: 1.7;
        font-size: var(--fontSize-tabR);
        padding: 1rem 2.1rem;
    }
}

@media screen and (max-width: 1400px) {
    .arrow-button {
        width: min(300px, 18.625vw);
        gap: 10px;

    }
}


@media screen and (max-width: 1100px) {
    .arrow-button-container{
        margin-top: var(--sp-contentMargin);
        padding-bottom: 1rem;
    }

    .arrow-button-container.end {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: var(--sp-contentMargin);
    }


    .arrow-button {
        display: flex;
        width: 16.575rem;
        letter-spacing: 0.00875rem;
    }
}



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

    .arrow-button {
        display: flex;
        width: 16.875rem;
        font-size: var(--fontSize-spS);
        line-height: 1.625rem; /* 185.714% */
        letter-spacing: 0.00875rem;
    }

}





/* 改行のレスポンシブ */

.pc-br {
    display: block;
}
.tab-br {
    display: none;
}

.sp-br {
    display: none;
}


@media screen and (max-width: 1100px) {
    .pc-br {
        display: none;
    }
    .tab-br {
        display: block;
    }

    .sp-br {
        display: none;
    }
}


@media screen and (max-width: 768px) {
    .pc-br {
        display: none;
    }
    .tab-br {
        display: none;
    }

    .sp-br {
        display: block;
    }
}




/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
    height: 29.1775rem;
    padding: 6.25rem 9.375rem;
    margin:1rem 6.13rem 0; 
    border-radius: 0.625rem;
    background: var(--gradation);
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: -12%;
    z-index: 5;
}

.contact-container {
    max-width: 73.90625vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.56rem;
}

.contact-content h2.content-title {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-content .content-title .title-character {
    color: white;
}

.contact-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-description {
    font-size: var(--fontSize-pcR);
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem; /* 181.818% */
    letter-spacing: 0.09rem;
    color:var(--white);
    line-height: 1.8;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 1.88rem;
    width: 34.25rem;
    height: auto;
    padding: 1.8875rem 3.4rem;
    background: white;
    color: var(--blue);
    text-decoration: none;
    border-radius: var(--radius-s);
    font-weight: 600;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8rem; /* 106.667% */
    letter-spacing: 0.09rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    box-shadow: 2px 2px 20px 0px rgba(255, 255, 255, 0.25);  
}


.contact-button.primary span:first-child {
    background: url('../img/common/bubble.svg') no-repeat center center;
    background-size: contain;
    width: 2rem;
    height: 2rem;
     transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-button.primary span:last-child {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 600;
}
.contact-button.secondary span:first-child {
    background: url('../img/common/phone.svg') no-repeat center center;
    background-size: contain;
    width: 2rem;
    height: 2rem;
     transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-button.secondary span:last-child {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.7rem;
    padding-right: 2rem;
}

.contact-button.secondary span:last-child .small {
    font-size: 1rem;
    padding-right: 0;
}

.contact-button.primary {
    background: var(--white);
    color: var(--blue);
}

.contact-button.secondary {
    color: var(--blue);
    font-family: var(--en-font);
}



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



.contact-button.secondary:hover span:first-child {
    background: url('../img/common/phnoe-w.svg') no-repeat center center;
    background-size: contain;
    width: 2rem;
    height: 2rem;
     transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     transform: translateY(-5px) scale(1.05);
}


.contact-button.primary:hover span:first-child {
    background: url('../img/common/bubble-w.svg') no-repeat center center;
    background-size: contain;
    width: 2rem;
    height: 2rem;
     transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     transform: translateY(-5px) scale(1.05);
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.30);
    color: var(--white);
}
}




/* Contact Responsive */

@media screen and (max-width: 1500px) {
    .contact-button {
        gap: 1.4rem;
        width: 27.25rem;
        padding: 1.2875rem 3rem;
        font-size: var(--fontSize-pcR);
        line-height: var(--lineHeight-tabR); /* 106.667% */
    }

    .contact-section {
        height: auto;
        padding: 5.25rem 8.175rem;
        margin: 2rem 6.13rem 0; 
        border-radius: 0.625rem;
        margin-bottom: -12%;
    }


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

    .contact-button.secondary span:last-child {
        font-size: 1.35rem;
    }

    .contact-button.secondary span:last-child .small {
        font-size: 0.9rem;
        line-height: 1.1;
    }
    
}


@media screen and (max-width: 1300px) {
    .contact-button {
        width: 23.25rem;
        padding: 1.2875rem 3rem;
    }

}
@media screen and (max-width: 1100px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3.12rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }
    .contact-section {
        margin: 1.5rem 3rem -30%;
        padding: 3.125rem 0.9375rem;
        height: 100%;
    }

    .contact-buttons {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .contact-button {
        width: auto;
        height: auto;
        gap: 1rem;
        padding: 1.1875rem 2.86rem;
        font-size: var(--fontSize-tabR);
    }


}

@media screen and (max-width: 768px) {
    .contact-section {
        margin: 1rem 1.88rem -54%;
        padding: 3.125rem 0.9375rem;
        height: 100%;
    }


    .contact-buttons {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-button {
        padding: .94rem 1.1rem;
        font-size: 1rem;
        line-height: 1.8rem; /* 169.412% */
        letter-spacing: 0.09rem;
        height: 4.0625rem;
        gap: 0.65rem;
        width: auto;
        font-weight: 600;
    }

    .contact-button.secondary span:last-child {
        font-size: 1.31rem;
        letter-spacing: 0.09rem;
        padding-right: 1rem;
    }

    .contact-button.secondary span:last-child .small
     {
        font-size: 0.75rem;
        line-height: 1.2;
     }

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


    .contact-button.primary span:first-child {
        background: url('../img/common/bubble.svg') no-repeat center center;
        background-size: contain;
        width: 1.5rem;
        height: 1.5rem;
         transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .contact-button.secondary span:first-child {
        background: url('../img/common/phone.svg') no-repeat center center;
        background-size: contain;
        width: 1.5rem;
        height: 1.5rem;
         transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    

    
    
}


/* ========================================
   FOOTER SECTION
======================================== */

.footer {
    background: #E6F3FB;
    padding: 20rem 0 2.36rem;
    position: relative;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.56rem;
}

/* Footer Company Info */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.88rem;
}

/* Footer Logo */

.footer-logo img {
    width: 13.59vw;
    height: 6.25rem;width: 16.3125rem;
    object-fit: contain;
}

/* Company Info */
.company-info {
    color: var(--black);
}

.company-name {
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.875rem; /* 187.5% */
    letter-spacing: 0.09rem;
}

.company-details p {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4rem; /* 160% */
    letter-spacing: 0.07rem;
}

.contact-info {
    display: flex;
    column-gap: 1rem;
}

.contact-info p {
    margin-bottom: 5px;
    text-decoration: underline;
}

.contact-info a {
    text-decoration: none;
    cursor: initial;
}

@media (hover: hover) and (pointer: fine) {
.contact-info a:hover {
    text-decoration: underline;
}
}

/* Corporate Site - Overlapping Design */
.corporate-site {
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
.corporate-site:hover {
   opacity: 0.7;
}
}

.corporate-site img {
    width: 33.78875rem;
    height: 8.64431rem;
    object-fit: contain;
}


/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 3.12rem 6rem;
    width: 45%;
}
.footer-nav-section {
    width: calc(50% - 6rem);
}
.footer-nav-section h4 {
    font-size: var(--fontSize-pcS);
    font-family: var(--en-font);
    font-style: normal;
    font-weight: 500;
    line-height: 1.875rem; /* 166.667% */
    letter-spacing: 0.09rem;
    color: var(--black);
    margin-bottom: .75rem;
    margin-top: 3.12rem;
}
.footer-nav-section > h4:first-child {
    margin-top: 0;
}

.footer-nav-section ul {
    list-style: none;
}

.footer-nav-section > ul li:first-child {
    margin-top: .75rem;
}

.footer-nav-section li {
    margin-bottom: .2rem;
}

.footer-nav-section ul li a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem; /* 200% */
    letter-spacing: 0.09rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
.footer-nav-section a:hover {
    color: var(--blue);
}
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
}

.copyright,
.privacy-link {
    font-size: 0.9rem;
    color: var(--GrayDark);
    font-family: var(--en-font);
    text-decoration: none;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem; /* 230.769% */
    letter-spacing: 0.09rem;

    transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
.privacy-link:hover {
    color: var(--blue);
}
}

/* Footer Responsive */
@media screen and (max-width: 1500px) {

.footer {
    padding: 16rem 0 2.36rem;
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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


    .footer {
        padding: 16rem 5rem 2.36rem;
    }

    .footer-nav {
        width: 55%;
    }
}
@media screen and (max-width: 1100px) {


.footer {
    padding: 18rem 0 2.36rem;
}

    .footer-container {
        max-width: 100%;
        padding: 0 3rem;
    }


    .footer-content {
        justify-content: flex-start;
        align-items: center;
    }

    .footer-nav {
        /* grid-template-columns: repeat(2, 1fr);
        gap: 30px; */
        display: none;
    }

    .corporate-site img {
        width: 25.78875rem;
        height: 6.64431rem;
        object-fit: contain;
    }

.contact-content h2.content-title {
    margin-bottom: 0;
}
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 15.56rem 1.88rem 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 40px;
    }

    .footer-nav {
        display: none;
    }

    .footer-logo img {
        width: 10.625rem;
        height: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0rem;
        text-align: center;
        margin-top: 3.12rem;
    }

    .company-name {
        font-size: var(--fontSize-spR);
        font-weight: 500;
        line-height: 1.875rem; /* 187.5% */
        letter-spacing: 0.09rem;
    }
    .company-details {
        margin-top: 0.3rem;
    }

    .contact-info {
        display: flex;
        justify-content: flex-start;
        gap: 1.45rem;
        margin-top: 0.62rem;
    }

    .footer-container {
        padding: 0;
    }



    .footer-logo {
        margin: 0 auto;
    }

    .corporate-site img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }


.copyright,
.privacy-link {
font-size: 0.6875rem;
line-height: 1.7; /* 272.727% */
letter-spacing: 0.0625rem;
}


    
}


/* ▼ nav-link about用 プラス/マイナスマーク */
.dropdown-mark {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  position: relative;
  margin-left: 0.3rem;
  vertical-align: middle;
}

.dropdown-mark::before,
.dropdown-mark::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: transform 0.25s cubic-bezier(.4,.8,.6,1), opacity 0.18s;
  display: block;
}

.dropdown-mark::before {
  transform: translateY(-50%) rotate(0deg); /* 横線 */
  opacity: 1;
}

.dropdown-mark::after {
  transform: translateY(-50%) rotate(90deg); /* 縦線 */
  opacity: 1;
}

.nav-item.open .dropdown-mark::before {
    opacity: 0;
}


.nav-item.open .dropdown-mark::after {
    transform: rotate(180deg); 
}



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

    .dropdown-mark {
        display: inline-block;
        width: .8rem;
        height: .8rem;
        position: relative;
        margin-left: 0.2rem;
        margin-bottom: .1rem;
    }

}


/* 第二階層・第三階層ページ共通 */

.mood-board {
    margin-top: 7.35rem;
}

.mood-container {
    position: relative;
    overflow: hidden;
    height: 28rem;
    width: 100%;
    background: url("../img/boad-img/board-overview.webp") no-repeat center center;

    /* transform: translateY(-9%); */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15rem;
   
  }

  /* About- mission */
  .mood-container.mission {
    background: url("../img/boad-img/board-businessNmission.webp") no-repeat center center;
    background-size: cover;
  }

  /* About- overview */
  .mood-container.overview {
    background: url("../img/boad-img/board-overview.webp") no-repeat center center;
    background-size: cover;
  }

  /* Service */
  .mood-container.service {
    background: url("../img/boad-img/board-service.webp") no-repeat center center;
    background-size: cover;
  }


    /* Case */
    .mood-container.case {
        background: url("../img/boad-img/board-case.png") no-repeat center center;
        background-size: cover;
        padding: 11rem 0 8.12rem 15rem; 
        
      }


      .mood-container.contact {
        height: 100%;
        margin-top: 5.75rem;
        padding: 11rem 0 3.75rem 15rem;
        background: none;
      }


      .mood-container.case::before,
      .mood-container.case::after,
      .mood-container.service::before,
      .mood-container.contact::before,
      .mood-container.contact::after {
        display: none;
      }


  .mood-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--10, #E6F3FB) 21.16%, var(--10, #E6F3FB) 35.53%, rgba(230, 243, 251, 0.30) 50.4%, rgba(230, 243, 251, 0.30) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 1;
  }

  .mood-container::after {
    content: '';
    position: absolute;
    top: -3%;
    left: 0;
    bottom: 0;
    width: 35.47vw;
height: 12.66vw;
    background: url("../img/boad-img/decoration.png") no-repeat center center;
    background-size: cover;
    z-index: 1;
  }

   .mood-container.service::after {
    display: none;
  }

  
  .mood-board-content {
    position: relative;
    z-index: 2;
  }

  .mood-board-content.sp {
    display: none;
  }
  
  .mood-board-text {
    display: flex;
    flex-direction: column;
    gap: 1.56rem;
    max-width: 72.97vw;
    margin: 0 auto;
  }
  
  .mood-board-title {
    font-family: var(--en-font);
    font-size: 4.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 4.5rem; /* 102.857% */
    letter-spacing: 0.225rem;
    color: var(--blue);
    text-shadow: 0 2px 4px rgba(74, 144, 226, 0.1);
  }
  
  .mood-board-subtitle {
    color: var(--gray);
    font-size: 1.225rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5; /* 181.818% */
    letter-spacing: 0.09rem;
  }
  

  .section-title {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3.4375rem; /* 137.5% */
    letter-spacing: 0.09rem;
    margin-bottom: 6rem;
    position: relative;
    row-gap: 1.56rem;
    z-index: 1;

  }

  
    
  .section-title::after {
    content: '';
    width: 7.71875rem;
    height: 2px;
    background: var(--blue);
  }


    /* Company Section */
    .company-section {
        margin-top: var(--sec-margin-l);
        padding-top: var(--sec-margin-l);
        border-top: 1px solid var(--grayLight);
      }
      
      .company-content {
        max-width: 1100px;
        margin: 0 auto;
        border-radius: var(--radius-r);
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
      .company-image {
        position: relative;
        border-radius: var(--radius-r);
        overflow: hidden;
        width:  100%;
        height: 30.77778vh;
      
      }
      @media (hover: hover) and (pointer: fine) {
      .company-image:hover img {
        transform: scale(1.05);
      }
    }
      
      .company-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        box-shadow: 6px 10px 15px rgba(0, 0, 0, 0.12);
      }
      
      .company-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        background: rgba(22, 73, 115, 0.40);
        z-index: 2;
        cursor: pointer;
      }
      
    
      .company-title {
        font-size: 2.25rem;
        font-style: normal;
        font-weight: 700;
        line-height: 3.4375rem; /* 137.5% */
        letter-spacing: 0.09rem;
      }

    @media (max-width: 1680px) {
        .mood-container.case {
            margin-top: -1rem;
        }
      }


  @media (max-width: 1500px) {

    .mood-board {
        margin-top: 6.25rem;
    }

        .mood-container {
          height: 22rem;
          padding: 0;
          padding-left: 11rem;
        }
        .mood-container.contact {
            height: auto;
            padding-top:8.5rem;
            padding-left: 11rem;
        }

        .mood-container.case {
            padding: 11rem 0 6.12rem 11rem; 
         
          }
        
    
        .mood-board-title {
          font-size: 4rem;
        }
    
        .mood-board-text {
          display: flex
      ;
          flex-direction: column;
          max-width: 1200px;
          gap: 1.2rem;
        }
        .mood-board-subtitle {
          font-size: 1.175rem;
          line-height: 1.75rem; 
        }

        .company-content {
            max-width: 900px;
          }

          .company-title {
            font-size: 2rem;
          }

          .company-image {
            height: 38.06818vh;
          
          }

        .section-title {
            font-size: 2rem;
          }

          .section-title::after {
            content: '';
            width: 6.01875rem;
            height: 2px;
            background: var(--blue);
          }
        


}

@media (max-width: 1100px) {

        /* Case */
        .mood-container.case {
            background: url("../img/boad-img/board-case-responsive.png") no-repeat center center;
            background-size: cover;
            background-position: center center;
            padding: 7rem 0 3.12rem; 
            height: 10.5rem;
            margin-top: 0;
          }


                /* About- mission */
  .mood-container.mission {
    background: url("../img/boad-img/about-mission-sp.webp") no-repeat center center;
    background-size: cover;
    height: 14.5rem;
    margin-top: 0;
  }

  /* About- overview */
  .mood-container.overview {
    background: url("../img/boad-img/about-overview-sp.webp") no-repeat center center;
    background-size: cover;
    height: 14.5rem;
    margin-top: 0;
  }

  /* Service */
  .mood-container.service {
    background: url("../img/boad-img/service-sp.webp") no-repeat;
    background-size: cover;
    background-position: center 100%;
    height: 14.5rem;
    margin-top: 0;
  }


  .mood-container.mission::before ,
  .mood-container.service::before,
  .mood-container.overview::before  {
    display: none;
  }

    

  .mood-board {
            margin-top: 4.75rem;
        }

    .mood-container {
        height: 12.5rem;
        padding: 0;     
      }
  
  
      .mood-board-content.sp {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-top: 3.5rem;
        text-align: center;
      }

      .mood-container.contact {
        padding-top: 1.5rem;

      }
  
      .mood-board-content.case.sp {
        margin-top: 1.45rem;
      }

      .mood-board-content.contact.sp {
        margin-top: 0;
      }

  
      .mood-board-content {
        display: none;
      }
      
      .mood-board-title {
        font-size: 3.2rem;
      }
      
  
      .mood-board-text {
        gap: .2rem;
      }

      
        .mission-title {
            font-size: 1.8rem;
            margin-bottom: 2.38rem;
        }

            
      .company-title {
        line-height: var(--lineHeight-tabR); /* 137.5% */
      }

        .company-image {
            width: 100%;
            height: 13.25rem;
        }

        .company-section {
            margin-top: 4rem;
            padding-top:4rem;
            border-top: 1px solid var(--grayLight);
        }

        .section-title {
            margin-bottom: 4rem;
            font-size: 1.85rem;
            row-gap: 1.05rem;
          }


          .mood-board-content.case.sp {
            margin-top: 0;
          }

  .mood-container::after {
    display: none;
  } 
}


@media (max-width: 768px) {

      /* About- mission */
      .mood-container.mission {
        background: url("../img/boad-img/about-mission-sp.webp") no-repeat center center;
        background-size: cover;
        height: 7.5rem;
        margin-top: 0;
      }
    
      /* About- overview */
      .mood-container.overview {
        background: url("../img/boad-img/about-overview-sp.webp") no-repeat center center;
        background-size: cover;
        height: 7.5rem;
        margin-top: 0;
      }
    
      /* Service */
      .mood-container.service {
        background: url("../img/boad-img/service-sp.webp") no-repeat;
        background-size: cover;
        background-position: center 100%;
        height: 7.5rem;
        margin-top: 0;
      }
    
    
      .mood-container.mission::before ,
  
      .mood-container.overview::before  {
        display: none;
      }

      .mood-container.service::after {
        display: block;
            width: 200px;
            height: 100px;
            top: 0%;
            left: 0%;
        }
 
    

          /* Case */
          .mood-container.case {
            padding: 0; 
            height: 5.75rem;
          }
    


  .mood-container::after {
    display: none;
  }




      .mood-board {
        margin-top: 4.35rem;
    }


    .mood-container {
        padding: 0;
        height: 7.8rem;

      }


      .mood-board-content.sp {
        margin-top: 1.95rem;
      }
  
      .mood-container.contact {
        margin-top: 0;
        padding-top: 0;

      }


      .mood-board-content.contact.sp {
        margin-top: 0;
      }
  
  
    .mood-board-text {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 900px;
      margin: 0 auto;
    }
  
      .mood-container::after {
        width: 120px;
        height: 120px;
        top: 15%;
        left: 10%;
      }
      
  
      .mood-board-title {
        font-size: 2.5rem;
        line-height: 1.45; /* 180% */
        letter-spacing: 0.0625rem;
      }
      
      .mood-board-subtitle {
        font-size: 1rem;
        line-height: 1.5; 
      }
      
      .mood-board-image {
        order: -1;
      }
      
      .mood-board-image img {
        max-width: 100%;
      }

      .section-title {
        font-size: 1.4375rem;
        line-height: 2.1875rem; /* 152.174% */
        letter-spacing: -0.01438rem;
        row-gap: 1.05rem;
        margin-bottom: 3.12rem;
      }

        .section-title::after {
            width: 4.375rem;
        }

            /* Company Section Mobile */
    .company-section {
        margin-top: 2.31rem;
        padding:3.12rem 0 0;
      }

      .qualification-section +  .company-section {
        margin-top: 1.31rem;
      }

    .company-content {
        max-width: 100%;
      }

    .company-image {
        height: 6.25rem;
      }
    .company-title {
        font-size: 1.4375rem;
        line-height: 2.1875rem; /* 152.174% */
        letter-spacing: -0.01438rem;
      }
     
    }





/* ーーーーー

FlexCard 

ーーーーーーー*/
.flexCard-items {
    display: flex;  
    flex-direction: column;
    gap: var(--sec-margin-r);
    margin: 0 auto;
    padding: 0 3rem;
  }
  
  .flexCard-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3.44rem;
    transition: all 0.3s ease;
  }
  
  
  .flexCard-image {
    position: relative;
    border-radius: var(--radius-r);
    overflow: hidden;
    width: 21.77083vw;
    height: 33.24223vh;
    flex-shrink: 0;
  }

  .flexCard-items.service .flexCard-image.knowledge-card {
    background: url('../img/service/noelwdge-img.png') no-repeat center center;
    width: 31rem;
    height: 22rem;
    border-radius: var(--radius-r);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    background-size: cover;
  }

  .flexCard-items.service  .flexCard-image.summary-card {
    background: url('../img/service/summary-img.png') no-repeat center center;
    width: 31rem;
    height: 22rem;
    border-radius: var(--radius-r);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    background-size: cover;
  }
  
  .flexCard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  .flexCard-content {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding-bottom: 2.5rem;
  }
  
  .flexCard-number {
    font-family: var(--en-font);
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.5rem; /* 133.333% */
    letter-spacing: 0.09rem;
    color: var(--blue);
    opacity: 0.3;
  }
  
  .flexCard-title {
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3.125rem; /* 156.25% */
    letter-spacing: 0.09rem;
  }
  
  .flexCard-description {
    font-size: var(--fontSize-pcR);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lineHeight-pcR); /* 181.818% */
    letter-spacing: 0.09rem;
  }



@media (max-width: 1500px) {
  .flexCard-title {
    text-align: left;
    margin-bottom: 0;
    font-size: 1.75rem;
  }

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

  .flexCard-content {
    gap: .8rem;
  }

  .flexCard-items.service .flexCard-image.knowledge-card ,
  .flexCard-items.service .flexCard-image.summary-card{
    width: 28rem;
    height: 20rem;
  }
  
  .flexCard-image {
    width: 28.85714vw;
    height: 43.72129vh;    
    flex-shrink: 0;
  }
}



@media (max-width: 1100px) {


    .flexCard-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
  
        gap: 1.75rem;
        text-align: center;
        padding: 0;
      }
    
    .flexCard-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      width: 85%;
      margin: 0 auto;
      padding-bottom: 0;
    }
  
    .flexCard-description {
      text-align: left;
      line-height: 1.85;
    }
  
    .flexCard-image {
      width: 31rem;
      height: 22rem;
      margin: 0 auto;
    }


  .flexCard-items.service .flexCard-image.knowledge-card {
    background: url('../img/service/knowledge-bl-tab.webp') no-repeat center center;
    width: 31rem;
    height: 22rem;
    border-radius: var(--radius-r);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    background-size: cover;
  }

  .flexCard-items.service  .flexCard-image.summary-card {
    background: url('../img/service/summary-bl-tab.webp') no-repeat center center;
    width: 31rem;
    height: 22rem;
    border-radius: var(--radius-r);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    background-size: cover;
  }
    
    .flexCard-title {
      text-align: left;
      margin-bottom: 1.05rem;
      font-size: 1.65rem;
      line-height: 1.5;
    }
  
    .flexCard-items {
      gap: 6rem;
    }
  
      
    .flexCard-number {
      margin-bottom: 0.45rem;
      line-height: 1.5;
    }
  
}


@media (max-width: 768px) {

    .flexCard-items {
        gap: 5rem;
        padding: 0;
      }
    
      .flexCard-content {
        width: 100%;
      }


      .flexCard-image {
        width: 16.875rem;
        height: 12.3125rem;
        margin: 0 auto;
      }


  .flexCard-items.service .flexCard-image.knowledge-card {
    background: url('../img/service/noelwdge-img.png') no-repeat center center;
    max-height: 12rem;
    max-width: 17rem;
    border-radius: var(--radius-r);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    background-size: cover;
  }

  .flexCard-items.service  .flexCard-image.summary-card {
    background: url('../img/service/summary-img.png') no-repeat center center;
    max-height: 12rem;
    max-width: 17rem;
    border-radius: var(--radius-r);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    background-size: cover;
  }
    
      .flexCard-number {
        font-size: 1.25rem;
        line-height: 1.4; /* 200% */
        letter-spacing: 0.09rem;
        margin-bottom: 0;
      }
    
      .flexCard-title {
        font-size: 1.25rem;
        line-height: 1.6; /* 175% */
        letter-spacing: 0.025rem;
        text-align: left;
        margin-bottom: 0.95rem;
      }
    
      .flexCard-description {
        font-size: 1rem;
        line-height: 1.75rem; /* 175% */
        text-align: left;
      }


}




/* -------------

arrow-circle-btn 

---------------*/
  
.next.page-numbers ,
.prev.page-numbers  {
    width: 4.375rem;
    height: 4.375rem;
    border: 1px solid var(--blue);
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

.prev::after {
    content: "";
    width: 0.45rem;
    height: 0.75rem;
    background: url("../img/common/arrow-l-bl.svg") no-repeat center center;
    background-size: contain;
    transition: all 0.3s ease;
  }

  .next::after {
    content: "";
    width: 0.45rem;
    height: 0.75rem;
    background: url("../img/common/arrow-r-bl.svg") no-repeat center center;
    background-size: contain;
    transition: all 0.3s ease;
  }
  

  .next.page-numbers:hover ,
  .prev.page-numbers:hover {
    border-color: var(--blue);
    background-color: var(--blue);
  }


  .prev.page-numbers:hover::after {
    background: url("../img/common/arrow-l-w.svg") no-repeat center center;
  }

  .next.page-numbers:hover::after {
    background: url("../img/common/arrow-r-w.svg") no-repeat center center;
  }




/* パンクズリスト */
  
/* パンくずリスト */
/* 第二階層・第三階層共通 パンくずリスト */
.breadcrumb {
    display: flex;
    align-self: start;
    padding-top: 1rem;
    font-family: var(--font-family-en);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.125rem;
    list-style: none;
    padding: 0 6.13rem;
    margin: 9.63rem 0 0 1rem;
    }
    
    #about-strength .breadcrumb {
    align-self: start;
    }
    .breadcrumb a {
    color: var(--color-black-navy);
    text-decoration: none;
    transition: color var(--transition-fast);
    }
    @media (hover: hover) and (pointer: fine) {
    .breadcrumb a:hover {
    opacity: 0.5;
    }
    }
    .breadcrumb-separator {
    margin: 0 1.25rem;
    color: var(--color-lightblue);
    }
    
    .breadcrumb-separator svg {
    vertical-align: middle;
    transform: translateY(-2px); /* 微調整のために少し上に移動 */
    }

    .breadcrumb li {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .breadcrumb li::after {
        content: "";
        background: url('https://e-value.jp/legal-support/wordpress/wp-content/themes/legal-support-site/src/img/common/arrow-r-bl.png') no-repeat center center;
        width: 0.45rem;
        height: 0.45rem;
        margin-right: 0.75rem;
        padding-top: 1rem;
        vertical-align: bottom;
        background-size: contain;
    }

    .breadcrumb li:last-child::after {
        display: none;
    }


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

        .breadcrumb {
            max-width: 100%;
            flex-wrap: wrap;
        }
    .service-icon {
    width: 4.5rem;
    height: 4.5rem;
    }
    
    .more-icon {
    background-color: rgba(13, 23, 42, 0.05);
    width: 4.5rem;
    height: 4.5rem;
    }
    
    .service-icon::before,
    .more-icon::before {
    width: 4.5rem;
    height: 4.5rem;
    }
    }
    @media screen and (max-width: 1100px) {
    /* 第二階層・第三階層共通 パンくずリスト */
    .breadcrumb {
    /* padding-top: 1.88rem; */
    font-family: var(--font-family-en);
    letter-spacing: 0.125rem;
    font-size: 0.8125rem;
    max-width: 100%;
    padding: 0 4rem;
    margin-top: 6.25rem;
    flex-wrap: wr;
    }

    .breadcrumb-pc {
        display: none;
    }
    .breadcrumb-sp {
        margin-top: 6.25rem;
        display: flex;
       
    }
    
    .breadcrumb-separator svg {
    width: 6px;
    transform: translateY(-1px); /* 微調整のために少し上に移動 */
    }
    .service-icon,
    .more-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    padding: 1rem;
    font-size: 1.125rem;
    }
    
    .more-icon {
    width: 3.125rem;
    height: 3.125rem;
    }
    
    .service-icon::before,
    .more-icon::before {
    width: 3.5rem;
    height: 3.5rem;
    }
    
    .more-icon::before {
    width: 3.125rem;
    height: 3.125rem;
    }
    }
    
    @media screen and (max-width: 768px) {
    /* 第二階層・第三階層共通 パンくずリスト */
    .breadcrumb {
    padding-top: 1.25rem;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    gap: 0.25rem;
    padding: 0 2rem;
    flex-wrap: wrap;
    }
    .breadcrumb-separator svg {
    width: 6px;
    transform: translateY(1px); /* 微調整のために少し上に移動 */
    }
    .breadcrumb-separator {
    margin: 0 0.25rem;
    transform: translate3d(-1px, -2px, 0);
    }

    .breadcrumb li {
        gap: 0.45rem;
    }

    .breadcrumb li::after {
        margin-right: 0.45rem;
        height: 0.3rem;
        width: 0.3rem;
        padding-top: 0.5rem;
    }
    }


  /* Animations */
  .animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .animate-fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Loading Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .loaded {
    animation: fadeIn 0.5s ease;
  }
