/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, td, th, input, textarea {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
   opacity: 0.8;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.pc{
    display: block;
}
.sp{
    display: none;
}


/* Navigation */
.navigation {
    background-color: #FFFFFF;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}

.navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation .logo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.navigation .logo img {
    width: 200px;
    margin: 20px 20px 20px 0;

}

.navigation .logo p {
    font-size: 12px; /* Figma style_1B0XWD */
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.8;
}

.navigation .contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    
}

.navigation .contact-info p {
    font-size: 14px; 
    font-weight: 500;
}

.navigation .contact-info .phone-number {
    font-size: 32px; /* Figma style_X86YSA */
    font-weight: 700;
    color: #0E034C;
    margin-right: 10px;
}

.navigation .contact-info img {
    height: 50px; 
    width: 50px;
}

/* Main Visual (MV) */
.mv {
    position: relative;
    height: 420px; 
    overflow: hidden;
    background-color: #002255;
}

.mv-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media (min-width: 769px) {
.mv-bg-slider {
    left: 0px!important;
}}

.mv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-repeat: no-repeat;
}

.mv-slide.active {
    opacity: 1;
}

/* Default (PC) images */
.mv-slide {
    background-image: var(--pc-bg-image);
}

/* Mobile (SP) images */
@media (max-width: 768px) {
    .mv-slide {
        background-image: var(--sp-bg-image);
    }
}

.mv-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-content h1 {
    font-size: 28px; 
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
    letter-spacing: -2%;
    margin-bottom: 30px;
}

.mv-content .buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 20px; 
    font-weight: 500;
    letter-spacing: 1%;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); 
    min-width: 350px; /* Figma layout_KV46DI width */
    height: 60px; /* Figma layout_KV46DI height */
}

.btn.primary {
    background: linear-gradient(180deg, rgba(216, 169, 86, 1) 10%, rgba(138, 91, 48, 1) 70%); border: 1px solid rgba(256, 256, 256, 0.1);/* Figma fill_8M6S7E */
}

.btn.secondary {
    background: linear-gradient(180deg, rgba(120, 120, 120, 1) 0%, rgba(30, 30, 30, 1) 70%); border: 1px solid rgba(256, 256, 256, 0.1);/* Figma fill_5DY294 */
}

/* Points Section */
.points {
    padding: 80px 0 40px;
}

.points h2 {
    font-size: 40px; 
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.points .point-items {
    display: flex;
    justify-content: space-around;
    gap:2px;
}

.points .point-item {
    flex: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%), #002255; /* Figma fill_5Y6SLT */
    border-radius: 4px;
    padding: 20px 20px 40px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    height: 170px; /* Figma layout_FM3Z3V height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.points .point-item:nth-child(2) {
    background: #1A3866;
    background: linear-gradient(180deg,rgba(26, 56, 102, 1) 0%, rgba(16, 33, 64, 1) 100%);
}

.points .point-item:nth-child(3) {
    background: #344E77;
    background: linear-gradient(180deg,rgba(52, 78, 119, 1) 0%, rgba(31, 47, 69, 1) 100%);
}



    .points .point-item span{
        font-size: 28px;
        border-bottom: 1px solid #FFFFFF;
        padding: 0 0 10px 0;
        width: 260px;
        margin-bottom: 10px;
     
    }

    .points .point-item h3 {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.5;
        margin-top: 0; /* Removed margin-top for horizontal alignment */
    }

