@charset "UTF-8";

/*
  すべてのpadding,margin,borderをnoneに
  font-weight,font-size,font-family,letter-spacing,word-wrapを親要素から引き継ぐ
*/
* {
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  word-wrap: inherit;
  border: none;
}

/*
  全ての要素のbox-sizingをborder-boxにする。
*/
*,
::after,
::before {
  box-sizing: border-box;
}

/*
  初期設定
  font-sizeは100%以外だとユーザビリティを損なう為100%必須
*/
html {
  overflow-x: hidden;
  line-height: 1;
  letter-spacing: 0;
  word-break: break-all;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  text-align: left;
}

/*
  aタグをinline要素で使うことが無いので、blockにする。
*/
a {
  display: block;
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

svg {
  overflow: hidden;
}

img,
svg,
video,
canvas {
  height: auto;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

/*
  aタグをクリックできないので、aの中のobjectタグをpointer-eventsを切る
*/
a object {
  pointer-events: none;
}

ul[class],
ol[class] {
  list-style-type: none;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

address {
  font-style: normal;
}

/*
  Formのリセット
*/
button,
input,
optgroup,
select,
textarea {
  font-size: 16px;
}

input {
  border-radius: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

button,
select {
  text-transform: none;
}

input,
button,
select,
textarea {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[disabled] {
  cursor: default;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: -1ms !important;
    animation-iteration-count: 1 !important;
  }
}

[v-cloak] {
  visibility: hidden;
}

[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *:focus {
  outline: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.wrapper {
  max-width: 768px;
  margin: 0 auto;
}

.header {
  position: relative;
  width: 100%;
  background-color: #fff;
}

.header::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  content: "";
  border-top: 5px solid #d83e4f;
}

.header--inner {
  width: 100%;
  max-width: 768px;
  padding: 0 10px;
  margin: 0 auto;
  background: #fff;
}

@media screen and (min-width: 720px) {
  .header--inner {
    display: flex;
    align-items: flex-end;
    height: 140px;
    padding: 0 10px 45px;
  }
}

.header--title {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 310px;
  height: 70px;
}

@media screen and (min-width: 720px) {
  .header--title {
    height: auto;
  }
}

.header--logo {
  display: block;
  width: 100%;
  max-width: 218px;
  margin: 0 2px;
}

@media screen and (min-width: 720px) {
  .header--logo {
    max-width: 310px;
    margin: 0;
  }
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

body {
  background-color: #d83e4f;
}

.main {
  width: 100%;
  padding: 0 16px;
  padding-bottom: 80px;
}

@media screen and (max-width: 824px) {
  .main {
    padding-bottom: 13vw;
  }
}

.wrapper._bg {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  background-color: #fff;
}

.tenpo {
  margin-top: -21px;
}

.lineup {
  padding-top: 48px;
  padding-bottom: 60px;
  background-image: url(../img/alldaihatsu_bg01@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.lineup__manten {
  padding-bottom: 60px;
  background-image: url(../img/alldaihatsu_bg02@2x.png);
}

.lineup__item {
  max-width: 90%;
  margin: 0 auto;
}

.lineup__item:not(:last-child) {
  margin-bottom: 60px;
}

.notes {
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
}

.notes__text {
  margin-bottom: 20px;
  font-size: 10px;
  line-height: 1rem;
}

.notes__text--big {
  font-size: 1rem;
  text-align: center;
}

.banner_hidden {
  display: none;
}

.text_area {
  padding: 120px 44px 90px;
  background-color: #fff;
}

.text_area ul li {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.05em;
  list-style: none;
}

.text_area li+li {
  margin-top: 80px;
}

.with-link {
  position: relative;
}

.with-link a {
  display: block;
  color: #000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: absolute;
  overflow: hidden;
  width: 67%;
  background-color: hsla(0, 0%, 100%, 0);
  transition: 0.3s;
  border-radius: 100vh;
}

@media screen and (min-width: 769px) {
  .with-link a {
    background-color: hsla(0, 0%, 100%, 0.5);
  }

  .with-link a:not(:hover) {
    opacity: 0;
  }
}

.remove {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 0;
  font-size: 0.5em;
  line-height: 0;
  text-align: left;
  text-indent: -9999px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

a>.remove {
  padding-top: 28.5%;
}

.block01 .anchor-1 {
  top: 33.5%;
  left: 16.4%;
}

#title a {
  border-radius: unset;
}

#title .block01 .anchor-1 {
  left: 4.5%;
  width: 91%;
  aspect-ratio: 698/81;
  top: 98.5%;
}

#title .block01 .anchor-2 {
  left: 4.5%;
  width: 91%;
  aspect-ratio: 698/81;
  top: 89.3%;
}

#title .block01 .anchor-3 {
  left: 4.5%;
  width: 91%;
  aspect-ratio: 698/81;
  top: 82.9%;
}

#lineup a {
  left: 11.7%;
  width: 78.8%;
  aspect-ratio: 4/1.03;
}

#lineup .block01 .anchor-1 {
  top: 35%;
}

#lineup .block01 .anchor-2 {
  top: 64.2%;
}

#lineup .block01 .anchor-3 {
  top: 93.4%;
}

#lineup .block02 .anchor-1 {
  top: 27.3%;
}

#lineup .block02 .anchor-2 {
  top: 60%;
}

#lineup .block02 .anchor-3 {
  top: 92.7%;
}

#lineup .block03 .anchor-1 {
  top: 27%;
}

#lineup .block03 .anchor-2 {
  top: 59.2%;
}

#lineup .block03 .anchor-3 {
  top: 91.5%;
}

#lineup .block04 .anchor-1 {
  top: 41.4%;
}

#lineup .block04 .anchor-2 {
  top: 84.5%;
}

#campaign a {
  left: 20.5%;
  width: 61.5%;
  aspect-ratio: 7/1.4;
}

#campaign .block01 .anchor-1 {
  top: 82.1%;
}

#campaign .block01 .anchor-2 {
  aspect-ratio: 7/1.33;
  left: 21.3%;
  width: 60.6%;
  top: 92.4%;
  border-radius: 28px;
}

#campaign .block01 .anchor-3 {
  top: 93.8%;
}

#support a {
  left: 18.7%;
  width: 65%;
  aspect-ratio: 4 / 1.13;
}

#support .block01 .anchor-1 {
  top: 26.7%;
}

#support .block01 .anchor-2 {
  top: 40.6%;
}

#support .block01 .anchor-3 {
  top: 54.75%;
}

#support .block01 .anchor-4 {
  top: 69.55%;
}

#support .block01 .anchor-5 {
  top: 86.85%;
}

#support .block02 a {
  left: 12%;
  width: 77.9%;
  aspect-ratio: 4.4/1;
}

#support .block02 .anchor-1 {
  top: 35.7%;
}