@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
}

/* ヘッダースタイル */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.contact-form{
  margin:0 auto;
}

@media (max-width: 767px) {
  .contact-form{
    padding:2.5rem 1.5rem 2.5rem 1.5rem;
    margin: 0 20px;
  }
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img{
  height:50px;
  width:auto;
}

.logo-highlight {
    color: #FF6B00;
}











/* ---------- ヘッダー ---------- */
/* 90 vh 以上スクロール時の色 */
.header.scrolled{background:#111827!important}

/* ---------- デスクトップナビ ---------- */
.nav-desktop{display:none}
@media(min-width:959px){
  .nav-desktop{display:flex;gap:1.5rem;align-items:center}
}
.nav-link{
  position:relative;padding:.6rem 0.5rem;font-weight:500;color:#fff;text-decoration:none;
  transition:color .25s;
}
.nav-link::after{
  content:"";position:absolute;left:50%;bottom:-4px;height:2px;width:0;background:#FF6B00;
  transform:translateX(-50%);transition:width .25s;
}
.nav-link:hover{color:#FF6B00}.nav-link:hover::after{width:80%}
.nav-button{
  display:inline-block;padding:.7rem 1.6rem;border-radius:9999px;font-weight:700;
  color:#fff;background:#FF6B00;text-decoration:none;
  transition:background .25s,transform .25s,box-shadow .25s;
}
.nav-button:hover{background:#e05d00;transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,.15)}

/* ---------- ハンバーガー ---------- */
.hamburger{
  position:relative;width:32px;height:24px;
  display:flex;flex-direction:column;justify-content:space-between;
  background:none;border:none;padding:0;cursor:pointer;z-index:1300;
}
.hamburger .line{
  width:100%;height:3px;background:#fff;border-radius:3px;
  transition:transform .3s ease,opacity .3s ease,background .3s ease;
}
/* × 形 */
.hamburger.active .line:nth-child(2){opacity:0}
.hamburger.active .line:nth-child(1){
  transform:translateY(10.5px) rotate(45deg);background:#111827;
}
.hamburger.active .line:nth-child(3){
  transform:translateY(-10.5px) rotate(-45deg);background:#111827;
}
/* PC では非表示 */
@media(min-width:959px){.hamburger{display:none}}

/* ---------- モバイルメニュー ---------- */
.mobile-menu{
  position:fixed;top:0;right:-80%;width:80%;max-width:320px;height:100vh;padding-top:4.5rem;
  background:#fff;overflow-y:auto;
  transition:right .35s ease;box-shadow:-5px 0 15px rgba(0,0,0,.1);
  z-index:1200;
}
.mobile-menu.active{right:0}
.mobile-link{
  display:block;padding:1rem 2rem;font-weight:500;color:#333;text-decoration:none;
  border-bottom:1px solid #f0f0f0;transition:background .25s,color .25s;
}
.mobile-link:hover{background:#fafafa;color:#FF6B00}
.mobile-link.contact{font-weight:700;color:#FF6B00}

/* ---------- オーバーレイ ---------- */
.menu-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.65);backdrop-filter:blur(3px);
  opacity:0;visibility:hidden;transition:opacity .35s ease;z-index:1100;
}
.menu-overlay.active{opacity:1;visibility:visible}

/* ---------- スクロールロック ---------- */
.body-lock{overflow:hidden;touch-action:none}














.highlight {
    color: #FF6B00;
    font-weight: 900;
}

.catchphrase {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
}

.catchphrase-emphasis {
    font-size: 4.5rem;
    display: block;
    margin: 0.5rem 0;
    color: #FF6B00;
}

.cta-button5 {
    background-color: #FF6B00;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button5:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #FF8534;
}

.section-title {
    position: relative;
    display: inline-block;

    width: 100%;
}



.problem-card {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    border-radius: 15px;
}






.cta-container {
    margin: 0 auto;
    padding: 0;
    position: relative;
    margin: 0 auto 0 auto;
}

.cta-inner {
    padding: 40px 30px;
    background: linear-gradient(120deg, #FF6B00 0%, #FF8F3F 100%);
    position: relative;
    z-index: 1;
    color: white;
    /* box-shadow: 0 15px 30px rgba(255, 107, 0, 0.2); */
    overflow: hidden;
}

.cta-inner::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.cta-inner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

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

.cta-header {
    text-align: center;
    /* margin-bottom: 30px; */
}

.cta-badge {
    display: inline-block;
    background-color: white;
    color: #FF6B00;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-highlight {
    position: relative;
    display: inline-block;
    color: white;
    z-index: 1;
    font-weight: 900;
}

.cta-message {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 5px auto;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 200px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    line-height: 1.1;
}

.stat-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.cta-button-container {
    text-align: center;
    margin-top: 35px;
    position: relative;
}

.cta-button {
    position: relative;
    background-color: white;
    color: #FF6B00;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tag-line {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    text-align: center;
}

@media (max-width: 767px) {
    .cta-inner {
        padding: 30px 20px;
    }
    
    .stats-container {
        /* grid-template-columns: 1fr;
        max-width: 280px; */
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-button {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .stat-item {
    width: 100%;
}
}



        
@media (max-width: 480px) {

    
    .stats-container {
        grid-template-columns: 1fr;
        /* max-width: 280px; */
        margin-left: 0;
        margin-right: 0;
    }


    .stat-item {
    width: 100%;
}
}








.problem-cards{
margin-bottom:60px;
width: 100%;
    text-align: center;
}

.problem-img{
}

.problem-img img{
max-height:250px;
margin: 0 auto;
}



/* フューチャー */
.feature-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 50px;
  }

  @media (max-width: 767px) {
    .feature-container {
      padding: 1rem;
    }
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-top: 3rem;
  }
  
  @media (min-width: 768px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }
  
  .feature-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: visible;
    position: relative;
    padding: 40px 30px 35px;
    margin-top: 25px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF6B00, #FF9248);
    z-index: 2;
  }
  
  .feature-number {
    position: absolute;
    top: -22px;
    left: -22px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF9248 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
    z-index: 3;
  }
  
  .feature-number::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
  }
  
  .feature-card h3 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 15px;
    padding-left: 10px;
  }
  
  .feature-card h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FF9248);
    bottom: 0;
    left: 0;
    border-radius: 3px;
  }
  
  .feature-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.7;
  }
  
  .feature-card strong {
    font-weight: 700;
    color: #333;
  }
  
  .feature-card .highlight {
    position: relative;
    color: #FF6B00;
    font-weight: 700;
    display: inline-block;
    padding: 0 2px;
  }
  

  
  .feature-icon {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 130px;
    height: 130px;
    opacity: 0.1;
    z-index: 0;
  }
  
  /* Custom icons for each feature */
  .feature-card:nth-child(1) .feature-icon {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FF6B00' d='M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
  }
  
  .feature-card:nth-child(2) .feature-icon {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FF6B00' d='M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
  }
  
  .feature-card:nth-child(3) .feature-icon {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FF6B00' d='M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
  }
  
  /* Highlighted information box */
  .info-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.1) 100%);
    border-left: 3px solid #FF6B00;
    border-radius: 6px;
    padding: 14px 16px;
    margin-top: 20px;
    position: relative;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.05);
  }
  
  .info-highlight strong {
    color: #FF6B00;
  }
  
  /* Responsive adjustments */
        @media (max-width: 768px) {
    .feature-card {
      padding: 35px 25px 30px;
      margin-top: 30px;
    }
    
    .feature-number {
      width: 55px;
      height: 55px;
      font-size: 26px;
      top: -22px;
      left: -18px;
    }
  }



  .step-img{
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
  }
  .step-img img{
    height: 130px;
    width: auto;
    margin-left: auto;
    margin-right: 1rem;
  }




