@charset "UTF-8";
/* ==========================
   base.scss
   ページ全体の基本スタイル
========================== */
/* ===== HTML全体 ===== */
/* 要素のボックスを確認 */
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.jpg") no-repeat right bottom/cover fixed;
}

/* ===== 共通コンテナ ===== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  box-sizing: border-box;
}

/* ===== 画像の共通設定 ===== */
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__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);
  color: #455065;
}
.section__title::before, .section__title::after {
  content: "";
  background: #455065;
  width: 2em;
  height: 3px;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
}
.section__title::before {
  left: 0;
}
.section__title::after {
  right: 0;
}
.section__subtitle {
  display: block;
  text-align: center;
  color: #6B8E23;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card {
  margin-bottom: 2rem;
}

/* ==========================
   header.scss
   ヘッダー（BEM）
========================== */
.header {
  background-color: #455065;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: #ffffff;
  /* ----- Inner ----- */
}
.header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header {
  /* ----- Logo ----- */
}
.header__logo-img {
  width: 14rem;
  height: auto;
  display: block;
  margin-bottom: 0.8rem;
}
.header {
  /* ----- Nav (PC) ----- */
}
.header__nav-list {
  display: flex;
  justify-content: space-around;
}
.header__nav-link {
  position: relative;
  display: block;
  padding: 0.6rem 3rem;
  border-bottom: 2px solid transparent;
  text-align: center;
  transition: opacity 0.25s ease-in-out, border-color 0.25s ease-in-out;
}
.header__nav-link:hover, .header__nav-link:focus {
  opacity: 0.9;
  border-bottom-color: #ffffff;
}
.header__nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.01rem;
  height: 2rem;
  background-color: #ffffff;
  transform: translateY(-50%);
}
.header__nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.01rem;
  height: 2rem;
  background-color: #ffffff;
  transform: translateY(-50%);
}
.header {
  /* ----- Hamburger (SP) ----- */
}
.header__hamburger {
  display: none;
  z-index: 20;
}
.header__hamburger-bar {
  display: block;
  width: 3rem;
  height: 0.3rem;
  margin: 0.5rem 0;
  background-color: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}
.header__hamburger--active .header__hamburger-bar:nth-of-type(1) {
  transform: translateY(0.8rem) rotate(45deg);
}
.header__hamburger--active .header__hamburger-bar:nth-of-type(2) {
  opacity: 0;
}
.header__hamburger--active .header__hamburger-bar:nth-of-type(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}
.header {
  /* ----- Mobile Menu ----- */
}
.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(2rem);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  padding: 4rem;
}
.header__mobile-menu--active {
  opacity: 1;
  pointer-events: auto;
}
.header__mobile-menu-link {
  color: #4B2E10;
  display: block;
  padding: 2rem 0;
  text-align: center;
  transition: opacity 0.3s;
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 0.1rem solid #dcdcdc;
}

/* ==========================
   footer.scss
   フッター関連 (PC)
========================== */
.footer {
  background-color: #455065;
  padding: 1.6rem;
  margin-bottom: 5.6rem;
  color: #ffffff;
}
.footer__copyright {
  display: block;
  font-size: 1.2rem;
  text-align: center;
}

/* ==========================
   スマホ用フッターナビ（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%;
  overflow: hidden;
  height: 100dvh;
}
.bg-video-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-video-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 10;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  width: 90%;
}
.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);
}

/* ===== ヒーロー画像 ===== */
.page-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}
.page-hero__img {
  top: 10;
  left: 0;
  width: 100%;
  width: 100vw;
  height: 60vh;
  object-fit: cover;
  object-position: center top;
  z-index: -1;
  filter: brightness(0.7);
}
.page-hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.concept {
  padding: 1rem;
  overflow: hidden;
}
.concept__heading {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}
.concept__body {
  margin-bottom: 2rem;
}
.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;
}

/* ==========================
   top.scss
========================== */
/* ===== プロフィール ===== */
.profile-card {
  position: relative;
  overflow: hidden;
  /* 背景画像 */
}
.profile-card__bg-image {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 0.6rem;
}
.profile-card {
  /* アバター画像 */
}
.profile-card__avatar {
  position: absolute;
  top: 23rem;
  left: 50%;
  transform: translateX(-50%);
}
.profile-card__avatar-image {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 0.5rem solid #fff;
  object-fit: cover;
}
.profile-card__name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.profile-card__nickname {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #6B8E23;
}

