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;
}


.cva .button img {
  max-width: 95%;
}



.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: url('../img/11.png') no-repeat center center;
  background-size: cover;
  /* min-height: 600px;  最低400pxの高さを確保 */
  padding: 130px 20px;
  max-width: 700px;
  margin: 0px auto;
  color: #333;
}



.faq-item {
    background-color: #fff;      /* 白背景 */
    border-radius: 30px;         /* 角を丸く */
    padding: 15px 20px;          /* 内側の余白 */
    margin-bottom: 15px;         /* 下のアイテムとの間隔 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* ふわっと影を付ける */
  }

.faq-question {
  cursor: pointer;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  font-size: 14px;
  color: #555;
}

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






.form-section {
  max-width: 700px;
  margin: 10px auto;
  padding: 30px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.form-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.form-desc {
  text-align: center;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: #666;
}

.counseling-form .form-group {
  margin-bottom: 20px;
}

.counseling-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.counseling-form .required {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-left: 5px;
}

.counseling-form input,
.counseling-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.counseling-form input:focus,
.counseling-form textarea:focus {
  border-color: #86b7fe;
  outline: none;
  box-shadow: 0 0 5px rgba(134,183,254,0.5);
}

.form-btn {
  text-align: center;
  margin-top: 30px;
}

.form-btn button {
  background: #ff6fa5;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.form-btn button:hover {
  background: #ff4d88;
}

/* 固定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 */