:root {
  --lp-max: 1920px;
  --campaign-max: 1200px;
}


/* =========================================================
   Base
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

picture {
  display: block;
  width: 100%;
  line-height: 0;
}


/* =========================================================
   LP全体
========================================================= */

.summer-xmas {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #fff;
}

.lp-image,
.lp-nav {
  width: min(100%, var(--lp-max));
  margin-inline: auto;
}


/* picture対応 */

.lp-image picture,
.present-map picture,
.special-car picture,
.campaign-banner picture,
.closing-section picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.lp-image picture img,
.present-map picture img,
.special-car picture img,
.campaign-banner picture img,
.closing-section picture img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}


/* 画像間の細い隙間対策 */

.lp-image,
.present-map,
.campaign-banner,
.closing-section {
  line-height: 0;
}

.lp-image > img {
  width: 100%;
}

.lp-hero {
  width: 100%;
}


/* =========================================================
   ページ内ナビ
========================================================= */

.lp-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 20px 24px;
  background: linear-gradient(
    180deg,
    #0877b8,
    #075da0
  );
}

.lp-nav a {
  width: min(260px, 30%);
  padding: 12px 14px;

  border-radius: 999px;

  background: #fff;
  color: #23517d;

  text-align: center;
  text-decoration: none;

  font: 700 14px/1.4 system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
}


/* =========================================================
   抽選プレゼント
========================================================= */

.present-map {
  position: relative;

  width: min(100%, var(--lp-max));
  margin-inline: auto;
}

.present-map > img {
  display: block;
  width: 100%;
  height: auto;
}

.present-map .hotspot {
  position: absolute;
  display: block;
  z-index: 2;
}


/* Uber */

.hotspot-a {
  left: 14.8%;
  top: 42.5%;
  width: 13.2%;
  height: 5.2%;
}


/* 富士急 */

.hotspot-b {
  left: 43.5%;
  top: 42.5%;
  width: 13.2%;
  height: 5.2%;
}


/* 箱根 花紋 */

.hotspot-c {
  left: 72.3%;
  top: 42.5%;
  width: 13.2%;
  height: 5.2%;
}


/* お近くの店舗を探す */

.hotspot-store {
  left: 37%;
  top: 84.4%;
  width: 26%;
  height: 6.9%;
}


.present-map .hotspot:focus-visible {
  outline: 3px solid #ffeb00;
}


/* =========================================================
   特選車
========================================================= */

.special-car {
  width: 100%;
  padding: 50px 0 40px;

  background:
    repeating-linear-gradient(
      -22deg,
      #ffffff 0,
      #ffffff 10px,
      #eef8f8 10px,
      #eef8f8 13px
    );
}


/* 特選車メイン */

.special-car-main {
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto 40px;
}

.special-car-main img {
  display: block;
  width: 100%;
  height: auto;
}


/* 車種一覧 */

.special-car-list {
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto;
}

.special-car-list img {
  display: block;
  width: 100%;
  height: auto;
}


/* 注意書き */

.special-car-note {
  margin: 14px 20px 0;

  text-align: center;

  font-size: 14px;
  line-height: 1.6;
}


/* -------------------------
   関連キャンペーン
------------------------- */

.campaign-links {
  display: grid;
  gap: 28px;
  width: min(100%, var(--lp-max));
  margin-inline: auto;
  padding: 40px clamp(30px, 6vw, 110px);
  background: #fff;
}

.campaign-banner {
  position: relative;
  display: block;
  width: 100%;
  max-width: var(--campaign-max);
  margin: 0 auto;
  text-decoration: none;
}

.campaign-banner img {
  display: block;
  width: 100%;
  height: auto;
}


/* BEV・PHEVだけ最大1000px */

.campaign-banner-bev {
  max-width: 1000px;
}
/* =========================================================
   フォトコンテスト内リンク
========================================================= */

.photo-contest-map {
  position: relative;
}

.photo-hotspot {
    position: absolute;
    display: block;
    z-index: 2;
    bottom: auto;
    height: 3.9%;
  }

/* PC：横並び */

.photo-hotspot-detail {
  left: 15.94%;
  top: 92.11%;
  width: 33.06%;
  height: 3.78%;
}

.photo-hotspot-instagram {
  left: 50.94%;
  top: 92.11%;
  width: 33.13%;
  height: 3.78%;
}


/* SP：縦並び */

@media (max-width: 767px) {

  .photo-hotspot-detail {
    left: 7.3%;
    top: 91.8%;
    width: 85.4%;
    height: 2.15%;
  }

  .photo-hotspot-instagram {
      left: 7.3%;
      top: 95.2%;
      width: 85.4%;
      height: 2.9%;
  }

}


/* =========================================================
   クロージング
========================================================= */

.closing-section {
  position: relative;
}

.store-hotspot {
  position: absolute;

  left: 38.4%;
  top: 67.4%;

  width: 23.4%;
  height: 10%;

  overflow: hidden;
  text-indent: -9999px;
}


/* =========================================================
   SP
========================================================= */

@media (max-width: 767px) {


  /* -------------------------
     LP基本
  ------------------------- */

  .summer-xmas {
    width: 100vw;
  }

  .lp-image,
  .present-map,
  .campaign-links,
  .campaign-banner,
  .closing-section {
    width: 100%;
    max-width: none;
  }


  /* -------------------------
     ページ内ナビ
  ------------------------- */

  .lp-nav {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    padding: 16px 20px;
  }

  .lp-nav a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 340px;
    min-height: 54px;

    padding: 11px 12px;

    border-radius: 999px;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
  }


  /* -------------------------
     抽選プレゼント
     img04-sp.jpg
  ------------------------- */

  .hotspot-a {
    left: 26.6%;
    top: 21.1%;
    width: 47%;
    height: 2.3%;
  }

  .hotspot-b {
    left: 26.6%;
    top: 49.1%;
    width: 47%;
    height: 2.3%;
  }

  .hotspot-c {
    left: 26.6%;
    top: 79.5%;
    width: 47%;
    height: 2.3%;
  }

  .hotspot-store {
    left: 11%;
    top: 95.4%;
    width: 78%;
    height: 2.8%;
  }


  /* -------------------------
     特選車
  ------------------------- */

  .special-car {
    padding: 20px 0 24px;
  }

  .special-car-main {
    width: calc(100% - 32px);
    margin: 0 auto 20px;
  }

  .special-car-list {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .special-car-main img,
  .special-car-list img {
    display: block;
    width: 100%;
    height: auto;
  }

  .special-car-note {
    display: block;
    margin: 0px 20px 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    color: #222;
  }
  .store-hotspot {
      position: absolute;
      left: 22.2%;
      top: 66%;
      width: 55.6%;
      height: 8%;
      overflow: hidden;
      text-indent: -9999px;
  }  

}


.campaign-links {
    display: grid;
    gap: 20px;
    padding: 2em 3em;
    background: #fff;
    max-width: 1100px;
}


  .campaign-banner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

@media (max-width: 767px) {

  .campaign-banner-bev {
    width: 100%;
  }
  .campaign-links{
    padding: 1.5em;
  }
}