/* ===============================
メインビジュアル
=============================== */

#main-visual{
position:relative;
height:70vh;
overflow:hidden;
}

#main-visual img{
width:100%;
height:100%;
object-fit:cover;
}

/* オーバーレイ */
#main-visual::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.3);
}

.main-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:#fff;
text-align:center;
z-index:1;
}

.main-text h1{
font-size:40px;
font-weight:700;
margin-bottom:10px;
text-shadow:0 5px 20px rgba(0,0,0,0.4);
}

.main-text p{
font-size:18px;
}

/* ===============================
強み
=============================== */

.feature{
padding:0 20px;
}

.feature-box h3{
color:var(--main-color);
margin-bottom:10px;
}

/* ===============================
施工事例
=============================== */

#works{
padding:0 20px;
}

/* ===============================
物件情報
=============================== */

.estate-grid{
display:flex;
gap:40px;
max-width:900px;
margin:auto;
padding:0 20px;
}

.estate-box{
flex:1;
text-align:center;
padding:40px;
}

.estate-box{
background:#fff;
border-radius:var(--radius);
box-shadow:var(--shadow);
}

.estate-box h3{
color:var(--main-color);
margin-bottom:10px;
}

/* ボタンはcommonを使う */
.estate-box a{
margin-top:15px;
}

/* ===============================
ペレットストーブ
=============================== */

.pellet-wrap{
display:flex;
gap:40px;
max-width:1000px;
margin:auto;
align-items:center;
padding:0 20px;
}

.pellet-wrap img{
width:350px;
border-radius:var(--radius);
}

.pellet-text{
flex:1;
line-height:1.8;
}

/* ボタン配置だけ */
.pellet-buttons{
margin-top:20px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

/* ===============================
お問い合わせ
=============================== */

.contact-text{
text-align:center;
margin-bottom:20px;
}

.contact-btn{
display:block;
width:300px;
margin:0 auto;
text-align:center;
}

/* btn-mainを使う */
.contact-btn{
padding:15px;
border-radius:30px;
}

/* ===============================
スマホ対応
=============================== */

@media screen and (max-width:768px){

.estate-grid{
flex-direction:column;
}

.pellet-wrap{
flex-direction:column;
text-align:center;
}

.pellet-wrap img{
width:100%;
max-width:350px;
}

.main-text h1{
font-size:28px;
}

}

@media screen and (max-width:480px){

.main-text h1{
font-size:24px;
}
}

/* ペレットストーブページボタン詳細 */
.pellet-buttons a:first-child{
border-style:solid;
}

.pellet-buttons a:last-child{
opacity:0.8;
}

.pellet-buttons a:last-child:hover{
opacity:1;
}

.main-text .btn{
  margin-top:20px;
  font-size:16px;
}

.mv-note{
  font-size:13px;
  margin-top:10px;
}

.works-card span{
  font-size:13px;
  color:#666;
}

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