@charset "UTF-8";
/* CSS Document */
.shine_inner {
  position: relative;
  overflow: hidden;
  display: block;
  width: 90%;
  margin: 0 auto;
}
.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/260713/cta.webp");
}
.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: 5em;
}
#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_260629.webp") 100% 0 / 100% no-repeat;
  position: relative;   
}
@media (min-width:500px) {
  #voiceArea {
  }
}
#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: 0em 0 0;
}
#cpBottomArea p.notes {
  color: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 6em;
}
@media (min-width:500px) {
  #cpBottomArea p.notes {
    bottom: 6em;
  }
}
#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;
  margin-bottom: 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;
  }
}

/* 260629追加 */
.floatBtn {
  position: fixed;
  z-index: 99999;
  bottom: 20px;
  left: 0;
}

.floatBtn a {
  display: block;
}

.mapArea{
  position: relative;
}
.mapArea img{
  display: block;
  width: 100%;
  height: auto;
}
.mapArea a{
  position: absolute;
  display: block;
  z-index: 9999;
}
.link_kick{
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
}
.link_machine{
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
}
.link_hiit{
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
}
.link_personal{
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
}
.cpArea {
  position: relative;
}
.cpArea > img{
  display: block;
  width: 100%;
  height: auto;
}
.cpArea .ctaBox{
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
}
.cpArea .ctaBox .notes{
  color: #fff;
  text-align: center;
  margin-top: 0.5em;
  font-size: 0.8rem;
}
#cpArea1.cpArea .ctaBox {
  bottom: 4%;
}
.flow_step{
  background:#f36517;    
}

.flow_movie{
  width:80%;
  margin:0 auto -80px;
  position:relative;
  z-index:1;
}

.flow_step_movie{
  width:100%;
  overflow:hidden;
}

.flow_step_movie video {
  display:block;
  width:100%;
  object-fit:cover;
}

.flow_stepText{
  position:relative;
  z-index:2;
  margin-top:10%;
}
.youtube_movie {
  width:100%;
  aspect-ratio:16 / 9;
  overflow:hidden;
}

.youtube_movie iframe {
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.flow_cta_wrap {
  position: relative;
}
.flow_cta_wrap .ctaBox {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
}
.flow_cta_wrap .ctaBox .notes {
  color: #fff;
  margin-top: 0.8rem;
}
#voiceArea .voiceSlider {
  margin-bottom: 0;
}

#voiceArea p.notes {
  position: static;
  width: 70%;
  margin: 1em auto 0;
  color: #fff;
  text-align: justify;
  font-size: 0.9rem;
  z-index: 10;
  padding-bottom: 5%;
}

@media (min-width:500px) {
  #voiceArea p.notes {
    font-size: 1.2rem;
  }
}
/* aboutArea アコーディオン内をコード化（旧: about_*_inner.webp） */
#aboutArea .inner {
  padding: 2rem;
}
#aboutArea .acTags {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 2em;
}
#aboutArea .acTags li {
  border: 2px solid #f36517;
  color: #f36517;
  border-radius: 999px;
  padding: 0.3em 1em 0.2em;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}