/* Achievement Data Section */
.point-title{
    display: flex;
    margin: 0 auto 20px auto;
    width: 1000px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.point-title .number {
    font-size: 65px; 
    font-weight: 700;
    color: #002255;
    margin-right: 20px;
}

.point-title .number span {
    font-size: 16px; 
    font-weight: 100;
    line-height: 1.333;
    color: #002255;
    display: block;
    margin-bottom: -30px;
}

.point-title h3 span{
    background: linear-gradient(transparent 70%, #D9BC9F 30%);
    display: inline-block;
    animation: draw-marker 0.8s ease-out 0.3s forwards;
}

@keyframes draw-marker {
    /* 開始時（0%）の状態 */
    from {
      background-size: 0% 100%;
    }
    /* 終了時（100%）の状態 */
    to {
      background-size: 100% 100%;
    }
  }

.achievement-data {
    padding: 40px 0;
    background-color: #FFFFFF;
}

.achievement-data .container {
    text-align: center;
    position: relative;
}

.achievement-data h4 {
    font-size: 24px; 
    font-weight: 700;
    color: #333;
    margin-top: 50px;
    margin-bottom: 10px;
    text-align: left;
    padding-left: 20px; 
    position: relative;
    border-left: 10px solid #002255; /* Figma stroke_HUUKDV */
}


.achievement-data .filter-radios {
    background-color: #d9d9d9;
    background: rgba(217,217,217,0.5);
    border-radius: 4px;
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
    max-width: 1200px; 
    margin: 0 auto 40px auto;
}

.achievement-data .filter-radios label {
    display: flex;
    align-items: center;
    font-size: 16px; 
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
    cursor: pointer;
    width: 160px;
}

.achievement-data .filter-radios input[type="radio"] {
    margin-right: 10px;
    width: 18px; 
    height: 18px; 
    appearance: none;
    border: 1px solid #999; /* Figma stroke_IEGLUU */
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    background: #FFF;
}

.achievement-data .filter-radios input[type="radio"]:checked {
    margin-right: 10px;
    width: 18px; 
    height: 18px; 
    appearance: none;
    border: 1px solid #002255; /* Figma stroke_IEGLUU */
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}


.achievement-data .filter-radios input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px; 
    height: 10px; 
    background-color: #002255; 
    border-radius: 50%;
}

.achievement-data .data-table {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    border-collapse: collapse;
    width: 100%;
}


.hidden-row{
    display: none;
    transition: opacity 0.5s, display 0.5s;
    opacity: 0;
}

.achievement-data table {
    width: 100%;
    border-collapse: collapse;
}



.achievement-data table tr	{
    border-bottom: 1px solid #94A2B8;
}

.achievement-data th,
.achievement-data td {
    padding: 10px 15px;
    text-align: left;
}

.achievement-data th {
    color: #002255;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    padding: 15px;
    border-top: 1px solid #002255;
    border-bottom: 1px solid #002255;
    /*border-right: 1px solid #002255;
    border-left: 1px solid #002255;*/  
}

.achievement-data td {
    background-color: #FFFFFF;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid #94A2B8;
   /* border-right: 1px solid #94A2B8;*/
   animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.fade{
    animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}


@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .readmore-button-container.is-visible {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    height: 100px;
  }

  .btn-readmore {
    background: linear-gradient(180deg, rgba(220, 174, 99, 1) 0%, rgba(144, 120, 62, 1) 100%);
    color: #FFFFFF;
    width: 150px;
    border-radius: 4px;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 600;
    margin: 60px auto 0;
}

/* Team Structure Section */
.team-structure {
    padding: 80px 0;
    background-color: #FFFFFF;
    align-items: start;
}

.team-structure .container {
    text-align: center;
}

.team-structure .team-tag {
    font-size: 18px; /* Figma style_6F2L9S */
    font-weight: 350;
    letter-spacing: -2%;
    color: #00A9E0;
    margin-bottom: 10px;
}

.team-structure .team-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.team-structure .team-title .number {
    font-size: 100px; /* Figma style_6ZTNYR */
    font-weight: 700;
    letter-spacing: -2%;
    color: #002255;
    margin-right: 20px;
}

.team-structure .team-title h3 {
    font-size: 40px; /* Figma style_6V67C4 */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -2%;
    color: #333333;
}

.team-structure .team-description {
    font-size: 14px; 
    font-weight: 400;
    line-height: 1.4;
    color: #333333;
    max-width: 80%;
    margin: 0 auto 40px auto;
}

.team-structure .team-categories-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr; /* industry-categories: 2/3, job-type-categories: 1/3 */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-structure .industry-categories{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-radius: 4px;
}

.team-structure .job-type-categories {
    display: block;
    grid-template-columns: repeat(1, 1fr);
    border-radius: 4px;
}

.team-structure .job-type-categories .category-box {
    margin-top: 20px;
    min-height: 300px;
}

.team-structure .job-type-categories .category-box:first-of-type {
    margin-top: 0;
}


.team-structure .job-type-categories .category-box{
    background-color: rgba(179, 122, 63, 0.2);
}

.team-structure .team-category-header {
    grid-column: 1 / -1;
    background-color: #002255; 
    color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 4px;
    text-align: center;
    height: fit-content; 
}

.job-type-categories .team-category-header {
    background-color: #000077;
}
   
.team-structure .team-category-header h4 {
    font-size: 16px; /* Figma style_3M03LJ */
    font-weight: 350;
    line-height: 1.4;
    letter-spacing: -2%;
    color: #FFFFFF;
    margin-bottom: 0;
}

.team-structure .category-box {
    background-color: rgba(167, 198, 237, 0.3);
    border-radius: 4px;
    padding: 20px;
    text-align: left;
    min-height: 300px;
}

.team-structure .job-type-categories .category-box {
    padding: 20px;
    background: #F3F3FA;
}

.team-structure .category-box h4 {
    font-size: 16px; 
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -2%;
    color: #000000;
    margin-bottom: 15px;
}


.team-structure .category-box ul {
    list-style: none;
    padding: 0;
}

.team-structure .category-box li {
    font-size: 14px; 
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -2%;
    color: #333333;

}

.team-structure .note {
    font-size: 16px; /* Figma style_K9RKD4 */
    font-weight: 350;
    line-height: 1.5;
    letter-spacing: -2%;
    color: #333333;
    text-align: right;
    margin-top: 20px;
}

/* Network Section */
.network {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.network .container {
    text-align: center;
    max-width: none;
    padding: 0 ;
}

.network .network-tag {
    font-size: 18px; /* Figma style_6F2L9S */
    font-weight: 350;
    letter-spacing: -2%;
    color: #00A9E0;
    margin-bottom: 10px;
}

.network .network-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.network .network-title .number {
    font-size: 100px; /* Figma style_6ZTNYR */
    font-weight: 700;
    letter-spacing: -2%;
    color: #002255;
    margin-right: 20px;
}

.network .network-title h3 {
    font-size: 40px; 
    font-weight: 700;
    line-height: 1.2;
    color: #002255;
}

.network .network-description {
    font-size: 16px; 
    font-weight: 400;
    line-height: 1.4;
    color: #333333;
    max-width: 1037px;
    margin: 0 auto 40px auto;
}

.network .world-map {
    margin-bottom: 40px;
}

.network .world-map img {
    max-width: 800px;
    height: auto;
}

.network .network-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    background: url('img/network_bg.png') center;
    background-size: cover;
    padding: 100px 0;
    flex-wrap: wrap;
}

.network .domestic-network,
.network .overseas-network {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 30px 40px;
    text-align: left;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #002255;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.network .network-type {
    font-size: 16px; /* Figma style_8SMYRY */
    font-weight: 500;
    color: #333;
    padding-left: 20px;
    display: block;
}

.network .network-count {

}

.network .network-count .number {
    font-size: 60px; 
    font-weight: 700;
    color: #002255;
    line-height: 1;
}

.network .network-count .unit {
    font-size: 18px; 
    font-weight: 400;
    line-height: 1.333;
    letter-spacing: -2%;
    color: #002255;
}

.network .locations {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
}

.network .note {
    font-size: 16px; 
    font-weight: 350;
    line-height: 1.5;
    color: #333333;
    text-align: right;
    margin: 10px 20px 0 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* ... existing media queries ... */

    .network .network-title {
        flex-direction: column;
    }

    .network .network-title .number {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .network .network-details {
        flex-direction: column;
        align-items: center;
    }

    .network .domestic-network,
    .network .overseas-network {
        width: 80%;
    }
}

/* Fixed Contact Button */
#fixed-contact-button-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    visibility: hidden; /* Hidden by default, but occupies space */
    
}
#fixed-contact-button-wrapper.is-visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.5); /* White background with 0.5 opacity */
    padding: 20px ;
    backdrop-filter: blur(5px); 
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    bottom: 0;  
}

#fixed-contact-button-wrapper .js-fixed-button {
    height: 60px;
    font-size: 18px;
    padding: 15px 30px;
    width: 300px;
}

