/* 札幌ホットスポットガイドのスタイル */
.highlight-text {
    font-weight: 700;
    background: linear-gradient(transparent 70%, #ffcd44 70%);
    padding: 2px 4px;
}

/* コンタクトセクション */
.p-contact {
    padding: 100px 0;
    background-image: url('../img/contact-back.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    filter: none !important;
    background-blend-mode: normal !important;
}

/* 他のCSSによる緑フィルターを無効化 */
.p-contact::before,
.p-contact::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

.p-contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    text-align: center;
    color: white;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 40px 0;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin: 0 0 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* その他事業ページ専用CSS */

/* 邪魔なfont-weight: 300を強制上書き */
@media (min-width: 768px) {
    body {
        font-weight: 500 !important;
    }
}

.sp {
    display: none;
}

/* テーマのパンくずリストを非表示 */
#breadcrumb {
    display: none !important;
}

/* ページヘッダーエリア */
.pageindex {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f7f4 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.pageindex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 128, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 128, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pageindex .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* パンくずリスト */
.breadcrumb {
    margin-bottom: 40px;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb ul li {
    font-size: 14px;
    color: #666;
}

.breadcrumb ul li a {
    color: #008037;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb ul li a:hover {
    color: #006029;
}

.breadcrumb ul li span {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid #666;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin: 0 4px;
}

/* ページヘッダーコンテンツ */
.pageindex-content {
    max-width: 800px;
    margin: 0;
}

.pageindex-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pageindex-icon {
    flex-shrink: 0;
}

.pageindex-icon img {
    width: 64px;
    height: auto;
}

.pageindex-title {
    font-size: 36px;
    font-weight: 700;
    color: #001D39;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* 事業セクション（個別） */
.p-service-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.p-service-section:not(:last-of-type)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background-color: #e0e0e0;
}

.p-service-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクションヘッダー（他のページと同じスタイル） */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #008037;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #001D39;
    margin: 0;
    line-height: 1.3;
}

/* サービスコンテンツレイアウト */
.service-content-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.service-image {
    flex: 1;
    overflow: hidden;
}

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

.service-text {
    flex: 1;
}

.service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #001D39;
    margin: 0 0 20px 0;
}

.service-text p:last-child {
    margin-bottom: 0;
}

/* サービスボタン */
.service-button-wrapper {
    text-align: center;
}

.service-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3DB86D 0%, #008036 100%);
    color: white !important;
    padding: 24px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 450px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 128, 54, 0.3);
}

.service-detail-btn:hover {
    background: linear-gradient(135deg, #2fa85a 0%, #006029 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 54, 0.4);
}

/* レスポンシブ対応 - ページヘッダーエリア */
@media (max-width: 767px) {
    .pageindex {
        padding: 40px 0;
        padding-top: 80px;
    }
    
    .pageindex .container {
        padding: 0 16px;
    }
    
    .breadcrumb {
        margin-bottom: 30px;
    }
    
    .breadcrumb ul {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .breadcrumb ul li {
        font-size: 12px;
    }
    
    .breadcrumb ul li span {
        border-left: 3px solid #666;
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
        margin: 0 2px;
    }
    
    .pageindex-header {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .pageindex-icon img {
        width: 48px;
    }
    
    .pageindex-title {
        font-size: 24px;
        line-height: 1.3;
    }
}

/* レスポンシブ対応 - 事業セクション */
@media (max-width: 1024px) {
    .p-service-section {
        padding: 80px 0;
    }
    
    .service-content-layout {
        gap: 40px;
    }
    
    .service-image {
        flex: 1;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
	.section-label {
    
    margin: 0 0 8px 0;
}
    .p-service-section {
        padding: 60px 0;
    }
    
    .p-service-section .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-content-layout {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .service-image {
        flex: none;
        width: 100%;
    }
    
    .service-text p {
        font-size: 14px;
    }
    
    .service-detail-btn {
        width: 100%;
        max-width: 300px;
        padding: 18px 24px;
        font-size: 14px;
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .p-contact {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .contact-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
	.cta-badge {
        font-size: 14px;
        padding: 6px 16px;
		transform: unset;
		left: 10%;
    right: 10%;
    }

    .cta-button {
        font-size: 18px;
        padding: 26px 24px 16px 24px;
        gap: 12px;
    }
    
    .cta-button-text {
        font-size: 18px;
    }
    
    .cta-mail-icon {
        width: 20px;
        height: 20px;
    }
    
    .cta-arrow-icon {
        width: 24px;
        height: 24px;
    }
	.section-header {
    text-align: center;
    margin-bottom: 40px;
}
}

@media (max-width: 480px) {
	.sp{
		display: block;
	}
    .p-contact .container {
        padding: 0 16px;
    }
    
    .contact-title {
        font-size: 28px;
        line-height: 2;
        margin-bottom: 24px;
    }
    
    .contact-description {
        font-size: 16px;
    }
}



