:where([class^="ri-"])::before { content: "\f3c2"; }
body {
font-family: 'Noto Sans JP', sans-serif;
letter-spacing: 0.02em;
line-height: 1.8;
}

:root {
  --base-color: #17263F;
  --base-color-light: #6d8abb;
  --gold-gradient-start: #BF9C63;
  --gold-gradient-end: #D4B574;
}

/* 背景色や文字色として使用 */
.text-primary {
  color: var(--base-color) !important;
}
.bg-primary {
  background-color: var(--base-color) !important;
}
.bg-primary\/90 {
  background-color: rgba(25, 65, 34, 0.9) !important;
}
.bg-primary\/95 {
  background-color: rgba(25, 65, 34, 0.95) !important;
}

.hero-section {
  position: relative;
  height: 80vh; /* 高さを抑える */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #B3BBD1 0%, #79808B 100%);
  opacity: 0.66;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 1rem;
}

.hero-title {
  font-size: clamp(32px, 5vw, 43px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}



.hero-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  z-index: 2;
  animation: bounce 2s infinite;
}

/* バウンドアニメーション */
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.text-gradient {
  background: linear-gradient(90deg, #fcd34d, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary {
  color: #facc15;
}



.section-bg {
background: linear-gradient(135deg, #f8f6f4 0%, #f5f2ef 100%);
position: relative;
}
.section-bg::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
pointer-events: none;
}


.card-shadow {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.card-shadow:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.text-gradient {
background: linear-gradient(135deg, #BF9C63, #D4B574);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}
.features-grid .card-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}




/* ボタン */
.hero-button {
  background: linear-gradient(135deg, var(--gold-gradient-start), var(--gold-gradient-end));
  color: #fff;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(191, 156, 99, 0.4);
}
.hero-button .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}




.underline-gradient {
position: relative;
}
.underline-gradient::after {
content: '';
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
width: 20%;
height: 4px;
background: linear-gradient(135deg, var(--gold-gradient-start), var(--gold-gradient-end));
border-radius: 2px;
}

.fade-up {
opacity: 0;
transform: translateY(30px);
animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
to {
opacity: 1;
transform: translateY(0);
}
}
.price-card-featured {
transform: scale(1.1);
border: 2px solid #BF9C63;
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.accordion-content.active {
max-height: 200px;
}
.rotate-icon {
transition: transform 0.3s ease;
}
.rotate-icon.active {
transform: rotate(180deg);
}


/* 加盟の流れ（step-flow-grid）専用スタイル */
.step-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.step-flow-grid > div {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.step-flow-box {
  background: #fff;
  padding: 30px 0;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-bottom-box {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.step-bottom-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #eff6ff; /* bg-blue-50 */
  color: var(--base-color);
  padding: 1.25rem 2rem;
  border-radius: 0.75rem;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.step-bottom-content i {
  font-size: 1.25rem;
}




@media (max-width: 768px) {
  .step-flow-grid {
      grid-template-columns: 1fr;
    }
  .step-bottom-content {
    font-size: 1.1rem;
  }
}


