        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Noto Sans","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
            line-height: 1.6;
            color: #333;
            font-size: 18px;
            overflow-x: hidden;
        }

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

        /* Header */
        
        .site-header-wrapper {
            background: #ffffff;
        }
        
        a:hover{
        	opacity:0.6;	
        }
        
        
        .site-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    gap: 50px;
    position: relative;
        }
        
        .site-header-logo {
    position: absolute;
    top: 15px;
    left: 30px;
        }
        
        .site-header-logo img {
    height: 48px;
    display: block;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 20px;
            font-weight: bold;
        }

        .header-nav {
            display: flex;
            gap: 20px;
            font-size: 14px;
        }

        .header-nav a {
            color: #004aad;
            text-decoration: none;
            line-height: 33px;
            font-size: 18px;
            font-weight: 700;
        }
        
        .corp-contact-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #004aad;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none !important;
    border-radius: 999px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    white-space: nowrap;
        }

        /* Hero Section */
        .hero img {
            width: 100%;
        }

        /* Section */

        .section-title {
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 80px;
            line-height: 1.5;
            padding: 20px 0;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .section-white {
            background-color: white;
        }

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

        .section-blue {
            background-color: #003DA5;
            color: white;
        }

        .section-blue .section-title {
            color: white;
        }
        
        .section-graygradation {
    background: linear-gradient(#fff, #B2E8FF);
        }

        /* Label */
        .section-label {
    font-size: 104px;
    font-weight: 900;
    position: absolute;
    top: -43px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: #fff;
    -webkit-text-fill-color: #003DA5;
    -webkit-text-stroke: 1px #fff;
    opacity: 0.3;
        }
        
        #problem .section-label {
    top: -16px;
        }

        .section-label-center {
            text-align: center;
            background: rgb(0, 74, 173);
            width: 100%;
            position: relative;
        }
        
        
        /* maininfo */
        
        .maininfo {
    background-color: rgba(255,255,255,0.8);
    background-blend-mode: lighten;
    background-position-y: 72%;
    margin-top: -8px;
    padding: 30px 20px;
        }
        
        .maininfo h2 {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.5;
    padding: 20px 0;
    color: #333;
    position: relative;
    z-index: 1;
		}
        
        .bannerwrapper {
    display: flex;
    justify-content: center;
   align-items: center;
    gap: 25px;
        }
        
        .bannerwrapper img {
    max-height: 118px;
        }
        
        .bannerwrapper img.shakehandimg {
    max-height: 95px;
        }
        
        .maininfo h3 {
    text-align: center;
    font-size: 31px;
    margin: 50px 0 30px;
    font-weight: bold;
        }
        
        .orangetxt{
                color: #fc750a;
        }

        /* Problem Cards */
        .problem-cards {
            max-width: 1200px;
            margin: 0 auto 50px;
        }

        .problem-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
        }

        .problem-icon {
            font-size: 48px;
            margin-bottom: -50px;
        }

        .problem-text {
            color: #333;
            position: relative;
    background-color: #FFFFFF;
    border: 1px solid #333;
    padding: 30px 40px;
    text-align: center;
    font-size: 28px;
    line-height: 1.6;
    border-radius: 20px;
        }
        
        /* 左側の三角形 */
.problem-card.left .problem-text::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 20px 0;
    border-color: transparent #333 transparent transparent;
}

/* 三角形の内側（白色部分） */
.problem-card.left .problem-text::after {
    content: "";
    position: absolute;
    left: -19px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 19px 20px 19px 0;
    border-color: transparent #FFFFFF transparent transparent;
}

.problem-card.right {
    flex-direction: row-reverse;
}

/* 右側に矢印を配置する場合 */

.problem-card.right .problem-text::before {
     content: "";
    position: absolute;
    top: 50%;
    left: auto;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 20px;
    border-color: transparent transparent transparent #333;
}

