@charset "UTF-8";
/* ❶ヘッダー追従 */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.l-header__sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(5px); 
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 88px; /* スマホヘッダーの高さ分 */
    }
}

/* ❷「あなたを」だけ上がってるようなので調整 */
.p-index__vision-list {
  align-items: flex-end; 
}

/* ❸ニュースのviewmoreのボタンを下げる */
@media screen and (max-width: 768px) {
  .p-index__news .c-more {
    margin-right: revert; /* デフォルト設定に戻す */
  }
}

/* ❻フッター赤枠左は段揃えて一行に、赤枠右はニュースの横に移動 */
.l-footer__info-company th {
  width: 80px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .l-footer__info-company th {
    width: 70px;
    vertical-align: top;
  }
}

/* フッター「コピーライト」センターへ */
.l-footer__copy {
  margin-left: 0;
  text-align: center;
  width: 100%;
}