/* Reset and Base Styles */

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

body {
    /*font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
	font-family:"Noto Sans JP", sans-serif, YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo;
    line-height: 1.6;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}


@font-face {
	font-family: 'Nico-Moji';
	src: url('font/nicomoji-plus_v2-5.ttf');
}


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

@media (min-width: 1024px){
	.container {
		max-width: 80%;
		margin: 0rem auto;
		padding: 0 0rem;
	}
}

.note {
	display: block;
	font-size: 12px;
	color: #808080;
	padding: 1rem 0;
	justify-content: center;
	text-align: center;
	
}

/* Utility Classes */

.font-bold {
    font-weight: 700;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
	.sp_test {
		display:none;
	}
}

/* Button Styles */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #DC2727 0%, #EF4444 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}


.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.4);
}

/*
.btn-line {
    background: #00c300;
    color: white;
    border: 2px solid #00c300;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
*/


.btn-line:hover {
    background: #00a300;
    transform: translateY(-2px);
}


.btn-full {
    width: 100%;
}

.line-btn-icon {
    width: 16px;
    height: 16px;
}


.main-content {
  padding-top: 20px; 
}

/* Section Styles */
section {
    padding: 2.0rem 0;
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}


.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #D31212;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #1e293b;
    max-width: 600px;
    margin: 0 auto;
}



/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
}

.logo-text h1 {
    font-size: 16px;
    font-weight: 700;
    color: #D31212;
    line-height: 1.2;
}


.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #D31212;
}

.phone-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.phone-image {
	width: 24px;  
	height: 24px; 
}


@media (min-width: 1025px) {
    .nav.desktop-nav {
        display: flex;
        flex-wrap: nowrap;     
        gap: 2rem;
    }

    .nav.desktop-nav a {
        flex-shrink: 1;         
        min-width: 0;           
        white-space: nowrap;    
    }
}


@media (max-width: 1024px) {
	
	.mobile-cta {
		display: flex;
		align-items: center; 
		justify-content: space-between; 
		gap: 10px; 
	}
    
    .header {
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100; 
        background-color: #fff; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px;
        box-sizing: border-box; 
    }
	

	.mobile-menu-btn span {
		width: 24px;
		height: 3px;
		background: #1e293b;
		border-radius: 2px;
		transition: all 0.3s ease;
	}

    
    .mobile-nav {
        display: flex; 
        flex-direction: column;
        gap: 1rem;
        padding: 0 15px 1rem; 
        background-color: #fff; 
        width: 100%;
        position: absolute; 
        top: 100%;
        left: 0;
        
        max-height: 0; 
        overflow: hidden; 
        opacity: 0; 
        visibility: hidden; 
        transition: max-height 0.5s ease-out, opacity 0.3s ease-out, visibility 0s 0.5s; 
        z-index: 99; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    }

   
    .mobile-nav.active {
        max-height: 500px; 
        opacity: 1; 
        visibility: visible; 
        transition: max-height 0.5s ease-in, opacity 0.3s ease-in, visibility 0s; 
    }


    .mobile-nav a {
        text-decoration: none;
        color: #1e293b;
        font-weight: 600;
        padding: 0.75rem 0; 
        border-bottom: 1px solid #eee; 
    }
    .mobile-nav a:last-of-type {
        border-bottom: none; 
    }

    .mobile-nav .btn {
        margin-top: 1rem;
        width: 100%; 
    }


}


@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
	.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
	}
}


/*Hero Section*/


.hero .container {
	display: flex;
    flex-direction: column; 
    justify-content: flex-start;
	max-width: 100%;
	width: 100vw;
	height: calc(100vh - 2rem);
	z-index: 0;
	box-sizing: border-box;
}


.hero-wrapper-wrapper {
	max-width: 100vw;
	height: calc(100vh - 2rem);
	background-image: url(images/background-image.png);
	padding: 5% 0 0 0;
	background-size: cover;      
    background-position: center; 
    background-repeat: no-repeat;
	z-index: 1;
}

.hero-wrapper {
	display: flex;
	align-items: center;
	max-width: 100%;
	height: 100%;
	margin: 0 auto;
	position: relative;
}


