/* ===============================
 Head Installer セクション
=============================== */
.installer-section {
 background-color: #000;
 color: #fff;
 padding: 150px 0 100px;
 text-align: center;
}

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

.installer-head {
 margin-bottom: 60px;
}

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

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

.installer-content {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 gap: 30px;
}

.installer-texts {
 flex: 0 0 50%;
 display: flex;
 flex-direction: column;
 gap: 20px;
 text-align: left;
}

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

.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-content {
  flex-direction: column;
  gap: 30px;
 }

 .installer-texts {
  flex: 1 1 100%;
  text-align: center;
 }

 .installer-image {
  flex: 1 1 100%;
 }

 .installer-more {
  padding: 12px 50px;
  font-size: 0.95rem;
 }
}
/* ===============================
 Company Info セクション
=============================== */
.company-section {
 background-color: #000;
 color: #fff;
 padding: 0px 0 100px;
 text-align: center;
}

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

.company-title {
 text-align: center;
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 color: #d27a00;
 margin-bottom: 60px;
}

.company-content {
 display: flex;
 justify-content: space-between;
 gap: 40px;
 flex-direction: column;
}

/* 会社情報 */
.company-table {
 flex: 0 0 50%;
 text-align: left;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1rem;
 color: #ddd;
 line-height: 1.9;
}

.company-table dl {
 display: flex;
 border-bottom: 1px solid #333;
 padding: 12px 0;
}

.company-table dt {
 width: 30%;
 color: #f7a800;
 font-weight: bold;
}

.company-table dd {
 width: 70%;
}

/* 地図 */
.company-map {
 flex: 0 0 50%;
 border-radius: 8px;
 overflow: hidden;
 height: 400px;
}

/* ===============================
 スマホ対応
=============================== */
@media screen and (max-width: 767px) {
 .company-section {
  padding: 50px 0px;
 }

 .company-title {
  font-size: 2rem;
  margin-bottom: 40px;
 }

 .company-content {
  flex-direction: column;
  gap: 40px;
 }

 .company-table dl {
  flex-direction: column;
  padding: 10px 0;
 }

 .company-table dt {
  width: 100%;
  margin-bottom: 4px;
 }

 .company-table dd {
  width: 100%;
 }

 .company-map {
  width: 100%;
  height: 300px;
 }
}
