 /* TOPページ - 完全版CSS */
 /* リセット & ベーススタイル */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
     line-height: 1.6;
     color: #333;
     background-color: #ffffff;
 }

 html {
     scroll-behavior: smooth;
 }

 img {
     max-width: 100%;
     height: auto;
     display: block;
 }

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

 button {
     border: none;
     background: none;
     cursor: pointer;
     font-family: inherit;
 }

 /* コンテナ */
 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 1rem;
 }

 .container-md {
     max-width: 1024px;
     margin: 0 auto;
     padding: 0 1rem;
 }

 .container-sm {
     /* max-width: 768px; */
     margin: 0 auto;
     padding: 0 3rem;
 }

 /* ヒーローセクション */
 .hero {
     position: relative;
     height: 90vh;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
     overflow: hidden;
 }

 .hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     z-index: 0;
 }

 .hero-background video {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

 .hero-content {
     position: relative;
     z-index: 10;
     text-align: center;
     padding: 0 1rem;
     padding-bottom: 6rem;
 }

 .hero-content-textContainer {
     display: flex;
     flex-direction: column;
     width: 90vw;
     padding: 15px 5px;
     border-radius: 10px;
     background-color: #ffffff9c;
     position: relative;
 }

 .hero h1 {
     font-weight: bold;
     margin-bottom: 1rem;

     span {
         font-size: 1rem;
         font-weight: bold;
         color: #0a63c7;
         background-color: #f2ff00;
         border-radius: 15px;
         padding: 3px 10px;
         text-align: center;
     }

     figure {
         width: 85%;
         margin: 0 auto;
     }
 }

 .hero-tagline {
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     width: 95%;
     margin: 0 auto 2rem auto;

     div {
         background-color: #0a63c7;
         padding: 10px;
         font-size: 1.3rem;
         font-weight: bold;
         width: 48%;
         display: grid;
         grid-template-columns: 1fr 7fr;
         align-items: center;

         figure {
             max-height: 100%;
             height: 100%;
             width: auto;
         }

         p {
             font-size: 0.8em;
             line-height: 100%;
         }
     }

     .hero-highlight {
         color: #f1c413;
     }
 }

 .hero-content-badge {
     position: absolute;
     bottom: 0;
    right: -5%;
    width: 120px;
 }

 .scroll-indicator {
     position: absolute;
     bottom: -2rem;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     flex-direction: column;
     align-items: center;
     animation: bounce 2s infinite;
 }

 .scroll-indicator p {
     font-size: 0.875rem;
     margin-bottom: 0.5rem;
 }

 .scroll-indicator svg {
     width: 24px;
     height: 24px;
 }

 @keyframes bounce {

     0%,
     100% {
         transform: translateX(-50%) translateY(0);
     }

     50% {
         transform: translateX(-50%) translateY(-10px);
     }
 }

 /* セクション共通 */
 .section {
     padding: 4rem 0;
 }

 .section-gray {
     background-color: #f9fafb;
 }

 .section-title {
     font-size: 2rem;
     font-weight: bold;
     text-align: center;
     margin-bottom: 3rem;
     color: #1f2937;
 }

 /* グリッド */
 .grid {
     display: grid;
     gap: 2rem;
 }

 .grid-cols-1 {
     grid-template-columns: repeat(1, 1fr);
 }

 .grid-cols-2 {
     grid-template-columns: repeat(1, 1fr);
 }

 .grid-cols-3 {
     grid-template-columns: repeat(1, 1fr);
 }

 .grid-cols-4 {
     grid-template-columns: repeat(1, 1fr);
 }

 .grid-cols-6 {
     grid-template-columns: repeat(2, 1fr);
 }

 /* 問題カード */
 .problem-card-container {
     margin-bottom: 3rem;
 }

 .problem-card {
     background-color: #ffffff;
     padding: 2rem;
     border-radius: 0.5rem;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: box-shadow 0.3s;
 }

 .problem-card:hover {
     box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
 }

 .problem-icon {
     display: flex;
     justify-content: center;
     margin-bottom: 1rem;
 }

 .problem-icon-circle {
     background-color: #dbeafe;
     padding: 1rem;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .problem-icon-circle svg {
     width: 32px;
     height: 32px;
     color: #2563eb;
 }

 .problem-title {
     font-size: 1.25rem;
     font-weight: bold;
     text-align: center;
     margin-bottom: 1rem;
     color: #1f2937;
 }

 .problem-description {
     color: #4b5563;
     font-size: 0.875rem;
     line-height: 1.8;
 }

 .problem-description p {
     margin-bottom: 0.25rem;
 }

 /* 解決メッセージ */
 .solution-message {
     text-align: center;
 }

 .solution-box {
     display: inline-block;
     background-color: #2563eb;
     color: #ffffff;
     padding: 1rem 2rem;
     border-radius: 0.5rem;
 }

 .solution-text {
     font-size: 1.5rem;
     font-weight: bold;
 }

 /* 選ばれる理由 */
 .reasons-container {
     display: flex;
     flex-direction: column;
     gap: 3rem;
 }

 .reason-row {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 2rem;
 }

 .reason-row-reverse {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 2rem;
 }

 .reason-content,
 .reason-image {
     width: 100%;
 }

 .reason-number-container {
     position: relative;
 }

 .reason-number-bg {
     font-size: 6rem;
     font-weight: bold;
     color: #dbeafe;
     position: absolute;
     top: -2rem;
     left: -1rem;
 }

 .reason-box {
     position: relative;
     z-index: 10;
     background-color: #eff6ff;
     padding: 2rem;
     border-radius: 0.5rem;
 }

 .reason-box-inner {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
 }

 .reason-icon-circle {
     background-color: #2563eb;
     padding: 0.75rem;
     border-radius: 50%;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .reason-icon-circle svg {
     width: 24px;
     height: 24px;
     color: #ffffff;
 }

 .reason-title {
     font-size: 1.25rem;
     font-weight: bold;
     margin-bottom: 1rem;
     white-space: pre-line;
 }

 .reason-text {
     color: #374151;
     line-height: 1.8;
 }

 .reason-image img {
     width: 100%;
     height: 256px;
     object-fit: cover;
     border-radius: 0.5rem;
     box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
 }

 /* フローセクション */
 .flow-container {
     display: grid;
     grid-template-columns: repeat(1, 1fr);
     gap: 2rem;
 }

 .flow-step {
     position: relative;
     background-color: #ffffff;
     padding: 1.5rem;
     border-radius: 0.5rem;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: box-shadow 0.3s;
 }

 .flow-step:hover {
     box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
 }

 .flow-arrow {
     display: none;
 }

 .flow-icon {
     display: flex;
     justify-content: center;
     margin-bottom: 1rem;
 }

 .flow-icon-circle {
     background-color: #2563eb;
     color: #ffffff;
     border-radius: 50%;
     width: 64px;
     height: 64px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .flow-icon-circle svg {
     width: 32px;
     height: 32px;
 }

 .flow-badge {
     text-align: center;
     margin-bottom: 0.5rem;
 }

 .flow-badge span {
     display: inline-block;
     background-color: #dbeafe;
     color: #2563eb;
     padding: 0.25rem 1rem;
     border-radius: 9999px;
     font-weight: bold;
 }

 .flow-title {
     font-size: 1.25rem;
     font-weight: bold;
     text-align: center;
     margin-bottom: 0.75rem;
 }

 .flow-description {
     color: #4b5563;
     font-size: 0.875rem;
     text-align: center;
     line-height: 1.6;
 }

 /* 問い合わせセクション */
 .contact-grid {
     display: grid;
     grid-template-columns: repeat(1, 1fr);
     gap: 2rem;
 }

 .contact-card {
     padding: 2rem;
     border-radius: 0.5rem;
     text-align: center;
     border: 2px solid;
 }

 .contact-card-phone {
     background-color: #eff6ff;
     border-color: #bfdbfe;
 }

 .contact-card-email {
     background-color: #f0fdf4;
     border-color: #bbf7d0;
 }

 .contact-icon {
     display: flex;
     justify-content: center;
     margin-bottom: 1rem;
 }

 .contact-icon-circle {
     padding: 1rem;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .contact-icon-phone {
     background-color: #2563eb;
 }

 .contact-icon-email {
     background-color: #16a34a;
 }

 .contact-icon-circle svg {
     width: 32px;
     height: 32px;
     color: #ffffff;
 }

 .contact-title {
     font-size: 1.25rem;
     font-weight: bold;
     margin-bottom: 0.5rem;
 }

 .contact-subtitle {
     color: #4b5563;
     font-size: 0.875rem;
     margin-bottom: 1rem;
 }

 .contact-phone {
     font-size: 1.875rem;
     font-weight: bold;
     color: #2563eb;
     display: block;
     margin-bottom: 0.5rem;
     transition: color 0.3s;
 }

 .contact-phone:hover {
     color: #1d4ed8;
 }

 .contact-hours {
     font-size: 0.875rem;
     color: #6b7280;
 }

 .contact-button {
     display: inline-block;
     background-color: #16a34a;
     color: #ffffff;
     padding: 0.75rem 2rem;
     border-radius: 0.5rem;
     font-weight: bold;
     margin-bottom: 0.5rem;
     transition: background-color 0.3s;
 }

 .contact-button:hover {
     background-color: #15803d;
 }

 .contact-note {
     font-size: 0.875rem;
     color: #6b7280;
 }

 /* 事例セクション */
 .case-card {
     background: linear-gradient(to bottom right, #eff6ff, #ffffff);
     padding: 2rem;
     border-radius: 0.5rem;
     box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
     border: 2px solid #dbeafe;
 }

 .case-title {
     font-size: 1.25rem;
     font-weight: bold;
     text-align: center;
     margin-bottom: 1.5rem;
     color: #1f2937;
 }

 .case-content {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .case-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .case-label {
     color: #4b5563;
 }

 .case-price-after {
     font-size: 1.875rem;
     font-weight: bold;
     color: #2563eb;
 }

 .case-fig_container figure {
     aspect-ratio: 3/2;
     overflow: hidden;
     border-radius: 5px;
 }

 .case-fig_container figure img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .case-fig_container span {
     font-size: 0.8rem;
 }

 /* FAQ */
 .faq-container {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .faq-item {
     background-color: #ffffff;
     border-radius: 0.5rem;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .faq-question {
     width: 100%;
     text-align: left;
     padding: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     cursor: pointer;
     background-color: #ffffff
 }

 .faq-question-content {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     flex: 1;
     font-size: 1.2rem;
 }

 .faq-q-badge {
     background-color: #2563eb;
     color: #ffffff;
     border-radius: 50%;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     flex-shrink: 0;
 }

 .faq-question-text {
     font-weight: bold;
     color: #333;
 }

 .faq-question:hover .faq-question-text {
     color: white;
 }

 .faq-question svg {
     width: 20px;
     height: 20px;
     color: #6b7280;
     flex-shrink: 0;
     margin-left: 1rem;
     transition: transform 0.3s;
 }

 .faq-question.active svg {
     transform: rotate(180deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
     padding: 0 1.5rem;
 }

 .faq-answer.active {
     max-height: 500px;
     padding: .5rem 0 1.5rem 0;
 }

 .faq-answer-content {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
     padding-left: 2.75rem;
 }

 .faq-a-badge {
     background-color: #16a34a;
     color: #ffffff;
     border-radius: 50%;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     flex-shrink: 0;
 }

 .faq-answer-text {
     color: #374151;
     white-space: pre-line;
     line-height: 1.8;
 }

 /* エリアセクション */
 .area-header {
     text-align: center;
 }

 .area-subtitle {
     color: #4b5563;
     margin-bottom: 3rem;
 }

 .area-container {
     background-color: #eff6ff;
     padding: 2rem;
     border-radius: 0.5rem;
     border: 2px solid #dbeafe;
 }

 .area-icon {
     display: flex;
     justify-content: center;
     margin-bottom: 1.5rem;
 }

 .area-icon-circle {
     background-color: #2563eb;
     padding: 0.75rem;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .area-icon-circle svg {
     width: 32px;
     height: 32px;
     color: #ffffff;
 }

 .area-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1rem;
     margin-bottom: 2rem;
 }

 .area-item {
     background-color: #ffffff;
     padding: 0.75rem;
     border-radius: 0.5rem;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
     text-align: center;
     font-weight: 500;
     color: #1f2937;
     transition: box-shadow 0.3s;
 }

 .area-item:hover {
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
 }

 .area-note {
     text-align: center;
     color: #4b5563;
     font-size: 0.875rem;
 }

.header-video__image{
	background-size: contain !important;
}

 /* レスポンシブ - タブレット */
 @media (min-width: 768px) {
     .nav-desktop {
         display: flex;
     }

     .mobile-menu-button {
         display: none;
     }

     .hero h1 {
         font-size: 3.75rem;
     }

     .hero-subtitle {
         font-size: 1.5rem;
     }

     .hero-tagline {
         font-size: 2rem;
     }

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

     .solution-text {
         font-size: 1.75rem;
     }

     .grid-cols-2 {
         grid-template-columns: repeat(2, 1fr);
     }

     .grid-cols-3 {
         grid-template-columns: repeat(3, 1fr);
     }

     .grid-cols-4 {
         grid-template-columns: repeat(4, 1fr);
     }

     .grid-cols-6 {
         grid-template-columns: repeat(4, 1fr);
     }

     .reason-row {
         flex-direction: row;
     }

     .reason-row-reverse {
         flex-direction: row-reverse;
     }

     .reason-content,
     .reason-image {
         width: 50%;
     }

     .flow-container {
         grid-template-columns: repeat(4, 1fr);
     }

     .flow-arrow {
         display: block;
         position: absolute;
         top: 3rem;
         right: -1rem;
         z-index: 0;
         font-size: 2.5rem;
         color: #bfdbfe;
     }

     .contact-grid {
         grid-template-columns: repeat(1, 1fr);
     }

     .footer-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .footer-contact {
         text-align: left;
     }

     .footer-contact-header {
         justify-content: flex-start;
     }
 }

 /* レスポンシブ - デスクトップ */
 @media (min-width: 1024px) {
	 
     /* ヒーローセクション */
     .hero-content-textContainer {
         width: 60vw;
         padding: 35px;
     }

     .hero h1 {
         span {
             font-size: 2.3rem;
             border-radius: 25px;
             padding: 10px;
         }

         figure {
             width: 70%;
         }
     }

     .hero-tagline {
         width: 80%;
         margin:0 0 0 2rem;

         div {
             p {
                 font-size: 1.3em;
             }
         }
     }

     .hero-content-badge {
         right: -8%;
         width: 300px;
     }

     .scroll-indicator {
         bottom: 0.5rem;
     }

     .grid-cols-6 {
         grid-template-columns: repeat(6, 1fr);
     }

     .area-grid {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 @media (min-width: 1280px) {
     .area-grid {
         grid-template-columns: repeat(6, 1fr);
     }
 }