/* =========================================
   タイヤ特価ページ
========================================= */

.tyreprice-page{
    background:#fff;
}

/* =========================================
   共通
========================================= */

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

.section-title{
    text-align:center;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#000;
    position:relative;
    display:inline-block;
    padding-bottom:15px;
}

.section-title h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#ffd800;

    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}

/* =========================================
   ファーストビュー
========================================= */

.tyreprice-fv{
    background:#111;
    padding:120px 20px;
    text-align:center;
}

.tyreprice-fv h1{
    color:#fff;
    font-size:64px;
    font-weight:700;
    margin-bottom:15px;
}

.tyreprice-fv span{
    display:block;
    color:#ffd800;
    font-size:20px;
    letter-spacing:3px;
    margin-bottom:30px;
    font-weight:700;
}

.tyreprice-fv p{
    color:#ddd;
    font-size:18px;
    line-height:2;
    margin-bottom:40px;
}

.tyreprice-instagram-btn{
    display:inline-block;
    background:#ffd800;
    color:#000;

    padding:18px 50px;
    border-radius:999px;

    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.tyreprice-instagram-btn:hover{
    transform:translateY(-3px);
}

/* =========================================
   特価内容
========================================= */


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

.tyreprice-card h3{
    font-size:24px;
    margin-bottom:20px;
    color:#000;
}

.tyreprice-card p{
    color:#555;
    line-height:1.8;
}

/* =========================================
   Instagram
========================================= */

.instagram-section{
    background:#f8f8f8;
    padding:100px 0;
}

.instagram-placeholder{
    background:#fff;
    border:4px dashed #ddd;
    border-radius:20px;

    min-height:500px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.instagram-placeholder-inner{
    text-align:center;
}

.instagram-placeholder-inner h3{
    font-size:32px;
    margin-bottom:15px;
}

.instagram-placeholder-inner p{
    color:#777;
}

/* =========================================
   CTA
========================================= */

.tyreprice-cta{
    background:#111;
    padding:100px 20px;
    text-align:center;
}

.tyreprice-cta h2{
    color:#fff;
    font-size:42px;
    line-height:1.6;
    margin-bottom:20px;
}

.tyreprice-cta p{
    color:#ddd;
    margin-bottom:40px;
    line-height:1.8;
}

.tyreprice-contact-btn{
    display:inline-block;
    background:#ffd800;
    color:#000;

    padding:18px 60px;
    border-radius:999px;

    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.tyreprice-contact-btn:hover{
    transform:translateY(-3px);
}

/* =========================================
   スマホ
========================================= */

@media(max-width:768px){

    .tyreprice-fv{
        padding:80px 20px;
    }

    .tyreprice-fv h1{
        font-size:42px;
    }

    .tyreprice-fv p{
        font-size:16px;
    }

    .section-title h2{
        font-size:28px;
    }

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

    .instagram-placeholder{
        min-height:300px;
    }

    .instagram-placeholder-inner h3{
        font-size:24px;
    }

    .tyreprice-cta{
        padding:80px 20px;
    }

    .tyreprice-cta h2{
        font-size:28px;
    }

    .tyreprice-contact-btn{
        width:100%;
        max-width:320px;
        text-align:center;
    }

}