.problem-card.right .problem-text::after {
     content: "";
    position: absolute;
    top: 50%;
    left: auto;
    right: -19px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 19px 0 19px 20px;
    border-color: transparent transparent transparent #FFFFFF;
}

.boxtext {
    text-align: center;
    font-size: 26px;
    font-weight: normal;
    padding: 15px 0 15px;
    background: #fff;
    border: 1px  solid #004aad;
}

        /* Stats Box */
        
        
        #trouble .container {
    max-width: 800px;
    margin: 0 auto;
            }

        .stats-box {
    border: 1px solid #004aad;
    max-width: 49%;
    margin: 0 auto;
    text-align: center;
        }
        
        .stats-box img {
    width: 100%;
		}
        
        .stats-box-wrapper {
    display: flex;
    gap: 8px;
		}

        .stats-number {
    font-size: 31px;
    font-weight: bold;
    color: #fc750a;
        }

        .stats-label {
    font-size: 31px;
    color: #fff;
    font-weight: bold;
    background: #004aad;
    padding: 25px 0;
    line-height: 0.8;
    min-height: 99px;
        }
        
        .stats-label span {
    font-size: 17px;
		}
		
		.sankoinfo{
			margin-top: 5px 0 10px; 
			font-size: 19px; 
			color: #666;
			    text-align: right;
			    font-weight:300;
		}
		
		.orangebox{
			color: #fc750a;
			padding: 30px 0 0;
			font-size: 32px;
			text-align:center;
			margin-bottom:70px
		}

        /* Alert Box */
        .alert-box {
            background: #FFEBEE;
            border-left: 5px solid #D32F2F;
            padding: 30px;
            margin: 40px auto;
            max-width: 800px;
            line-height: 1.8;
            font-size: 16px;
        }
        
        /* soluton */
        #solution .section-title{
        	margin-bottom: 0;
        }
        
        .boxtext.orangetxt {
    font-size: 30px;
    border: 1px solid #fc750a;
		}
		
		.toriiku-info {
    display: flex;
		}
		
		#solution .container {
    max-width: 1200px;
		}
		
		.slideshow-container {
    padding: 0;
        max-width: 40%;
    margin: 50px 50px;
    overflow: hidden;
    position:relative;
    width: 50%;
		}
		
		.slideshow-container img {
    max-width: 100%;
		}
		
		.slide {
position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

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

@keyframes zoomFade {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes fadeEffect {
  from { opacity: 0.4 }
  to { opacity: 1 }
}


        /* Highlight Box */
        .highlight-box {
            background-color: #FFF8E1;
            border: 3px solid #FFA000;
            border-radius: 10px;
            padding: 40px;
            margin: 50px auto;
            max-width: 800px;
            text-align: center;
        }

        .highlight-box h3 {
            color: #E65100;
            font-size: 28px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .highlight-box p {
            font-size: 16px;
            color: #333;
            line-height: 1.8;
        }

        /* Feature List */
        .feature-list {
            max-width: 700px;
            margin: 50px 50px;
        }

        .feature-item {
                display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 21px;
    font-weight: bold;
        }

        .feature-item::before {
            content: "✓";
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #333;
        }

        /* Comparison Table */
        .comparison-table {
                max-width: 900px;
    			margin: 20px auto;
    			background: white;
			    overflow: hidden;
			    border: 1px solid #004aad;
        }

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

        .comparison-table th {
            background-color: #004aad;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 28px;
            font-weight: bold;
                border-right: 1px solid #8ac7ed;
        }

        .comparison-table td {
            padding: 20px 10px;
    border-bottom: 1px solid #004aad;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    position: relative;
    width: 40%;
        border-right: 1px solid #004aad;
        }
        
        .comparison-table td span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 70px;
    text-align: center;
    color:rgba(0, 0, 0, 0.14);
    top: 50%;
    transform: translateY(-50%);
        font-weight: 900;
		}
		
		.comparison-table td.fortoriiku {
    background: #ffd7b7;
		}
		
		.comparison-table td span.bad {
		    font-size: 100px;
		   }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .row-header {
    background-color: #8ac7ed;
    font-weight: bold;
    width: 200px;
    font-size: 25px;
    text-align: center;
        }
        
        
        #spotimg img {
    width: 100%;
		}

        /* Voice Card */
        
        #voice {
        padding-bottom: 80px;
		}
        
        .voice-card {
                background: white;
    max-width: 1100px;
    margin: 20px auto;
    padding-bottom: 30px;
        }

        .voice-header {
                font-size: 28px;
    font-weight: bold;
    color: #fff;
    background: rgb(0, 74, 173);
    text-align: center;
    padding: 7px;
        }
        
        .voice-comment .voice-header {
    font-size: 21px;
    color: rgb(0, 74, 173);
    background: none;
    text-align: left;
    padding: 7px 20px;
        }
        
        .lead-text {
        padding: 15px 20px;
    font-size: 23px;
    line-height: 2.2;
		}
		
		.lead-text span {
        color:#fc750a;
            font-weight: 900;
		}

        .voice-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 20px 0;
        }

        .voice-stat {
            background: #E3F2FD;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }

        .voice-stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #0066FF;
            margin-bottom: 5px;
        }

        .voice-stat-label {
            font-size: 14px;
            color: #666;
        }

        .voice-comment {
            line-height: 1.8;
            font-size: 18px;
        }
        
        .voice-comment p {
    font-size: 16px;
padding: 0px 50px;
line-height: 1.5;
		}

        .voice-comment-label {
            font-weight: bold;
            color: #003DA5;
            margin-bottom: 10px;
        }

        /* Process Steps */
        .process-steps {
            max-width: 1100px;
            margin: 0 auto;
        }

        .process-step {
                display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    background: white;
    border: 1px solid #004aad;
        }

        .step-number {
                background: #004aad;
    color: white;
    min-width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
        }

        .step-number-label {
            font-size: 17px;
        }

        .step-number-num {
            font-size: 17px;
            margin-top: -5px;
        }

        .step-content h3 {
                font-size: 31px;
        }

        /* CTA Box */
        
        .flexbox {
    display: flex;
		}
		
		#cta .flexbox {
    padding-bottom: 70px;
		}
		
		.flexlisttxt{
			width:66%;
			font-size: 25px;
    		font-weight: bold;
		}
		
		.flexlistimg{
			width:33%;
		}
		
		.flexlistimg img{
			width:100%;
		}

        /* FAQ */
        .faq-list {
            max-width: 1100px;
            margin: 40px auto 80px;
        }

        .faq-item {
            margin-bottom: 50px;
        }

        .faq-question {
                font-size: 25px;
    font-weight: bold;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #003DA5;
        }

        .faq-question::before {
            content: "Q";
    color: #004aad;
    min-width: 35px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 50px;
        }

        .faq-answer {
            font-size: 18px;
            color: #333;
            line-height: 1.8;
            padding-left: 50px;
            border-bottom: 1px solid #003DA5;
        }

        .faq-answer::before {
            content: "A";
            color: #004aad;
            min-width: 35px;
            height: 35px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            margin-left: -50px;
            vertical-align: middle;
            font-size: 50px;
    margin-top: -10px;
        }
        
        
        .morefaq {
    display: none;
		}
		
		.readmore {
    text-align: center;
    margin-bottom: 30px;
		}
	

        /* Footer */
        .section-lightblue {
    background-color: #8ac7ed;
		}
        
        .footermenu1 {
    padding: 20px 0;
		}
		
		.footermenu1 a {
    color: #333;
    text-decoration: none;
        font-weight: bold;
		}
		
		
		.footermenu2 {
    position: sticky;
    bottom: 0;
        z-index: 3;
		}
        
        footer {
            background-color: #1A1A1A;
            color: white;
            padding: 15px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-contact {
            margin-top: 30px;
        }

        .footer-phone {
            font-size: 28px;
            font-weight: bold;
            margin: 20px 0;
        }
        
        .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
		}
		
		.cta-button {
    width: 200px;
    background: #fff;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
        justify-content: flex-end;
            color: #004aad;
                padding-bottom: 5px;
    font-weight: bold;
		}
		
		
		.cta-button img {
    max-height: 32px;
        }
		.cta-button.todocument img {
    margin-bottom: -5px;
    max-height: 40px;
		}
		
		.cta-button.totel span {
    font-size: 20px;
    font-weight: 900;
		}
		
		.cta-buttons a {
    text-decoration: none;
		}
		
		.spbr{
			display:none;	
		}
		
		.spotimg {
            width: 35%;
        }
        
        .spotimg img {
    width: 100%;
        }
        
        .section-title {
    margin-bottom: 20px;
        }
        
