/**
 * フロントページ専用スタイルシート
 * gomikaisyu-pro.com のデザインを完全再現
 */

/* ===================================
   ヒーローセクション
   =================================== */
.hero-visual {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-images {
    position: relative;
    height: 100%;
    display: flex;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-image--before {
    background-image: url('../images/hero-before.jpg');
    filter: grayscale(50%);
}

.hero-image--after {
    background-image: url('../images/hero-after.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 102, 204, 0.95) 0%, 
        rgba(0, 68, 153, 0.95) 100%
    );
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-inner {
    color: white;
    text-align: center;
}

/* 信頼バッジ */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge--media {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
}

.badge--youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.badge--record {
    background: linear-gradient(135deg, #ffd700, #ffb700);
}

/* メインコピー */
.hero-headline {
    margin-bottom: 20px;
}

.headline-small {
    display: block;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.9;
}

.headline-large {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.headline-brand {
    display: block;
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* サブコピー */
.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-subtitle strong {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
}

/* USPリスト */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 32px;
}

.feature-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.3;
}

.feature-text strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
}

/* 電話番号エリア */
.phone-numbers {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.phone-item {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.phone-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0066cc;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.phone-link:hover {
    transform: scale(1.05);
    color: #004499;
}

.phone-icon {
    font-size: 20px;
    animation: pulse 2s infinite;
}

/* CTAボタン */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.cta-btn--primary {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
}

.cta-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.cta-btn--line {
    background: linear-gradient(135deg, #00c300, #00b900);
    color: white;
}

.cta-btn--line:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 195, 0, 0.5);
}

.btn-label {
    font-size: 14px;
    opacity: 0.9;
}

.btn-text {
    font-size: 18px;
}

/* ===================================
   共感セクション
   =================================== */
.empathy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.empathy-content {
    text-align: center;
}

.empathy-title {
    margin-bottom: 50px;
}

.title-small {
    display: block;
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.title-large {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
}

.title-large::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00ccff);
    border-radius: 2px;
}

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

.empathy-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.empathy-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.empathy-headline {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.empathy-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.empathy-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    color: #555;
    line-height: 1.6;
}

.empathy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00cc00;
    font-weight: 700;
    font-size: 18px;
}

.empathy-message {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff6b00;
}

.message-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

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

/* ===================================
   YouTubeセクション
   =================================== */
.youtube-section {
    padding: 80px 0;
    background: white;
}

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

.section-title {
    margin-bottom: 20px;
}

.title-en {
    display: block;
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title-ja {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.youtube-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-icon {
    font-size: 24px;
    color: #ff0000;
}

.stats-text {
    font-size: 16px;
    color: #666;
}

.stats-text strong {
    font-size: 24px;
    color: #ff0000;
    font-weight: 700;
}

.youtube-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.youtube-main {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

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

.youtube-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
}

.list-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.video-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-item img {
    width: 120px;
    height: 68px;
    object-fit: cover;
    border-radius: 5px;
}

.video-title {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.video-views {
    font-size: 12px;
    color: #999;
}

/* ===================================
   料金セクション
   =================================== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.title-label {
    display: block;
    font-size: 14px;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.title-main {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.section-subtitle {
    margin-top: 15px;
    font-size: 18px;
    color: #666;
}

.pricing-table {
    margin-bottom: 60px;
}

.table-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.price-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.price-card--popular {
    border-color: #ff6b00;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.card-header {
    margin-bottom: 20px;
}

.room-type {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.room-desc {
    font-size: 14px;
    color: #999;
}

.card-price {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
}

.price-suffix {
    font-size: 18px;
    color: #666;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.card-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

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

.card-cta {
    display: block;
    background: #0066cc;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-cta:hover {
    background: #004499;
    transform: scale(1.05);
}

/* 作業料金例 */
.price-examples {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.examples-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

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

.example-card {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.example-images {
    position: relative;
    display: flex;
    height: 200px;
}

.example-before,
.example-after {
    flex: 1;
    object-fit: cover;
}

.example-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.example-info {
    padding: 20px;
}

.example-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.example-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.detail-item {
    font-size: 14px;
    color: #666;
}

.example-price {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.price-original {
    display: block;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-discount {
    display: block;
    font-size: 14px;
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-final {
    display: block;
    font-size: 16px;
    color: #333;
}

.price-final strong {
    font-size: 24px;
    color: #0066cc;
    font-weight: 700;
}

/* ===================================
   お客様の声セクション
   =================================== */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(0, 102, 204, 0.1);
    font-weight: 700;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card--featured {
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border: 2px solid #ffd700;
}

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

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    font-size: 40px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-name {
    display: block;
    font-weight: 600;
    color: #333;
}

.rating {
    color: #ffd700;
    font-size: 16px;
}

.testimonial-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-meta {
    display: flex;
    gap: 15px;
}

.service-type,
.room-info {
    display: inline-block;
    padding: 5px 15px;
    background: white;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
}

.view-more-btn {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #004499;
    transform: translateX(5px);
}

/* ===================================
   メディア掲載セクション
   =================================== */
.media-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.media-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.media-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.media-item img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    opacity: 0.7;
}

.media-name {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.media-program {
    font-size: 14px;
    color: #999;
}

/* ===================================
   選ばれる理由セクション
   =================================== */
.reasons-section {
    padding: 80px 0;
    background: white;
}

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

.reason-card {
    background: white;
    padding: 30px;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 102, 204, 0.1);
}

.reason-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.reason-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.reason-text {
    color: #666;
    line-height: 1.6;
}

/* ===================================
   作業の流れセクション
   =================================== */
.flow-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc, #00ccff);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.step-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.flow-arrow {
    font-size: 24px;
    color: #0066cc;
    margin: 0 10px;
}

/* ===================================
   対応エリアセクション
   =================================== */
.area-section {
    padding: 80px 0;
    background: white;
}

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

.area-block {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.area-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.area-phone {
    margin-bottom: 20px;
}

.area-phone a {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.area-phone a:hover {
    background: #0066cc;
    color: white;
    transform: scale(1.05);
}

.area-prefectures {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.prefecture {
    display: inline-block;
    padding: 5px 15px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    font-size: 14px;
    color: #666;
}

/* ===================================
   最終CTAセクション
   =================================== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    text-align: center;
}

.cta-headline {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cta-headline strong {
    font-size: 42px;
    display: block;
    margin-top: 10px;
}

.cta-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-phones {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-phone-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.phone-area {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.phone-number-large {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number-large:hover {
    transform: scale(1.1);
    text-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
}

.cta-buttons-final {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-btn-large {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-large--primary {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
}

.cta-btn-large--primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.cta-btn-large--line {
    background: linear-gradient(135deg, #00c300, #00b900);
    color: white;
}

.cta-btn-large--line:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 195, 0, 0.5);
}

.btn-icon {
    font-size: 32px;
}

.btn-content {
    text-align: left;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スクロールアニメーション */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ===================================
   レスポンシブ対応
   =================================== */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 24px;
    }
    
    .headline-large {
        font-size: 28px;
    }
    
    .headline-brand {
        font-size: 32px;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .phone-numbers {
        flex-direction: column;
    }
    
    .youtube-grid {
        grid-template-columns: 1fr;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .cta-phones {
        flex-direction: column;
    }
    
    .phone-number-large {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .testimonials-grid,
    .reasons-grid,
    .area-blocks {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-final {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-large {
        width: 100%;
        max-width: 300px;
    }
}