* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3vw;
  }
}

.kaisei {
  font-family: "Kaisei Decol", serif;
  font-weight: 400;
  font-style: normal;
}

header {
  position: relative;
}

a {
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

.wrapper {
  overflow-x: hidden;
  color: #fff;
  background: #0c3875;
}
.wrapper .night {
  overflow: hidden;
}

.night {
  position: relative;
}

.mv {
  padding: 11.6875em 0 25.25em;
  position: relative;
  background-image: url("../img/mv_milkyway.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 7.6875em 0 13.25em;
  }
}
.mv::after {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  content: "";
  display: block;
  background: linear-gradient(0deg, rgb(12, 56, 117) 0%, rgb(12, 56, 117) 90%, rgba(12, 56, 117, 0) 95%, rgba(12, 56, 117, 0) 100%);
  z-index: 5;
  animation: milkyWay 1.5s ease-in-out forwards;
  animation-delay: 0.2s;
}
@keyframes milkyWay {
  0% {
    top: -10em;
  }
  100% {
    top: 100%;
  }
}
.mv_inner {
  position: relative;
  z-index: 3;
}
.mv_inner h2 {
  width: 46.4285714286%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInBlur 1s ease-in-out forwards;
  animation-delay: 1.5s;
  filter: blur(0.625em);
}
@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(0.625em);
  }
  100% {
    opacity: 1;
    filter: blur(0em);
  }
}
@media screen and (max-width: 768px) {
  .mv_inner h2 {
    width: 90%;
  }
}
.mv_inner_star {
  position: absolute;
  z-index: 1;
  opacity: 0;
  filter: blur(0.625em);
  transform: scale(0.9);
}
.mv_inner_star.star01 {
  width: 28%;
  top: -11.875em;
  left: 7.142857%;
  animation: fadeInStar 0.5s ease-in-out forwards;
  animation-delay: 2.2s;
}
@media screen and (max-width: 768px) {
  .mv_inner_star.star01 {
    width: 34%;
    top: -7.875em;
    left: 10.142857%;
  }
}
.mv_inner_star.star02 {
  width: 32%;
  top: -8.875em;
  right: -0.857143%;
  animation: fadeInStar 0.5s ease-in-out forwards;
  animation-delay: 2.8s;
}
@media screen and (max-width: 768px) {
  .mv_inner_star.star02 {
    width: 32%;
    top: -3.875em;
  }
}
.mv_inner_star.star03 {
  width: 33%;
  bottom: -2.875em;
  left: -3.857143%;
  animation: fadeInStar 0.5s ease-in-out forwards;
  animation-delay: 3s;
}
@media screen and (max-width: 768px) {
  .mv_inner_star.star03 {
    width: 45%;
    bottom: -10.875em;
    left: -3.857143%;
  }
}
.mv_inner_star.star04 {
  width: 33%;
  bottom: -12.875em;
  right: -0.857143%;
  animation: fadeInStar 0.5s ease-in-out forwards;
  animation-delay: 2.4s;
}
@media screen and (max-width: 768px) {
  .mv_inner_star.star04 {
    width: 48%;
    bottom: -11.875em;
    right: -2.857143%;
  }
}
@keyframes fadeInStar {
  0% {
    opacity: 0;
    filter: blur(0.625em);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    filter: blur(0em);
    transform: scale(1);
  }
}
.mv_inner_img {
  position: absolute;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 3.5s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    filter: blur(0.2em);
  }
  100% {
    opacity: 1;
    filter: blur(0em);
  }
}
.mv_inner_img.img01 {
  width: 12.7857142857%;
  top: -9em;
  right: 27%;
}
@media screen and (max-width: 768px) {
  .mv_inner_img.img01 {
    width: 20.785714%;
    top: -6em;
    right: 31%;
  }
}
.mv_inner_img.img02 {
  width: 24.0571428571%;
  bottom: -11em;
  right: 27%;
}
@media screen and (max-width: 768px) {
  .mv_inner_img.img02 {
    width: 38.057143%;
    bottom: -13em;
    right: 34%;
  }
}
.mv_inner_img.img03 {
  width: 12.071429%;
  bottom: -13em;
  left: 26%;
}
@media screen and (max-width: 768px) {
  .mv_inner_img.img03 {
    width: 17.071429%;
    bottom: auto;
    left: 2%;
    top: 0em;
  }
}
.mv_bg_star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 144%;
  z-index: 2;
  animation: bgStar 10s ease-in-out infinite;
  animation-delay: 1.4s;
  opacity: 0;
}
@keyframes bgStar {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .mv_bg_star {
    width: 230%;
  }
}
.mv_bg_star.star02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(-1, 1);
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
  -ms-transform: translate(-50%, -50%) scale(-1, 1);
  width: 144%;
  z-index: 2;
  animation: bgStar 10s ease-in-out infinite;
  animation-delay: 6.7s;
  opacity: 0;
}

