/* リセット・基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFF8E7;
}

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

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    min-height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}

.header-logo:hover {
    transform: scale(1.05);
}

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

.header-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.header-tel:hover {
    transform: scale(1.05);
}

.header-tel i {
    font-size: 1.3rem;
    color: #fff !important;
}

.tel-number {
    font-size: 1.3rem;
}

/* ボタンスタイル */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn i,
.btn .fa-phone {
    color: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.btn-primary i,
.btn-primary .fa-phone {
    color: #fff !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* パルスアニメーション */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ヒーローセクション */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #FFB81C 0%, #FF6B35 100%);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ヒーロー背景ビジュアル */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 40px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-visual-item {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(0px) brightness(1.1);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1.2);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-main {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInScale 1.2s ease-out 0.6s forwards;
    position: relative;
}

.hero-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFB81C, transparent);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.hero-sub-message {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* アニメーション定義 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
}

.hero-feature i {
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

/* 悩み共感サブコピー */
.hero-problem {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 50px;
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-problem i {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

/* 強いベネフィットキャッチコピー */
.hero-main-big {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.4);
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInScale 1.2s ease-out 0.5s forwards;
}

/* Before/Afterビジュアル */
.hero-before-after {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-ba-item {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 180px;
    position: relative;
    border: 2px solid rgba(255,255,255,0.3);
}

.ba-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.before-label {
    background: #95a5a6;
    color: #fff;
}

.after-label {
    background: #27ae60;
    color: #fff;
}

.ba-emoji {
    font-size: 3rem;
    margin: 10px 0;
}

.hero-ba-item p {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.hero-ba-arrow {
    font-size: 2rem;
    color: #fff;
}

/* 2つの目立つCTAボタン */
.hero-cta-dual {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    min-width: 280px;
    justify-content: center;
}

.btn-hero-phone {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    color: #fff;
}

.btn-hero-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.5);
}

.btn-hero-line {
    background: linear-gradient(135deg, #06C755 0%, #00B14F 100%);
    color: #fff;
}

.btn-hero-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(6, 199, 85, 0.5);
}

.btn-hero-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.btn-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-hero-label {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-hero-number {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.btn-hero-sub {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.hero-note {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 600;
}

/* スクロール促進インジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #fff;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(231, 76, 60, 0.9);
    padding: 6px 15px;
    border-radius: 20px;
}

/* スクロール促進インジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-5px);
}

/* バウンスアニメーション */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* 価格目安セクション */
.pricing-guide {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    padding: 80px 20px;
}

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

.pricing-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, #FFB81C 0%, #FF6B35 100%);
    color: #fff;
    border: 3px solid #E74C3C;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-amount,
.pricing-card.featured .pricing-features li,
.pricing-card.featured .pricing-note {
    color: #fff;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FF6B35;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pricing-badge.best {
    background: #E74C3C;
    animation: pulse 2s infinite;
}

.pricing-icon {
    font-size: 4rem;
    color: #FF6B35;
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-icon {
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 20px;
}

.pricing-amount {
    margin: 25px 0;
}

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

.pricing-card.featured .price-range {
    color: #fff;
}

.price-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-left: 5px;
}

.pricing-card.featured .price-unit {
    color: rgba(255,255,255,0.95);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    padding: 0 10px;
}

.pricing-features li {
    padding: 10px 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-weight: 700;
}

.pricing-note-box {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.pricing-note-box h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-note-box h4 i {
    color: #FF6B35;
}

.pricing-includes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #555;
}

.include-item i {
    color: #52C41A;
    font-size: 1.2rem;
}

.pricing-reassurance {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    line-height: 1.8;
    color: #555;
}

.pricing-reassurance i {
    color: #52C41A;
    margin-right: 8px;
}

.pricing-reassurance strong {
    color: #E74C3C;
}

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

.cta-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.95rem;
}

/* セクションCTA */
.section-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-message {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 25px;
}

.cta-message i {
    color: #FFB81C;
    margin-right: 10px;
}

/* 数字で見る実績 */
.stats {
    background: #fff;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #E74C3C;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: #555;
}

/* セクション共通 */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #8B4513;
}

.section-title i {
    color: #FF6B35;
    margin-right: 10px;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* よくあるお悩み */
.problems {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
    padding: 80px 20px;
}

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

.problem-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.problem-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-illustration {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E74C3C;
    margin-bottom: 10px;
}

.problem-card p {
    color: #666;
    line-height: 1.6;
}

.solution-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.solution-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 20px;
}

.solution-box h3 i {
    color: #52C41A;
}

.solution-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

/* 期間限定特典セクション */
.limited-offer {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    padding: 80px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.limited-offer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.limited-offer::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.offer-badge-top {
    background: #FFB81C;
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.offer-badge-top i {
    margin-right: 8px;
}

.offer-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.offer-highlight {
    display: block;
    font-size: 3rem;
    color: #FFB81C;
    margin-top: 10px;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.offer-card {
    background: #fff;
    color: #333;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.offer-icon {
    font-size: 4rem;
    color: #FF6B35;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 20px;
}

.offer-content {
    margin: 25px 0;
}

.offer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.offer-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #E74C3C;
    line-height: 1;
    margin-bottom: 10px;
}

.offer-detail {
    font-size: 0.9rem;
    color: #999;
}

.offer-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.offer-or {
    font-size: 1.5rem;
    font-weight: 700;
    background: #FFB81C;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.offer-condition {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.offer-condition h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-condition h4 i {
    color: #FFB81C;
    margin-right: 8px;
}

.offer-condition ul {
    list-style: none;
    margin-bottom: 15px;
}

.offer-condition li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 1rem;
}

.offer-condition li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFB81C;
    font-weight: 700;
}

.offer-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-top: 15px;
}

.offer-timer {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.timer-label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.timer-label i {
    color: #FFB81C;
    margin-right: 8px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-box {
    background: #fff;
    color: #E74C3C;
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.timer-unit {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 5px;
    color: #666;
}

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

.offer-cta-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
}

/* 選ばれる理由 */
.reasons {
    background: #fff;
    padding: 80px 20px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFEAA7 100%);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.2);
}

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

.reason-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 10px;
}

.reason-card p {
    color: #555;
    line-height: 1.7;
}

/* 安心の約束 */
.promises {
    background: linear-gradient(135deg, #FFB81C 0%, #F7931E 100%);
    padding: 80px 20px;
}

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

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.promise-badge {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.promise-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.promise-badge i {
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 15px;
    display: block;
}

.promise-badge span {
    font-size: 1rem;
    font-weight: 700;
    color: #8B4513;
    line-height: 1.5;
    display: block;
}

/* 施工事例 */
.cases {
    background: #fff;
    padding: 80px 20px;
}

.cases-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.case-item {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.case-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 25px;
    text-align: center;
}

.case-title i {
    color: #FF6B35;
    margin-right: 10px;
}

.case-photos {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.case-photo-wrapper {
    position: relative;
    text-align: center;
}

.case-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.case-label.before {
    background: linear-gradient(135deg, #95A5A6 0%, #7F8C8D 100%);
    color: #fff;
}

.case-label.after {
    background: linear-gradient(135deg, #52C41A 0%, #389E0D 100%);
    color: #fff;
}

.case-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.case-photo:hover {
    transform: scale(1.03);
}

.case-caption {
    margin-top: 10px;
    font-weight: 700;
    color: #555;
    font-size: 0.95rem;
}

.case-arrow {
    font-size: 3rem;
    color: #FF6B35;
    text-align: center;
}

.case-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.case-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-weight: 700;
    color: #555;
}

.case-detail-item i {
    color: #FF6B35;
    font-size: 1.2rem;
}

.case-comment {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    line-height: 1.8;
    color: #555;
}

.case-comment i {
    color: #FF6B35;
    margin-right: 8px;
}

/* トイレの選び方動画 */
.video-guide {
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 100%);
    padding: 80px 20px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.video-link-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.video-thumbnail {
    margin-bottom: 30px;
}

.video-thumbnail i {
    font-size: 5rem;
    color: #fff;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.video-thumbnail h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.video-thumbnail p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #E74C3C;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-video i {
    font-size: 1.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

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

.video-points {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #FF6B35;
}

.video-points h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-points h3 i {
    color: #FF6B35;
    font-size: 1.6rem;
}

.video-points ul {
    list-style: none;
    padding: 0;
}

.video-points li {
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-points li i {
    color: #27ae60;
    font-size: 1.2rem;
}

/* リフォームプラン */
.plans {
    background: #fff;
    padding: 80px 20px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

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

.plan-card.featured {
    background: linear-gradient(135deg, #FFB81C 0%, #FF6B35 100%);
    color: #fff;
    border: 3px solid #E74C3C;
}

.plan-card.featured h3,
.plan-card.featured h4 {
    color: #fff;
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #E74C3C;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.plan-card.featured .plan-badge {
    background: #C0392B;
}

.plan-icon {
    font-size: 4rem;
    color: #FF6B35;
    text-align: center;
    margin-bottom: 15px;
}

.plan-card.featured .plan-icon {
    color: #fff;
}

.plan-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 10px;
    text-align: center;
}

.plan-description {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.plan-card.featured .plan-description {
    color: rgba(255,255,255,0.95);
}

.plan-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF6B35;
    margin: 20px 0 10px 0;
}

.plan-details ul {
    list-style: none;
    margin-bottom: 15px;
}

.plan-details li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.plan-card.featured .plan-details li {
    color: rgba(255,255,255,0.9);
}

.plan-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #52C41A;
    font-weight: 700;
}

.plan-btn {
    width: 100%;
    margin-top: 20px;
}

.plan-cta {
    text-align: center;
    background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.plan-cta p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 20px;
}

.plan-cta i {
    color: #FFB81C;
}

/* お客様の声 */
.reviews {
    background: linear-gradient(135deg, #FFEAA7 0%, #FFE4B5 100%);
    padding: 80px 20px;
}

.review-summary {
    text-align: center;
    margin-bottom: 50px;
}

.review-rating {
    display: inline-block;
    background: #fff;
    padding: 30px 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.rating-number {
    font-size: 4rem;
    font-weight: 900;
    color: #FF6B35;
    line-height: 1;
}

.rating-stars {
    font-size: 2rem;
    color: #FFB81C;
    margin: 10px 0;
}

.rating-count {
    font-size: 1rem;
    color: #666;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

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

.review-avatar {
    font-size: 3rem;
}

.review-name {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
    margin-bottom: 5px;
}

.review-attribute {
    font-size: 0.85rem;
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 5px;
}

.review-stars {
    color: #FFB81C;
    font-size: 0.9rem;
}

.review-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-plan {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* 施工の流れ */
.flow {
    background: #fff;
    padding: 80px 20px;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.flow-step {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    min-width: 180px;
    flex: 0 1 180px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.flow-number {
    background: #FF6B35;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

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

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

.flow-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.flow-arrow {
    font-size: 2rem;
    color: #FF6B35;
}

/* よくある質問 */
.faq {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFEAA7 100%);
    padding: 80px 20px;
}

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

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

.faq-item.priority {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    border: 2px solid #FF6B35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.faq-item.priority .faq-question {
    background: rgba(255, 107, 53, 0.1);
}

.faq-item.priority .faq-question i {
    color: #E74C3C;
    font-size: 1.3rem;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: #8B4513;
    transition: all 0.3s ease;
}

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

.faq-question i {
    color: #FF6B35;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px 55px;
    color: #555;
    line-height: 1.8;
}

.faq-answer strong {
    color: #E74C3C;
}

/* 代表メッセージ */
.message {
    background: #fff;
    padding: 80px 20px;
}

.message-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.message-photo {
    text-align: center;
}

.president-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #FF6B35;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.message-name {
    font-weight: 700;
    color: #8B4513;
    line-height: 1.6;
}

.message-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #E74C3C;
    margin-bottom: 20px;
}

.message-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.message-text strong {
    color: #FF6B35;
    font-weight: 700;
}

/* お問い合わせ */
.contact {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 80px 20px;
    color: #fff;
}

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

.contact .section-description {
    color: rgba(255,255,255,0.95);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.contact-method i {
    font-size: 4rem;
    color: #FF6B35;
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 15px;
}

.contact-tel {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #E74C3C;
    text-decoration: none;
    margin: 15px 0;
    transition: transform 0.3s ease;
}

.contact-tel:hover {
    transform: scale(1.05);
}

.contact-hours {
    color: #666;
    margin-bottom: 20px;
}

.contact-email {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF6B35;
    margin: 15px 0;
}

.contact-line {
    font-size: 1.2rem;
    font-weight: 700;
    color: #06C755;
    margin: 15px 0;
}

.btn-line {
    background: linear-gradient(135deg, #06C755 0%, #00B900 100%);
    margin-top: 15px;
}

.btn-line:hover {
    background: linear-gradient(135deg, #00B900 0%, #009900 100%);
}

.contact-method .fab.fa-line {
    color: #06C755;
}

.contact-note {
    color: #666;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.contact-form-wrapper h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-wrapper h3 i {
    color: #FF6B35;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.required {
    color: #E74C3C;
    font-size: 0.85rem;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.form-group input.valid {
    border-color: #52C41A;
    padding-right: 40px;
}

.form-group input.invalid {
    border-color: #E74C3C;
}

.validation-icon {
    position: absolute;
    right: 15px;
    top: 43px;
    font-size: 1.2rem;
    display: none;
}

.form-group input.valid ~ .validation-icon {
    display: block;
    color: #52C41A;
}

.form-group input.valid ~ .validation-icon:before {
    content: "✓";
}

.error-message {
    display: none;
    color: #E74C3C;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-group input.invalid ~ .error-message {
    display: block;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.privacy-check input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.privacy-text {
    flex: 1;
    line-height: 1.6;
    color: #555;
}

.privacy-text a {
    color: #FF6B35;
    text-decoration: underline;
    font-weight: 700;
}

.privacy-text a:hover {
    color: #E74C3C;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* フッター */
.footer {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: #fff;
    padding: 60px 20px 20px;
}

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

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.footer-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-company {
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-info p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-info a {
    color: #FFB81C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #fff;
}

.footer-info i {
    margin-right: 8px;
    color: #FFB81C;
}

.footer-area h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-area i {
    color: #FFB81C;
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-separator {
    margin: 0 10px;
    color: rgba(255,255,255,0.5);
}

/* スクロール追従CTA */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

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

.fixed-cta-badge {
    width: 100%;
    background: linear-gradient(135deg, #FFB81C 0%, #FF6B35 100%);
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.fixed-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.fixed-cta-phone {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

.fixed-cta-phone i {
    color: #fff !important;
}

.fixed-cta-phone:hover {
    background: linear-gradient(135deg, #C0392B 0%, #A93226 100%);
}

.fixed-cta-line {
    background: linear-gradient(135deg, #06C755 0%, #00B14F 100%);
}

.fixed-cta-line i,
.fixed-cta-line img {
    color: #fff !important;
}

.fixed-cta-line:hover {
    background: linear-gradient(135deg, #00B14F 0%, #009A44 100%);
}


/* トップへ戻るボタン */
.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #E74C3C 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header-logo {
        height: 40px;
    }

    .header-right {
        gap: 10px;
    }

    .header-tel {
        font-size: 0.9rem;
    }

    .tel-number {
        display: none;
    }

    .btn-header {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .hero-main {
        font-size: 2.5rem;
    }

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

    .hero-sub-message {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-visual {
        opacity: 0.25;
        gap: 20px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

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

    .problem-illustration {
        width: 100px;
        height: 100px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .message-content {
        grid-template-columns: 1fr;
    }

    .president-photo {
        width: 150px;
        height: 150px;
    }

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

    .case-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .case-photo {
        height: 250px;
    }

    .case-item {
        padding: 25px;
    }

    .case-details {
        flex-direction: column;
        gap: 15px;
    }

    .video-container {
        padding: 20px;
    }

    .video-points {
        padding: 20px;
    }

    .video-points h3 {
        font-size: 1.2rem;
    }

    .video-points li {
        font-size: 1rem;
        padding: 10px 0;
    }

    .flow-arrow {
        display: none;
    }

    .flow-steps {
        flex-direction: column;
    }

    .flow-step {
        min-width: auto;
        width: 100%;
    }

    .footer-logo-img {
        height: 60px;
    }

    .scroll-top {
        bottom: 70px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* LINEロゴスタイル */
.line-logo {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
    filter: brightness(0) invert(1); /* 白色に変換 */
}

.btn-secondary .line-logo,
.fixed-cta-line .line-logo {
    filter: brightness(0) invert(1); /* 緑背景の場合は白 */
}

/* ヒーローセクションのLINEボタン用 */
.hero-cta-buttons .btn-secondary .line-logo {
    width: 28px;
    height: 28px;
}

/* お問い合わせセクションのLINEロゴ */
.btn-cta-secondary .line-logo {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 8px;
}
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-or {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .offer-title {
        font-size: 1.8rem;
    }
    
    .offer-highlight {
        font-size: 2rem;
    }
    
    .timer-box {
        min-width: 60px;
        padding: 12px 15px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-feature {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-tel {
        font-size: 1.8rem;
    }

    .fixed-cta a {
        font-size: 0.95rem;
        padding: 15px;
    }

    .fixed-cta span {
        display: none;
    }
}