@charset "UTF-8";

:root {
  --orange: #ED6C00;
  --orange-dark: #ED6C00;
  --navy: #13243b;
  --beige: #e9e0d3;
  --sky: #23a8d8;
  --text: #333;
  --white: #fff;
  --gray: #f2f2f2;
  --line: #e6e6e6;
  --container: 430px;
  --side-width: clamp(180px, 23vw, 320px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  background: #fff;
}

.pc-side {
  display: none;
}

@media (min-width: 1024px) {
  body {
    background: var(--beige);
  }

  .pc-side {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100vw - var(--container)) / 2);
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    background: #FFF6E8;
  }

  .pc-side--left {
    left: 0;
  }

  .pc-side--right {
    right: 0;
  }

  .pc-side__inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 90px 28px 28px;
  }

  .pc-side__menu,
  .pc-side__brand,
  .pc-side__city {
    pointer-events: auto;
  }

  .pc-side__menu {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--orange-dark);
    font-size: 16px;
    font-weight: 700;
  }

  .pc-side__menu a {
    display: block;
    margin-top: 20px;
  }

  .pc-side__cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
  }

  .pc-side__brand {
    position: absolute;
    top: 240px;
    right: 120px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 700;
  }

  .pc-side__brand img {
    display: block;
    max-width: 220px;
    height: auto;
  }

  .pc-side__city {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 320px;
    background: url('img/pc-side-city.png') center bottom / cover no-repeat;
  }

  .pc-side--right .pc-side__city {
    transform: scaleX(-1);
  }
}

.shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .04);
}

.topbar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 8px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.topbar img {
  margin: 0 auto;
  width: 120px;
}

.hero {
  overflow: hidden;
}

.hero__lead {
  padding: 18px 18px 24px;
}

.hero__lead img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__title-wrap {
  position: relative;
  text-align: center;
  margin: -16px 0 24px;
}

.hero__title-image {
  width: 100%;
  max-width: 380px;
  margin: 0 auto 6px;
  display: block;
  height: auto;
}

.hero__catch {
  color: var(--orange-dark);
  font-size: 29px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 4px;
  text-align: center;
}

.hero__title {
  position: relative;
  display: inline-block;
  color: var(--orange-dark);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  margin: 0;
  padding: 0 32px;
}

.hero__title::before,
.hero__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  background: url('img/title-accent.png') center / contain no-repeat;
}

.hero__title::before {
  left: 0;
}

.hero__title::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.car-marquee {
  overflow: hidden;
  position: relative;
  margin: 4px -14px 12px;
  padding: 0;
}

.car-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.car-marquee:hover .car-marquee__track {
  animation-play-state: paused;
}

.car-marquee__image-wrap {
  flex: 0 0 auto;
  width: 1400px;
  overflow: hidden;
}

.car-marquee__image {
  width: 1200px;
  max-width: none;
  height: auto;
  display: block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-40%); }
}

.hero-car {
  position: relative;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: transparent;
}

.hero-car__visual {
  position: relative;
  z-index: 3;
  margin-bottom: -18px;
}

.hero-car__visual img {
  position: relative;
  top: 12px;
  width: 80%;
  margin: auto;
  height: auto;
  display: block;
  border-bottom: 4px solid #ED6C00;
}

.hero-car__body {
  position: relative;
  z-index: 1;
  background: var(--orange-dark);
  padding: 34px 0 16px;
}

.hero-car__body::before,
.hero-car__body::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-car__body::before {
  top: -24px;
  height: 48px;
  background:
    radial-gradient(circle at 18px 24px, var(--orange-dark) 18px, transparent 19px) 0 0 / 74px 48px repeat-x,
    radial-gradient(circle at 46px 22px, var(--orange-dark) 22px, transparent 23px) 0 0 / 96px 48px repeat-x,
    radial-gradient(circle at 78px 26px, var(--orange-dark) 16px, transparent 17px) 0 0 / 118px 48px repeat-x;
}

.hero-car__body::after {
  top: -14px;
  height: 36px;
  opacity: 0.98;
  background:
    radial-gradient(circle at 14px 18px, var(--orange-dark) 14px, transparent 15px) 0 0 / 58px 36px repeat-x,
    radial-gradient(circle at 34px 18px, var(--orange-dark) 12px, transparent 13px) 0 0 / 82px 36px repeat-x;
}

.hero-car__list {
  list-style: none;
  margin: 0;
  padding: 12px 18px 10px;
  text-align: left;
}

.hero-car__list li {
  position: relative;
  padding-left: 48px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.hero-car__list li + li {
  margin-top: 8px;
}

.hero-car__list li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: url('img/check-icon.png') center / contain no-repeat;
}

.hero-car__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 14px 0;
}

.hero-car__card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .8);
}

.hero-car__card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hero-car__card-text {
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  padding: 8px 6px 10px;
  background: #f7f7f7;
}

.hero-buttons {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 999;
  width: 100%;
  max-width: 430px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}

.btn,
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 32px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--orange);
  text-align: center;
}

.btn:hover,
.btn--outline:hover {
  opacity: 0.92;
}

.campaign {
  padding: 48px 0 0;
  text-align: center;
}

.campaign-bule {
  padding: 6px 14px 28px;
  background: var(--sky);
  color: #fff;
  text-align: center;
}

.campaign_h2 {
  color: #ED6C00;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  margin: 8px 0 0px;
}