/* ===== インタビュー動画 ===== */
.interview__description {
  margin-bottom: 1.4rem;
}
.interview__video video {
  width: 100%;
  border-radius: 1rem;
}

/* ===== リフォーム ===== */
.reform__rows {
  display: flex;
}
.reform__card {
  width: 100%;
  padding: 0.6rem 0.4rem;
}
.reform__image {
  width: 100%;
  height: 18rem;
  margin-bottom: 0.6rem;
  object-fit: cover;
}
.reform__title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.reform__description {
  font-size: 1.3rem;
}

/* ===== 施工事例 ===== */
.construction__entry {
  border-bottom: 0.2rem solid #000;
  padding: 1.2rem 0;
}
.construction__link {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 2rem;
  padding: 0.2rem;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.construction__link:not([disabled]):hover, .construction__link:not([disabled]):focus {
  box-shadow: 0 0.5em 0.5em -0.4em #455065;
  opacity: 0.9;
  transform: scale(1.02);
}
.construction__link:active {
  transform: translateY(0.1rem) scale(1.02);
  opacity: 0.9;
}
.construction__meta {
  font-size: 1.4rem;
}
.construction__label {
  border: 0.1rem solid #000;
  padding: 0.3rem 0.6rem;
  margin: 0 2rem 0 1rem;
  display: inline-block;
}
.construction__image {
  width: 10rem;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.construction__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.construction__text {
  font-size: 1.8rem;
}

/* ===== お問い合わせ ===== */
.contact__description {
  margin-bottom: 2rem;
}

/* ==========================
   profile.scss
========================== */
/* ===== プロフィール ===== */
.horizontal-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.horizontal-gallery__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.horizontal-gallery__row {
  overflow: hidden;
  padding: 0.4rem;
  opacity: 0.9;
}
.horizontal-gallery__row--top {
  width: 100%;
  margin: 0 auto 8rem;
}
.horizontal-gallery__row--bottom {
  width: 100%;
}
.horizontal-gallery__track {
  display: flex;
  gap: 10rem;
  width: max-content;
  animation: horizontal-scroll 60s linear infinite;
}
.horizontal-gallery__row--top .horizontal-gallery__track {
  animation-delay: -100s;
}
.horizontal-gallery__item {
  height: 20rem;
  flex-shrink: 0;
}
@keyframes horizontal-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===== アクセスマップ ===== */
.location-map {
  width: 100%;
}

iframe {
  width: 100%;
  height: 30rem;
}

/* ==========================
   _reform.scss
========================== */
/* ===== リフォーム ===== */
.photo-grid {
  display: grid;
  gap: 2.6rem;
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  grid-auto-rows: minmax(25rem, auto);
}

.photo-grid__item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
}

.photo-grid__img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  margin-bottom: 0.6rem;
}

.photo-grid__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.photo-grid__description {
  font-size: 1.2rem;
}

/* ===== 以来の流れ ===== */
.request-flow__steps {
  counter-reset: flow-step-counter;
}

.flow-step {
  display: flex;
  justify-content: space-around;
  margin-bottom: 4rem;
}

.flow-step__image {
  width: 40%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.8rem;
}

.flow-step__content {
  width: 50%;
}

.flow-step__title {
  margin-bottom: 0.6rem;
  font-size: 2.4rem;
  font-weight: bold;
}

/* 各 flow-step の前に番号を表示 */
.flow-step__title::before {
  counter-increment: flow-step-counter;
  content: counter(flow-step-counter) ". ";
  color: #6B8E23;
  font-weight: bold;
  margin-right: 0.4rem;
}

/* ============================================
   フォーム（Block）
============================================ */
.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__input-block {
  margin-bottom: 2rem;
}

.form__input-link {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #104e6a;
  text-align: center;
}

.form__input-link:active,
.form__input-link:hover {
  font-weight: 700;
  text-decoration: none;
}

.form__hr {
  margin-bottom: 2rem;
}

/* ============================================
   入力系
============================================ */
.form__input-title {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-weight: bold;
  color: #000;
  text-shadow: 0.1rem 0.1rem #fff, -0.1rem -0.1rem #fff;
}

.form__input-value {
  width: 100%;
  height: 5rem;
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: 2px solid #dedede;
}

