@charset "UTF-8";

/* 
RNでリデザインせず引き継ぐページは/assets/_reset.scssを適用すると崩れるため、
当cssでは対象ファイルの内容を打ち消すcssを記述します。
*/

*,
*::before,
*::after {
  box-sizing: unset;
  padding: unset;
  margin: unset;
}

html,
body {
  height: unset;
}

html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: inline;
}

.wrapper main.main {
  padding: 0;
}