/* ============================================
   丹後解体 LP - スタイルシート
   ============================================ */

/* リセット & ベース */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    max-width: 100vw;
}

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

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

iframe {
    max-width: 100%;
}

picture {
    display: block;
    width: 100%;
}

picture img {
    width: 100%;
    height: auto;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 2px;
}

.section-title-white {
    color: #fff;
}

.section-title-white::after {
    background: #fff;
}

.section-title .accent {
    color: #d97706;
}

/* プレースホルダー画像 */
.placeholder-image {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 14px;
    min-height: 200px;
}

/* ============================================
   ヘッダー
   ============================================ */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1f2937;
    letter-spacing: 0.1em;
}

.logo-sub {
    font-size: 0.75rem;
    color: #6b7280;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #d97706;
}

.header-hours {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ============================================
   ヒーローセクション
   ============================================ */
.hero {

}


/* ============================================
   お悩みセクション
   ============================================ */
.problems {
    padding: 60px 0 50px;
    background: #202B62;
    border-top: 4px solid #f59e0b;
}

.problems-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.problems-title span {
    color: #f59e0b;
    position: relative;
    font-size: 1.5em;
}

.problems-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f59e0b;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
	border: 2px solid orange
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
}

.solution-arrow {
    text-align: center;
    font-size: 2rem;
    color: #d97706;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

.solution-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
	color: #FFF
}

.highlight-text {
    color: #FFF;
    font-size: 2.4rem;
    display: inline-block;
	margin-right: 4px;
	text-decoration: underline
}

/* ============================================
   選ばれる理由
   ============================================ */