.campaign_h2-2 {
  position: relative;
  color: #ED6C00;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  margin: 8px 0 12px;
  display: inline-block;
  padding: 0 48px;
}

.campaign_h2-2::before,
.campaign_h2-2::after {
  content: "";
  position: absolute;
  top: 55%;
  width: 64px;
  height: 24px;
  transform: translateY(-50%);
  background: url('img/campaign_h2-accent.png') center / contain no-repeat;
}

.campaign_h2-2::before {
  left: 0;
}

.campaign_h2-2::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.campaign__box {
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 14px;
  margin-top: 12px;
}

.campaign__box--head {
  background: transparent;
  color: #fff;
  border-radius: 0;
  padding: 0;
  margin-top: 0;
}

.campaign__label-image,
.campaign__main-image {
  display: block;
  width: 100%;
  height: auto;
}

.campaign__label-image {
  display: block;
  width: calc(100% + 8px);
  max-width: none;
  margin: -21px auto 18px;
  position: relative;
  z-index: 2;
}

.campaign__main-image {
  max-width: 100%;
  margin: 0 auto 14px;
}

.campaign__date {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 800;
}

.campaign__post-wrap {
  position: relative;
  margin-bottom: 24px;
  padding-right: 70px;
}

.campaign__post {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: left;
}

.campaign__post::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 12px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.campaign__post p {
  margin: 0;
  color: #1f98d0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.campaign__post-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
}

.campaign__prize {
  position: relative;
  margin-top: 22px;
  padding-left: 14px;
}

.campaign__badge-image {
  position: absolute;
  left: 0;
  top: -10px;
  z-index: 2;
  width: 74px;
  height: auto;
}

.campaign__box--prize {
  overflow: hidden;
  padding: 0;
  border-radius: 6px;
  background: #fff;
}

.campaign__prize-head {
  background: var(--orange);
  color: #fff;
  padding: 12px 14px 12px 68px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.campaign__prize-head--silver {
  background: #FFAC2C;
}

.campaign__prize-body {
  padding: 12px 12px;
  color: #16304a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.campaign__prize-body strong {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

.campaign__prize-note {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

.campaign__prize-body span {
  background: linear-gradient(transparent 62%, #f4b135 62%);
}

.campaign__btn {
  margin-top: 28px !important;
  min-width: 230px;
  min-height: 62px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 0 #d86800;
}

.campaign-follow {
  margin: 28px 16px 10px;
  background: #fff;
}

.campaign-follow h3{
	text-align:center;
	color:#184b78;
	font-weight: 750px;
	font-size: 24px;
	margin: 0 0 8px 0;
}

.campaign-follow__present {
  border: 2px solid #184b78;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.campaign-follow__head {
  background: #184b78;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  padding: 16px 14px;
}

.campaign-follow__body {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 10px;
  align-items: center;
  padding: 16px 14px 18px;
  background: #fff;
}

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

.campaign-follow__text {
  color: #16304a;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.campaign-follow__text strong {
  font-size: 28px;
  font-weight: 900;
}

.campaign-follow__text span {
  background: linear-gradient(transparent 62%, #f4b135 62%);
}

.campaign-follow__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0 0 0 14px;
}

.campaign-follow__list li {
  position: relative;
  padding-left: 38px;
  color: #16304a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.campaign-follow__list li + li {
  margin-top: 12px;
}

.campaign-follow__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: url("img/check-icon.png") center / contain no-repeat;
}

.campaign-follow__lead {
  position: relative;
  margin-top: 34px;
  padding: 0 10px 16px;
  text-align: center;
  color: var(--orange-dark);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.campaign-follow__lead::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 6px;
  background: var(--orange-dark);
  border-radius: 999px;
}

.campaign-follow__lead::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid var(--orange-dark);
}

.section {
  padding: 28px 14px;
}

.section-title {
  text-align: center;
  color: var(--orange-dark);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 18px;
}

.tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  flex: 0 0 auto;
  border: none;
  padding: 10px 14px;
  background: #9a9a9a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0;
}

.tab-btn.is-active {
  background: var(--orange);
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.car-card {
  background: var(--gray);
  padding: 8px;
  text-align: center;
  border: 1px solid #ddd;
}

.car-card__img {
  aspect-ratio: 4 / 3;
  background: var(--gray);
  border-radius: 6px;
  margin-bottom: 8px;
}

.car-card__name {
  font-size: 11px;
  font-weight: 700;
}

.stores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.store-card {
  border: 1px solid #ddd;
  background: var(--gray);
  overflow: hidden;
  font-size: 10px;
  text-align: center;
}

.store-card__name {
  padding: 6px 4px;
  line-height: 1.4;
  font-weight: 700;
}

.kinto {
  background: #fff;
  position: relative;
  padding-top:32px;
}

.kinto__banner img {
  width: 100%;
  height: auto;
  display: block;
}

.kinto__cta-wrap {
  padding: 0 14px 24px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.kinto__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #2776a4;
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  min-width: 180px;
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  text-align: center;
  font-size: 10px;
  padding: 14px;
	height: 120px;
}

@media (max-width: 389px) {
  .car-grid,
  .stores {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-car__cards {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__catch {
    font-size: 24px;
  }

  .campaign_h2-2 {
    font-size: 24px;
    padding: 0 28px;
  }

  .campaign_h2-2::before,
  .campaign_h2-2::after {
    width: 46px;
    height: 18px;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    display: none;
  }

  .shell {
    padding-bottom: 0;
  }
}