.form__input-value:focus {
  background-image: linear-gradient(to right, #ffffff 0%, #7273c8 100%);
}

.form__input-value--textarea {
  height: 12rem;
  padding: 1rem;
  resize: vertical;
}

.form__input-value_textarea:invalid {
  background: #7b6969;
  border: 0.2rem solid #ff0000;
}

.form__input-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 1rem 0 0;
  font-size: 1.4rem;
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: auto;
  appearance: auto;
  accent-color: #4b9ec1;
  transform: scale(1.4);
  margin-right: 0.4rem;
}

.form__input-value_radio:checked,
.form__input-value_checkbox:checked {
  box-shadow: 0 0 0 0.3rem rgb(227, 227, 227);
}

.form__check-text {
  font-size: 1.4rem;
}

.form__check-title {
  margin: 0;
}

.form__input-privacy-policy {
  font-size: 1.4rem;
  height: 20rem;
  overflow-y: scroll;
  padding: 1.2rem;
  margin-bottom: 3rem;
}

.form__input-need {
  color: #dd0000;
  font-weight: bold;
}

/* ============================================
   メッセージ共通
============================================ */
.form__message {
  font-size: 1.2rem;
  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;
}

/* 種別 modifier */
.form__message--error {
  color: #dd0000;
}

.form__message--caution {
  color: #0d3657;
}

.form__message--info {
  color: #4b9ec1;
}

/* ============================================
   確認ページ
============================================ */
.form__btn-block {
  text-align: center;
  justify-content: space-around;
}

/* form_confirm.php */
.form__confirm-block {
  font-size: 1.8rem;
  border-bottom: 0.1rem solid #42557b;
  margin-bottom: 1.8rem;
  padding: 0.2rem 0.8rem;
}

.form__confirm-block:last-of-type {
  margin-bottom: 4rem;
}

.form__confirm-title {
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.form__confirm-value {
  margin-bottom: 0.4rem;
}

/* ==========================
   _construction.scss
========================== */
.construction {
  margin-bottom: 4rem;
}
.construction__slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100rem;
  height: 42rem;
  margin: 0 auto 2rem;
  border-radius: 1.2rem 1.2rem 0 0;
}
.construction__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.construction__slide.is-active {
  opacity: 1;
}
.construction__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
}
.construction__slide.is-active img {
  transform: scale(1.05);
}
.construction__info {
  max-width: 100rem;
  margin: -2rem auto 0;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
}
.construction__title {
  margin: 0 0.6rem 1.2rem 0;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 600;
}
.construction__date {
  font-size: 1.2rem;
  color: #777;
  font-weight: 400;
}
.construction__description {
  line-height: 1.8;
}

.admin-menu {
  max-width: 400px;
  margin: 40px auto;
  list-style: none;
  padding: 0;
}

.admin-menu__item {
  margin-bottom: 16px;
}

.admin-menu__link {
  display: block;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
}

.admin-menu__link:hover {
  background: #e0e0e0;
}

.admin-menu__link--danger {
  background: #ffecec;
  color: #c00;
}

.accordion {
  border: 0.1rem solid #dcdcdc;
  margin-bottom: 0.7rem;
}
.accordion__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem;
  border-top: 0.8rem solid #4B2E10;
  cursor: pointer;
}
.accordion__summary::-webkit-details-marker {
  display: none;
}
.accordion__summary::after {
  width: 0.7rem;
  height: 0.7rem;
  margin-left: 1rem;
  content: "";
}
.accordion__content {
  opacity: 0;
  padding: 1rem;
}

