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

html,
body{
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#eef3f7;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    "Noto Sans JP",
    system-ui,
    -apple-system,
    sans-serif;
  color:#1f2f43;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

button{
  font:inherit;
}

.lp-page{
  width:100%;
}

.lp-image-section{
  width:100%;
  background:#eef3f7;
}

.lp-image-wrap{
  position:relative;
  width:min(100%, 1440px);
  margin:0 auto;
  line-height:0;
  overflow:hidden;
}

.lp-image{
  width:100%;
  height:auto;
}

.overlay{
  position:absolute;
  display:block;
  border:0;
  padding:0;
  margin:0;
  background:rgba(255,255,255,0);
  cursor:pointer;
  pointer-events:auto;
  touch-action:manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-hit{
  z-index:140;
}

.nav-hotspot{
  z-index:130;
}

.hotspot{
  z-index:120;
}

.map-hotspot{
  z-index:110;
}

.nav-hotspot:focus-visible,
.hotspot:focus-visible,
.map-hotspot:focus-visible,
.menu-hit:focus-visible{
  outline:3px solid rgba(255,230,80,.95);
  outline-offset:2px;
}

.mobile-menu{
  position:fixed;
  inset:0;
  background:rgba(8, 20, 36, .68);
  z-index:2000;
  display:none;
  align-items:flex-start;
  justify-content:flex-end;
}

.mobile-menu.is-open{
  display:flex;
}

.mobile-menu-inner{
  width:min(86vw, 340px);
  background:#0e2a52;
  color:#fff;
  min-height:100vh;
  padding:20px 18px 28px;
  display:flex;
  flex-direction:column;
  gap:12px;
  box-shadow:-12px 0 30px rgba(0,0,0,.25);
}

.mobile-menu-close{
  align-self:flex-end;
  border:0;
  background:transparent;
  color:#fff;
  font-size:32px;
  cursor:pointer;
}

.mobile-menu-link{
  border:0;
  background:#163763;
  color:#fff;
  padding:14px 16px;
  border-radius:10px;
  text-align:left;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.mobile-menu-anchor{
  display:block;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

/* デバッグしたい時だけ外す */
/*
.menu-hit{
  background:rgba(255,0,255,.22);
  outline:2px solid rgba(255,0,255,.7);
}
.nav-hotspot{
  background:rgba(0,255,0,.18);
  outline:2px solid rgba(0,180,0,.65);
}
.hotspot{
  background:rgba(255,0,0,.18);
  outline:2px solid rgba(255,0,0,.65);
}
.map-hotspot{
  background:rgba(0,120,255,.18);
  outline:2px solid rgba(0,120,255,.75);
}
*/