@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Outfit:wght@300;400;500;700;900&display=swap");
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes floatCenter {
  0% {
    transform: translate(-50%, 0px);
  }
  50% {
    transform: translate(-50%, -10px);
  }
  100% {
    transform: translate(-50%, 0px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 107, 242, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(29, 107, 242, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(29, 107, 242, 0);
  }
}
html {
  scroll-behavior: smooth;
}

.fs-concept-page {
  font-family: "Noto Sans JP", sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
  line-height: 1.8;
  overflow-x: hidden;
}
.fs-concept-page * {
  box-sizing: border-box;
}
.fs-concept-page .fs-concept-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.fs-concept-page .fs-concept-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0f172a;
}
.fs-concept-page .fs-concept-section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 40px;
  color: #0f172a;
  position: relative;
  display: inline-block;
}
.fs-concept-page .fs-concept-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 60px;
  height: 4px;
  background: #1d6bf2;
  border-radius: 2px;
}
.fs-concept-page .fs-concept-eyebrow {
  font-family: "Outfit", sans-serif;
  display: inline-block;
  padding: 8px 16px;
  background: rgba(29, 107, 242, 0.1);
  color: #1d6bf2;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.fs-concept-page .fs-concept-p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: #64748b;
  margin-bottom: 24px;
}
.fs-concept-page .fs-concept-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.fs-concept-page .fs-concept-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
.fs-concept-page .fs-concept-btn:hover::after {
  left: 100%;
}
.fs-concept-page .fs-concept-btn-primary {
  background: #1d6bf2;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(29, 107, 242, 0.3);
}
.fs-concept-page .fs-concept-btn-primary:hover {
  background: #1557c0;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(29, 107, 242, 0.4);
}
.fs-concept-page .fs-concept-btn-outline {
  background: transparent;
  color: #1d6bf2;
  border: 2px solid #1d6bf2;
}
.fs-concept-page .fs-concept-btn-outline:hover {
  background: rgba(29, 107, 242, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}
.fs-concept-page .fs-concept-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 140px;
  overflow: hidden;
}
.fs-concept-page .fs-concept-hero-bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-image: url("../flying_strawberry/img/top.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: blur(0px);
  animation: kenburns 20s ease-out infinite alternate;
}
.fs-concept-page .fs-concept-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
  z-index: 1;
}
.fs-concept-page .fs-concept-hero-inner {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fs-concept-page .fs-concept-hero-content {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  padding: 60px 40px;
  border-radius: 32px;
  max-width: 900px;
  width: 100%;
  animation: fadeUp 1s ease-out forwards;
}
@media (min-width: 768px) {
  .fs-concept-page .fs-concept-hero-content {
    padding: 80px 60px;
  }
}
.fs-concept-page .fs-concept-hero .fs-concept-lead {
  font-size: clamp(16px, 2vw, 20px);
  color: #1e293b;
  margin-bottom: 20px;
  font-weight: 500;
}
.fs-concept-page .fs-concept-hero .fs-concept-updated {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 40px;
  font-family: "Outfit", sans-serif;
}
.fs-concept-page .fs-concept-hero .fs-concept-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .fs-concept-page .fs-concept-hero .fs-concept-hero-cta {
    flex-direction: row;
    gap: 24px;
  }
}
.fs-concept-page .fs-concept-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatCenter 3s ease-in-out infinite;
}
.fs-concept-page .fs-concept-scroll-indicator::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  margin-top: 10px;
}
.fs-concept-page .fs-concept-body-wrapper {
  position: relative;
  background: #f8fafc;
  z-index: 2;
  padding-top: 60px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: -40px;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .fs-concept-page .fs-concept-body-wrapper {
    padding-top: 100px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    margin-top: -80px;
  }
}
.fs-concept-page .fs-concept-toc {
  margin-bottom: 80px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  display: flex;
  scrollbar-width: thin;
  scrollbar-color: rgba(29, 107, 242, 0.3) rgba(0, 0, 0, 0.05);
}
.fs-concept-page .fs-concept-toc::-webkit-scrollbar {
  height: 4px;
}
.fs-concept-page .fs-concept-toc::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin: 0 24px;
}
.fs-concept-page .fs-concept-toc::-webkit-scrollbar-thumb {
  background: rgba(29, 107, 242, 0.4);
  border-radius: 4px;
}
.fs-concept-page .fs-concept-toc::-webkit-scrollbar-thumb:hover {
  background: rgba(29, 107, 242, 0.6);
}
.fs-concept-page .fs-concept-toc ul {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 10px 24px;
  margin: 0 auto;
  justify-content: flex-start;
  min-width: max-content;
}
@media (min-width: 992px) {
  .fs-concept-page .fs-concept-toc ul {
    justify-content: center;
    min-width: auto;
    flex-wrap: wrap;
    padding: 10px 0;
  }
}
.fs-concept-page .fs-concept-toc a {
  display: block;
  padding: 12px 24px;
  background: #ffffff;
  color: #64748b;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.fs-concept-page .fs-concept-toc a:hover {
  background: #1d6bf2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}
.fs-concept-page .fs-concept-section {
  margin-bottom: 120px;
}
.fs-concept-page .fs-concept-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.fs-concept-page .fs-concept-reason-content {
  columns: 1;
  column-gap: 40px;
}
@media (min-width: 768px) {
  .fs-concept-page .fs-concept-reason-content {
    columns: 2;
  }
}
.fs-concept-page .fs-concept-reason-content .fs-concept-p {
  break-inside: avoid;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 2;
}
.fs-concept-page .fs-concept-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}
@media (min-width: 992px) {
  .fs-concept-page .fs-concept-pillars {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}
.fs-concept-page .fs-concept-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.fs-concept-page .fs-concept-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1d6bf2, #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.fs-concept-page .fs-concept-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  border-color: rgba(29, 107, 242, 0.1);
}
.fs-concept-page .fs-concept-card:hover::before {
  transform: scaleX(1);
}
.fs-concept-page .fs-concept-card:hover h3 {
  color: #1d6bf2;
}
.fs-concept-page .fs-concept-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #0f172a;
  transition: color 0.3s ease;
}
.fs-concept-page .fs-concept-card p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .fs-concept-page .fs-concept-card.fs-concept-card-2 {
    margin-top: 60px;
  }
  .fs-concept-page .fs-concept-card.fs-concept-card-3 {
    margin-top: 120px;
  }
}
.fs-concept-page .fs-concept-recommend-section .fs-concept-glass-panel {
  background: linear-gradient(135deg, #1d6bf2 0%, #0d47a1 100%);
  border-radius: 32px;
  padding: 60px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}
.fs-concept-page .fs-concept-recommend-section .fs-concept-glass-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: rotate 20s linear infinite;
}
.fs-concept-page .fs-concept-recommend-section .fs-concept-glass-panel * {
  position: relative;
  z-index: 1;
}
.fs-concept-page .fs-concept-recommend-section .fs-concept-glass-panel .fs-concept-section-title {
  color: #ffffff;
}
.fs-concept-page .fs-concept-recommend-section .fs-concept-glass-panel .fs-concept-section-title::after {
  background: #ffffff;
}
.fs-concept-page .fs-concept-recommend-section .fs-concept-glass-panel .fs-concept-p {
  color: rgba(255, 255, 255, 0.9);
}
.fs-concept-page .fs-concept-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  background: #ffffff;
  border-radius: 16px;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.fs-concept-page .fs-concept-link-card::after {
  content: "→";
  color: #1d6bf2;
  font-size: 20px;
  transition: transform 0.3s ease;
  margin-left: 15px;
}
.fs-concept-page .fs-concept-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  border-color: rgba(29, 107, 242, 0.2);
  color: #1d6bf2;
}
.fs-concept-page .fs-concept-link-card:hover::after {
  transform: translateX(5px);
}
.fs-concept-page .fs-concept-action-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fs-concept-page .fs-concept-action-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 992px) {
  .fs-concept-page .fs-concept-action-list li {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
}
.fs-concept-page .fs-concept-action-list .fs-concept-check-item {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  margin-bottom: 0;
}
.fs-concept-page .fs-concept-action-list .fs-concept-check-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(29, 107, 242, 0.2);
}
.fs-concept-page .fs-concept-action-list .fs-concept-check-item::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: #1d6bf2;
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  margin-right: 20px;
  box-shadow: 0 0 20px rgba(29, 107, 242, 0.3);
  flex-shrink: 0;
}
.fs-concept-page .fs-concept-action-list .fs-concept-check-item span {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2px;
}
.fs-concept-page .fs-concept-action-list .fs-concept-link-card {
  height: 100%;
}
.fs-concept-page .fs-concept-related-links-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .fs-concept-page .fs-concept-related-links-row {
    flex-direction: row;
    justify-content: center;
  }
  .fs-concept-page .fs-concept-related-links-row .fs-concept-link-card {
    flex: 1;
    max-width: 400px;
  }
}
.fs-concept-page .fs-concept-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  counter-reset: flow-count;
}
.fs-concept-page .fs-concept-flow::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(29, 107, 242, 0.2);
}
@media (min-width: 768px) {
  .fs-concept-page .fs-concept-flow::before {
    left: 50%;
  }
}
.fs-concept-page .fs-concept-flow li {
  position: relative;
  margin-bottom: 40px;
  padding-left: 70px;
  width: 100%;
  counter-increment: flow-count;
}
@media (min-width: 768px) {
  .fs-concept-page .fs-concept-flow li {
    width: 50%;
    padding-left: 0;
    padding-right: 60px;
    text-align: right;
  }
  .fs-concept-page .fs-concept-flow li:nth-child(even) {
    margin-left: auto;
    text-align: left;
    padding-right: 0;
    padding-left: 60px;
  }
  .fs-concept-page .fs-concept-flow li:nth-child(even)::before {
    left: 0;
  }
  .fs-concept-page .fs-concept-flow li:nth-child(even)::after {
    left: -9px;
  }
}
.fs-concept-page .fs-concept-flow li::before {
  content: "0" counter(flow-count);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translate(-50%, -45px);
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: rgba(29, 107, 242, 0.2);
  z-index: 1;
  line-height: 1;
}
@media (min-width: 768px) {
  .fs-concept-page .fs-concept-flow li::before {
    left: 100%;
  }
}
.fs-concept-page .fs-concept-flow li::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #1d6bf2;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(29, 107, 242, 0.2);
}
@media (min-width: 768px) {
  .fs-concept-page .fs-concept-flow li::after {
    left: auto;
    right: -9px;
  }
}
.fs-concept-page .fs-concept-flow li .fs-concept-flow-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
  position: relative;
  transition: all 0.3s ease;
}
.fs-concept-page .fs-concept-flow li .fs-concept-flow-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.fs-concept-page .fs-concept-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fs-concept-page .fs-concept-faq .fs-concept-detail {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.fs-concept-page .fs-concept-faq .fs-concept-detail[open] {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}
.fs-concept-page .fs-concept-faq .fs-concept-detail[open] .fs-concept-faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0;
}
.fs-concept-page .fs-concept-faq .fs-concept-detail[open] .fs-concept-faq-icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.fs-concept-page .fs-concept-faq .fs-concept-detail[open] summary {
  color: #1d6bf2;
}
.fs-concept-page .fs-concept-faq .fs-concept-detail summary {
  padding: 24px 60px 24px 24px;
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s ease;
}
.fs-concept-page .fs-concept-faq .fs-concept-detail summary::-webkit-details-marker {
  display: none;
}
.fs-concept-page .fs-concept-faq .fs-concept-detail summary .fs-concept-faq-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}
.fs-concept-page .fs-concept-faq .fs-concept-detail summary .fs-concept-faq-icon::before, .fs-concept-page .fs-concept-faq .fs-concept-detail summary .fs-concept-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: all 0.3s ease;
}
.fs-concept-page .fs-concept-faq .fs-concept-detail summary .fs-concept-faq-icon::before {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.fs-concept-page .fs-concept-faq .fs-concept-detail summary .fs-concept-faq-icon::after {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.fs-concept-page .fs-concept-faq .fs-concept-detail p {
  padding: 0 24px 24px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}
.fs-concept-page .fs-concept-bottom-cta {
  margin-bottom: 0;
}
.fs-concept-page .fs-concept-bottom-cta .fs-concept-cta-inner {
  background: #ffffff;
  padding: 80px 40px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.fs-concept-page .fs-concept-bottom-cta .fs-concept-cta-inner .fs-concept-section-title {
  margin-bottom: 24px;
}
.fs-concept-page .fs-concept-bottom-cta .fs-concept-cta-inner .fs-concept-section-title::after {
  display: none;
}
.fs-concept-page .fs-concept-bottom-cta .fs-concept-cta-inner .fs-concept-hero-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 768px) {
  .fs-concept-page .fs-concept-bottom-cta .fs-concept-cta-inner .fs-concept-hero-cta {
    flex-direction: row;
    gap: 24px;
  }
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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