.left-elements {
	margin-left: 10%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: center;
}

.hero-title {
	display: flex;
	align-items: center;
}

.black-small-1 {
	font-family: 'Zen Kaku Gothic New';
	font-size: clamp(1.75rem, 4vw, 3.6rem);
}

.red-box-white {
	font-size: clamp(2.5rem, 7vw, 5.4rem);
	color: white;
	height: 120px;
	aspect-ratio: 1 / 1;
	margin: 0 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #F7511C;
	background: linear-gradient(0deg, #CA251C, #F7511C);
}

.sub-title {
	display:flex;
	align-items: flex-end;
}

.dots-txt {
	font-size: clamp(2.2rem, 7vw, 4.9rem);
	color: #F02300;
	background-image: radial-gradient(circle at center, #F02300 20%, transparent 20%);
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 1em 0.5em;
    padding-top: 0.15em;
}

.red-box {
	display: inline-block;
	text-align: left;
	white-space: nowrap;
}


.red-box p {
    font-size: clamp(1.2rem, 2.5vw, 2.4rem);
    font-weight: 800;
    padding: 2px 8px;
	margin: 10px 0 0 0;

    background: linear-gradient(0deg, #CA251C, #F7511C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;

    border: 3px solid transparent;
    border-image: linear-gradient(0deg, #CA251C, #F7511C) 1 / 1 / 0 stretch;
    display: inline-block; 
}


.hero-price {
	display: flex;
	align-items: baseline;
}


.hero .note {
	margin: 0px;
	text-align: left;
}


/*
.hero .note {
	padding: 0 0 5px 0;
	position:absolute;
	bottom: 0;
	left: 10%;
	text-align: left;
}
*/

.big-red {
	font-size: clamp(2.5rem, 5vw, 6.3rem );
	color: #F02300;
}

.small-black {
	font-size: clamp(1.25rem, 1.5vw, 2.8rem);
}


.staff-image {
    position: absolute;
	bottom: 0;
    right: 5%; 
	z-index: 2;
	max-height: 100%;
	width: auto;
	z-index: -1;
}



.badges {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
    position: absolute;
    top: 75%;
    right: 15%;
    transform: translate(-10%, -50%);
	z-index: 3;
}

.badge-image {
    max-width: 200px;       
    height: auto;       
    object-fit: contain; 
    display: block;     
}


.service-belt {	
	display: flex;
	width: 100%;
	background-color: #F02300;
	text-align: center;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	box-sizing: border-box;
}

.service-prefectures {
	color: white;
	font-size: clamp(1rem, 4vw, 3rem);
	font-size: clamp(1.25rem, 4vw, 3rem);
}

.mobile-dot {
	display: inline;
}

.mobile-break {
  display: inline;
}

.broad-provided {
	color: white;
	font-size: clamp(1rem, 2.6vw,  2rem);
	font-size: clamp(1.25rem, 2.6vw,  2rem);
}


.vertical-elements-mb {
	display: none;
}


@media (max-width: 820px) {
	.hero .container {
        width: 100%;
        height: calc(100vh - 3rem);
        max-width: 100%;
        padding: 0;
        margin: 0;
		box-sizing: border-box; 
    }
	
	
	.left-elements,
	.right-elements	{
		display: none;
	}

	
	.hero-wrapper {
		max-width: 100%; 
		align-items: flex-start;
		margin: 0;
		padding: 0;
	}
	

	.hero-wrapper-wrapper {
		padding: 15% 20px 0 20px;
		height: calc(100vh - 3rem);
	}
	
	.vertical-elements-mb {
		display: flex;
		flex-direction: column;
		height: 100%;
		width: 100%;
		gap: 5px;
	}
	
	.hero-title {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.main-title-1 {
		display: flex;
		align-items: flex-end;
	}
	
	.main-title-2 {
		display: flex;
		align-items: center;
		align-self: flex-end;
		margin-top: 20px;
	}
	
	.red-box-white {
		height: 60px;
	}
	
	/*.red-box {
		margin-top: 30px;
	}*/
	
	
	.badges {
		margin-top: 60px;
		position: static;
		transform: none;
		justify-content: space-between;
		width: 100%;
		padding: 0;
		box-sizing: border-box;
	}
	
		
	.badge-image {
		width: auto;
		max-width: 30%;
		height: auto;
	}

	
	.staff-image {
		/*max-width: 100%;*/
		right: -10px;
		max-height: 70%;
		width: auto;
		margin: 0 -20px;
	}
	
	
	
	.mobile-dot {
		display: none;
	}
	
	.mobile-break {
		display: block;
		text-align: left;
	}
	
	.service-belt {
		display: flex;         
		gap: 1rem;
	}
	
	.hero .note {
		padding: 0 0 5px 0;
		position:absolute;
		bottom: 0;
		left: 0;
		text-align: left;
	}
	
	.hero .note {
        position: static;        
        justify-content: flex-end; 
        text-align: left;
        padding: 0;   
    }
	

}


/*Ranking Section*/
.ranking {
	padding: 0;
}

.ranking .container {
	background-color: #FFFFFF;
	max-width: 100%;
	padding: 60px 0;
}

.ranking-wrapper {
	display: flex;
	justify-content: center;
	align-content: center;
	text-align: center;
	flex-direction: column;
	align-items: center;
}

.ranking-title {
	width: 60%;
	height: auto;
	margin-top: 2rem;
}

.ranking-wrapper h1 {
	margin-top:20px;
	color: #CA251C;
	font-weight: 800;
	font-size: 2.5rem;
}

.ranking-wrapper h2 {
	color: #CA251C;
	font-weight: 800;
	font-size: 2rem;
	margin: 0;
}

.ranking-badges {
	width: 60%;
	margin-top: 40px;
	height: auto;
	margin-bottom: 2rem;
}

.deal-size {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

@media (max-width: 768px){
	.ranking .container {
		padding: 40px 0;
	}
	
	.ranking-title {
		width: 80%;
	}
	
	.ranking-wrapper h1 {
		font-size: 1.25rem;
	}
	
	.ranking-wrapper h2 {
		font-size: 2.0rem;
	}
	
	.ranking-badges {
		width: 80%;
	}
}



/* Testimonials Section */
.testimonials {
	padding: 60px 0;
    background: linear-gradient(135deg, #fee2e2 0%, #ffffff 50%, #ffe4e6 100%);
}

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

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}


.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    /*width: 60px;
    height: 60px;
    border-radius: 50%;*/
	width: 70%;
	height: auto;
    object-fit: cover;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;	
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.testimonial-info h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stars {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.name-and-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem; 
}

.name-and-stars h4 {
  margin: 0; 
}

.name-and-stars .stars {
  margin: 0; 
  font-size: 1rem; 
}

.testimonial-info {
	text-align: center;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: #1e293b;
}

.testimonial-card h5 {
    font-weight: 600;
    color: #FF0000;
    margin-bottom: 1rem;
	font-size: 1.25rem;
	text-align: center;
}

.testimonial-card > p {
    color: #1e293b;
    line-height: 1.6;
}


/* Strengths Section */
.strengths {
    padding: 60px 0;
    basckground-color: linear-gradient(135deg, #fee2e2 0%, #ffffff 50%, #eff6ff 100%);
}

.strengths .container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}


.strengths-wrapper {
    display: flex;
    flex-direction: column; 
    gap: 40px; 
}


.strength-item {
    display: flex;
    align-items: center; 
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);*/
    width: 100%; 
    box-sizing: border-box;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}


.strength-item:nth-child(odd) {
    flex-direction: row; 
}

.strength-item:nth-child(even) {
    flex-direction: row-reverse; 
}


.strength-item .strength-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    object-fit: cover;
    -- border-radius: 50%;
    -- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.strength-item:nth-child(odd) .strength-image {
    margin-right: 25px;
    margin-left: 0; 
}


.strength-item:nth-child(even) .strength-image {
    margin-left: 25px;
    margin-right: 0; 
}


.strength-item h3 {
    font-size: 1.6em;
    color: #D31212;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.strength-item .strengths-text {
    font-size: 1em;
    color: #1e293b;
    line-height: 1.7;
}



@media (max-width: 768px) {
    .strength-item {
        flex-direction: column !important; 
        align-items: center;
        text-align: center; 
    }

    .strength-item .strength-image {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 20px;
    }

    .strength-item h3 {
        font-size: 1.4em;
    }

    .strength-item .strengths-text {
        font-size: 0.95em;
		text-align: left;
    }
}


@media (max-width: 480px) {
    .strengths {
        padding: 30px 0;
    }

    .section-header h2 {
        font-size: 2em;
    }

    .section-header p {
        font-size: 1em;
    }

    .strength-item {
        padding: 20px;
    }

    .strength-item .strength-image {
        width: 200px;
        height: 200px;
    }
	
	.strength-text {
		text-align: left;
	}
}

/* Cost Secret Section */
.cost-secret {
	padding: 60px 0;
    background: linear-gradient(135deg, #fee2e2 0%, #ffffff 50%, #ffe4e6 100%);
}


.cost-secret-card {
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid;
}

.cost-secret-card.white {
    background: white;
    border-color: white;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


.cost-secret-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cost-secrets-wrapper {
	display: flex;
	justify-content: space-around;
	gap: 40px;
	max-width: 800px;
	margin: 0 auto;
	flex-direction: column;
}


.cost-secret-icon {
    display: block;
	margin: 0 auto;
    margin-bottom: 1.5rem;
}

.cost-secret-icon img {
    width: 200px; 
    height: auto; 
}

.cost-secret-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D31212;
    margin-bottom: 1rem;
}

.cost-secret-card p {
    color: #1e293b;
    line-height: 1.6;
	text-align: left;
}


/*service-list Section*/

.service-list {
	padding: 60px 0;
}


.service-list-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/*margin: 40px auto;*/
	column-gap: 20px;
	row-gap: 40px;
	justify-content: center;
	align-content: center;
}

.service-box {
	aspect-ratio: 1 / 1; 
	display: flex;
	background-color: #F3ECEC;
	flex-direction: column;
	align-items: center;
	justify-content: center; 
	text-align: center;	
	border-radius: 20px;
}

.service-image {
	width: 100%;
	height: 85%;
	/*margin-top: auto;*/
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}

.service-image img {	
	width: 100%;  
	height: 100%;
	object-fit: cover;
}

.service-box h1 {
	font-size: clamp(0.8rem, 2.5vw, 1.5rem);
	color: #D31212;
	margin: 20px 0;
}



@media (max-width: 1024px) {
	.service-list-wrapper {
		/*grid-template-columns: repeat(2, 1fr);*/
		grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
		column-gap: 10px;
		row-gap: 20px;
		padding: 0 10px;
	}
	
	.service-box {
		width: 100%;
		max-width: 100%;
	}


	.service-image {
		height: 80%;
	}
}




/* Pricing Section (既存のまま) */
.pricing {
    background: linear-gradient(135deg, #fee2e2 0%, #ffffff 50%, #ffe4e6 100%);
}

/* --- スワイプ機能のラッパーコンテナ --- */
.slider-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
}

/* --- 矢印ボタンの共通スタイル --- */
.arrow-btn {
    background-color: transparent;
    border: transparent;
    border-radius: none;
    width: 40px;
    height: 40px;
    display: none; /* デフォルトでは非表示（モバイルでのみ表示） */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	outline: none;
}

.arrow-btn:hover {
    background-color: transparent;
    transform: translateY(-50%) scale(1.05);
}

.arrow-btn img {
    width: 30px;
    height: 30px;
}

/* Pricing Grid (モバイルでスワイプ、デスクトップでグリッド) の基本スタイル */
.pricing-grid {
    display: grid; /* デスクトップでのデフォルトはグリッドレイアウト */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    overflow-x: visible;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    width: 100%;
    padding: 20px 0;
}

/* Pricing Card (既存のまま) */
.pricing-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid;
}

.pricing-card.red {
    border-color: #ffffff;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    padding: 1.5rem;
    text-align: center;
    color: white;
    font-weight: 700;
}

.pricing-card.red .pricing-header {
    background: #e03816;
}

.pricing-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.pricing-content {
    padding: 2rem;
    text-align: center;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.pricing-price span {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 400;
}


/* --- スライダーのドットナビゲーション（モバイルのみ表示） --- */
.slider-dots {
    display: none; /* デフォルトは非表示 */
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid #999;
}

.slider-dot.active {
    background-color: #333;
    transform: scale(1.2);
}


@media (max-width: 1024px) {
    
    .pricing-grid {
        display: flex; 
        overflow-x: scroll; 
        scroll-snap-type: x mandatory; 
        -webkit-overflow-scrolling: touch; 
        gap: 1.5rem; 
        
        padding-left: calc((100vw - (85vw - 1.5rem)) / 2);
        padding-right: calc((100vw - (85vw - 1.5rem)) / 2);
        padding-top: 20px;
        padding-bottom: 20px;

        box-sizing: border-box;
        flex-grow: 1;
        flex-shrink: 1;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-grid .pricing-card {
		flex: 0 0 calc(100% - 1.5rem);
		max-width: calc(100% - 1.5rem);
        scroll-snap-align: center;
    }

    .pricing-card.clone {
        display: block; 
    }

    .arrow-btn {
        display: flex;
    }
    .left-arrow {
        left: 10px;
    }
    .right-arrow {
        right: 10px;
    }
    .slider-dots {
        display: flex;
    }
}


@media (min-width: 1025px) {
    
    .pricing-card.clone {
        display: none;
    }

    .arrow-btn,
    .slider-dots {
        display: none;
    }

    .pricing-grid {
        display: grid;
        margin-left: auto;
        margin-right: auto;
        max-width: 1000px;
        padding: 20px 0;
    }

    .pricing-grid .pricing-card {
        flex: none;	
        max-width: none;
        scroll-snap-align: none;
    }
}


/*Flow Section*/

.flow .container {
	width: 100%;
}


.service-flow {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
	gap: 40px;
	position: relative;
	overflow: visible;
}



.steps {
  position: relative;
  text-align: center;
}

.steps:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40%;          
  left: 100%;        
  width: 40px;      
  border-bottom: 10px dotted #F0E7E7; 
  transform: translateY(-50%);
}


.steps h1 {
	/*font-family: 'Nico-Moji';
	font-weight: 200;
	*/
	color: #D31212;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.steps h2 {
	color: #000000;
	font-size: 1rem;
	text-align: start;
	margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .service-flow {
    grid-template-columns: 1fr; 
  }
  
  .steps h2 {
	  margin: 0 40px;
	  text-align: center;
  }
}

/*@media (max-width: 768px) {
	.steps h2 {
		text-align: center;
	}
	
}*/

/* mobile */
@media (max-width: 768px) {
  .service-flow {
    flex-direction: column;
    gap: 40px;
  }
  .steps {
    max-width: 100%;
  }
  
  .steps h2 {
		text-align: left;
	}
	
  .steps:not(:last-child)::after {
    display: none;
  }
}




/* FAQ Section */
.faq {
    background: white;
}

.faq-list {
    max-width: 1050px;
    margin: 0 auto 0rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-number {
	width: 40px;
	height: 30px;
    background: #fed7aa;
    color: #c2410c;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 50%;
    font-size: 0.875rem;
    flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-text {
    flex: 1;
    font-weight: 600;
    color: #D31212;
    font-size: 1.125rem;
}

.faq-icon {
    color: #64748b;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-answer-label {
	width: 40px;
	height: 30px;
    background: #fce1e1;
    color: #1e293b;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 50%;
    font-size: 0.875rem;
    flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-answer-text {
    background: #fce1e1;
    border-radius: 1rem;
    padding: 1.0rem 1.5rem;
    color: #1e293b;
    line-height: 1.6;
}


/* Service Area Section */
.service-area {
    background: white;
}

.service-area .container {
	max-width: 1050px;
	margin: 0 auto 0rem;
}


.service-areas-grid {
    display: grid;
    -- grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-area-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-area-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-area-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

.service-area-header:hover {
    background: #eff6ff;
}

.service-area-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-area-icon img {
	width:60px;
	height: 60px;
    padding: 0.75rem;
	vertical-align: middle;
}

.service-area-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.service-area-info p {
    color: #64748b;
    font-size: 0.875rem;
}

.service-area-toggle {
    color: #64748b;
    transition: transform 0.2s ease;
}

.service-area-card.active .service-area-toggle {
    transform: rotate(180deg);
}

.service-area-cities {
    display: none;
    padding: 0 2rem 1.5rem;
}

.service-area-card.active .service-area-cities {
    display: block;
}

.cities-grid {
    background: #eff6ff;
    border-radius: 1rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
}

.cities-grid span {
    padding: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
    transition: background-color 0.2s ease;
}



/* Contact Section */
.contact {
    background: ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

.contact-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.phone-card {
    text-align: center;
}

.phone-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.phone-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-hours {
    margin-bottom: 1rem;
}

.contact-hours p {
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.small-text {
    font-size: 0.875rem;
    color: #64748b;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.line-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #00c300;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}


.contact-card h4 {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.contact-card small {
    color: #64748b;
    font-size: 0.875rem;
}

.btn-line {
	margin-top: 10px;
    display: inline-flex;
    align-items: center;
	justify-content: center; 
    gap: 8px;             
    background-color: #00c300;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
	padding: 0.75rem 1.5rem;
	width: 100%;
}

.btn-line span {
    color: white;
}

.line-btn-icon {
    width: 24px;
    height: 24px;
}


.line-logo {
    width: 24px;
    height: 24px;
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ea580c;
}

.form-note {
    font-size: 0.875rem;
    color: #64748b;
    text-align: left;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #D31212;
    color: white;
    padding: 2rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 0rem;
}

.footer-company {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .footer-company {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: white;
    padding: 4px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-logo p {
    color: white;
    font-size: 0.875rem;
}

.footer-company p {
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer ul li a:hover {
    color: #fed7aa;
}

.footer-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-areas-grid div {
    color: white;
    font-size: 0.875rem;
}

.footer-areas p {
    color: white;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.footer-contact-item {
    margin-bottom: 1rem;
}

.footer-contact-item strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.footer-contact-item small {
    color: white;
    font-size: 0.875rem;
}

.footer-contact-item span {
    color: white;
}

.footer-hours {
    color: white;
}

.footer-hours div {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-hours small {
    font-size: 0.75rem;
    color: white;
}

.footer-bottom {
    border-top: 1px solid white;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fed7aa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }

    .strengths-grid,
    .cost-secrets-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
}

/*
.line-fixed-button {
  display: none;
}
*/

.btn-line.fixed {
	display: none;
}


@media (max-width: 768px) {
  .line-fixed-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white; 
    display: flex;
    justify-content: center;
    padding: 20px 0;
    z-index: 999;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1); 
	transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .btn-line.fixed {
	  display: inline-flex;
	  width: 70%;
  }
  
  .line-fixed-wrapper.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
 
/* 
  .line-fixed-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 15px;
    left: 50%;
	transform: translateX(-50%);
    width: 300px;
    padding: 12px;
    background-color: #06c755; 
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    z-index: 1000;
    border: none;
  }

  .line-fixed-button .icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
	object-fit: contain;
  }
*/
}


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

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #ea580c;
    outline-offset: 2px;
}

html, body {
  overflow-x: hidden;
}

.privacy-container {
	margin: 5% 20%;
}

.privacy-policy {
	font-size: 2.0rem;
	text-align: center;
	margin-bottom: 5.0rem;
}

.privacy-policy-head {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.privacy-policy-box {
  margin-bottom: 1.5rem; 
}

.privacy-policy-detail {
  margin: 0 0 0.5rem 0;
}

.privacy-policy-box ol {
  margin-left: 2rem; 
  padding-left: 1rem; 
}

.privacy-policy-box li {
	margin: 1rem 0;
}