.reasons {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.reasons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/kaitai.jpg') center center / cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.reasons .container {
    position: relative;
    z-index: 1;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.reason-card {
    text-align: center;
    position: relative;
	background: #FFF;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.reason-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}

.reason-image {
    height: 200px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

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

.reason-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #1f2937;
}

.reason-text {
    color: #6b7280;
    line-height: 1.8;
	padding-bottom: 30px;
}

/* ============================================
   動画セクション
   ============================================ */
.video-section {
    padding: 60px 0;
    background: #1f2937;
}

.video-section .section-title {
    color: #fff;
}

.video-section .section-title::after {
    background: #f59e0b;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 25px;
    font-size: 0.95rem;
}

/* ============================================
   サービス内容
   ============================================ */
.services {
    padding: 100px 0;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 200px;
    min-height: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.service-content p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ============================================
   価格表
   ============================================ */
.pricing {
    padding: 100px 0;
    background: #f3f4f6;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/kaitai.jpg') center center / cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-lead {
    text-align: center;
    color: #4b5563;
    margin-bottom: 50px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.pricing-image {
    height: 180px;
    overflow: hidden;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-image img {
    transform: scale(1.05);
}

.pricing-body {
    padding: 30px;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed #e5e7eb;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #d97706;
    line-height: 1;
}

.price-unit {
    font-size: 1.2rem;
    color: #6b7280;
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.pricing-features .material-icons {
    color: #10b981;
    font-size: 1.2rem;
}

.pricing-note {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-note p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-note .material-icons {
    color: #f59e0b;
    font-size: 1.3rem;
}

.pricing-cta {
    text-align: center;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.4);
}

.cta-secondary .material-icons {
    font-size: 1.3rem;
}

/* ============================================
   対応エリア
   ============================================ */
.area {
    padding: 100px 0;
    background: #fff;
}

.area-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.area-map {
    flex: 1;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    max-width: 100%;
}

.area-map iframe {
    width: 100%;
    height: 100%;
}

.area-info {
    flex: 1;
}

.area-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.area-list li {
    padding-left: 25px;
    position: relative;
    color: #374151;
}

.area-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d97706;
    font-weight: 700;
}

.area-note {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ============================================
   施工の流れ
   ============================================ */
.flow {
    padding: 100px 0;
    background: #f9fafb;
    border-top: 4px solid #f59e0b;

}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.flow-step {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    width: 230px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: #d97706;
    margin-bottom: 15px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d97706;
}

.step-icon .material-icons {
    font-size: 3rem;
}

.flow-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.flow-step p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
}

.flow-arrow {
    font-size: 1.8rem;
    color: #d97706;
    display: flex;
    align-items: center;
}

.flow-arrow .material-icons {
    font-size: 2rem;
}

/* ============================================
   お客様の声
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    min-height: auto;
    font-size: 12px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 1rem;
}

.testimonial-detail {
    font-size: 0.85rem;
    color: #6b7280;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   よくある質問
   ============================================ */
.faq {
    padding: 100px 0;
    background: #f9fafb;
}

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

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    font-family: inherit;
    transition: background 0.3s ease;
}

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

.faq-question.active {
    background: #fef3c7;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #d97706;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 30px 25px;
    padding-left: 80px;
}

.faq-answer.active {
    display: flex;
    gap: 15px;
    animation: fadeIn 0.3s ease;
}

.faq-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #e5e7eb;
    color: #6b7280;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.8;
    padding-top: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   お問い合わせフォーム
   ============================================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.contact-lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-phone {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.phone-label {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.phone-number-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
}

.phone-icon-large {
    font-size: 1.5rem;
}

.phone-sub {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.phone-hours {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
}

.form-label {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
}

.required {
    background: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 0;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.submit-arrow {
    transition: transform 0.3s ease;
}

.submit-button:hover .submit-arrow {
    transform: translateX(5px);
}

/* ============================================
   会社情報
   ============================================ */
.company {
    padding: 100px 0;
    background: #fff;
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
}

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

.company-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.company-table th,
.company-table td {
    padding: 20px;
    text-align: left;
}

.company-table th {
    width: 150px;
    font-weight: 500;
    color: #6b7280;
    background: #f9fafb;
}

.company-table td {
    color: #374151;
}

.company-map {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.company-map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* ============================================
   フッター
   ============================================ */
.footer {
    background: #1f2937;
    color: #fff;
    padding: 60px 0 30px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-main {
    color: #fff;
    font-size: 1.3rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 5px;
}

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

.footer-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
    margin-bottom: 10px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    word-break: break-all;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ============================================
   固定CTA
   ============================================ */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fixed-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.fixed-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(245, 158, 11, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.fixed-cta-icon {
    font-size: 1.3rem;
}

.fixed-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 5px 25px rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 5px 40px rgba(245, 158, 11, 0.8); }
    100% { box-shadow: 0 5px 25px rgba(245, 158, 11, 0.5); }
}

/* ============================================
   レスポンシブ
   ============================================ */
.sp-only {
    display: none;
}

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

    .reasons-grid .reason-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .flow-steps {
        gap: 20px;
    }

    .flow-arrow {
        display: none;
    }

    .flow-step {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .sp-only {
        display: inline;
    }

    /* ヘッダー */
    .header-inner {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
    }

    .header-contact {
        flex-direction: column;
        gap: 5px;display: none
    }

    .header-phone {
        font-size: 1rem;
		display: none
    }

    /* ヒーロー */
    .hero {
        min-height: auto;
        padding: 0;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* お悩み */
    .problems {
        padding: 60px 0;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .problem-card {
        padding: 25px 15px;
    }

    .problem-icon {
        font-size: 2rem;
    }

    .highlight-text {
        font-size: 1.5rem;
    }

    /* 選ばれる理由 */
    .reasons {
        padding: 60px 0;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .reasons-grid .reason-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    /* 動画セクション */
    .video-section {
        padding: 60px 0;
    }

    .video-caption {
        font-size: 0.85rem;
        margin-top: 20px;
    }

    /* サービス */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        height: 180px;
    }

    /* 価格表 */
    .pricing {
        padding: 60px 0;
    }

    .pricing-lead {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card:hover {
        transform: none;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .pricing-note p {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .logo-image {
        height: 40px;
    }

    .footer-logo-image {
        height: 35px;
    }

    /* エリア */
    .area {
        padding: 60px 0;
    }

    .area-content {
        flex-direction: column;
        gap: 40px;
    }

    .area-map {
        width: 100%;
        height: 250px;
    }

    .area-info h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    /* 施工の流れ */
    .flow {
        padding: 60px 0;
    }

    .flow-steps {
        flex-direction: column;
        align-items: center;
    }

    .flow-step {
        width: 100%;
        max-width: 300px;
    }

    /* お客様の声 */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    /* よくある質問 */
    .faq {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px 20px;
        padding-left: 20px;
    }

    .faq-answer.active {
        flex-direction: column;
        gap: 10px;
    }

    .faq-a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    /* お問い合わせ */
    .contact {
        padding: 60px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-phone {
        padding: 30px 20px;
    }

    .phone-number-large {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    /* 会社情報 */
    .company {
        padding: 60px 0;
    }

    .company-table th,
    .company-table td {
        display: block;
        padding: 10px 15px;
    }

    .company-table th {
        width: 100%;
    }

    .company-map {
        margin-top: 30px;
    }

    .company-map iframe {
        height: 300px;
    }

    /* フッター */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        max-width: 100%;
        padding: 0 15px;
    }

    .footer-contact {
        text-align: center;
        max-width: 100%;
        word-break: break-all;
    }

    .footer-contact p {
        font-size: 0.8rem;
    }

    /* 固定CTA */
    .fixed-cta-button {
        padding: 12px 18px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .fixed-cta-icon {
        font-size: 1.1rem;
    }
}

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

    .area-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   確認ページ・完了ページ
   ============================================ */
.confirm-section,
.complete-section {
    min-height: calc(100vh - 200px);
    padding-top: 150px;
}

.confirm-wrapper,
.complete-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    padding: 40px;
}

.confirm-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.confirm-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.confirm-table th,
.confirm-table td {
    padding: 20px;
    text-align: left;
    vertical-align: top;
}

.confirm-table th {
    width: 180px;
    font-weight: 500;
    color: #6b7280;
    background: #f9fafb;
}

.confirm-table td {
    color: #374151;
    line-height: 1.8;
}

.confirm-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.confirm-buttons .submit-button {
    max-width: 400px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: #6b7280;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

.back-arrow {
    transition: transform 0.3s ease;
}

.back-button:hover .back-arrow {
    transform: translateX(-5px);
}

/* 完了ページ */
.complete-wrapper {
    text-align: center;
    padding: 60px 40px;
}

.complete-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.complete-icon .material-icons {
    font-size: 3rem;
}

.complete-message {
    font-size: 1.2rem;
    color: #1f2937;
    line-height: 2;
    margin-bottom: 20px;
}

.complete-note {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 40px;
}

.complete-buttons {
    display: flex;
    justify-content: center;
}

.top-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.top-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.top-icon {
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Material Icons 共通調整 */
.back-button .material-icons,
.submit-button .material-icons,
.top-button .material-icons,
.footer-phone .material-icons {
    vertical-align: middle;
    font-size: 1.2rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .confirm-section,
    .complete-section {
        padding-top: 120px;
    }

    .confirm-wrapper,
    .complete-wrapper {
        padding: 30px 20px;
    }

    .confirm-table th,
    .confirm-table td {
        display: block;
        padding: 10px 15px;
    }

    .confirm-table th {
        width: 100%;
    }

    .complete-icon {
        width: 80px;
        height: 80px;
    }

    .complete-icon .material-icons {
        font-size: 2.5rem;
    }

    .complete-message {
        font-size: 1rem;
    }

    .top-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
