@charset "UTF-8";
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.dot-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0px, rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 2px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0px, rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 2px);
  pointer-events: none;
  z-index: 10;
}

.scroll-line {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  animation: scrollLineDown 1.5s infinite ease-in-out;
  opacity: 60;
}

@keyframes scrollLineDown {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) translateY(20px);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(40px);
    opacity: 0;
  }
}
.gradient-line {
  height: 1px; /* 線の太さ */
  width: 320px; /* 横いっぱい */
  margin: 24px auto; /* 中央寄せ */
  background: linear-gradient(to right, #ffffff, #c38a96, #ffffff); /* 左→右グラデーション */
}

.gradient-line2 {
  height: 1px; /* 線の太さ */
  width: 320px; /* 横いっぱい */
  margin: 24px auto; /* 中央寄せ */
  background: linear-gradient(to right, #c38a96, #ffffff, #c38a96); /* 左→右グラデーション */
}

.gradient-line3 {
  height: 1px; /* 線の太さ */
  width: 320px; /* 横いっぱい */
  margin: 24px auto; /* 中央寄せ */
  background: linear-gradient(to right, rgba(195, 138, 150, 0), #7d3c49, rgba(195, 138, 150, 0)); /* 左→右グラデーション */
}

/* HTML: <div class="loader"></div> */
.loader {
  height: 4px;
  width: 130px;
  --c: no-repeat linear-gradient(#c38a96 0 0);
  background: var(--c), var(--c), #e4cacf;
  background-size: 60% 100%;
  animation: l16 3s infinite;
}

@keyframes l16 {
  0% {
    background-position: -150% 0, -150% 0;
  }
  66% {
    background-position: 250% 0, -150% 0;
  }
  100% {
    background-position: 250% 0, 250% 0;
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

#sbi_images {
  padding: 0px !important;
}

/* グラデーションの縦線を疑似要素で表現 */
.gradient-border-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px; /* 線の太さ */
  height: 100%;
  background: linear-gradient(to bottom, #c38a96, #ffffff);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 500px; /* 内容に合わせて大きめに（必要ならJSでscrollHeightにしてもOK） */
  padding: 12px 16px;
}

/* スクロールバー全体 */
::-webkit-scrollbar {
  width: 12px;
}

/* スクロールバーのトラック（背景） */
::-webkit-scrollbar-track {
  background: #e4cacf;
}

/* スクロールバーのつまみ（つかむ部分） */
::-webkit-scrollbar-thumb {
  background: #c38a96;
}

/* ホバー時のつまみ */
::-webkit-scrollbar-thumb:hover {
  background: #d36f84;
}

section.page table {
  background-color: #ffffff;
}

section.page h2 {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 20px;
  border-left: 4px solid #c38a96;
  padding: 10px 10px 10px 20px;
  font-weight: bold;
}

section.page p {
  margin-bottom: 24px;
  font-size: 16px;
}

section.page .wp-block-group {
  padding: 16px;
  margin-bottom: 8px;
}

@media (min-width: 600px) {
  section.page .wp-block-group {
    padding: 32px;
  }
  section.page h2 {
    margin-top: 24px;
    margin-bottom: 48px;
  }
  section.page p {
    margin-bottom: 48px;
  }
}
section.page ul {
  margin-left: 16px;
}

section.page li {
  list-style: disc;
  margin-bottom: 6px;
}

section.page .wp-block-group p {
  margin-bottom: 12px;
}

section.page input[type=text],
section.page input[type=email],
section.page input[type=tel],
section.page input[type=url],
section.page input[type=number],
section.page input[type=search],
section.page input[type=password],
section.page input[type=datetime],
section.page input[type=date] {
  width: 100%;
  padding: 12px;
  border: 1px solid #c38a96;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 16px;
}

section.page textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #c38a96;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 16px;
}

/*# sourceMappingURL=style.css.map */
