/* メディアクエリー：PC表示をタブレット用にvar(--ratio-sp-tablet)倍縮小 */
[class^="pc-wrap"] {
  transform: scale(var(--ratio-sp-tablet));
  transform-origin: top center;
}

/* コンテンツ：ヘッダーナビゲーション（タブレット表示時のヘッダーサイズ・位置調整） */
.content-pc [class^="fixed-header"] {
  height:65px !important;
}
.content-pc [class^="fixed-header"] [class^="header-wrap"]{
  transform-origin: top left;
  transform: scale(var(--ratio-sp-tablet)) translate(-50%, 0%);
  width: 155%;
}

.content-pc [class^="fixed-header"] [class*="align-left"] {
  transform: scale(0.8);
  transform-origin: top left;
}
.content-pc [class^="fixed-header"] [class*="align-center"] {
  transform: scale(0.8);
  transform-origin: top center;
}
.content-pc [class^="fixed-header"] [class*="align-right"] {
  transform: scale(0.8);
  transform-origin: top right;
}
.content-pc [class^="fixed-header"].scroll [class*="align-left"] {
  /* top: 85%;
  transform: translate(0, -50%) scale(0.8); */
}
.content-pc [class^="fixed-header"].scroll [class*="align-right"] {
  /* top: 85%;
  transform: translate(0, -50%) scale(0.8); */
}

[class*="fixed-right-banner"] {
  transform: scale(var(--ratio-sp-tablet)) translate(0, -50%);
  transform-origin: center right;
}