@charset "utf-8";
/* CSS Document */

/* ツアー別色分けCSS */

/* マインドフルネスツアー（緑系） */
.tour-mindfulness .tour-category {
  background: linear-gradient(135deg, #00552E 0%, #004DA0 100%);
}
.tour-mindfulness .sub-title {
  color: #00552E;
  border: 3px solid #00552E;
}
.tour-mindfulness .sub-title::before {
  background: linear-gradient(135deg, #00552E, #004DA0);
}
.tour-mindfulness .main-title {
  background: linear-gradient(135deg, #00552E 0%, #004DA0 50%, #2424a4 100%);
}

/* 歌舞伎ツアー（赤系） */
.tour-kabuki .tour-category {
  background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
}
.tour-kabuki .sub-title {
  color: #8B0000;
  border: 3px solid #8B0000;
}
.tour-kabuki .sub-title::before {
  background: linear-gradient(135deg, #8B0000, #DC143C);
}
.tour-kabuki .main-title {
  background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF6347 100%);
}

/* 登山ツアー（青系） */
.tour-mountain .tour-category {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}
.tour-mountain .sub-title {
  color: #1E3A8A;
  border: 3px solid #1E3A8A;
}
.tour-mountain .sub-title::before {
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
}
.tour-mountain .main-title {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #60A5FA 100%);
}