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%;
  margin-bottom: 30px;
}



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



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


/* 全体 */
details {
  border-bottom: 1px solid #f8d8d8;
  padding: 18px 0;
}

/* summary */
summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  padding-right: 40px;
  text-align: left;   /* ←追加 */
  margin-left: 20px;
}

/* デフォルト三角削除 */
summary::-webkit-details-marker {
  display: none;
}

/* 丸矢印 */
summary::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0.5px solid #aaa9a9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
  margin-right: 10px;
}

/* 開いたとき */
details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}
/* 開いた中身も左寄せ */
details ul {
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}
details ul {
  list-style: none;
  padding-left: 0;
}
.pref-title {
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 8px;
  background: none;
  border: none;
  padding: 0;
  color: #c88f8f;
  list-style: none;
  margin-left: 20px;
}
details li {
  background: #fff7f7;   /* ほんのりピンク */
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

details li {
  text-align: left;
}

/* リスト */
details ul {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
}

details li {
  margin-bottom: 10px;
  font-size: 14px;
}
/* リンク */
details a {
  margin-left: 10px;
  text-decoration: none;
  color: #b48a5a; /* 上品ベージュ系 */
}

details a:hover {
  text-decoration: underline;
}

.clinic-contact {
  margin-top: 60px;
  padding: 30px;
  background: #fbf8f8;
  text-align: center;
  border-radius: 10px;
}

.clinic-contact h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.clinic-contact a {
  color: #c88f8f;
  font-weight: 600;
  text-decoration: underline;
}



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

.indue {
  background-color: #fff;
  color: #000;
  font-size: 13px;
  padding: 20px;
  text-align: center;
}

.indue {
  padding-bottom: 5%;
  margin-top: 5%;
}

@-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 */