/**
 * ふとん乾燥サービスLP - カスタムスタイル
 * 
 * @package Futon_Cleaning_LP
 * @since 1.0.0
 */

/* ==========================================================================
   リセット & ベーススタイル
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================================================
   共通クラス
   ========================================================================== */

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

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5490;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a5490, #ffc107);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.highlight {
    color: #ffc107;
    font-weight: 900;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.4);
}

.btn-reservation {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

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

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in.visible {
    opacity: 1;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    color: #1a5490;
    font-weight: 900;
    line-height: 1.3;
}

.site-title span {
    font-size: 1.2rem;
    color: #333;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.business-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.business-hours i {
    color: #ffc107;
}

.btn-header {
    background: #ffc107;
    color: #1a5490;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.btn-header:hover {
    background: #ffb300;
    transform: scale(1.05);
}

.phone-number {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   ヒーローセクション
   ========================================================================== */

.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.4;
    color: #1a5490;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    font-size: 3rem;
    color: #1a5490;
    background: #fff;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.feature-item span {
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.4;
}

.hero-cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-cta .btn {
    min-width: 300px;
}

.hero-cta-sub {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #666;
}

/* ==========================================================================
   問題提起セクション
   ========================================================================== */

.problems {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.problem-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.problem-card p {
    color: #666;
    font-size: 0.95rem;
}

.problems-solution {
    text-align: center;
    font-size: 1.2rem;
    color: #1a5490;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #ffc107;
}

.problems-solution strong {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   選ばれる理由セクション
   ========================================================================== */

.reasons {
    padding: 80px 0;
    background: #fff;
}

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

.reason-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.reason-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffc107;
    min-width: 100px;
    text-align: center;
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reason-content h3 {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reason-content h3 i {
    margin-right: 0.5rem;
    color: #ffc107;
}

.reason-content p {
    color: #666;
    line-height: 1.8;
}

/* ==========================================================================
   サービス詳細セクション
   ========================================================================== */

.service-details {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.detail-icon {
    font-size: 3.5rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.detail-card h3 {
    font-size: 1.4rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* ==========================================================================
   料金プランセクション
   ========================================================================== */

.pricing {
    padding: 80px 0;
    background: #fff;
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.price-box {
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(26, 84, 144, 0.3);
}

.price-label {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
}

.price-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
}

.unit {
    font-size: 1.2rem;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-minimum {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.price-examples {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.price-examples h3 {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.price-examples ul {
    margin-bottom: 1.5rem;
}

.price-examples li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.price-examples li:last-child {
    border-bottom: none;
}

.price-examples i {
    color: #28a745;
}

.price-note-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* ==========================================================================
   ターゲット施設セクション
   ========================================================================== */

.target-facilities {
    padding: 80px 0;
    background: #f8f9fa;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.facility-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
}

.facility-card i {
    font-size: 3rem;
    color: #1a5490;
    transition: color 0.3s ease;
}

.facility-card:hover i {
    color: #ffc107;
}

.facility-card span {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ==========================================================================
   FAQセクション
   ========================================================================== */

.faq {
    padding: 80px 0;
    background: #fff;
}

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

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a5490;
    transition: all 0.3s ease;
}

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

.faq-question i {
    transition: transform 0.3s ease;
    color: #ffc107;
}

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

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

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

.faq-answer p {
    padding: 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* ==========================================================================
   CTAセクション
   ========================================================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.cta-section .btn-primary {
    background: #ffc107;
    color: #1a5490;
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
}

.cta-section .btn-primary:hover {
    background: #ffb300;
}

.cta-section .btn-reservation {
    background: #fff;
    color: #28a745;
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-reservation:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cta-hours {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==========================================================================
   お問い合わせセクション
   ========================================================================== */

.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 2rem;
    color: #1a5490;
    min-width: 40px;
}

.info-item h3 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.phone-large {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a5490;
    margin: 0.5rem 0;
}

.phone-large a {
    color: #1a5490;
}

.phone-large a:hover {
    color: #ffc107;
}

.info-hours {
    font-size: 0.9rem;
    color: #666;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.required {
    color: #e74c3c;
}

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

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

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #999;
    text-align: center;
}

/* ==========================================================================
   フッター
   ========================================================================== */

.footer {
    background: #1a5490;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

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

/* ==========================================================================
   フローティングCTAボタン
   ========================================================================== */

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #ffc107;
    color: #1a5490;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.5);
    z-index: 999;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: scale(1);
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
}

/* ==========================================================================
   レスポンシブデザイン
   ========================================================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-features {
        gap: 2rem;
    }
    
    .feature-item i {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
    }
    
    .reason-number {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .business-hours {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .problems-grid,
    .details-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount .amount {
        font-size: 3rem;
    }
    
    .floating-cta {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .cta-section .btn-primary,
    .cta-section .btn-reservation {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
    
    .hero-cta .btn {
        min-width: auto;
        width: 100%;
    }
    
    .header-cta {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* WordPress管理バー調整 */
body.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}
