@charset "UTF-8";
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
/* ==========================
   base.scss
   ページ全体の基本スタイル
========================== */
/* 要素のボックスを確認 */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  font-size: 1.6rem;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url("../images/bg-home.png") no-repeat right bottom/cover fixed;
}

.container {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

img {
  height: auto;
  display: block;
}

.section {
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
  margin-bottom: 4rem;
  padding: 1.6rem;
}

.section__heading {
  position: relative;
  padding: 1rem 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 3rem;
}
.section__heading:before, .section__heading:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-image: linear-gradient(to left, #30cfd0 0%, #330867 100%);
}
.section__heading:before {
  top: 0;
}
.section__heading:after {
  bottom: 0;
}

.section-admin {
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
  margin-bottom: 4rem;
  padding: 1.6rem;
}
.section-admin__title {
  font-weight: bold;
  padding: 1rem 3em 0;
  width: fit-content;
  margin: 0 auto 0.5rem;
  position: relative;
  font-size: clamp(2rem, 5vw, 2.6rem);
}
.section-admin__title::before, .section-admin__title::after {
  content: "";
  width: 2em;
  height: 3px;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
}
.section-admin__title::before {
  left: 0;
}
.section-admin__title::after {
  right: 0;
}
.section-admin__subtitle {
  display: block;
  text-align: center;
  color: #6B8E23;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card {
  margin-bottom: 2rem;
}

/* ==========================
   buttons.scss
   ボタンコンポーネント
========================== */
.btn {
  display: block;
  width: 100%;
  padding: 2.4rem;
  color: #fff;
  background-image: linear-gradient(to left, #30cfd0 0%, #330867 100%);
  letter-spacing: 0.2rem;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: bold;
  text-align: center;
  border-radius: 0.6rem;
  border: 0.2rem solid transparent;
  cursor: pointer;
  margin: 0 auto 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.btn:hover {
  transform: translateY(-0.25em);
  box-shadow: 0 0.5em 0.5em -0.4em rgba(255, 255, 255, 0.5);
  filter: brightness(1.1);
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn:focus-visible {
  outline: 0.3rem solid #4B2E10;
  outline-offset: 0.2rem;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

input[type=submit][disabled],
.el_btn[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.btn--primary {
  background: #4a6fa5;
  border-color: #4a6fa5;
}

.btn--back {
  background: #6c757d;
  border-color: #6c757d;
}

.btn--logout {
  background: #ca4d4d;
  border-color: #ca4d4d;
}

.btn--admin {
  background: #3f5f8a;
  border-radius: 0.4rem;
  margin-bottom: 4rem;
}

/* ==========================
   accordion.scss
   アコーディオン用コンポーネント
========================== */
.accordion {
  border: 0.1rem solid #dcdcdc;
  border-radius: 0.8rem;
  margin-bottom: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
}
.accordion__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1rem;
  cursor: pointer;
  position: relative;
  font-weight: 580;
  color: #4B2E10;
  border-top: 0.6rem solid #4B2E10;
}
.accordion__summary::-webkit-details-marker {
  display: none;
}
.accordion__summary::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 0.2rem solid #4B2E10;
  border-bottom: 0.2rem solid #4B2E10;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 1rem;
}
.accordion__content {
  max-height: 0;
  opacity: 0;
  padding: 0 1rem;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
  overflow: hidden;
  color: #333;
  font-size: 1.5rem;
}

/* open状態のスタイル */
.accordion[open] .accordion__summary::after {
  transform: rotate(225deg);
}
.accordion[open] .accordion__content {
  max-height: 50rem;
  opacity: 1;
  padding: 1rem;
}

/* ==========================
   table.scss
   会社概要テーブル
========================== */
.table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.table__container {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 2rem;
}
.table__thead {
  background: rgb(49, 75, 126);
  color: rgb(235, 229, 229);
}
.table__th {
  padding: 1rem 0.5rem;
  height: 6rem;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  border: 0.1rem solid #dcdcdc;
  white-space: nowrap;
}
.table__th.col-no {
  width: 6rem;
}
.table__th.col-created {
  width: 12rem;
}
.table__th.col-name {
  width: 10rem;
}
.table__th.col-tel {
  width: 12rem;
}
.table__th.col-email {
  width: 18rem;
}
.table__th.col-pref {
  width: 10rem;
}
.table__th.col-city {
  width: 12rem;
}
.table__th.col-category {
  width: 10rem;
}
.table__th.col-visit {
  width: 12rem;
}
.table__th.col-message {
  min-width: 20rem;
  white-space: normal;
  text-align: left;
}
.table__th--sticky {
  position: sticky;
  left: 0;
  z-index: 10;
}
.table__tr:nth-child(even) {
  background-color: #f9f9f9;
}
.table__tr:hover {
  background-color: rgb(149, 187, 233);
  color: #fff;
}
.table__tr:hover td {
  color: #fff;
}
.table__td {
  padding: 1.5rem;
  text-align: center;
  vertical-align: middle;
  border: 0.1rem solid #dcdcdc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table__td.col-message {
  white-space: normal;
  text-align: left;
  overflow-wrap: break-word;
}
.table__td.col-link {
  text-decoration: underline;
}

.image-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}
.image-overlay__section {
  background: rgb(230, 220, 220);
  width: 80%;
  max-width: 40rem;
  padding: 1.4rem;
  position: relative;
  margin: 2rem auto;
  text-align: center;
  cursor: auto;
}
.image-overlay__title {
  font-weight: bold;
  color: #000;
  margin: 0 0 1rem 0;
  text-align: left;
  font-size: clamp(0.6rem, 2vw, 1.4rem);
}
.image-overlay__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}
.image-overlay__close-button {
  position: absolute;
  top: -4rem;
  right: -3rem;
  font-size: 4.6rem;
  cursor: pointer;
  z-index: 100;
  color: #000;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff;
}

/* ==========================
   flash.scss
   フラッシュメッセージ
========================== */
.db-flash {
  position: fixed;
  top: 2rem;
  right: 2rem;
  left: 2rem;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  border-radius: 0.4rem;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  animation: fadeInOut 4s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.db-flash--success {
  background: #e6f4ea;
  color: #2e7d32;
}
.db-flash--error {
  background: #fdecea;
  color: #c62828;
}
.db-flash--info {
  background: #e8f4fd;
  color: #095695;
}
.db-flash__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.6rem;
  border-radius: 0.3rem;
  background: #095695;
  color: #fff;
  font-weight: normal;
  text-shadow: none;
}
.db-flash__message {
  flex: 1;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-1rem);
    pointer-events: none;
  }
}
/* ==========================
   header.scss
   ヘッダー
========================== */
.header {
  background-color: #d4d3d1;
  padding: 1rem;
  width: 100%;
  color: #ffffff;
}
.header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__logo-img {
  width: 10rem;
  height: auto;
  display: block;
  margin-bottom: 0.8rem;
}

