/* 画像スライスを縦に並べる LP（最大幅 600px・狭い画面は画像が幅100%で縮小） */

:root {
  --lp-canvas: 600px;
  --lp-fixed-btn-pad: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
}

body.has-lp-fixed-btn {
  padding-bottom: calc(var(--lp-fixed-btn-pad) + env(safe-area-inset-bottom, 0px));
}

.lp-viewport {
  overflow-x: hidden;
}

.lp-fixed-btn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 100%;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  line-height: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.85) 55%, transparent 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.lp-fixed-btn__link {
  display: block;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.lp-fixed-btn__link:focus {
  outline: 2px solid #3c4a3e;
  outline-offset: 2px;
}

.lp-fixed-btn img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.lp-canvas--slices {
  width: 100%;
  max-width: var(--lp-canvas);
  margin: 0 auto;
  background: #fff;
  line-height: 0;
}

.lp-slice {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.lp-slice-link {
  display: block;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.lp-slice-link:focus {
  outline: 2px solid #3c4a3e;
  outline-offset: 2px;
}