/* Responsive adjustments for fixed button */
@media (max-width: 768px) {
    #fixed-contact-button-wrapper {
        bottom: 0;
        width: 100%;
        text-align: center;
        border-radius: 0%;
        opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.5); /* White background with 0.5 opacity */
    padding: 10px 20px; /* Add some padding around the button */
    backdrop-filter: blur(5px); 
    }

    #fixed-contact-button-wrapper .js-fixed-button {
        min-width: unset;
        width: 240px;
        font-size: 16px;
        height: 50px;
        margin: 0 auto
    }
}

@media (max-width: 768px) {
    /* ... existing media queries ... */
    .network .network-title h3 {
        font-size: 32px;
    }

    .network .network-description {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
    }

    .network .domestic-network,
    .network .overseas-network {
        width: 90%;
        padding: 20px;
    }

    .network .network-count .number {
        font-size: 48px;
    }

    .network .network-count .unit {
        font-size: 16px;
    }

    .network .locations {
        font-size: 14px;
        text-align: center;
    }

    .network .domestic-network,
    .network .overseas-network {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 30px 40px;
    text-align: left;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #002255;
    align-items: center;
    display: block;
    justify-content: center;
    gap: 50px;
}
}

@media (max-width: 480px) {
    /* ... existing media queries ... */

    .network .network-title h3 {
        font-size: 28px;
    }

    .network .network-count .number {
        font-size: 40px;
    }

    .network .network-count .unit {
        font-size: 18px;
    }

}


