@charset "UTF-8";


/* 共通 */
img {
  width: 100%;
  vertical-align: bottom;
}

body {
  max-width: 500px;
  margin: 0 auto;
  background: #E5E1D0;
}

.kv, .worries, .design, .features, .coupon {
  position: relative;
}


.kv__link, .worries__link, .design__link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}


/* ----------
KV
---------- */

.kv__logo{
  width: calc(137 / 375 * 100%);
  margin: 14px calc(16 / 375 * 100%);
}

.kv__slide {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.kv__track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: kv__scroll 28s linear infinite;
  position: relative;
  z-index: 1;
}

.kv__item {
  flex: 0 0 auto;
  width: calc(228 / 375 * 100vw);
  border-radius: 20px;
  overflow: hidden;
}
.kv__item:nth-child(even){
  position: relative;
  top: 60px;
}
.kv__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

@keyframes kv__scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.kv__catch{
  width: calc(284 / 375 * 100vw);
  z-index: 5;
  position: relative;
}

.kv__merit{
  margin-right: calc(16 / 375 * 100%);
  /* width: 100%; */
}

@media (min-width: 501px) {
  .kv__item {
    flex: 0 0 auto;
    width: 304px;
    border-radius: 20px;
    overflow: hidden;
  }
  .kv__catch{
    width: 379px;
    z-index: 5;
    position: relative;
  }
}



/* ----------
worries
---------- */
.worries{
  margin-top: 32px;
}

/* ----------
point
---------- */

.point__inner{
  margin: 48px calc(16 / 375 * 100%) 0 0;
}

.point__slideTitle{
  margin: 48px calc(76 / 375 * 100%) 0 calc(16 / 375 * 100%);
}


.point__scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
  margin-top: 16px;
  cursor: grab;
  user-select: none;
}

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

.point__scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.point__scroll.is-dragging .point__item {
  pointer-events: none;
}

.point__list {
  display: flex;
  gap: 16px;
  padding: 0 20px;
  width: max-content;
}

.point__item {
  flex: 0 0 auto;
  width: calc(267 / 375 * 100vw);
  border-radius: 12px;
  overflow: hidden;
}

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

@media (min-width: 500px) {
  .point__item {
    flex: 0 0 auto;
    width: 356px;
    border-radius: 12px;
    overflow: hidden;
  }
}


/* ----------
voice
---------- */
.voice{
  background-color: #F1E7E6;
  position: relative;
  margin: 120px 0;
  padding: 60px 0;
}

.voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 47px;
  background-image: url("../img/voice/section-top.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translateY(-100%); /* セクションの上に完全にはみ出す */
  pointer-events: none;
  z-index: 1;
}
.voice::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 47px;
  background-image: url("../img/voice/section-bottom.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translateY(100%); /* セクションの上に完全にはみ出す */
  pointer-events: none;
  z-index: 1;
}

.voice__title{
  width: calc(169 / 375 * 100%);
  margin: 0 auto;
}

.voice__inner{
  margin: 42px calc(16 / 375 * 100%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}


/* ----------
price
---------- */

.price__title{
  margin: 0 calc(104 / 375 * 100%);
}

.price__inner{
  margin: 42px calc(16 / 375 * 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ----------
step
---------- */
.step{
  margin: 60px calc(16 / 375 * 100%) 0;
}




/* ----------
QA 
---------- */

.qa {
  padding-top: 64px;
}

.qa__title {
  margin: 0 calc(122 / 375 * 100%) 0;
}

.qa__br{
  line-height: calc(1em + 4px);
}

.qa__inner .qa__question {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #33302E;
  color: #fff;
  cursor: pointer;
  font-size: clamp(0.75rem, 3.2vw, 1rem);
  min-height: 0;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px calc(16 / 343 * 100%) 9px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.qa__inner .qa__question.open {
  border-radius: 8px 8px 0 0;
}

.qa__questionMarc {
  margin: 7px 12px 3px 0px;
  width: 28px;
  display: block;
}

.qa__question::after {
  content: "";
  position: absolute;
  top: 40%;
  margin: auto 0;
  right: calc(16 / 343 * 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 8px solid #fff;
  border-top: 0;
}

.qa__question:not(:first-child) {
  margin-top: 8px;
}

.qa__question.open::after {
  content: "";
  position: absolute;
  top: 40%;
  margin: auto 0;
  right: calc(16 / 343 * 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 8px solid #fff;
  border-top: 0;
  transform: rotate(180deg);
}

.qa__content {
  background: #F6F6F6;
  border-radius: 0 0 8px 8px;
  margin-top: -8px;
  padding: 24px calc(16 / 343* 100%);
  border: 3px solid #33302E;
}

.qa__answer {
  font-size: clamp(0.75rem, 3.2vw, 1rem);
  min-height: 0;
  font-weight: 400;
}

.qa__inner {
  margin: 24px calc(16 / 375 * 100%) 0;
}

.qa__note{
  font-size: 12px;
  display: block;
}


.btn__shadow {
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.45));
  -webkit-animation: motion 0.75s alternate infinite ease-in !important;
  animation: motion 0.75s alternate infinite ease-in !important;
  will-change: transform;
  display: inline-block;
}



.copyright {
  background: #33302E;
  text-align: center;
  font-size: 10px;
  color: #FFF;
  padding: 14px 0;
}

.ctaFixed {
  max-width: 500px;
  position: sticky;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
  width: 100vw;
  padding: 8px 0 16px;
  z-index: 9999;

}

.ctaFixed__link {
  text-decoration: none;
}



.ctaFixed__subBtn {
  width: calc(54 / 375 * 100%);
  display: block;
  z-index: 10;
  position: absolute;
  top: -4%;
  left: 4%;

}

.ctaFixed__subText {
  text-align: center;
  font-size: clamp(0.875rem, 0.011rem + 3.69vw, 1.163rem);
  color: #323232;
  font-weight: 500;
}


.ctaFixed__btn {
  width: calc(311 / 375 * 100%);
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-radius: 500px;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.45));
  will-change: transform;
}

.ctaFixed__btn:after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: reflection 4s ease-in-out infinite !important;
  animation: reflection 4s ease-in-out infinite !important;
}

.ctaFixed__text {
  text-align: center;
  font-size: clamp(1.125rem, 4.8vw, 1.5rem);
  color: #fff;
  font-weight: 500;
}
