/* フッター（Figma Design4より：背景 #1A1A1A のダーク仕様） */
.l-footer {
  background-color: #1A1A1A;
  position: relative;
}

/* 装飾要素（左上） */
.l-footer__deco {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 39px;
  height: 110px;
  pointer-events: none;
}

/* フッターメインエリア */
.l-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 56px 100px;
  overflow: hidden;
}

/* フッター左：アイコン + Instagram */
.l-footer__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

/* フッターアイコン */
.l-footer__icon {
  width: 48px;
  height: 48px;
}

/* Instagram ボタン（白枠・白文字） */
.l-footer__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  transition: border-color var(--transition);
}

.l-footer__instagram:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

/* フッター右：連絡先情報 */
.l-footer__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  flex-shrink: 0;
}

/* メールアドレス・住所 */
.l-footer__email,
.l-footer__address {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 13px;
  color: #999999;
  white-space: nowrap;
}

/* ボーダーライン */
.l-footer__border {
  height: 1px;
  background-color: #333333;
  width: 100%;
}

/* コピーライト */
.l-footer__copyright {
  text-align: center;
  padding: 15px;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 12px;
  color: #666666;
}

@media (max-width: 767px) {
  /* フッターデコレーションを右寄せ */
  .l-footer__deco {
    right: 20px;
    left: auto;
  }
  .l-footer__main {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 24px;
  }
  .l-footer__right {
    text-align: left;
  }
  .l-footer__email,
  .l-footer__address {
    font-size: 12px;
  }
  .l-footer__copyright {
    padding: 12px 20px;
    font-size: 11px;
  }
}
