@charset "UTF-8";

<style>
/* 全要素の余白リセットと幅計算の統一 */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* パーツ全体の余白リセット（クラス名 .image-section を使う場合） */
.image-section, .image-section * {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* .image-section に入っている画像を横幅ぴったりに */
.image-section img {
  display: block;
  width: 100vw !important;
  max-width: 100vw !important;
  height: auto;
  margin: 0;
  padding: 0;
}

/* パーツ全体を画面幅にフィットさせる（中央配置のレイアウト対策） */
.fullwidth-section {
  margin: 0 !important;
  padding: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

/* .fullwidth-section 内の画像にも同じ設定 */
.fullwidth-section img {
  display: block;
  width: 100vw !important;
  max-width: 100vw !important;
  height: auto;
  margin: 0;
  padding: 0;
}
</style>