.shopArea {
  position: relative;
  padding: 15.625em 0 17.5em;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .shopArea {
    padding: 18.625em 0 9.5em;
  }
}
.shopArea .fam_img {
  max-width: 32.25em;
  width: 90%;
  position: absolute;
  top: -10em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .shopArea .fam_img {
    width: 54%;
    position: absolute;
    top: 1em;
  }
}
.shopArea .fam_img .star01 {
  position: absolute;
  width: 30.6201550388%;
  left: -36%;
  top: 5em;
}
.shopArea .fam_img .star02 {
  position: absolute;
  width: 34.3023255814%;
  right: -36%;
  top: 5em;
}
.shopArea_inner {
  position: relative;
  z-index: 5;
  max-width: 61.25em;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.shopArea_inner h3 {
  position: relative;
  width: 100%;
}
.shopArea_inner h3 p {
  font-size: 3.875em;
}
@media screen and (max-width: 768px) {
  .shopArea_inner h3 p {
    font-size: 2.6em;
  }
}
.shopArea_inner h3 .star01 {
  position: absolute;
  width: 19.8979591837%;
  left: 0em;
  top: -0.5em;
}
@media screen and (max-width: 768px) {
  .shopArea_inner h3 .star01 {
    top: -1.2em;
  }
}
.shopArea_inner h3 .star02 {
  position: absolute;
  width: 14.8979591837%;
  right: 0.5em;
  top: -0.5em;
}
@media screen and (max-width: 768px) {
  .shopArea_inner h3 .star02 {
    right: -0.5em;
    top: 3em;
  }
}
.shopArea_inner .shopArea_lead {
  font-size: 1.4375em;
  line-height: 2;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .shopArea_inner .shopArea_lead {
    font-size: 1.2em;
    margin-top: 3em;
  }
}
.shopArea_inner .shopArea_lead p span {
  font-size: 1.8695652174em;
  line-height: 1;
  color: #fff100;
}
.shopArea_inner .shopArea_lead .note {
  font-size: 0.6956521739em;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 3.125em;
}
.shopArea_inner .shopArea_present {
  width: 93.0612244898%;
  margin: 6.875em auto 0;
}
@media screen and (max-width: 768px) {
  .shopArea_inner .shopArea_present {
    margin: 2.875em auto 0;
  }
}
.shopArea_inner .shopArea_shop {
  padding-top: 3em;
  margin-top: 5.125em;
}
.shopArea_inner .shopArea_shop h4 {
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  .shopArea_inner .shopArea_shop h4 {
    font-size: 1.5em;
  }
}
.shopArea_inner .shopArea_shop_blo {
  width: 100%;
  margin-top: 2em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.shopArea_inner .shopArea_shop_blo_box {
  width: 22.24%;
  margin-right: 3.68%;
}
.shopArea_inner .shopArea_shop_blo_box:nth-of-type(4n) {
  margin-right: 0;
}
.shopArea_inner .shopArea_shop_blo_box:nth-of-type(n + 5) {
  margin-top: 3em;
}
@media screen and (max-width: 768px) {
  .shopArea_inner .shopArea_shop_blo_box {
    width: 48%;
    margin-right: 4%;
  }
  .shopArea_inner .shopArea_shop_blo_box:nth-of-type(2n) {
    margin-right: 0;
  }
  .shopArea_inner .shopArea_shop_blo_box:nth-of-type(n + 3) {
    margin-top: 3em;
  }
}
.shopArea_inner .shopArea_shop_blo_box a {
  width: 100%;
  background-color: #fff;
  border-radius: 0.25em;
  text-align: center;
  display: block;
  position: relative;
  line-height: 1;
  padding: 0.95em 0;
  color: #0f2e60;
  letter-spacing: 0;
  margin-top: 1em;
  padding-right: 1em;
}
.shopArea_inner .shopArea_shop_blo_box a::after {
  content: "";
  transition-duration: 0.3s;
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  z-index: 2;
  background-image: url("../img/shop_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.shopArea_inner .shopArea_shop_blo_box a:hover::after {
  right: 0.3em;
}
.shopArea_bg_star {
  position: absolute;
  width: 122%;
  z-index: 2;
}
.shopArea_bg_star.star01 {
  top: 0;
  left: 0;
}
.shopArea_bg_vector {
  position: absolute;
  width: 100%;
  z-index: 3;
}
.shopArea_bg_vector.vec01 {
  top: 0;
  left: 0;
}
.shopArea_bg_vector .vec02 {
  margin-top: -20em;
}
.shopArea_city {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

.contest {
  background-color: #fff65a;
  padding: 6.25em 0 10.625em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contest {
    padding: 4.25em 0 5.625em;
  }
}
.contest h3 {
  max-width: 78.125em;
  width: 90%;
  margin: 0 auto;
}
.contest_lead {
  max-width: 26.25em;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contest_lead {
    max-width: none;
    width: 42%;
  }
}
.contest_lead .nurie {
  position: absolute;
  width: 62.285714%;
  left: -71%;
  top: -5%;
}
.contest_lead .kureyon {
  position: absolute;
  width: 45.285714%;
  right: -53%;
  top: -5%;
}
.contest_inner {
  max-width: 46.875em;
  width: 90%;
  margin: 5.625em auto 0;
  position: relative;
  color: #000;
}
@media screen and (max-width: 768px) {
  .contest_inner {
    margin-top: 3.625em;
  }
}
.contest_inner .linkBtn {
  background-color: #bd5a96;
}
@media screen and (max-width: 768px) {
  .contest_inner .linkBtn {
    width: 100%;
  }
}
.contest_inner .rainy {
  position: absolute;
  width: 6.9375em;
  left: -8em;
  top: 1em;
}
@media screen and (max-width: 768px) {
  .contest_inner .rainy {
    width: 3.9375em;
    left: -2em;
    top: 6em;
  }
}
.contest_inner .dog {
  position: absolute;
  width: 8.75em;
  right: -10em;
  top: -2em;
}
@media screen and (max-width: 768px) {
  .contest_inner .dog {
    width: 5.75em;
    right: 0em;
    top: 6em;
  }
}
.contest_inner .contest_span {
  margin-top: 5.3125em;
  position: relative;
  background-color: #fff;
  border: #2096d5 0.5em solid;
  border-radius: 1.875em;
  padding: 2.5em 0 1.875em;
}
.contest_inner .contest_span_ttl {
  position: absolute;
  top: -1.05em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #fff;
  font-size: 1.875em;
  font-weight: bold;
  line-height: 1;
  padding: 0.36em 0.73em 0.4em;
  background-color: #2096d5;
  border-radius: 2.1875em;
}
.contest_inner .contest_span .span {
  text-align: center;
}
.contest_inner .contest_span .span p {
  font-size: 2.621875em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_span .span p {
    font-size: 1.621875em;
  }
}
.contest_inner .contest_span .span p .year {
  font-size: 0.8724672229em;
  margin-right: 0.2em;
}
.contest_inner .contest_span .span p .num {
  font-size: 1.4905840286em;
  color: #bd5a96;
}
.contest_inner .contest_span .span p .week {
  font-size: 0.6436233611em;
  color: #fff;
  position: relative;
  margin: 0 0.4em;
}
.contest_inner .contest_span .span p .week::before {
  content: "";
  width: 1.6296296296em;
  height: 1.6296296296em;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}
.contest_inner .contest_span .span p .week.sat::before {
  content: "";
  background-color: #2096d5;
}
.contest_inner .contest_span .span p .week.sun::before {
  content: "";
  background-color: #f43333;
}
.contest_inner .contest_span .span p .week .week_txt {
  position: relative;
  z-index: 2;
  line-height: 1;
}
.contest_inner .contest_span .noteArea {
  width: 80.2%;
  margin: 1em auto 0;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_span .noteArea {
    width: 78.2%;
    margin: 1em auto 0;
  }
}
.contest_inner .contest_span .noteArea p {
  font-size: 0.75em;
  letter-spacing: 0;
}
.contest_inner .contest_list {
  margin-top: 3.125em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_list {
    width: 95%;
    margin: 3.125em auto 0;
  }
}
.contest_inner .contest_list_block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.contest_inner .contest_list_block:nth-of-type(n + 2) {
  margin-top: 1.5em;
}
.contest_inner .contest_list_block .ttl {
  width: 21.2%;
  border-radius: 2.125em;
  padding: 0.7em 0;
  text-align: center;
  background-color: #2096d5;
}
.contest_inner .contest_list_block .ttl p {
  color: #fff;
  font-size: 1.5625em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_list_block .ttl p {
    font-size: 1em;
  }
}
.contest_inner .contest_list_block .cont {
  width: 76.2%;
  font-weight: bold;
  font-size: 1.5625em;
  letter-spacing: 0em;
  line-height: 1;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_list_block .cont {
    font-size: 1em;
  }
}
.contest_inner .contest_list_block .cont .week {
  font-size: 1.4em;
  letter-spacing: 0.05em;
}
.contest_inner .contest_list_block .cont .week .week {
  color: #fff;
  font-size: 0.5em;
  position: relative;
  margin: 0 0.8em 0 0.4em;
}
.contest_inner .contest_list_block .cont .week .week::before {
  content: "";
  width: 1.6296296296em;
  height: 1.6296296296em;
  border-radius: 50%;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.contest_inner .contest_list_block .cont .week .week.sat::before {
  background-color: #2096d5;
}
.contest_inner .contest_list_block .cont .week .week.sun::before {
  background-color: #f43333;
}
.contest_inner .contest_list_block .cont .week .week .week_txt {
  position: relative;
  z-index: 2;
  line-height: 1;
  font-size: 1em;
}
.contest_inner .contest_list_block .cont span {
  font-size: 0.6em;
}
.contest_inner .contest_list_block .cont .note {
  font-size: 0.48em;
  font-weight: 400;
  margin-top: 1em;
}
.contest_inner .contest_list .star.star01 {
  position: absolute;
  width: 23.66%;
  top: 0em;
  left: -13em;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_list .star.star01 {
    width: 18.66%;
    top: auto;
    left: -3em;
    bottom: -47em;
  }
}
.contest_inner .contest_list .star.star02 {
  position: absolute;
  width: 26.4%;
  top: 2em;
  right: -12em;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_list .star.star02 {
    width: 20.4%;
    top: auto;
    bottom: -46em;
    right: -2em;
  }
}
.contest_inner .contest_present {
  margin-top: 4.6875em;
}
.contest_inner .contest_present_ttl {
  width: 100%;
  text-align: center;
  border-radius: 4.375em;
  background-color: #2096d5;
  padding: 1em 0;
  position: relative;
}
.contest_inner .contest_present_ttl::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -2.5em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.54375em 2.625em 0 2.625em;
  border-color: #2096d5 transparent transparent transparent;
}
.contest_inner .contest_present_ttl p {
  font-size: 1.31em;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
}
.contest_inner .contest_present_ttl p span {
  font-size: 1.5911259542em;
}
.contest_inner .contest_present_blo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.875em;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_present_blo {
    flex-direction: column;
  }
}
.contest_inner .contest_present_blo .nameArea {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_present_blo .nameArea {
    width: 100%;
  }
}
.contest_inner .contest_present_blo .nameArea .name {
  text-align: center;
  font-size: 1.45em;
  letter-spacing: 0;
  font-weight: bold;
}
.contest_inner .contest_present_blo .nameArea .name .cc {
  color: #bd5a96;
  font-size: 1.4em;
}
.contest_inner .contest_present_blo .nameArea .name .cc .s {
  font-size: 0.6285714286em;
  font-weight: 500;
}
.contest_inner .contest_present_blo .nameArea .contArea {
  width: 72%;
  margin: 1.875em auto 0;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_present_blo .nameArea .contArea {
    width: 70%;
  }
}
.contest_inner .contest_present_blo .nameArea .contArea_inner {
  border-radius: 0.3125em;
  border: 0.0625em solid #000;
  background-color: #fff;
  padding: 0.6em 2em;
}
.contest_inner .contest_present_blo .nameArea .contArea_inner p {
  font-size: 0.75em;
  letter-spacing: 0;
}
.contest_inner .contest_present_blo .nameArea .contArea .noteArea {
  margin-top: 1em;
}
.contest_inner .contest_present_blo .nameArea .contArea .noteArea p {
  font-size: 0.75em;
  letter-spacing: 0;
}
.contest_inner .contest_present_blo .picArea {
  width: 39%;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_present_blo .picArea {
    width: 52%;
    margin-top: 1em;
  }
}
.contest_inner .contest_present_txt {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_present_txt {
    margin-top: 1em;
  }
}
.contest_inner .contest_present_txt .list {
  font-size: 1.3125em;
  color: #bd5a96;
  letter-spacing: 0;
  font-weight: bold;
}
.contest_inner .contest_present_txt .txt {
  font-size: 1.05em;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .contest_inner .contest_present_txt .txt {
    margin-top: 0.5em;
  }
}
.contest_inner .contest_present_txt .txt a {
  display: inline-block;
  color: #bd5a96;
  text-decoration: underline;
}
.contest_toto {
  max-width: 54.75em;
  width: 90%;
  margin: 4em auto 0;
}
@media screen and (max-width: 768px) {
  .contest_toto {
    max-width: none;
    width: 100%;
  }
}

.mistake {
  padding: 5.3125em 0 5.9375em;
  background-image: url("../img/miss_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .mistake {
    padding: 3.3125em 0 3.9375em;
  }
}
.mistake_inner {
  max-width: 61.25em;
  width: 90%;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
  border-radius: 1.875em;
  box-shadow: 0px 0px 23px 4px #777777;
  padding: 2.8125em 0 5.3125em;
}
@media screen and (max-width: 768px) {
  .mistake_inner {
    padding-bottom: 3em;
  }
}
.mistake_inner_ttl {
  width: 73.8775510204%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mistake_inner_ttl {
    width: 90%;
  }
}
.mistake_inner_lead {
  width: 82.9591836735%;
  margin: 2em auto 0;
}
@media screen and (max-width: 768px) {
  .mistake_inner_lead {
    width: 90%;
    margin-top: 1em;
  }
}
.mistake_inner_img {
  width: 81.6326530612%;
  margin: 2em auto 0;
}
@media screen and (max-width: 768px) {
  .mistake_inner_img {
    width: 90%;
    margin-top: 1em;
  }
}
.mistake .linkBtn {
  background-color: #e8382f;
  margin-top: 4em;
}
@media screen and (max-width: 768px) {
  .mistake .linkBtn {
    padding: 1em 0;
  }
  .mistake .linkBtn p {
    line-height: 1.4;
  }
}

.carArea {
  position: relative;
  z-index: 5;
  padding: 11.25em 0;
}
@media screen and (max-width: 768px) {
  .carArea {
    padding: 6.25em 0;
  }
}
.carArea_ttl {
  position: relative;
  max-width: 61.25em;
  width: 90%;
  margin: 0 auto;
}
.carArea_ttl h3 {
  font-size: 3.5em;
  letter-spacing: 0;
  text-align: center;
}
.carArea_ttl .lead {
  font-size: 1.625em;
  text-align: center;
  margin-top: 1em;
}
.carArea_ttl .star {
  position: absolute;
}
.carArea_ttl .star.star01 {
  width: 10.428571%;
  left: 2%;
  top: 3em;
}
@media screen and (max-width: 768px) {
  .carArea_ttl .star.star01 {
    width: 18.428571%;
    left: -1%;
    top: -3em;
  }
}
.carArea_ttl .star.star02 {
  width: 11.571429%;
  right: 3%;
  top: 6em;
}
@media screen and (max-width: 768px) {
  .carArea_ttl .star.star02 {
    width: 15.571429%;
    right: 0%;
    top: 0em;
  }
}
.carArea_inner {
  position: relative;
  max-width: 61.25em;
  width: 90%;
  margin: 2em auto 0;
}
.carArea_inner .thumbnail_a {
  margin-top: 5em;
}
.carArea_inner .thumbnail_a .slick-track {
  transform: unset !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.carArea_inner .thumbnail-img {
  position: relative;
  transition: opacity 0.3s linear;
  width: 16% !important;
  margin-right: 3.5%;
  cursor: pointer;
  transition-duration: 0.3s;
}
.carArea_inner .thumbnail-img .bg {
  opacity: 1;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  transition-duration: 0.3s;
  border-radius: 0.625em;
}
@media screen and (max-width: 768px) {
  .carArea_inner .thumbnail-img .bg {
    border-radius: 0.5em;
  }
}
.carArea_inner .thumbnail-img .bg:hover {
  opacity: 0;
}
.carArea_inner .thumbnail-img .bg p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .carArea_inner .thumbnail-img .bg p {
    font-size: 10px;
  }
}
.carArea_inner .thumbnail-img.slick-current .bg {
  opacity: 0;
}
.carArea_inner .thumbnail .slick-current {
  opacity: 1;
}
.carArea_inner .thumbnail_a .slick-current {
  opacity: 1;
}
.carArea_inner .thumbnail_a .thumbnail-img {
  width: 23.4% !important;
}
.carArea_inner .thumbnail_a .thumbnail-img:nth-child(3n) {
  margin-right: 0;
}
.carArea_inner .thumbnail_a .thumbnail-img:nth-child(n+4) {
  margin-top: 1em;
}
.carArea_inner .thumbnail_a .thumbnail-img:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .carArea_inner .thumbnail_a .thumbnail-img {
    width: 38.4% !important;
  }
  .carArea_inner .thumbnail_a .thumbnail-img:nth-child(3n) {
    margin-right: 3.5%;
  }
  .carArea_inner .thumbnail_a .thumbnail-img:nth-child(2n) {
    margin-right: 0;
  }
  .carArea_inner .thumbnail_a .thumbnail-img:nth-child(n+3) {
    margin-top: 1em;
  }
  .carArea_inner .thumbnail_a .thumbnail-img:last-child {
    margin-right: 0;
  }
}
.carArea_inner .used_bnr {
  width: 100%;
  display: block;
  margin-top: 10em;
}

.linkBtn {
  width: 46.875em;
  margin: 0 auto;
  display: block;
  border-radius: 0.6666666667em;
  text-align: center;
  padding: 2em 0;
}
@media screen and (max-width: 768px) {
  .linkBtn {
    width: 90%;
  }
}
.linkBtn p {
  font-size: 1.875em;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .linkBtn p {
    font-size: 1.3em;
  }
}
.linkBtn p::after {
  content: "";
  position: absolute;
  top: 55%;
  right: -1.5em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5em 0 0.5em 0.8666666667em;
  border-color: transparent transparent transparent #ffffff;
  transition-duration: 0.3s;
}
.linkBtn:hover p::after {
  right: -2em;
}

.floating {
  position: fixed;
  right: 0;
  bottom: 5%;
  opacity: 0;
  transition-duration: 0.3s;
  z-index: 100;
}
.floating.is-active {
  opacity: 1;
}
.floating li {
  width: 188px;
  transform: translateX(123px);
  transition-duration: 0.3s;
}
@media screen and (max-width: 600px) {
  .floating li {
    width: 120px;
    transform: translateX(78px);
  }
}
.floating li:nth-of-type(n + 2) {
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .floating li:nth-of-type(n + 2) {
    margin-top: 5px;
  }
}
.floating li a {
  display: block;
}
.floating li:hover {
  transform: translateX(1px);
}
.floating li:hover a {
  opacity: 1;
}

.floating_e {
  position: fixed;
  opacity: 0;
  transition-duration: 0.3s;
  z-index: 100;
}
@media screen and (max-width: 1000px) {
  .floating_e {
    width: 8%;
  }
}
@media screen and (max-width: 768px) {
  .floating_e {
    width: 12%;
  }
}
.floating_e.is-active {
  opacity: 1;
}
.floating_e.eventSpan {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.floating_e.eventSpan a {
  width: 110px;
}
.floating_e.eventSpan a:nth-child(n+2) {
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  .floating_e.eventSpan a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .floating_e.eventSpan {
    top: auto;
    bottom: 1%;
  }
}

.floating_i {
  position: fixed;
  opacity: 0;
  transition-duration: 0.3s;
  z-index: 100;
  left: 2%;
  bottom: 2%;
  width: 170px;
}
@media screen and (max-width: 1000px) {
  .floating_i {
    left: 5%;
    width: 15%;
  }
}
@media screen and (max-width: 768px) {
  .floating_i {
    left: 3%;
    width: 26%;
  }
}
.floating_i.is-active {
  opacity: 1;
}

footer {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  z-index: 100;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}/*# sourceMappingURL=style_lp.css.map */