@charset "utf-8";

/**************************************************
header
**************************************************/
header{
    position: fixed;
    width: 100%;
    min-width: 1200px;
    height: 100px;
    top: 0;
    left: 0;
    padding: 0 0 0 50px;
    z-index: 99990;
    background-color: #FFFFFF;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

header.scroll{
    height: 60px;
    background-color: #FFFFFF;
}

header h1{
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

header h1 img{
    width: 235px;
    height: 55px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

header.scroll h1 img{
    width: 136px;
    height: 32px;
}

#globalNavi ul{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
}

#globalNavi ul li{
    position: relative;
    font-size: 1rem;
    font-weight: 450;
    margin-right: 20px;
    letter-spacing: 0
}

#globalNavi ul li.sns{
    background: #F4F5F7;
    margin: 0 0 0 20px;
    padding: 0 13px;
    height: 100px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

#globalNavi ul li.sns img{
    width: 30px;
    margin: 0 7px;
}

#globalNavi ul li:nth-child(7),
#globalNavi ul li:last-child{margin-right: 0;}

#globalNavi ul li::before{
    position: absolute;
    content: '';
    top: -15px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #000000;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

#globalNavi ul li:nth-child(7)::before,
#globalNavi ul li:last-child::before{display: none;}

#globalNavi ul li:hover::before{
    width: 98%;
    left: -2px;
}

#globalNavi ul li a{
    color: #000000;
    text-decoration: none;

}

#globalNavi ul li:last-child a{
    color: #FFFFFF;
    background: #273A60;
    width: 100px;
    height: 100px;
    font-size: 0.9rem;
    letter-spacing: 0;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#globalNavi ul li a:hover{color: #999999;}

#globalNavi ul li:last-child a:hover{
    color: #FFFFFF;
    opacity: 0.5;
}

header.scroll #globalNavi ul li.sns,
header.scroll #globalNavi ul li:last-child a{height: 60px;}

#menu{
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    background: url("../img/menu.png") no-repeat 0 0 #273A60;
    background-size: 60px auto;
    cursor: pointer;
    z-index: 99991;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    display: none;
}

#menu.open{
    background: url("../img/menu.png") no-repeat 0 -60px #273A60;
    background-size: 60px auto;
}

/* カラー設定 */
:root {
    --main-color: rgb(39, 58, 96); /* 指定のメインカラー */
    --white-color: rgb(255, 255, 255); /* 指定のサブカラー1 */
    --light-gray: rgb(244, 244, 243); /* 指定のサブカラー2 */
    --accent-color: #ff6b00; /* アクセントカラー（オレンジ） */
    --success-color: #27ae60; /* 成功用カラー（緑） */
    --danger-color: #e74c3c; /* 警告用カラー（赤） */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;
}

body {
    background-color: var(--white-color);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}