#aboutArea .acText {
  color: #352f2d;
  line-height: 1.9;
  text-align: justify;
  font-size: 1.4rem;
}
#aboutArea .acText mark {
  background: #fff33f;
  color: inherit;
}
#aboutArea .acNote {
  color: #888;
  font-size: 1rem;
  text-align: right;
  margin-top: 0.8em;
}
/* machine 設備一覧 */
#aboutArea .acEquip {
  margin-top: 1.5em;
  border: 1px solid #ddd;
  padding: 1.5em;
}
#aboutArea .acEquip h4 {
  color: #352f2d;
  font-weight: 700;
  font-size: 1.3rem;
  border-bottom: 1px solid #352f2d;
  padding-bottom: 0.3em;
  margin: 1.5em 0 0.6em;
}
#aboutArea .acEquip h4:first-child {
  margin-top: 0;
}
#aboutArea .acEquip ul {
  column-count: 2;
  column-gap: 1em;
  color: #352f2d;
  font-size: 1.2rem;
}
#aboutArea .acEquip li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.9;
  break-inside: avoid;
}
#aboutArea .acEquip li::before {
  content: "・";
}
@media (min-width:500px) {
  #aboutArea .acEquip {
    padding: 3.5em;
  }
}
/* needArea コード化（旧: need.webp） */
#needArea .needTitle {
  text-align: center;
  color: #352f2d;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1.2em;
}
#needArea .needTable {
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  color: #352f2d;
}
#needArea .needTable th,
#needArea .needTable td {
  border: 1px solid #f0c9a6;
  padding: 1.2em 1em;
  text-align: left;
  vertical-align: middle;
  font-size: 1.2rem;
  line-height: 1.7;
}
#needArea .needTable th {
  width: 42%;
  font-weight: 700;
}
#needArea .needTable p {
  width: auto;
  margin: 0;
  text-align: left;
  font-feature-settings: normal;
  font-size: inherit;
}
#needArea .needFree {
  color: #f36517;
  font-size: 1.8rem;
  font-weight: 700;
}
#needArea .needTable .needTag {
  background: #f36517;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 0.6em;
  margin-top: 0.6em;
  font-size: 1rem;
  line-height: 1.5;
}
#needArea .needTable .needSmall {
  font-size: 0.9rem;
  margin-top: 0.3em;
}
@media (min-width:500px) {
  #needArea .needTitle { font-size: 2.4rem; }
  #needArea .needTable p {
    font-size: 1.6rem;
  }
  #needArea .needFree { font-size: 2.5rem; }
  #needArea .needTable .needTag {
    font-size: 1.2rem;
  }
}
/*カウントダウンタイマー*/
.countdown {
  background: var(--main-black);
  padding: 2rem 0 0.5rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.countdown p {
  display: block;
  width: fit-content;
  box-sizing: border-box;
  padding: 0 2.5rem 0.3rem;
  background: linear-gradient(to right, #eb5902, #eb3602);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  clip-path: polygon(0.8em 0, 100% 0, calc(100% - 0.8em) 100%, 0 100%);
  position: absolute;
  top: -1.5rem;
  left: 0;
  right: 0;
  margin: auto;
}
.countdown p .cdDate {
  color: #fcee21;
  font-size: 1.25em;
}
.countdown p span {
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.5em;
  margin: 0 0.15em 0.4em;
  border: 1px solid #ffe100;
  border-radius: 50%;
  color: #ffe100;
  font-size: 0.72em;
  text-align: center;
  vertical-align: middle;
}
.countdown .countdown_box {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.countdown .countdown_box span {
  background: #fff;
  color: var(--main-black);
  border-radius: 0.2rem;
  padding: 0 0.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  vertical-align: bottom;
  margin: 0 0.15rem 0 0.3rem;
  box-shadow: 3px 0px 3px -1px rgba(0, 0, 0, 0.3);
}
.countdown a {
  width: 90%;
  display: block;
  margin: 0.4rem auto 0;
  box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
  animation: btn_animation 1s infinite;
  position: relative;
}
@keyframes btn_animation {
    0% {
        box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
        top: 0px;
    }
    15% {
        box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
        top: 3px;
    }
    25% {
        box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
        top: 0px;
    }
    35% {
        box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
        top: 3px;
    }
    45% {
        box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
        top: 0px;
    }
}
.countdown a img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 500px) {
  .countdown p {
    font-size: 1.8rem;
    top: -2rem;
  }
  .countdown .countdown_box {
    font-size: 2rem;
  }
  .countdown .countdown_box span {
    font-size: 2.5rem;
  }
  .countdown a {
    width: 350px;
  }
}