.next-btn {
  color: #000;
  border: none;
  font-size: 40px;
  cursor: pointer;
  z-index: 100;
  margin-left: -30px;
  background: none;
}

.next-btn:hover {
  opacity:0.6;
}

#trouble .boxtext {
    border: none;
    font-size: 22px;
    font-weight: 500;
    padding: 15px 0 30px;
}

.comparison-table td span.kakko {
    position: relative;
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

/*voice slide*/

.voice-slideshow-container {
  position: relative;
  width: 100%;
  min-height: 600px; /* 最小の高さを確保 */
  padding: 40px 0;
}

.voice-slide {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}
.voice-slide.active {
    z-index: 2;
}

@keyframes voiceSlideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ナビゲーションボタン */
.voice-prev-btn,
.voice-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 100;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.voice-prev-btn:hover,
.voice-next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.voice-prev-btn {
  left: -12px;
}

.voice-next-btn {
  right: -12px;
}

/* インジケーター */
.voice-dots {
  text-align: center;
  padding: 20px 0;
  position: absolute;
  bottom: -90px;
  width: 100%;
  z-index: 100;
}

.voice-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bbb;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.voice-dot.active {
  background-color: #333;
}

.sponly{
display:none;
}


/* スマホ対応 */
@media (max-width: 768px) {
  .voice-slideshow-container {
    min-height: 800px; /* スマホ用に高さ調整 */
  }
  
  .voice-prev-btn,
  .voice-next-btn {
    font-size: 24px;
    padding: 8px 12px;
  }
}


        /* Responsive */
        @media (max-width: 820px) {
            .hero-title {
                font-size: 32px;
            }

            .section-title {
                font-size: 21px;
                margin-bottom: 30px;
            }

            .problem-cards {
                grid-template-columns: 1fr;
                padding: 0 10px;
            }

            .voice-stats {
                grid-template-columns: 1fr;
            }

            .header-nav {
                display: none;
            }

            .cta-buttons {
                align-items: stretch;
            }
            
            .cta-button.totel {
    gap: 0px;
			}

            .comparison-table {
                overflow-x: auto;
            }
            
			
			.site-header {
    padding: 10px 10px;
		}
		
		.site-header-logo {
        top: 12px;
    left: 12px;
		}
		
		.site-header-logo img {
    height: 30px;
			}
			
			.corp-contact-btn {
    padding: 7px 20px;
    font-size: 14px;
			}
			
			.maininfo {
    padding: 20px 10px;
			}
			
			.maininfo h2 {
    font-size: 16px;
margin-bottom: 0px;
padding: 10px 0;
font-weight: normal;
			}
			
			.bannerwrapper {
    gap: 10px;
    flex-direction: column;
			}
			
			.bannerwrapper img {
    max-width: 250px;
			}
			.bannerwrapper img.shakehandimg {
    max-height: 50px;
            }
			
			.maininfo h3 {
    font-size: 20px;
    margin: 10px 0 10px;
			}
			
			.section-label {
    font-size: 60px;
    top: 7px;
			}
			
			#comparison .section-label, #voice .section-label, #flow .section-label, #faq .section-label   {
    top: -13px;
			}
			
			.spbr{
			display:block;	
			}
			
			.problem-card {
    gap: 0px;
    margin-bottom: 30px;
			}
			
			.problem-icon img {
    max-width: 120px;
            }
			
			.problem-text {
    padding: 10px 10px;
    font-size: 16px;
			}
			
			.problem-card.right {
    margin-bottom: 30px;
			}
			
				
				
				.boxtext {
    font-size: 15px;
    padding: 15px 10px 10px;
				}
				
				.stats-box-wrapper {
    flex-direction: column;
				}
				
				.stats-box {
    max-width: 100%;
				}
				
				.sankoinfo {
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 10px;
				}
				
				.orangebox {
   font-size: 18px;
    margin-bottom: 0px;
				}
				
				.boxtext.orangetxt {
    font-size: 15px;
				}            
				
				.toriiku-info {
    flex-direction: column;
    position: relative;
				}
				
				.feature-list {
    margin: 50px auto 0;
				}
				
				.slideshow-container {
    margin: 0px auto 50px 0;
            max-width: 95%;
            overflow: hidden;
            width: 100%;
            min-height: 220px;
				}
				
				.comparison-table th {
    padding: 10px;
    font-size: 18px;
				}
				
				.comparison-table td {
    padding: 5px;
    font-size: 14px;
				}
				
				.comparison-table .row-header {
    font-size: 13px;
				}
				
				.voice-header {
    font-size: 17px;
				}
				
				.lead-text {
    padding: 10px;
    font-size: 14px;
				}
				
				.voice-comment p {
    padding: 10px;
    font-size: 12px;
				}
				
				.process-step {
    gap: 10px;
				}
				
				.step-number {
    min-width: 50px;
    height: 50px;
				}
				
				.step-content h3 {
    font-size: 13px;
				}
				
				.flexbox {
    flex-direction: column;
        gap: 20px;
				}
				
				.flexlisttxt {
    font-size: 15px;
    width: 100%;
				}
				
				.flexlistimg {
    width: 60%;
    margin: 0 auto;
				}
				
				.faq-question {
    font-size: 16px;
    gap: 10px;
				}
				
				.spotimg {
            width: 100%;
                }
                
                .stats-label {
    font-size: 17px;
    padding: 10px 0;
min-height: 55px;
line-height: 1.2;
            }
            
            #trouble .boxtext {
    font-size: 15px;
    padding: 50px 10px;
            }
            
            .feature-item {
    font-size: 15px;
    gap: 10px;
            }
            
            .feature-item::before {
    width: 20px;
    height: 20px;
            }
            
            .cta-button {
    width: 120px;
            }
            
            .cta-button.totel span {
    font-size: 14px;
            }
            
            footer {
    padding: 15px 0px;
            }
            footer .container {
    padding: 0 0px;
            }
            
            #comparison .section-label {
    font-size: 53px;
    top: -6px;
            }
            
            #comparison .boxtext {
    font-size: 14px;
            }
            
            #voice .flexbox {
                gap: 0px;
            }
            
            .voice-comment .voice-header {
    font-size: 15px;
            }
            
            .step-number-label {
    font-size: 15px;
            }
            
            .step-number-num {
    font-size: 15px;
    margin-top: -8px;
            }
            
            .faq-question::before, .faq-answer::before {
    min-width: 20px;
    font-size: 30px;
            }
            
            .faq-answer {
    font-size: 14px;
    padding-left: 35px;
            }
            
    .faq-answer::before {
        margin-left: -35px;
        margin-right: 10px;
    }
    
    .voice-card {
    padding-bottom: 10px;
    }
    
    .next-btn {
    position: absolute;
    top: 71%;
    right: -3px;
}

#problem .section-label {
    top: 16px;
}

.comparison-table td span.kakko {
    font-size: 11px;
}
.comparison-table td.row-header span.kakko {
    font-size: 9px;
}
body {
    font-size: 15px;
}

.pconly{
display:none;
}
.sponly{
display:inline-block;
}
				
        }
