body {
  width: 100%;
  background-color: #fff;
  background-image: url(../images/body_bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.wrapper {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

img {
  width: 100%;
}

/* 初期状態：透明・下にずらして非表示 */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* 表示状態 */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.cva .button {
  -webkit-animation: anime1 0.6s ease 0s infinite alternate;
          animation: anime1 0.6s ease 0s infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
}


/* キラッと左から光るアニメーション・2秒に1回 */
@keyframes kira {
  0% {
    transform: translateX(-150%);
  }
  30% {
    transform: translateX(150%);
  }
  100% {
    transform: translateX(150%);
  }
}

.cta-shine {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.cta-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  animation: kira 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes kira {
  0% {
    transform: translateX(-150%);
    opacity: 1;
  }
  25% {
    transform: translateX(150%);
    opacity: 1;
  }
  26% {
    transform: translateX(150%);
    opacity: 0;
  }
  100% {
    transform: translateX(-150%);
    opacity: 0;
  }
}


.cva .button img {
  max-width: 95%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.element {
  -webkit-animation: tikatika 1s step-end infinite;
          animation: tikatika 1s step-end infinite;
}

@-webkit-keyframes tikatika {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes tikatika {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.aq-container {
  background-size: cover;
  padding: 50px 10px;
  max-width: 700px;
  margin: 0px auto;
  color: #333;
}

.faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left !important;
}

.faq-question {
  cursor: pointer;
  padding: 10px 40px 10px 10px;
  font-size: 13px;
  font-weight: bold;
  position: relative;
  text-align: left !important;
  white-space: nowrap;
  overflow: visible;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  font-size: 18px;
  color: #C9A84C;
}

.faq-question.active::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align: left !important;
}

.faq-answer.open {
  max-height: 1000px;
  padding: 10px 15px 15px;
}

/* 固定CTA */
.cta-fixed {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 220px;
}

.cta-fixed a img {
  width: 100%;
  display: block;
}

.fotter {
  padding: 3% 6%;
}

.copy {
  background-color: #fff;
  color: #000;
  font-size: 13px;
  padding: 2%;
  text-align: center;
}

.copy .nav {
  padding-bottom: 1%;
}

@-webkit-keyframes anime1 {
  from {
    -webkit-transform: scale(0.95, 0.95);
            transform: scale(0.95, 0.95);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes anime1 {
  from {
    -webkit-transform: scale(0.95, 0.95);
            transform: scale(0.95, 0.95);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
/*# sourceMappingURL=style.css.map */