@charset "UTF-8";
/* CSS Document */
.ctaBox .shine_inner {
  position: relative;
  overflow: hidden;
  display: block;
  width: 90%;
  margin: 0 auto;
}
.ctaBox .shine_inner .shine_mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mask-size: 100% auto;
    mask-repeat: no-repeat;
    mask-position: left top;
    display: block;
  mask-image: url("../img/cta.webp");
}
.ctaBox .shine_inner .shine_mask .shine {
    content: "";
    -webkit-animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
    animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
    background-color: #fff;
    width: 140%;
    height: 100%;
    -webkit-transform: skewX(-45deg);
    transform: skewX(-45deg);
    top: 0;
    left: -160%;
    opacity: 0.5;
    position: absolute;
    z-index: 1;
    display: block;
}
@-webkit-keyframes shine {
  0% {
    left: -200%;
    opacity: 0;
  }
  70% {
    left: -200%;
    opacity: 0.5;
  }
  71% {
    left: -200%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
@keyframes shine {
  0% {
    left: -200%;
    opacity: 0;
  }
  70% {
    left: -200%;
    opacity: 0.5;
  }
  71% {
    left: -200%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
.updown {
    animation-name: updown1;
    animation-delay: 0s;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
p.notes {
  font-size: 0.9rem;
  text-align: center;
}
@media (min-width:500px) {
  p.notes {
    font-size: 1.2rem;
  }
}
section {
  position: relative;
}
#mvArea .ctaBox,
#comparisonArea .ctaBox,
#pointArea .ctaBox {
  position: absolute;
  bottom: 0;
  padding-bottom: 6em;
}
#cpArea {
  display: flex;
  justify-content: center;
}
#cpArea p.notes {
  position: absolute;
  bottom: 2em;
  color: #FFF;
}
@media (min-width:500px) {
  #cpArea p.notes {
    bottom: 2em;
  }
}
#comparisonArea .ctaBox {
  padding-bottom: 9em;
}
#comparisonArea .ctaBox p.notes {
  color: #FFF;
}
#aboutArea .acBox .inner {
  display: none;
}
#aboutArea .ctaBox,
#flowArea .ctaBox {
  padding: 4em 0 7em;
}
#planArea {
  padding-bottom: 7em;
}
#planArea .ctaBox {
  margin-top: 5em;
}
#voiceArea {
  background: url("../img/voice_bg.webp") 100% 0 / 100% no-repeat;
  padding-bottom: 10em;
}
@media (min-width:500px) {
  #voiceArea {
    padding-bottom: 13.8em;
  }
}
#voiceArea .slick-img img {
  height: auto;
  transform: scale(.8);
  transition: opacity .5s, transform .5s;
  width: 100%;
  opacity: 0.6;
}
#voiceArea .slick-center img {
  transform: scale(1);
  opacity: 1;
}
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  width: 40px; /* 画像のサイズに合わせて調整 */
  height: auto;
}
.prev-arrow {
  left: 0;
}
.next-arrow {
  right: 0;
}
#voiceArea p.notes {
  text-align: justify;
  color: #FFF;
  width: 70%;
  margin: 0 auto;
  padding: 2em 0 0;
}
#cpBottomArea p.notes {
  color: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 7em;
}
@media (min-width:500px) {
  #cpBottomArea p.notes {
    bottom: 7em;
  }
}
#faqArea {
  background: #000 url(../img/faq_bg.webp) no-repeat left top / 100%;
  padding-bottom: 9em;
}
#faqArea dl {
  width: 87%;
  background: #FFF;
  font-size: 1.4rem;
  margin: 0 auto;
}
@media (min-width:500px) {
  #faqArea dl {
    font-size: 1.6rem;
  }
}
#faqArea dl dt {
  background: var(--main-orange);
  color: #FFF;
  font-weight: 400;
  padding: 0.5em 0;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 3em;
  border-top: 2px solid #000;
  cursor: pointer;
}
#faqArea dl dt:nth-child(9) {
  border-bottom: none;
}
@media (min-width:500px) {
  #faqArea dl dt {
    padding: 0.8em 0;
    padding-left: 3em;
  }
}
#faqArea dl dt:before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2.1rem;
  background: url("../img/faq_icon.webp") 100% 0 / 100% no-repeat;
  position: absolute;
  left: 1rem;
}
#faqArea dl dt span {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width:500px) {
  #faqArea dl dt span {
    right: 2rem;
  }
}
#faqArea dl dt span:before,
#faqArea dl dt span:after {
  content: '';
  display: block;
  background: #000;
  position: absolute;
}
#faqArea dl dt span:before {
  width: 13px;
  height: 1px;
}
#faqArea dl dt span:after {
  width: 1px;
  height: 13px;
  transition: all 0.5s ease;
}
#faqArea dl dt.on span:after {
  transform: rotate(270deg);
}
#faqArea dl dd {
  display: none;
  padding: 0.6em 1em;
  text-align: justify;
}
#priceArea {
  padding-top: 3em;
}
#priceArea .ctaBox {
  margin-top: 5em;
}
#needArea {
  padding-bottom: 9em;
}
#needArea p {
  font-size: 0.9rem;
  text-align: justify;
  width: 85%;
  margin: 2em auto 0;
  font-feature-settings: "halt" 1;
}
@media (min-width:500px) {
  #needArea p {
    font-size: 1.2rem;
  }
}
#shopArea {
  background: #000 url(../img/shop_bg.webp) no-repeat left top / 100%;
  padding-bottom: 9em;
}
#shopArea .map {
  position: relative;
  width: 90%;
  height: 0;
  margin: 2rem auto 0;
  padding-top: 70%;
}
#shopArea .map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#shopArea dl {
  width: 90%;
  margin: 2em auto 0;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  color: #fff;
}
@media (min-width:500px) {
  #shopArea dl {
    width: 80%;
    font-size: 1.5rem;
  }
}
#shopArea dl dt {
  font-weight: bold;
  width: 26%;
}
#shopArea dl dd {
  width: 74%;
  margin-bottom: 2em;
}
#shopArea dl dd span {
  font-size: 1rem;
  display: inline-block;
}
#shopArea dl dd.parking {
  margin-bottom: 4em;
}
#shopArea .ctaBox {
  padding-top: 4em;
}
#shopArea .ctaBox p.notes {
  color: #FFF;
}
footer small {
  color: #FFF;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}
.floatBtn {
  position: fixed;
  left: 0;
  bottom: 0;
}
.floatBtn img {
  width: 93%;
  margin: 0 auto;
}
@media (min-width:500px) {
  .floatBtn {
    width: 500px;
    left: 0;
    right: 0;
    margin: auto;
  }
}