.accordion[open] .accordion__summary::after {
  transform: rotate(225deg);
}
.accordion[open] .accordion__content {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   components/_buttons.scss
========================== */
.btn {
  display: block;
  width: 98%;
  padding: 1.2rem;
  color: #ffffff;
  background: #4B2E10;
  border: 0.1rem solid #dcdcdc;
  letter-spacing: 0.2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 0.6rem;
  cursor: pointer;
  margin: 0 auto 1.2rem;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.btn:not([disabled]):hover, .btn:not([disabled]):focus {
  box-shadow: 0 0.5em 0.5em -0.4em #455065;
  opacity: 0.9;
  transform: scale(1.02);
}
.btn:active {
  transform: translateY(0.1rem) scale(1.02);
  opacity: 0.9;
}

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

.btn--submit {
  background: #4B2E10;
  border-color: #4B2E10;
}

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

.admin--btn {
  background: #4a6fa5;
  margin-bottom: 4rem;
}

.btn--login {
  background-color: #ca4d4d;
}

.btn--logout {
  background-color: #92a808;
}

/* ==========================
   SNSボタン
========================== */
.sns__buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
}
.sns__button {
  display: flex;
  align-items: center;
  border-radius: 50rem;
  cursor: pointer;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 50%;
}
.sns__icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  transform: scale(1);
  opacity: 1;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
.sns__icon:hover, .sns__icon:focus {
  transform: scale(1.02);
  opacity: 0.9;
}
.sns__icon i {
  font-size: 2.5rem;
  color: #ffffff;
}
.sns__text {
  font-size: 2rem;
  font-weight: 500;
}
.sns__button--line .sns__icon {
  background-color: #06c755;
}
.sns__button--line .sns__text {
  color: #06c755;
}
.sns__button--instagram .sns__icon {
  background-image: linear-gradient(to right, #8a3abf, #e94057, #f27121);
}
.sns__button--instagram .sns__text {
  color: #e1306c;
}

/* ==========================
   __company-table.scss
   会社概要テーブル
========================== */
.company-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
.company-table__head, .company-table__data {
  padding: 1rem;
  border: 0.1rem solid #dcdcdc;
  vertical-align: top;
}
.company-table__head {
  width: 30%;
  color: #ffffff;
  background-color: #455065;
  white-space: nowrap;
}

/* ==========================
　__table.scss
    テーブルコンポーネント    
========================== */
/* テーブル */
.table__container {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 4rem;
}

.table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.table__thead {
  border: 0.06rem solid #446c80;
}
.table__th {
  height: 6rem;
  background: rgb(49, 75, 126);
  font-weight: bold;
  color: rgb(235, 229, 229);
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.table__td {
  padding: 0.6rem;
  text-align: center;
  height: 2rem;
  line-height: 3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: baseline;
  border: 0.06rem solid #446c80;
  width: 30rem;
}
.table__tbody:hover .table__tr:hover .table__td {
  background-color: rgb(149, 187, 233);
  color: #fff;
}
.table__sticky {
  position: sticky;
  left: 0;
  z-index: 10;
  font-size: 1.6rem;
  background: #e5e2e4;
  width: 12rem;
}
.table__th--sticky {
  background: rgb(49, 75, 126);
}
.table__image {
  width: 12rem;
  height: 6rem;
  border: 0.1rem solid #fff;
}
.table__scroll-info {
  display: none;
  padding-left: 1.4rem;
  color: #333;
}

/* ==========================
   max-width: 768px
========================== */
@media screen and (max-width: 768px) {
  /* ==========================
     header.scss
  ========================== */
  /* ===== ナビゲーション (PC用を非表示) ===== */
  .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.scss
  ========================== */
  .footer-nav {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: #e5e8ed;
    border-top: solid 0.1rem #dcdcdc;
  }
  .footer-nav__list {
    display: flex;
  }
  .footer-nav__item {
    width: 50%;
    font-size: 0.8rem;
  }
  .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: 0.6rem 0 0.1rem 0;
  }
  .footer-nav__label {
    font-size: 0.9rem;
  }
  /* アイコンクリック時 ON 表示 */
  .js-icon-visible {
    color: #ffffff;
  }
  /* ==========================
     top.scss
  ========================== */
  .profile-card__bg-image {
    height: 20rem;
  }
  .profile-card__avatar {
    top: 13rem;
  }
  .reform__rows {
    flex-wrap: wrap;
  }
  .reform__card {
    width: 50%;
  }
  .construction__meta {
    width: 100%;
  }
  /* ==========================
     profile.scss
  ========================== */
  .horizontal-gallery__item {
    max-height: 15rem;
    aspect-ratio: 4/3;
    object-fit: cover;
    flex-shrink: 0;
    opacity: 0.9;
  }
  /* ==========================
     reform.scss
  ========================== */
  .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.scss
  ========================== */
  .table {
    table-layout: auto;
    max-width: 100%;
  }
  .table__th--sticky {
    min-width: 8rem;
    width: 12rem;
  }
  .table__link {
    font-size: 1.6rem;
  }
  .table__image {
    max-width: 14rem;
    height: 6rem;
  }
  .table__scroll-info {
    display: block;
    margin-top: 1rem;
    font-size: 1.3rem;
  }
}

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