/* Story Section */
.story {
    padding: 80px 0;
    background: url('img/story_bg.png') 100%;
    background-position: top;
    background-size:contain;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}


.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, rgba(0, 34, 85, 0.5) 0%, rgba(0, 34, 85, 0.4) 80%, rgba(0, 34, 85, 0.7) 100%); /* Figma fill_WCD2H1 */
    z-index: 0;
}

.story .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.story .story-tag {
    font-size: 18px; /* Figma style_QOTV62 */
    font-weight: 300;
    letter-spacing: 5%;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.story h2 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -2%;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.story .story-intro {
    font-size: 16px; /* Figma style_5PB1HY */
    font-weight: 350;
    letter-spacing: -2%;
    color: #FFFFFF;
    margin-bottom: 60px;
}

.story-card {
    
    color: #333333;
    border-radius: 4px;
    padding: 0 0 40px 0;
    text-align: left;
    max-width: 1200px; /* Figma layout_XFPMUY width */
    margin: 20px auto 20px auto;
}

.story-card-header {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    background: #002255;
    position: relative;
    padding: 20px;  
}

.story-card-header img {
    width: 350px; 
    position: absolute;
    top: 30px;
    left: 40px;
}

.story-card-title h3 {
    font-size: 28px; 
    font-weight: 500;
    line-height: 1.5;
    color: #FFF;
    margin-bottom: 0px;
    padding: 20px 20px 20px 400px;  
}

.story-card-title h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: #FFF; /* Figma fill_8M6S7E */
    margin-top: 30px;
}

.story-card-title p {
    font-size: 16px; /* Figma style_FUXOKL */
    font-weight: 350;
    line-height: 1.5;
    color: #FFF;
    padding: 10px 20px 20px 400px;
}

.story-card-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
    padding: 40px 40px 50px;
    background-color: #FFFFFF;
}

.story-card-body .challenge,
.story-card-body .requirement,
.story-card-body .point {
    flex: 1;
    min-width: 300px;
}


.story-card-body .point {
    flex-basis: 100%;
}
.story-card-body h4 {
    font-size: 24px; /* Figma style_4V9Y5S */
    font-weight: 700;
    letter-spacing: -2%;
    color: #002255;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    border-left: 10px solid #002255; 
}

.story-card-body .point h4 {
    border-left: 10px solid #00a9e0; 
    margin-top: 20px;
    color: #00a9e0;
}


.story-card-body .challenge h4::before,
.story-card-body .requirement h4::before {
    background-color: #002255; 
}

.story-card-body p,
.story-card-body ul {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -2%;
    color: #333333;
}

.story-card-body ul {
    list-style: disc;
    padding-left: 20px;
}

.story-card-body .point ul {
    list-style: disc;
    padding-left: 20px;
}

.story-card-body ul li {
    margin-bottom: 8px;
}

.story-card-body .point ul li::marker {
    color: #00a9e0;
}

.story-card-body .point p {
    font-size: 16px; 
    font-weight: 700;
    line-height: 1.8;
}

.story-card-body .point ul li {
    font-size: 16px; 
    font-weight: 700;
}

.story-card-footer {
    text-align: center;
    padding-top: 30px;
}

.story-card-footer p {
    font-size: 32px; 
    font-weight: 700;
    line-height: 1.4;
    color: #FFF;
    background: url('img/arrow_g.svg') no-repeat top center;
    padding-top: 40px;
}



/* Process Section */
.process {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.process .container {
    text-align: center;
}

.process .process-tag {
    font-size: 18px; 
    font-weight: 350;
    letter-spacing: -2%;
    color: #00A9E0;
    margin-bottom: 10px;
}

.process h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 75px; 
    top: 150px;
    height: calc(100% - 300px); 
    border-left: 2px dashed #0E034C;
    z-index: 0;
}

.process-step {
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 1;
}

.process-step .step-number {
    width: 150px; /* Figma layout_2857ON width */
    height: 150px; /* Figma layout_2857ON height */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px; /* Figma style_TL12BQ */
    font-weight: 700;
    letter-spacing: 2%;
    color: #002255;
    margin-right: 60px;
    flex-shrink: 0;
    flex-direction: column;
    background: #FFF;
    border: 1px solid #002255; 
}

.process-step:nth-child(5) .step-number {
    background: linear-gradient(180deg, rgba(220, 174, 99, 1) 0%, rgba(144, 120, 62, 1) 100%);
    border: none;
}

