/* ==================================================================================================
   TOP
================================================================================================== */
/* 共通タイトル */
.denki-title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
.denki-title__icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0f2c4c;
  border-radius: 25px 25px 25px 25px;
}
.denki-title__icon img {
  width: 40px;
  height: 40px;
  display: block;
}
.denki-title__text {
  margin-top: 5px;
  display: inline-block;
}
@media (max-width: 767px) {
  .denki-title__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }
  .denki-title__icon img {
    width: 34px;
    height: 34px;
  }
}
/* 電話ボタン */
.contact-tel {
  margin: 0 auto;
  padding: 8px 20px 8px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(180deg, #f35a32 0%, #e24924 100%);
  border: 3px solid #ffffff;
  border-radius: 999px;
  box-shadow: 5px 5px 0 #002284;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.contact-tel:hover {
  transform: translateY(2px);
  box-shadow:
    0px 0px 0 #0051e5, 0px 0px 10px rgba(0, 0, 0, 0.65)
}
.contact-tel__icon {
  width: 85px;
  height: 85px;
  flex: 0 0 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-tel__icon img {
  width: 85px;
  height: 85px;
  display: block;
}
.contact-tel__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2;
}
.contact-tel__label {
  display: block;
  margin-bottom: 4px;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.contact-tel__number {
  display: block;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
/* ======================================================
   タブレット
====================================================== */
@media (max-width: 1024px) {
  .contact-section-top {
    padding: 56px 0 64px;
  }
  .contact-tel {
    width: min(100%, 470px);
    min-height: 96px;
    padding: 12px 22px 12px 16px;
  }
  .contact-tel__icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
  .contact-tel__icon img {
    width: 64px;
    height: 64px;
  }
  .contact-tel__label {
    font-size: 16px;
  }
}
/* ======================================================
   スマホ
====================================================== */
@media (max-width: 767px) {
  .contact-section-top {
    padding: 44px 0 52px;
  }
  .contact-section__inner {
    width: min(100%, calc(100% - 24px));
  }
  .contact-section__lead {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.8;
  }
  .contact-tel {
    width: 325px;
    min-height: 80px;
    padding: 12px 16px;
    gap: 12px;
  }
  .contact-tel__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .contact-tel__icon img {
    width: 52px;
    height: 52px;
  }
  .contact-tel__label {
    font-size: 13px;
    margin-bottom: 3px;
  }
  .contact-tel__number {
    font-size: clamp(22px, 6vw, 28px);
  }
  .contact-section__hours {
    margin-top: 18px;
    font-size: 12px;
  }
}
/* =========================================
   TOP-施工実績エリア
========================================= */
.works-section-top {
  background: linear-gradient(to right, #ccc 0%, #f3f3f3 40%, #f3f3f3 60%, #ccc 100%);
  padding: 50px 50px 100px;
}
.works-card {
  width: min(100%, 910px);
  margin: 0 auto;
  padding: 50px 30px 50px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
}
/* 説明文 */
.works-lead {
  margin: 18px 0 14px;
  line-height: 1.9;
}
/* 強調文 */
.works-copy {
  margin: 0 0 28px;
  padding-bottom: 8px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  color: #222222;
}
.works-copy span {
  border-bottom: 3px solid #d64541;
  padding-bottom: 8px;
}
/* ボタン */
.works-button {
  width: min(100%, 300px);
  min-height: 60px;
  margin: 0 auto;
  padding: 0 20px;
  background: #0f2c4c;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 10px rgba(18, 57, 102, 0.18);
}
.works-button:hover {
  background: #0e3158;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(18, 57, 102, 0.22);
}
.works-button__label {
  display: inline-block;
}
/* 右の三角矢印 */
.works-button__arrow {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #ffffff;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .works-section-top {
    padding: 40px 16px 56px;
  }
  .works-card {
    width: min(100%, 450px);
    padding: 30px;
  }
  .works-lead {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .works-copy {
    max-width: 300px;
    line-height: 1.7;
    padding-bottom: 6px;
    margin: 0 auto 22px;
    border-bottom: 3px solid #d64541;
  }
  .works-copy span {
    border-bottom: none;
    padding-bottom: 8px;
  }
  .works-button__arrow {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }
}
/* =========================================
   TOP-企業説明
========================================= */
.business-intro {
  padding: 0;
  background: #f4f6f8;
  overflow: hidden;
}
@media (min-width: 1540px) {
  .business-intro {
    height: 600px;
  }
}
.business-intro__inner {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 57% 43%;
  align-items: stretch;
}
/* 左画像 */
.business-intro__image {
  width: calc(100% + max(0px, (100vw - 1360px) / 2));
  margin-left: calc(-1 * max(0px, (100vw - 1360px) / 2));
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.business-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* 右コンテンツ */
.business-intro__content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #f3f3f3;
}
@media (max-width: 1350px) {
  .business-intro__content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #f3f3f3;
  }
}
.business-intro__title {
  margin: 0 0 18px;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(18px, calc(23px - (1125px - 100vw) * 0.02), 26px);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.business-intro__text {
  margin: 0 0 28px;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
/* ボタン群 */
.business-intro__links {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 300px;
}
.business-link {
  min-height: 70px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0f2c4c;
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(15, 47, 87, 0.14);
}
.business-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 47, 87, 0.2);
}
.business-link__icon img {
  width: 40px;
  height: 40px;
  display: block;
}
.business-link__text {
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
/* ======================================================
   タブレット
====================================================== */
@media (max-width:1200px) {
  .business-intro__inner {
    grid-template-columns: 55% 45%;
  }
  .business-intro__content {
    padding: 30px;
  }
}
/* ======================================================
   SP
====================================================== */
@media (max-width:1024px) {
  .business-intro__inner {
    grid-template-columns: 1fr;
  }
  .business-intro__image {
    width: 100%;
    height: 300px;
    margin-left: 0;
    aspect-ratio: auto;
    overflow: hidden;
  }
  .business-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .business-intro__content {
    padding: 30px;
  }
  .business-intro__links {
    margin: 0 auto;
  }
}
@media (max-width:650px) {
  .business-intro__image {
    height: 200px;
  }
  .business-intro__content {
    padding: 20px;
  }
}
/* =========================================
   TOP-会社メッセージと社員募集中
========================================= */
.company-message {
  padding: 64px 0 72px;
}
.company-message__inner {
  width: min(1250px, calc(100% - 32px));
  margin: 0 auto;
}
/* 上段 */
.company-message__body {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: start;
  gap: 50px;
  margin-bottom: 50px;
}
/* 左テキスト */
.company-message__text {}
.company-message__title {
  margin: 0 0 30px;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  letter-spacing: 0.01em;
}
.company-message__lead {
  margin: 0;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}
/* 右画像 */
.company-message__image {
  overflow: hidden;
}
.company-message__image img {
  width: 100%;
  height: auto;
  display: block;
}
/* 下段バナー */
.recruit-banner {
  width: min(100%, 800px);
  margin: 0 auto;
  min-height: 92px;
  padding: 24px 32px;
  background: #ffffff;
  border: 2px solid #d6d6d6;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.recruit-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: #c8c8c8;
}
.recruit-banner__title {
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #e60012;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.recruit-banner__text {
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
}
/* ======================================================
   1360px以下
====================================================== */
@media (max-width: 1360px) {
  .company-message__body {
    grid-template-columns: 42% 58%;
    gap: 28px;
  }
  .company-message__title {
    font-size: clamp(20px, 2.2vw, 40px);
  }
  .company-message__lead {}
}
/* ======================================================
   タブレット
====================================================== */
@media (max-width: 1024px) {
  .company-message {
    padding: 48px 0 56px;
  }
  .company-message__body {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .company-message__text {
    padding-top: 0;
  }
  .company-message__image {
    max-width: 760px;
  }
  .recruit-banner {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 22px 20px;
  }
  .recruit-banner__title {
    font-size: 28px;
  }
  .recruit-banner__text {
    font-size: 14px;
  }
}
/* ======================================================
   スマホ
====================================================== */
@media (max-width: 767px) {
  .company-message {
    padding: 40px 0 48px;
  }
  .company-message__inner {
    width: min(100%, calc(100% - 24px));
  }
  .company-message__body {
    gap: 22px;
    margin-bottom: 26px;
  }
  .company-message__title {
    margin-bottom: 18px;
    font-size: 26px;
    line-height: 1.45;
  }
  .company-message__lead {
    font-size: 14px;
    line-height: 1.9;
  }
  .recruit-banner {
    min-height: auto;
    padding: 18px 14px;
    gap: 8px;
  }
  .recruit-banner__title {
    font-size: 22px;
  }
  .recruit-banner__text {
    font-size: 13px;
    line-height: 1.8;
  }
}
/* =========================================
   TOP-お問い合わせ
========================================= */
.contact-section-top {
  padding: 70px 0 80px;
  background: #f4f6f8;
}
.contact-section__inner {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}
.contact-section__lead {
  max-width: 980px;
  margin: 0 auto 26px;
}
.contact-section__hours {
  margin: 24px 0 0;
}
/* ==================================================================================================
   会社案内 COMPANY
================================================================================================== */
.company-page {
  width: min(1000px, calc(100% - 32px));
  margin: 0 auto 120px;
}
.company-block {
  margin-bottom: 110px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto 44px;
  font-weight: 700;
}
.section-heading::before, .section-heading::after {
  content: "";
  flex: 1; /* ←これが重要 */
  height: 2px;
  background: #1b3b63;
}
/* =============================================================
TABLES
============================================================= */
.info-table, .history-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
}
.info-table th, .info-table td, .history-table th, .history-table td {
  padding: 15px 15px;
  border-bottom: 1px solid #cfcfcf;
  vertical-align: top;
}
.info-table th, .history-table th {
  width: 180px;
  font-weight: 700;
  color: #111;
  text-align: left;
}
.info-table td strong {
  display: inline-block;
  margin-bottom: 2px;
  font-weight: 700;
}
.info-table > tbody > tr > td > dl > dd {
  margin-left: 0
}
.yokonarabi, .tatenarabi {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.tatenarabi {
  display: inline;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.yokonarabi li, .tatenarabi li {
  list-style: none; /* ← 標準の●を消す */
  position: relative;
  padding-left: 0.75em; /* ← ●の分だけ余白 */
}
/* 自作マーカー */
.yokonarabi li::before, .tatenarabi li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2.5em; /* ← 微調整ポイント */
  font-size: 0.25em; /* ← サイズ調整 */
}
/* =============================================================
HISTORY
============================================================= */
.history-table th {
  width: 240px;
  white-space: nowrap;
}
/* =============================================================
AWARDS
============================================================= */
.awards-block {
  margin-bottom: 90px;
}
.sub-heading {
  margin: 0 0 28px;
  text-align: center;
  font-weight: 700;
  color: #d9432e;
  line-height: 1.4;
  display: block;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.award-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  cursor: zoom-in;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.award-card img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}
.award-card p {
  margin: 0;
  line-height: 1.4;
  font-size: 80%;
}
/* -------------------------
   LIGHTBOX
------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.lightbox-content {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(92vw, 1000px);
  transform: translate(-50%, -50%) scale(0.95);
  transition: 0.25s ease;
}
.lightbox.is-open .lightbox-content {
  transform: translate(-50%, -50%) scale(1);
}
.lightbox-image {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  background: #fff;
}
.lightbox-close {
  position: absolute;
  top: -65px;
  right: 0;
  font-size: 60px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
body.is-lightbox-open {
  overflow: hidden;
}
/* =============================================================
SDGS
============================================================= */
.sdgs-block {
  text-align: center;
  margin-bottom: 0;
}
.sdgs-card {
  max-width: 460px;
  margin: 0 auto;
}
.sdgs-card img {
  width: 100%;
  height: auto;
  display: block;
}
/* =============================================================
TABLET
============================================================= */
@media (max-width: 1024px) {
  .company-page {
    margin-bottom: 90px;
  }
  .company-block {
    margin-bottom: 80px;
  }
  .section-heading::before, .section-heading::after {
    width: 80px;
  }
  .section-heading::before {
    left: calc(50% - 165px);
  }
  .section-heading::after {
    right: calc(50% - 165px);
  }
  .info-table th, .history-table th {
    width: 150px;
  }
  .history-table th {
    width: 210px;
  }
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sdgs-card {
    max-width: 380px;
  }
}
/* =============================================================
SP
============================================================= */
@media (max-width: 767px) {
  .company-page {
    width: min(100%, calc(100% - 24px));
    margin-bottom: 70px;
  }
  .company-block {
    margin-bottom: 60px;
  }
  .section-heading {
    margin-bottom: 28px;
    font-size: 1.45rem;
  }
  .section-heading::before, .section-heading::after {
    width: 42px;
  }
  .section-heading::before {
    left: calc(50% - 95px);
  }
  .section-heading::after {
    right: calc(50% - 95px);
  }
  .info-table, .history-table, .info-table tbody, .history-table tbody, .info-table tr, .history-table tr, .info-table th, .history-table th, .info-table td, .history-table td {
    display: block;
    width: 100%;
  }
  .info-table tr, .history-table tr {
    padding: 12px 0;
    border-bottom: 1px solid #d7d7d7;
  }
  .info-table th, .history-table th {
    padding: 0 0 6px;
    border-bottom: none;
    font-size: 14px;
  }
  .info-table td, .history-table td {
    padding: 0;
    border-bottom: none;
  }
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 90%;
    margin: 0 auto;
  }
  .award-card p {
    font-size: 13px;
  }
  .sdgs-card {
    max-width: 300px;
  }
}
/* ==================================================================================================
   施工実績 WORKS
================================================================================================== */
/* =========================================
   施工実績ページ - 施工例
========================================= */
.works-page {}
.works-section {
  margin-bottom: 150px;
}
.section-title--works {
  position: relative;
  margin: 0 0 60px;
  padding-left: 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
}
.section-title--works::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 1em;
  background: #0f2c4c;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}
.work-card {
  margin: 0;
}
.work-card__title {
  margin: 0 0 5px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #d9432e;
}
.work-card__photo {}
.work-card__photo img {
  display: block;
  width: 100%;
  height: auto;
}
/* =========================================
   施工実績ページ - タブレット
========================================= */
@media (max-width: 1024px) {
  .works-section {
    margin-bottom: 100px;
  }
  .section-title--works {
    font-size: 1.45rem;
    margin: 0 0 30px;
  }
  .works-grid {
    gap: 15px;
  }
  .work-card__title {
    font-size: 14px;
  }
}
/* =========================================
   施工実績ページ - スマホ
========================================= */
@media (max-width: 560px) {
  .works-section {
    margin-bottom: 70px;
  }
  .works-grid {
    max-width: 85%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .work-card__title {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .works-grid {
    max-width: 90%;
  }
}
/* =========================================
   施工実績ページ - 主たる工事（施工例一覧）
========================================= */
.major-works {
  margin-bottom: 150px;
}
.major-works__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 20px;
}
.major-works__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: solid 3px #cccccc
}
.major-works__list li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 5px;
  font-size: 90%;
}
/* =========================================
   レスポンシブ 主たる工事
========================================= */
@media (max-width: 768px) {
  .major-works {
    margin-bottom: 100px;
  }
  .major-works__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ==================================================================================================
   お問い合わせページ contact
================================================================================================== */
.contact-page {
  padding-bottom: 120px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 750px;
  gap: 72px;
  align-items: start;
}
.contact-info {}

.contact-hours {
  margin: 15px 0 50px;
  font-size: 16px;
}

.contact-address__block + .contact-address__block {
  margin-top: 50px;
}
.contact-address__block h3 {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 0;
  font-weight: normal;
}
.contact-address__block p {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}
/* 右カラム */
.contact-map {
  min-width: 0;
}
.contact-map__title {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.5;
}
.contact-map__embed {
  width: 100%;
  background: #ddd;
}
.contact-map__embed iframe {
  display: block;
  width: 100%;
  height: 570px;
  border: 0;
}
/* =========================================
   お問い合わせページ - タブレット
========================================= */
@media (max-width: 1360px) {
  .contact-info .contact-tel {
    width: 325px;
    min-height: 80px;
    padding: 12px 16px;
    gap: 12px;
  }
  .contact-info .contact-tel__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .contact-info .contact-tel__icon img {
    width: 52px;
    height: 52px;
  }
  .contact-info .contact-tel__label {
    font-size: 13px;
    margin-bottom: 3px;
  }
  .contact-info .contact-tel__number {
    font-size: 28px;
  }
}

@media (max-width: 1150px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* =========================================
   お問い合わせページ - スマホ
========================================= */
@media (max-width: 490px) {
.contact-address__block h3 {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 0;
  font-weight: normal;
}
.contact-address__block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}
	.contact-map__embed iframe {
  height: 350px;
}
}