/* ==========================
   footer.scss
   フッター
========================== */
.footer {
  background-color: #d4d3d1;
  padding: 4rem;
  margin-bottom: 5rem;
  text-align: center;
}
.footer__inner {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.footer__map {
  flex: 1;
}
.footer__map-frame {
  width: 100%;
  height: 20rem;
}
.footer__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer__logo-link {
  display: inline-block;
}
.footer__logo-img {
  width: 10rem;
  height: auto;
}
.footer__address {
  font-size: 1.4rem;
}
.footer__divider {
  margin: 0.6rem 0 2rem 0;
  border-top: 0.2rem solid #ddd;
}
.footer__copyright {
  font-size: 1.2rem;
}

/* スマホ用フッターナビ（PCでは非表示） */
.footer-nav {
  display: none;
}

/* ==========================
   main.scss
   トップページ専用
========================== */
.main {
  position: relative;
  box-shadow: 0 2.5rem 4.5rem rgba(0, 0, 0, 0.1);
  border: 1rem solid rgba(255, 255, 255, 0.25);
  margin-inline: auto;
  padding: 0.8rem;
}

.bg-video {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}
.bg-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 10;
  width: 90%;
  text-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.5);
}
.bg-video-title span, .bg-video-subtitle span {
  display: inline-block;
  opacity: 0;
  transform: translateY(2rem) scale(0.95);
  animation: fadeUpBounce 0.6s ease-out forwards;
}
.bg-video-title {
  font-weight: 500;
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1rem;
}
.bg-video-subtitle {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

@keyframes fadeUpBounce {
  0% {
    opacity: 0;
    transform: translateY(2rem) scale(0.95);
  }
  70% {
    opacity: 1;
    transform: translateY(-0.3rem) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.page-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}
.page-hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60vh;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  transition: opacity 1.2s ease-in-out;
}
.page-hero--top .page-hero__img {
  opacity: 0;
}
.page-hero--top .page-hero__img--active {
  opacity: 1;
}
.page-hero__title {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Futura", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  width: auto;
}
.page-hero--top .page-hero__title {
  width: 0;
  animation: typing 4s steps(40, end) forwards;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 40ch;
  }
}
.concept {
  padding: 1rem;
  overflow: hidden;
}
.concept__heading {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}
.concept__body {
  margin-bottom: 2rem;
}
.concept__notice {
  font-size: 1.8rem;
  background: #f8f9fa;
  padding: 1.2rem;
  border-left: 0.4rem solid #2b7cff;
  margin-bottom: 1rem;
}
.concept__text {
  line-height: 2;
}
.concept__emphasis {
  font-weight: 800;
  position: relative;
}
.concept__emphasis::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 0.7em;
  background-color: rgba(184, 153, 92, 0.45);
  z-index: -1;
}