/*
.process-step:nth-child(1) .step-number { background-color: #61A1F0; } 
.process-step:nth-child(1) .step-number { background-color: #307FE2; } 
.process-step:nth-child(2) .step-number { background-color: #1060C3; } 
.process-step:nth-child(3) .step-number { background-color: #303AB2; } 
.process-step:nth-child(4) .step-number { background-color: #000077; } 
.process-step:nth-child(5) .step-number { background-color: #00a9e0; }
 */


.process-step h3 {
    font-size: 16px; /* Figma style_UFBCG4, style_RDQGJA */
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -2%;
    display: block;
    text-align: center;
    color: #002255;
}

.process-step:nth-child(5) h3 {
    color: #FFF;
}

.process-step p {
    font-size: 16px; /* Figma style_GLP4L4, style_RB2BXT */
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -2%;
    color: #333333;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.faq .container {
    text-align: center;
}

.faq .faq-tag {
    font-size: 18px; /* Figma style_6F2L9S */
    font-weight: 350;
    letter-spacing: -2%;
    color: #00A9E0;
    margin-bottom: 10px;
}

.faq h2 {
    font-size: 32px; /* Figma style_SLMEYZ */
    font-weight: 700;
    letter-spacing: -2%;
    color: #000000;
    margin-bottom: 60px;
}

.faq-items {
    max-width: 1000px; 
    margin: 0 auto 60px auto;
}

.faq-item {
    background-color: #E8E8E8;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}


.faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    cursor: pointer;
    background-color: #E8E8E8;
    border-radius: 4px;
}

.faq-item .faq-question h3 {
    font-size: 20px;
    font-weight: 400;
    color: #002255;
    text-align: left;
}

.faq-item .faq-question span {
    font-size: 48px;
    font-weight: 700;
    color: #0E034C;
}

.faq-item .faq-answer {
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 2000px; /* ユーザーの要望により2000pxに設定 */
    transition: max-height 0.3s ease-in;
    padding-bottom: 30px;
}

.faq-sub-item {
    margin-bottom: 20px;
    overflow: hidden;
    border-bottom: 1px solid #CCC;
}

.faq-sub-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.faq-sub-item .faq-sub-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px 10px;
    cursor: pointer;
    text-align: left;
    
}

.faq-sub-item .faq-sub-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-sub-item .faq-sub-question span {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -2%;
    color: #0E034C;
}

.faq-sub-item .faq-sub-answer {
    padding: 0 30px 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-sub-item.open .faq-sub-answer {
    transition: max-height 0.3s ease-in;
}

.faq-sub-item .faq-sub-answer p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    text-align: left;
    padding-bottom: 20px;
}

.faq-contact-box {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    background-color: #FFFFFF;
    padding:20px 40px;
    margin-top: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.faq-contact-box .btn.primary {
    min-width: 280px;
    height: 50px;
    font-size: 16px;
    padding: 10px 20px;
}

.faq-contact-box .phone-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-contact-box .phone-contact p {
    font-size: 12px;
    margin-bottom: 5px;
}

.faq-contact-box .phone-contact .phone-number {
    font-size: 36px;
    font-weight: 700;
    color: #0E034C;
    margin: 0 auto;
    background: url('img/phone_icon.svg') no-repeat left center;
    background-size: 35px;
    padding-left: 45px;
    padding-bottom: 0;
}

.faq-contact {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 40px;
    max-width: 1028px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); 
}

.faq-contact p {
    font-size: 14px; /* Figma style_TSII5V */
    font-weight: 500;
    margin-bottom: 10px;
}

.faq-contact .phone-number {
    font-size: 32px; /* Figma style_X86YSA */
    font-weight: 700;
    color: #0E034C;
    margin-bottom: 20px;
}

/* Other Services Section */
.other-services {
    padding: 80px 0;
    background-color: rgba(185, 217, 235, 0.65); /* Figma fill_2BF1WH */
}

.other-services .container {
    text-align: center;
}

.other-services .other-tag {
    font-size: 18px; /* Figma style_W9XMAU */
    font-weight: 500;
    letter-spacing: -2%;
    color: #307FE2;
    margin-bottom: 10px;
}

.other-services h2 {
    font-size: 32px; /* Figma style_MIQ0HU */
    font-weight: 700;
    letter-spacing: -2%;
    color: #333333;
    margin-bottom: 20px;
}

.other-services .other-intro {
    font-size: 18px; 
    font-weight: 400;
    color: #333333;
    margin-bottom: 60px;
}

