/* ===============================
 Head Installer セクション（Noticeページ対応）
=============================== */
.installer-section {
 background-color: #000;
 color: #fff;
 padding: 150px 0 100px;
 text-align: left; /* ← 通知文は左揃えに変更 */
}

.installer-section .wrap-l {
 max-width: 1200px;
 margin: 0 auto;
}

/* 見出し部分 */
.installer-head {
 margin-bottom: 60px;
 text-align: center;
}

.installer-role {
 text-align: center;
 font-family: "Poppins", sans-serif;
 font-weight: 600;
 font-size: 1.7rem;
 color: #d27a00;
 margin-bottom: 10px;
}

.installer-name {
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 800;
 font-size: 2.8rem;
 color: #ccc;
 margin: 0;
}

/* 本文ブロック全体 */
.installer-content {
 display: block;
}

.installer-texts {
 display: flex;
 flex-direction: column;
 gap: 50px; /* 各項目の間隔 */
}

.installer-text {
 background: rgba(255, 255, 255, 0.05);
 padding: 35px 20px;
 border-radius: 8px;
 line-height: 2;
}

.installer-text p {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1rem;
 line-height: 1.9;
 color: #ddd;
 margin-bottom: 1.4em;
}

.installer-text strong {
 color: #f7a800;
 font-weight: 700;
 font-size: 1.5rem;
}

.installer-text ul {
 margin: 10px 0 20px 25px;
 padding-left: 10px;
}

.installer-text ul li {
 list-style: disc;
 margin-bottom: 8px;
 line-height: 1.8;
 color: #ccc;
}

.installer-text a {
 color: #f7a800;
 text-decoration: underline;
 word-break: break-all;
}

/* 画像がある場合も崩れないよう残す */
.installer-image {
 flex: 0 0 50%;
}

.installer-image img {
 width: 100%;
 height: auto;
 border-radius: 10px;
 display: block;
}

/* ボタン（使わない場合もデザイン維持） */
.installer-btn {
 text-align: center;
 margin-top: 60px;
}

.installer-more {
 display: inline-block;
 background-color: #d27a00;
 color: #000;
 padding: 12px 80px;
 border-radius: 8px;
 font-family: "Noto Sans JP", sans-serif;
 font-weight: bold;
 font-size: 1.1rem;
 text-decoration: none;
 transition: background-color 0.3s ease;
}

.installer-more:hover {
 background-color: #f7a800;
}

/* ===============================
 スマホ対応（1カラム）
=============================== */
@media screen and (max-width: 767px) {
 .installer-section {
  padding: 100px 0px;
 }

 .installer-name {
  font-size: 2rem;
 }

 .installer-texts {
  gap: 40px;
 }

 .installer-text {
  padding: 10px;
 }

 .installer-text p {
  font-size: 0.95rem;
 }

 .installer-text ul {
  margin-left: 15px;
 }

 .installer-more {
  padding: 12px 50px;
  font-size: 0.95rem;
 }
}