/* ==========================
   index.scss
   トップページ共通スタイル
========================== */
/* ヒーローセクション */
.hero {
  position: relative;
  line-height: 1.8;
  text-align: center;
  padding: 2rem;
}
.hero__campaign {
  font-size: 2rem;
  display: inline-block;
  background: #535757;
  color: white;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
  border-radius: 0.4rem;
}
.hero__lead {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
}
.hero__text {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
}
.hero__sub {
  margin-bottom: 1.6rem;
}
.hero__trust {
  font-size: 2rem;
  margin-bottom: 1.6rem;
}
.hero__vision {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.hero__marker {
  background: linear-gradient(transparent 65%, rgba(246, 226, 122, 0.7) 65%);
  padding: 0 0.2rem;
}

/* 対応サービス */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.services__item {
  border: var(--border, 0.07rem solid #333);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s, border 0.3s;
  display: flex;
  flex-direction: column;
}
.services__image {
  width: 100%;
  height: 25rem;
  overflow: hidden;
}
.services__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.services__content {
  padding: 2rem;
}
.services__content > .services__title {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.services__content > .services__description {
  font-size: 1.6rem;
  line-height: 1.8;
}

/* 施工の流れ */
.flow__step {
  text-align: center;
  padding: 1rem;
  flex: 1 1 15rem;
}
.flow__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.flow__title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.flow__desc {
  font-size: 1.4rem;
  color: #555;
}
.flow__arrow {
  font-size: 3rem;
  color: #4B2E10;
}
.flow__arrow.is-visible {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0% {
    transform: translateY(-1rem);
  }
  50% {
    transform: translateY(0.3rem);
  }
  100% {
    transform: translateY(0);
  }
}
/* 会社情報 */
.company__basic {
  flex: 1 1 100%;
  margin-bottom: 2rem;
  text-align: center;
}
.company__basic p {
  font-size: 2.2rem;
  margin: 0.5rem 0;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.3);
}
.company__cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* 所在地・連絡先 */
.company-card {
  position: relative;
  flex: 1 1 30%;
  min-width: 25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(0.4rem);
  transition: all 0.6s ease;
}
.company-card__image {
  width: 100%;
  height: 20rem;
  margin-bottom: 1.2rem;
  object-fit: cover;
  filter: brightness(40%);
}
.company-card__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 1rem;
  color: #fff;
  transition: color 0.3s;
  width: 100%;
}
.company-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.6);
  border-bottom: 0.2rem solid rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding-bottom: 0.2rem;
}
.company-card__text {
  margin-top: 0.3rem;
}