.service-items {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.service-item {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    height: 28  0px;
    justify-content: center;

}

.service-item img {
    width: 70%;
    margin-bottom: 20px;
}


.service-item:nth-child(2) img {
    width: 40%;
}

.service-item:nth-child(3) img {
    margin: 20px 0 30px;
}


.service-item h3 {
    font-size: 16px; /* Figma style_51D1GX */
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -2%;
    color: #666666;
}

/* Footer */
footer {
    background-color: #002255;
    color: #FFFFFF;
    padding: 30px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-content {
    background-color: #FFFFFF;
    padding: 40px 20px;
    border-radius: 4px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -2%;
    color: #FFFFFF;
    margin-bottom: 0;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-buttons .btn {
    min-width: 422.6px;
    height: 60px;
}

footer p {
    font-size: 14px; 
    font-weight: 400;
    line-height: 2;
}

.hidden-row {
    display: none;
}

.footer-links a{
    margin-right: 20px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navigation .logo p {
        display: none;
    }

    .navigation .contact-info .phone-number {
        font-size: 28px;
    }

    .mv-content h1 {
        font-size: 32px;
    }

    .mv-content .buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        min-width: unset;
    }

    .points .point-items {
        flex-wrap: wrap;
        justify-content: center;
    }

    .point-title{
        width: 100%;
        flex-wrap: nowrap;
        display: block;
    }

    .point-title .number {
        font-size: 65px;
        font-weight: 700;
        color: #002255;
        margin-right: 20px;
        width: 100%;
    }

    .point-title h3{
        font-size: 28px;
        width: 100%;
    }

    .achievement-data .container {
        text-align: center;
        position: relative;
    }
    .achievement-data h2 {
        padding-left: 20px;
    }

    .achievement-data h2::before {
        display: none;
    }

    .achievement-data .filter-radios {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .achievement-data .filter-radios label {
        font-size: 16px;
    }

    .achievement-data th,
    .achievement-data td {
        padding: 10px;
        font-size: 18px;
    }

    .team-structure .team-title {
        flex-direction: column;
    }

    .team-structure .team-title .number {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .team-structure .team-categories-wrapper {
        grid-template-columns: 1fr;
    }

    .team-structure .industry-categories,
    .team-structure .job-type-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-structure .category-box {
        width: 100%;
    }

    .story-card-header {
        flex-direction: column;
        text-align: center;
    }

    .story-card-title h3::after {
        content: '';
        display: block;
        width: 50px;
        height: 1px;
        background-color: #FFF;
        margin-top: 30px;
        margin-left: 40%;
    }

    .story-card-header img {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .story-card-body {
        flex-direction: column;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .faq-item .faq-question {
        padding: 20px;
    }

    .faq-item .faq-question h3 {
        font-size: 16px;
    }

    .faq-item .faq-question span {
        font-size: 32px;
    }

    .service-items {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 80%;
        max-width: 300px;
    }

    .footer-title {
        font-size: 32px;
    }

    .footer-buttons .btn {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .pc{
        display: none;
    }

    .sp{
        display: block;
    }

    .navigation {
        padding: 0;
        border-bottom: 0;
    }

    .navigation .contact-info p {
        display: none;
    }

    .navigation .contact-info .phone-number {
        font-size: 24px;
    }

    .mv {
        position: relative;
        height: 320px;
        overflow: hidden;
    }

    .mv-content {
        padding-left: 0;
        align-items: center;
    }

    .mv-content h1 {
        font-size: 28px;
    }

    .mv-content .buttons {
        display: flex ;
        gap: 10px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .btn {
        min-width: unset;
    }

    .points {
        padding: 30px 0;
    }

    .points h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .points .point-items{
        display: block;
    }

    .points .point-item {
        flex: 1;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%), #002255;
        border-radius: 2px;
        padding: 0px;
        text-align: center;
        color: #FFFFFF;
        position: relative;
        display: flex;
        flex-direction: row; /* Changed to row */
        justify-content: start;
        align-items: center;
        width: 100%;
        height: auto;
        flex-wrap: nowrap;
        margin-bottom: 1px;
    }

    .points .point-item span {
        font-size: 32px;
        padding: 10px 10px 10px 20px;
        margin-right: 10px;
        white-space: nowrap;
        border-bottom: none;
        width: 80px;
        margin-bottom: 0;
    }

    .points .point-item span::after {
        content: '';
        width: 1px;
        height: 24px;
        border-right: 1px solid #FFFFFF;
        margin-left: 20px;
        display: inline-block;
    }

    .points .point-item h3{
        text-align: left;
    }

    .point-title{
        width: 100%;
        flex-wrap: nowrap;
        display: block;
    }

    .point-title .number {
        font-size: 65px;
        font-weight: 700;
        color: #002255;
        margin-right: 20px;
        width: 100%;
    }

    .point-title h3{
        font-size: 24px;
        width: 100%;
    }

    .achievement-data {
        padding: 30px 0;
        background-color: #FFFFFF;
    }

    .team-description {
        font-size: 14px; 
        font-weight: 400;
        line-height: 1.5;
        color: #333333;
        margin: 0 auto 20px auto;
    }

    .achievement-data h2 {
        font-size: 32px;
    }

    .achievement-data .filter-radios {
        display: flex;
        align-items: flex-start;
        padding: 20px;
        padding-right: 10px;
        flex-direction: row;
        margin-bottom: 20px;
    }

    .achievement-data .filter-radios label {
        font-size: 14px;
        width: 46%;
        text-align: left;
    }

    .achievement-data h4 {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-top: 40px;
        margin-bottom: 30px;
        text-align: left;
        padding-left: 18px;
        position: relative;
        border-left: 8px solid #002255;
    }

    .achievement-data th,
    .achievement-data td {
        font-size: 16px;
    }

    .team-structure {
        padding: 40px 0;
        background-color: #FFFFFF;
        align-items: start;
    }

    .team-structure .team-title h3 {
        font-size: 32px;
    }

    .team-structure .team-description {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        color: #333333;
        max-width: 1037px;
        margin: 0 auto 40px auto;
    }

    .team-structure .team-categories-wrapper {
        grid-template-columns: 1fr;
    }

    .team-structure .industry-categories,
    .team-structure .job-type-categories {
        grid-template-columns: 1fr;
    }

    .team-structure .category-box {
        width: 100%;
        min-height: auto;
    }

    .team-structure .job-type-categories .category-box {
        min-height: auto;
    }

    .team-structure .note {
        font-size: 14px;
        font-weight: 350;
        line-height: 1.5;
        color: #333333;
        text-align: right;
        margin-top: 20px;
    }

    .readmore-button-container.is-visible {
        position: absolute;
        bottom: 0;
        width: 90%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        height: 100px;
    }

    .network {
        padding: 50px 0;
        background-color: #f8f8f8;
    }

    .network .network-count {
        display: flex;
        align-items: baseline;
        margin-bottom: 20px;
        justify-self: center;
    }

    .network .network-count .number {
        font-size: 48px;
        font-weight: 700;
        color: #002255;
        margin-right: 5px;
        line-height: 1;
    }

    .network .network-count .unit {
        font-size: 14px;
    }

    .network .network-type {
        font-size: 16px;
        font-weight: 500;
        padding-left: 0;
        text-align: center;
        margin-right: 5px;
    }

    .network .network-details {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 20px;
        padding: 40px 0;
    }

    .network .note {
        font-size: 14px;
        font-weight: 350;
        line-height: 1.5;
        color: #333333;
        text-align: right;
        margin-top: 10px;
    }

    .network .world-map img {
        max-width: 100%;
        height: auto;
    }


    .story {
        padding: 60px 0 0;

    }

    .story h2 {
        font-size: 28px;
    }

    .story .story-intro {
        font-size: 14px;
        font-weight: 350;
        letter-spacing: -2%;
        color: #FFFFFF;
        margin-bottom: 60px;
    }

    .story-card {
        padding: 0px;
        margin-bottom: 120px;
    }

    .story-card-header {
        display: block;
    }

    .story-card-header img {
        width: 100%;
        position: relative;
        margin: 0 auto -60px auto;
        top: -60px;
        left:auto;

    }

    .story-card-title h3 {
        font-size: 17px;
        padding: 20px 0px 0;
        font-weight: 500;
    }

    .story-card-title h3::after {
        content: '';
        display: block;
        width: 50px;
        height: 1px;
        background-color: #FFF; 
        margin-top: 30px;
        margin-left: 40%;
    }
    
    .story-card-title p {
        font-size: 14px; /* Figma style_FUXOKL */
        font-weight: 350;
        line-height: 1.5;
        color: #FFF;
        padding: 20px 10px;
        text-align: left;
        margin: 0 auto;
    }
    
    .story-card-body {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 20px;
        padding: 30px 24px 30px;
        background-color: #FFFFFF;
    }
    
    .story-card-body .challenge,
    .story-card-body .requirement,
    .story-card-body .point {
        flex: 1;
        min-width: 100%;
    }


    .story-card-body h4 {
        font-size: 16px;
    }

    .story-card-body p {
        font-size: 14px;
        line-height: 1.5;
    }

    .story-card-body ul li {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .story-card-footer p {
        font-size: 28px;
        line-height: 1.5;
    }

    .story-card-footer {
        text-align: center;
        padding-top: 20px;
    }

    .process h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .process-step .step-number {
        width: 120px;
        height: 120px;
        font-size: 32px;
    }

    .process-step h3 {
        font-size: 16px;
    }

    .process-step p {
        font-size: 16px;
        max-width: 90%;
    }

    .faq {
        padding: 40px 0;
        background-color: #FFFFFF;
    }

    .faq h2 {
        font-size: 28px;
    }

    .faq-sub-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #CCC;
        padding-bottom: 20px;
    }

    .faq-sub-item .faq-sub-question h4 {
        font-size: 16px;
        font-weight: 600;
        color: #002255;
    }

    .faq-item.open .faq-answer {
        transition: max-height 0.3s ease-in;
        padding-bottom: 20px;
        padding: 0 30px;
    }

    .faq-sub-item .faq-sub-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        cursor: pointer;
        text-align: left;
    }

    .faq-sub-item .faq-sub-answer {
        padding: 0;
        max-height: 0;
        transition: max-height 0.3s ease-out;
    }

    .faq-sub-item .faq-sub-answer p {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        color: #333333;
        text-align: left;
    }
    
    .faq-item .faq-question h3 {
        font-size: 18px;
    }

    .faq-item .faq-question span {
        font-size: 32px;
    }

    .faq-contact-box {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        background-color: #FFFFFF;
        padding: 20px;
        margin-top: 20px;
    }

    .faq-contact-box .btn.primary {
        min-width: 100%;
        height: 50px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .faq-contact .phone-number {
        font-size: 28px;
    }

    .faq-contact-box .phone-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        
    }
    
    .faq-contact-box .phone-contact p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .faq-contact-box .phone-contact .phone-number {
        font-size: 24px;
        font-weight: 700;
        color: #0E034C;
        margin: 0 auto 10px;
        background: url('img/phone_icon.svg') no-repeat left center;
        background-size: 30px;
        padding-left: 40px;
    }

    .other-services {
        padding: 50px 0;
        background-color: rgba(185, 217, 235, 0.65);
    }

    .other-services .other-intro {
        font-size: 14px;
        font-weight: 400;
        color: #333333;
        margin-bottom: 30px;
    }

    .other-services h2 {
        font-size: 28px;
    }

    .service-item h3 {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: -2%;
        color: #666666;
    }

    .service-item img {
        max-height: 80px;
        margin-bottom: 20px;
    }

    .footer-title {
        font-size: 24px;
        font-weight: 700;
    }

    .footer-links a{
        margin-right: 10px;
        font-size: 14px;
    }

    footer p {
        font-size: 12px; 
    }

    #fixed-contact-button-wrapper {
        opacity: 1;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        background-color: rgba(255, 255, 255, 0.5);
        padding: 20px 10px;
        backdrop-filter: blur(5px);
        display: flex;
        gap: 10px;
        width: 100%;
        justify-content: center;
        bottom: 0;
        right: 0;
    }

    #fixed-contact-button-wrapper.is-visible {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        background-color: rgba(255, 255, 255, 0.5);
        padding: 15px 10px;
        backdrop-filter: blur(5px);
        display: flex;
        gap: 10px;
        width: 100%;
        justify-content: center;
        bottom: 0;
        right: 0;
    }

    #fixed-contact-button-wrapper a {
        min-width: unset;
        width: 47%;
        font-size: 14px;
        height: 50px;
        margin: 0 auto;
        line-height: 1.3;
    }

    #fixed-contact-button-wrapper .js-fixed-button {
        min-width: unset;
        width: 47%;
        font-size: 14px;
        height: 50px;
        margin: 0 auto;
    }

   

    
}

@media (max-width: 480px) {
    .navigation .logo img {
        width: 150px;
    }

    .navigation .contact-info .phone-number {
        font-size: 16px;
    }

    .mv-content h1 {
        font-size: 24px;
        text-align: center;
    }

    .btn {
        font-size: 16px;
        padding: 10px 20px;
        height: 50px;
    }



    .points .point-item h3 {
        font-size: 16px;
    }

    .achievement-data h2 {
        font-size: 28px;
    }


    .achievement-data th,
    .achievement-data td {
        font-size: 14px;
    }

    .team-structure .team-title h3 {
        font-size: 28px;
    }

    .team-structure .category-box {
        width: 100%;
    }


    .story-card-footer p {
        font-size: 18px;
    }

    .faq-item .faq-question h3 {
        font-size: 16px;
    }

    .faq-item .faq-question span {
        font-size: 28px;
    }

    .faq-contact .phone-number {
        font-size: 24px;
    }

    .other-services h2 {
        font-size: 24px;
    }
}