.process-step {
    position: relative;
    padding-bottom: 2rem;
}

.process-step:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 2px;
    height: 40px;
    background-color: #FF6B00;
}

.process-icon {
    background: #FF6B00;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1.5rem;
    font-size: 1.5rem;
}

.case-study {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-header {
    background: #333;
    color: white;
    padding: 1.5rem;
}

.case-content {
    padding: 1.5rem;
}

.result-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.result-icon {
    color: #FF6B00;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}


.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.feature-list .yes {
    color: #28a745;
    margin-right: 0.5rem;
}

.feature-list .no {
    color: #dc3545;
    margin-right: 0.5rem;
}

.faq-section{
  margin-inline:auto;
  padding:64px 0;
  background-color:#F9FAFB
}

.faq-heading-wrapper{
  text-align:center;
  margin-bottom:32px;
}

.faq-heading{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-question {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 1rem;
    color: #666;
}


.faq-img {
    text-align: center;
    margin:3em 0 0 0;
  }
  .faq-img img {
    max-width: 250px;;
    height: auto;
    display: inline-block;
  }
/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .catchphrase {
        font-size: 2.2rem;
    }
    
    .catchphrase-emphasis {
        font-size: 3rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}



.k-cta{
    margin: 7em 0 0 0;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

/* 問い合わせフォーム */

.smalltext{
    font-size: 0.9em;
}

.highlight-box {
    font-size: 1.125rem;
    font-weight: 600;

    padding: 1rem 1.5rem;
    border-radius: 1rem;
    display: inline-block;
    margin-bottom: 2rem;
  }
  
  .underline-orange {
    background: linear-gradient(transparent 50%, #FF6B00 50%);
  }
  .background-orange {
    display: inline-block;
    padding-bottom: 2px;
    background: #FF6B00;
    display: inline-block;
    margin-right:2px;
    font-weight: 700;
  }

    .space-y-6{
        margin:2em 0 0 0;
    }
        /* 固定ボタン */
        .fixed-cta {
            position: fixed;
            z-index: 100;
            transition: all 0.3s ease;
            font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
        }
        
        .cta-button2 {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #FF6B00, #FF8C38);
            color: white;
            font-weight: bold;
            text-decoration: none;
            border-radius: 20px;
            padding: 12px 32px 12px 20px;
            text-align: center;
            line-height: 1.3;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .cta-button2:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
            background: linear-gradient(135deg, #FF7E1F, #FFA562);
        }
        
        .cta-button2 .icon {
            margin-right: 12px;
            font-size: 1.3em;
            /* background: rgba(255, 255, 255, 0.2); */
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cta-button2 .main-text {
            font-size: 1.15em;
            /* margin-bottom: 4px; */
            font-weight: 800;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button2 .sub-text {
            font-size: 0.8em;
            opacity: 0.95;
            letter-spacing: 0.3px;
        }
        
        .cta-button2 .special-badge {
            background: white;
            color: #FF6B00;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.85em;
            display: inline-block;
            margin: 2px 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            letter-spacing: 0.5px;
        }
        
        .strong-text {
            font-weight: 800;
            font-size: 1.25em;
            text-decoration: underline;
            text-underline-offset: 2px;
            text-decoration-thickness: 2px;
        }
        
        .cta-content {
            display: flex;
            flex-direction: column;
        }
        
        /* PC表示 (768px以上) */
        @media (min-width: 768px) {
            .fixed-cta {
                bottom: 30px;
                right: 30px;
                width: auto;
            }
            
            .cta-button2 {
                border-radius: 20px;
                min-width: 300px;
                animation: pulse 2s infinite;
                background-size: 200% 200%;
                animation: pulse 2s infinite, shine 6s linear infinite;
            }
            
            .cta-button2::before {
                content: '';
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
                z-index: -1;
                border-radius: 12px;
                filter: blur(10px);
                opacity: 0;
                transition: opacity 0.3s;
            }
            
            .cta-button:hover::before {
                opacity: 0.7;
            }
        }
        
        /* スマホ表示 (768px未満) */
        @media (max-width: 767px) {
            .fixed-cta {
                bottom: 0;
                left: 0;
                width: 100%;
                opacity: 0;
                pointer-events: none;
                transform: translateY(100%);
                transition: opacity .3s ease, transform .3s ease;
            }
            
            .cta-button2 {
                border-radius: 0;
                width: 100%;
                /* padding: 16px 15px; */
                padding: 16px 36px 16px 15px;
                border-top: 2px solid rgba(255, 255, 255, 0.3);
                border-bottom: none;
                border-left: none;
                border-right: none;
                background: linear-gradient(90deg, #FF6B00, #FF8C38);
            }
            
            .cta-button2::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 30px;
                height: 100%;
                background: rgba(255, 255, 255, 0.2);
                transform: skewX(-25deg);
                animation: slide 2s infinite;
            }

              /* 100vh スクロール後に JS が付けるクラス */
            .fixed-cta.show {
              opacity: 1;
              pointer-events: auto;
              transform: translateY(0);
            }
            
        }
        
        /* パルスアニメーション */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(255, 107, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
            }
        }
        
        /* キラキラエフェクト */
        @keyframes shine {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* フッタースタイル */
        .footer {
            background-color: #111827;
            color: white;
            padding: 2rem 0;
        }

        @media (max-width: 767px) {
          .footer {
            padding: 0 0 9rem 0;
        }
        }
        
        .footer-link {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
        }
        
        .footer-link:hover {
            color: #FF6B00;
        }
        
        /* アニメーション効果 */
        .footer img {
            transition: transform 0.3s ease;
        }
        
        .footer img:hover {
            transform: scale(1.05);
        }

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-col {
        margin-bottom: 2rem;
    }
}
















.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
  }
  
  
  .section-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0) 70%);
    z-index: -1;
    border-radius: 50%;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
  }
  
  .section-title {
    position: relative;
    display: inline-block;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    background-clip: text;
    letter-spacing: -0.02em;
    padding-bottom: 25px;
  }

  
 
  .section-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 25px auto 0;
    line-height: 1.8;
    font-weight: 400;
  }
  
  .emphasis {
    font-weight: 700;
    background: linear-gradient(transparent 65%, rgba(255, 107, 0, 0.7) 65%);
    padding: 0 2px;
  }
  
  .highlight-text {
    color: #FF6B00;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  

  

  .methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
    perspective: 1000px;
  }
  
  .method-category {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(255, 107, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform-style: preserve-3d;
    position: relative;
  }
   
  .method-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B00, #FF9248);
    z-index: 1;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  
  .category-header {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8F38 100%);
    color: white;
    padding: 22px 25px;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
    height: 105px;
  }
  
  .category-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 80%);
    pointer-events: none;
  }

  .category-icon-box{
    width:50px;
    margin-right: 12px;
  }
  
  .category-icon {
    width: 42px;
    height: 42px;

    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }
  
  .category-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 107, 0, 0.3);
  }
  
  .category-icon svg {
    width: 20px;
    height: 20px;
    fill: #FF6B00;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));
  }
  
  .method-list {
    padding: 25px 30px;
    position: relative;
  }
  
  .method-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    right: 50px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
  }
  
  .method-item {
    position: relative;
    padding: 16px 0 16px 28px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    font-size: 16px;
    line-height: 1.5;
    transition: transform 0.3s ease;
  }
  
  /* .method-item:hover {
    transform: translateX(5px);
  } */
  
  .method-item:last-child {
    border-bottom: none;
  }
  
  .method-item:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #FF6B00;
    border-radius: 50%;
    left: 8px;
    top: 25px;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  }
  
  .method-highlight {
    font-weight: 700;
    color: #222;
    display: block;
    margin-bottom: 3px;
  }
  
  .method-detail {
    color: #666;
    font-size: 14px;
    margin-top: 3px;
    position: relative;
    display: inline-block;
    padding-left: 10px;
  }
  
  .method-detail:before {
    content: '—';
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
  }
  
  .footer-note {
    text-align: center;
    margin-top: 80px;
    padding: 30px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8F38 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1), 0 10px 15px rgba(255, 107, 0, 0.05);
  }
  
  .footer-note::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.1;
  }

  @media (max-width: 768px) {
    .footer-note {
      padding: 30px;
    }
  }

  
  .footer-note p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    color: white;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .footer-highlight {
    background-color: #fff;
    padding: 0 3px 2px 3px;
    margin: 0 3px;
    font-weight: 700;
    color: #FF6B00;

  }
  
  .pulse-animation {
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1), 0 10px 15px rgba(255, 107, 0, 0.05);
  }
  
  
  .shadow-text {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .section-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.03) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
  }
  
  .decoration-1 {
    top: -150px;
    right: -150px;
  }
  
  .decoration-2 {
    bottom: -150px;
    left: -150px;
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 36px;
    }
    

    .counter-number {
      width: 50px;
      height: 50px;
      font-size: 24px;
    }
    
    .counter-text {
      font-size: 18px;
      margin: 0 20px;
    }
    
    .methods-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    
    .method-category:hover {
      transform: translateY(-5px) rotateX(2deg);
    }
  }



















  .service-flow-section {
    padding: 120px 20px;
    background: #f9fafb;
    position: relative;
    overflow: hidden;
  }
  
  .service-flow-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B00' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.6;
  }
  
  .service-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
  }
  

  /* .section-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #333333;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
  } */
  
  .section-title span {
    background: linear-gradient(135deg, #FF6B00, #FF9248);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
  }
  
  .section-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, #FF6B00, #FF9248);
    opacity: 0.2;
    left: 0;
    bottom: 5px;
    z-index: -1;
    border-radius: 4px;
  }
  
  .section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #777777;
  }
  































































  























          /* バナー全体のコンテナ */
          .recruit-banner-wrapper {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #ffffff, #f9f9f9);
            border-radius: 12px;
            padding: 2.5rem;
            /* max-width: 1200px; */
            margin: 80px auto 0 auto;
            position: relative;
            overflow: hidden;
            border: 1px solid #eaeaea;
            font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
        }
        

        
        /* テキストコンテナ */
        .recruit-text-area {
            flex: 1;
            padding-right: 2.5rem;
            position: relative;
            z-index: 1;
        }
        
        /* テキストのスタイル */
        .recruit-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .recruit-title span {
            color: #FF6B00;
            position: relative;
            display: inline-block;
        }
        
        .recruit-description {
            color: #555555;
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .recruit-highlight {
            color: #FF6B00;
            font-weight: 600;
            position: relative;
            display: inline;
            padding: 0 2px;
        }
        
        .recruit-highlight::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(255, 107, 0, 0.15);
            z-index: -1;
            border-radius: 4px;
        }
        
        /* 画像コンテナ */
        .recruit-image-container {
            flex: 0 0 40%;
            position: relative;
        }
        
        .recruit-image-container img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 900px) {
            .recruit-banner-wrapper {
                flex-direction: column;
                padding: 2rem;
            }
            .recruit-image-container img {
              margin:0 auto
            }
            
            .recruit-text-area {
                padding-right: 0;
            }
            
            .recruit-title {
                font-size: 1.4rem;
            }
            
            .recruit-image-container {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .recruit-banner-wrapper {
                padding: 1.5rem;
            }
            
            .recruit-title {
                font-size: 1.25rem;
            }
            
            .recruit-description {
                font-size: 1rem;
                line-height: 1.6;
            }
        }





        .k430-popup-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.7);
          backdrop-filter: blur(5px);
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 9999;
        }
      
        .k430-popup-container {
          position: relative;
          max-width: 90%;
          max-height: 90%;
        }
      
        .k430-popup-image {
          display: block;
          max-width: 500px;
          width: auto;
          height: auto;
          cursor: pointer;
        }
      
        @media (max-width: 630px){
          .k430-popup-image {
            max-width: 100%;
          }
        }

        .k430-close-button {
          position: absolute;
          top: -15px;
          right: -15px;
          width: 30px;
          height: 30px;
          background-color: #fff;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          cursor: pointer;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
          z-index: 10000;
        }
      
        .k430-close-button::before,
        .k430-close-button::after {
          content: '';
          position: absolute;
          width: 15px;
          height: 2px;
          background-color: #333;
        }
      
        .k430-close-button::before {
          transform: rotate(45deg);
        }
      
        .k430-close-button::after {
          transform: rotate(-45deg);
        }
      
        .k430-hidden {
          display: none;
        }





        .py-3{
          margin-top:3.5rem !important;
        }




        .hidden {
          display: none;
        }
        .success-message {
          background-color: #10b981;
          color: white;
          padding: 1rem;
          border-radius: 0.5rem;
          margin-bottom: 1rem;
          text-align: center;
        }
        .error-message {
          background-color: #ef4444;
          color: white;
          padding: 1rem;
          border-radius: 0.5rem;
          margin-bottom: 1rem;
          text-align: center;
        }