.company-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* お問い合わせ */
.contact {
  padding: 2rem;
  text-align: center;
}
.contact__content {
  margin: 0 auto;
}
.contact__lead {
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact__info-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.contact__info-text {
  margin-bottom: 1.5rem;
}

/* プロフィール */
.profile__box {
  flex: 1 1 20rem;
  border-radius: 1rem;
  padding: 2rem;
  transition: border 0.3s;
}
.profile__user {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.profile__user-image {
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  border: 0.2rem solid #fff;
  object-fit: cover;
}
.profile__user-info {
  display: flex;
  flex-direction: column;
}
.profile__user-name {
  font-size: 1.8rem;
}
.profile__user-role {
  font-size: 1.4rem;
}
.profile__description {
  line-height: 1.8;
}

/* スクロールアニメーション用 */
.js-reveal {
  opacity: 0;
  transform: translateY(0.3rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   form.scss
   お問い合わせ
============================================ */
.form {
  position: relative;
  box-shadow: 0 2.5rem 4.5rem rgba(0, 0, 0, 0.1);
}
.form__container {
  max-width: 120rem;
  margin: 0 auto 1rem;
  padding: 2rem;
  line-height: 1.5;
}
.form__field {
  margin-bottom: 2rem;
}
.form__label {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 0.6rem;
  text-shadow: 0.1rem 0.1rem #fff, -0.1rem -0.1rem #fff;
}
.form__required {
  color: #dd0000;
  font-weight: bold;
  margin-left: 0.5rem;
}
.form__input {
  width: 100%;
  height: 5rem;
  padding: 0.6rem;
  margin-bottom: 0.2rem;
  border-radius: 0.5rem;
  border: 0.2rem solid #dedede;
}
.form__input.is-error {
  border: 0.2rem solid #e00;
  background-color: #f5f6ff;
}
.form__input:focus {
  background-image: linear-gradient(to right, #ffffff 0%, #4a5ae4 100%);
}
.form__input--textarea {
  height: 12rem;
  padding: 1rem;
  resize: vertical;
}
.form__message {
  font-size: 1.2rem;
  margin-top: 0.4rem;
  font-weight: bold;
  text-shadow: 0.1rem 0.1rem #fff, 0.1rem -0.1rem #fff, -0.1rem 0.1rem #fff, -0.1rem -0.1rem #fff;
}
.form__message--error {
  color: #dd0000;
}
.form__message--caution {
  color: #0d3657;
}
.form__check-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.form__checkbox {
  appearance: auto;
  transform: scale(1.3);
  accent-color: #4b9ec1;
  margin-right: 0.5rem;
}
.form__radio-label {
  margin-right: 1rem;
}
.form__radio {
  appearance: auto;
  transform: scale(1.3);
  accent-color: #4b9ec1;
  margin-right: 0.5rem;
}
.form__privacy {
  font-size: 1.4rem;
  height: 20rem;
  overflow-y: auto;
  padding: 1rem;
  border: 0.1rem solid #ccc;
}
.form__section-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.form__info-item {
  font-size: 1.8rem;
  border-bottom: 0.1rem solid #42557b;
  margin-bottom: 1.8rem;
  padding: 0.2rem 0.8rem;
}
.form__info-item:last-of-type {
  margin-bottom: 4rem;
}
.form__info-title {
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.form__info-value {
  margin-bottom: 0.4rem;
}
.form__info-images {
  display: flex;
  flex-wrap: wrap;
}
.form__info-image {
  max-width: 18rem;
  max-height: 12rem;
  object-fit: cover;
  border: 0.1rem solid #ccc;
  margin-right: 1rem;
}
.form__password {
  position: relative;
}
.form__password-eye {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #000;
  transition: opacity 0.2s linear;
}
.form__password-eye:hover {
  opacity: 0.6;
}
.form__btn-block {
  text-align: center;
}
.form__input-link {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #104e6a;
  text-decoration: underline;
  text-align: center;
}
.form__input-link:hover, .form__input-link:active {
  font-weight: 700;
  text-decoration: none;
}
.form__hr {
  margin-bottom: 2rem;
}

.grecaptcha-badge {
  bottom: 11rem !important;
  z-index: 9999 !important;
}

/* ==========================
   max-width: 768px
   モバイル用
========================== */
@media screen and (max-width: 768px) {
  .header__inner {
    position: relative;
    padding: 0.8rem;
  }
  .header__logo-img {
    margin: 0;
  }
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: block;
    position: absolute;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
  }
  .footer__map {
    width: 100%;
    margin-bottom: 1.6rem;
  }
  .footer-nav {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #e5e8ed;
    border-top: 0.1rem solid #dcdcdc;
  }
  .footer-nav__list {
    display: flex;
  }
  .footer-nav__item {
    width: 50%;
    font-size: 0.9rem;
  }
  .footer-nav__item:last-child {
    border-right: none;
  }
  .footer-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.4rem 0;
  }
  .footer-nav__icon {
    height: 3rem;
    margin-bottom: 0.4rem;
    padding-top: 0.6rem;
  }
  .footer-nav__label {
    font-size: 0.9rem;
  }
  .js-icon-visible {
    color: #fff;
  }
  .footer-nav__item--tel .footer-nav__link {
    background-color: #ffffff;
  }
  .footer-nav__item--mail .footer-nav__link {
    background-color: #6aa9e3;
  }
  .profile-card__bg-image {
    height: 20rem;
  }
  .profile-card__avatar {
    top: 13rem;
  }
  .reform__rows {
    flex-wrap: wrap;
  }
  .reform__card {
    width: 50%;
  }
  .construction__meta {
    width: 100%;
  }
  .company-card {
    flex: 1 1 100%;
  }
  .services__img {
    object-position: top;
  }
  .horizontal-gallery__item {
    max-height: 15rem;
    aspect-ratio: 4/3;
    flex-shrink: 0;
    opacity: 0.9;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .flow-step {
    flex-direction: column;
  }
  .flow-step__image, .flow-step__content {
    width: 100%;
    padding-left: 0;
  }
  .flow-step__title {
    text-align: center;
  }
  .table {
    table-layout: auto;
    max-width: 100%;
  }
  .table__th--sticky {
    min-width: 8rem;
    width: 12rem;
  }
  .table__scroll-info {
    display: block;
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=style.css.map */