/* ヒーローセクション */
.hero {
    background: linear-gradient(rgba(39, 58, 96, 0.7), rgba(39, 58, 96, 0.7)), url('../img/sales.3.jpg') center/cover no-repeat;
    color: var(--white-color);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    margin-top: 100px;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-button:hover {
    background-color: #ff8c3f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* セクション共通スタイル */
.section {
    padding: 50px 0;
}

.section-light {
    background-color: var(--light-gray);
}

.section-dark {
    background-color: var(--main-color);
    color: var(--white-color);
}

.section-title {
    text-align: center;
    color: var(--main-color);
    font-size: 32px;
    margin-bottom: 5px;
}

.section-dark .section-title {
    color: var(--white-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #666;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-divider {
    width: 50%;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto 30px;
}

.consultation-message {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
    padding-bottom: 0;
}

.installation-kit-image {
    width: 100%;
    height: 100%;
    position: relative;
}


/* 特徴セクション */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    color: var(--main-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.consultation-box {
    width: 33%;
    min-width: 250px;
    margin-bottom: 20px;
    position: relative;
  }

.pricing-box1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 0 2%;
    gap: 1%;
    margin-top: 6%;
    margin-bottom: 40px;
}

.pricing-box2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1%; 
    max-width: 660px; 
    margin: 0 auto; 
    margin-bottom: 40px;
}

.pricing-section {
    background-color: var(--white-color); 
    padding: 6% 0 0 0; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    max-width: 960px; 
    margin: 0 auto;
}
/* オートモア紹介セクション */
.about-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    color: var(--main-color);
    font-size: 125%;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-text > p {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 100%;
}

.about-points {
    margin: 30px 0;
}

.about-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-point-icon {
    background-color: var(--success-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: bold;
}

.about-point-content h4 {
    color: var(--main-color);
    font-size: 100%;
    margin-bottom: 8px;
}

.about-point-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.about-video {
    flex: 1;
    min-width: 400px;
}

.about-video iframe {
    width: 100%;
    height: 472px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-video {
        min-width: auto;
        order: -1;
        width: 100%;
    }
    
    .about-video iframe {
        height: 375px;
    }
}
.services-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-tab {
    padding: 12px 25px;
    border-radius: 30px;
    margin: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    background-color: var(--white-color);
    color: var(--main-color);
    border: 2px solid var(--main-color);
    transition: all 0.3s;
}

.service-tab.active {
    background-color: var(--main-color);
    color: var(--white-color);
}

.service-content {
    display: none;
}

.service-content.active {
    display: block;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-text h3 {
    color: var(--main-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.service-points {
    margin: 30px 0;
}

.service-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.point-icon {
    background-color: var(--success-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}


/* 設置サービスセクション */
.installation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.installation-option {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.installation-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.option-image {
    height: 200px;
    background-color: #f0f0f0;
}

.option-content {
    padding: 25px;
}

.option-content h3 {
    color: var(--main-color);
    margin-bottom: 15px;
}

.option-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.option-content li {
    margin-bottom: 8px;
}

/* メンテナンスセクション */
.maintenance-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.maintenance-service {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.maintenance-service h3 {
    color: var(--main-color);
    margin-bottom: 15px;
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.maintenance-service ul {
    list-style: none;
}

.maintenance-service li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.maintenance-service li::before {
    content: '✓';
    color: var(--success-color);
    margin-right: 10px;
    font-weight: bold;
}

.winter-maintenance {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../img/placeholder-1200x400.jpg') center/cover no-repeat;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    border: 2px solid var(--main-color);
}

.winter-maintenance h3 {
    color: var(--main-color);
    margin-bottom: 15px;
}

/* 製品ラインナップセクション */
.products-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    margin: 40px 0;
}

.product-card {
    min-width: 300px;
    scroll-snap-align: start;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    background-color: #f0f0f0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    color: var(--main-color);
    margin-bottom: 10px;
}

.product-specs {
    margin: 15px 0;
}

.product-spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.product-spec strong {
    color: var(--main-color);
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin: 15px 0;
}

/* 導入の流れセクション */
.introduction-flow {
    width: 30%;
    min-width: 200px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.arrow1 {
    position: absolute;
    right: 20px;
    top: 35px;
    font-size: 20px;
    color: var(--main-color);
}

/* よくある質問セクション */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background-color: var(--white-color);
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    color: var(--main-color);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--main-color);
}

.faq-answer {
    background-color: var(--light-gray);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* お問い合わせフォーム */
.contact-form {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--main-color);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-check input {
    margin-right: 10px;
}

.form-check label {
    font-weight: normal;
    margin-bottom: 0;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-col {
    flex: 1;
    padding: 0 10px;
    min-width: 300px;
}

.form-button {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.form-button:hover {
    background-color: #ff8c3f;
    transform: translateY(-3px);
}

/* CTA セクション */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(rgba(39, 58, 96, 0.9), rgba(39, 58, 96, 0.9)), center/cover fixed no-repeat;
    color: var(--white-color);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* フッター */
footer{
	position: relative;
	margin: 0 auto 0 auto;
	background: #F4F5F7;
}

footer dl{
	padding: 50px 0;
	text-align: center;
}
footer dl dt img{width: 200px;}
footer dl dd{
	font-size: 1.1rem;
	letter-spacing: 1px;
	line-height: 1.6;
	padding-top: 30px;
}

.copyRight{
	padding: 30px 0;
	font-size: 0.8rem;
	text-align: center;
	color: #FFFFFF;
	background: #273A60;
}

.installation-basics-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.summary-box h3 {
    color: var(--main-color);
    margin-bottom: 15px;
    text-align: center;
}


/* レスポンシブデザイン */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .flow-step {
        width: 45%;
    }
    
    .flow-step:nth-child(2n)::after {
        content: '';
    }
    
    .flow-step:nth-child(2n-1)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
        padding: 150px 0 80px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 150%;
    }
    
    .hero p {
        font-size: 100%;
        text-align: left;
        padding: 3%;
    }
    
    header{
	min-width: 100%;
	height: 60px;
	padding: 0 0 0 20px;
}

header img{
    width: 136px;
    height: 32px;
}

header h1{
	height: 32px;
	-webkit-transition: none;
	transition: none;
}
header h1 img{
	-webkit-transition: none;
	transition: none;
}
header h1 img{
	width: 136px;
	height: 32px;
}

#globalNavi{
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: calc(100vh - 60px);
	background-color: #273A60;
	display: none;
}
#globalNavi ul{
	height: 100%;
	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#globalNavi ul li{
	width: 100%;
	margin: 10px 0;
	text-align: center;
}
#globalNavi ul li::before{display: none;}
#globalNavi ul li.sns{
	padding: 10px 0;
	margin: 20px 0 0 0;
	height: auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#globalNavi ul li:last-child{margin: 0;}
#globalNavi ul li a{
	display: block;
	color: #FFFFFF;
	padding: 5px 0;
}
#globalNavi ul li:last-child a{
	width: 100%;
	height: auto;
	font-size: 1.5rem;
	padding: 25px 0;
	background: #000000;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#menu{display: block;}

/**************************************************
 footer
**************************************************/
footer{margin: 0 auto 0 auto;}

footer dl{padding: 30px 20px;}
footer dl dt img{width: 150px;}
footer dl dd{
	font-size: 1rem;
	letter-spacing: 0;
	padding-top: 20px;
}

.copyRight{
	padding: 25px 0;
	font-size: 0.7rem;
}

   
    .contact-info {
        margin-top: 10px;
        text-align: center;
    }

    .container {
    max-width: 1200px;
    margin: 0 2%;
    padding: 0;
    }   
    .flow-step {
        width: 100%;
    }
    
    .flow-step::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -30px;
    }
    
    .section {
        padding: 15px 0;
    }
    
    .section-title {
        font-size: 150%;
    }
    
    .contact-form {
        padding: 20px;
    }

  .section-divider {
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto 30px;
    }

  .consultation-box {
    width: 100%;
    min-width: 250px;
    margin-bottom: 40px;
    position: relative;
    }

  .pricing-box1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    gap: 0;
    margin-top: 6%;
    margin-bottom: 40px;
    }

    .pricing-box2 {
     display: flex;
     justify-content: space-around;
     gap: 0;
     flex-wrap: unset;
    }

    .pricing-box2 img {
        width: 30%;
        height: auto;
    }

/* 導入の流れセクション */
.introduction-flow {
    width: 100%;
    min-width: 200px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

    .arrow1 {
        display: none;
    }

    .installation-basics-text {
    flex: 1;
    min-width: 300px;
    padding-right: 0;
}

.summary-box h3 {
    color: var(--main-color);
    margin-bottom: 15px;
    text-align: left;
}

.consultation-message {
    flex: 1;
    min-width: 300px;
    padding-right: 0;
    padding-bottom: 15px;
}

.consultation-message p:nth-child(2) {
    flex: 1;
    min-width: 300px;
    padding-right: 0;
    padding-bottom: 15px;
}

.installation-kit-image {
    width: 100%;
    height: 80%;
    position: relative;
}

}

/* インラインスタイルを外部化 */
.installation-basics-content {
    background-color: var(--white-color);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.installation-basics-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}



.installation-basics-text h3 {
    color: var(--main-color);
    margin-bottom: 20px;
    font-size: 110%;
    text-align: center;
}

.installation-basics-text p {
    margin-bottom: 20px;
}

.installation-basics-image {
    flex: 1;
    min-width: 300px;
}

.installation-basics-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.installation-highlight {
    padding: 20px 5%;
    background-color: rgba(39, 58, 96, 0.05);
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--main-color);
}

.installation-highlight h4 {
    color: var(--main-color);
    margin-bottom: 15px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.icon-card {
    background-color: var(--white-color);
    padding: 5%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-card-icon {
    width: 24%;
    height: 80px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.icon-card h3 {
    color: var(--main-color);
    text-align: center;
    margin-bottom: 15px;
}

.icon-card ul {
    list-style-type: none;
    padding: 0;
}

.icon-card li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.check-icon {
    color: var(--accent-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.cross-icon {
    color: var(--danger-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.summary-box {
    text-align: center;
    padding: 20px;
    background-color: rgba(39, 58, 96, 0.05);
    border-radius: 10px;
    margin-bottom: 40px;
}



.summary-box p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
}

.consultation-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.consultation-card {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.consultation-icon {
    width: 70px;
    height: 70px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.consultation-card h3 {
    color: var(--main-color);
    text-align: center;
    margin-bottom: 15px;
}

.flow-box {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 30px 0;
    border-left: 5px solid var(--accent-color);
}

.flow-box h3 {
    color: var(--main-color);
    margin-bottom: 15px;
}

.flow-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flow-step {
    width: 100%;
    min-width: 250px;
    margin-bottom: 20px;
    position: relative;
}

.flow-number {
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.flow-step h4 {
    color: var(--main-color);
    text-align: center;
    margin-bottom: 10px;
}

.flow-step p {
    text-align: center;
}

.flow-arrow {
    position: absolute;
    right: -15px;
    top: 40px;
    font-size: 24px;
    color: var(--main-color);
}

.staff-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.staff-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.staff-text p:first-child {
    font-weight: bold;
    color: var(--main-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.staff-text p:last-child {
    color: #555;
    line-height: 1.6;
}

.staff-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.staff-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-container {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 960px;
    margin: 0 auto;
}

.pricing-section h3 {
    color: var(--main-color);
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.model-grid, .kit-grid, .service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.model-button, .installation-fee-button {
    width: 100px;
    background-color: var(--white-color);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.installation-kit-button {
    width: 33%;
    background-color: var(--white-color);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    height: 280px;
}

.model-image, .kit-image, .service-image {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.kit-image {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kit-image-s {
    width: 50%;
    height: 60%;
    position: relative;
}

.kit-image-m {
    width: 70%;
    height: 80%;
    position: relative;
}

.kit-image-l {
    width: 100%;
    height: 100%;
    position: relative;
}

.model-image img, .kit-image img, .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kit-image img {
    object-fit: contain;
}

.model-content, .kit-content, .service-content {
    padding: 15px;
    text-align: center;
}

.model-content h4, .kit-content h4, .service-content h4 {
    color: var(--main-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.price {
    font-weight: bold;
    color: var(--main-color);
}

.spec {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.total-section {
    text-align: center;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 30px;
}

.total-section h3 {
    color: var(--main-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.total-price {
    font-weight: bold;
    color: var(--main-color);
    font-size: 32px;
}

.note {
    font-size: 14px;
    color: #666;
}

.process-section {
    margin-bottom: 30px;
}

.process-section h3 {
    color: var(--main-color);
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.process-step {
    width: 30%;
    min-width: 200px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin: 0 auto 10px;
}

.process-step p {
    font-size: 16px;
    font-weight: bold;
    color: var(--main-color);
}

.process-arrow {
    position: absolute;
    right: -10px;
    top: 35px;
    font-size: 20px;
    color: var(--main-color);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

#about1 p{
 text-align: left;
}

#installation-basics p{
    text-align: left;
}

#consultation p{
    text-align: left;
}