@charset "UTF-8";
.fade-in-up {
  opacity: 0;
  transform: translateY(2rem); /* Tailwindのtranslate-y-8相当 */
  transition: all 1.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-20rem); /* Tailwindのtranslate-y-8相当 */
  transition: all 1.2s ease;
}

.fade-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20rem); /* Tailwindのtranslate-y-8相当 */
  transition: all 1.2s ease;
}

.fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* 全体のスクロールバーに適用したい場合 */
body::-webkit-scrollbar {
  width: 8px; /* スクロールバーの幅 */
  background-color: #f9f9f9;
}

/* スクロールバーのつまみ部分（ここが色変わる） */
body::-webkit-scrollbar-thumb {
  background: #e68036;
  border-radius: 0;
}

/* ホバー時のつまみ色（任意） */
body::-webkit-scrollbar-thumb:hover {
  background: #cc6f2f;
}

/* ドットパターン背景 */
.bg-dot-pattern {
  background-image: radial-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px);
  background-size: 3px 3px;
  background-repeat: repeat;
}

/* スクロールライン */
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #ffffff 0%, transparent 100%);
  animation: scrollAnim 1.8s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}
/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side, #e68036 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 100%;
  animation: l7 1s infinite linear;
}

@keyframes l7 {
  33% {
    background-size: 33.3333333333% 0%, 33.3333333333% 100%, 33.3333333333% 100%;
  }
  50% {
    background-size: 33.3333333333% 100%, 33.3333333333% 0%, 33.3333333333% 100%;
  }
  66% {
    background-size: 33.3333333333% 100%, 33.3333333333% 100%, 33.3333333333% 0%;
  }
}
.history::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px; /* ← ここで線の位置を調整 */
  width: 1px; /* 線の太さ */
  background-color: #ffffff; /* 線の色 */
  opacity: 0.3;
}

@media (min-width: 768px) {
  .history::before {
    left: 60px; /* 線の位置 */
  }
}
/* 全体のラップ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  font-family: sans-serif;
}

/* 各グループ */
.contact-form .form-group {
  margin-bottom: 20px;
}

/* ラベル */
.contact-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

/* 必須マーク */
.contact-form .required {
  background: #ef7c24;
  color: #fff;
  padding: 4px 6px;
  font-size: 11px;
  border-radius: 9999px;
  position: relative;
  bottom: 2px;
}

/* テキスト、メール、テキストエリア */
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

/* テキストエリア高さ */
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* ボタン */
.contact-form input[type=submit] {
  display: inline-block;
  background: #ef7c24;
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form input[type=submit]:hover {
  background: #ae5918;
}

.pink-marker {
  background: linear-gradient(to top, #ffdcef 30%, transparent 30%);
  /* #f9a8d4 は Tailwind の pink-200 相当 */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 1px;
}

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