@charset "UTF-8";
.franchise-section {
  background-color: #FCEBC6;
  padding: 36px 16px 48px;
  text-align: center;
}

/* 吹き出しスタイル（フランチャイズ見出し用） */
.franchise-title {
  position: relative;
  display: inline-block;
  padding: 18px 28px;
  background: #FFF3E0; /* ←おすすめ背景色 */
  border: 2px solid #000; /* 黒い枠線 */
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  color: #000;
  z-index: 2;
  font-size: 6vw;
  line-height: 1.1;
  text-align: center;
  max-width: calc(100% - 40px);
}
.franchise-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -17px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 18px solid #FFF3E0; /* 吹き出し背景色と同じ */
  z-index: 1;
}
.franchise-title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 20px solid #000; /* 黒枠 */
  z-index: 0;
}
.franchise-title.highlight {
  color: #F36A3A;
  font-weight: 700;
}
.franchise-title.subtitle {
  color: #000;
  font-weight: 700;
  margin-left: 8px;
  font-size: 0.9rem;
}

.franchise-note {
  font-size: 0.7rem;
  color: #000;
  margin-bottom: 5px;
  margin-top: 30px;
}

.franchise-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-width: 800px; /* PC表示の最大幅 */
  margin-bottom: 32px;
  margin-top: 30px;
}

.franchise-description {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}
.franchise-description.highlight-text {
  color: #F36A3A;
  font-weight: 700;
}

.franchise-cta {
  text-align: center;
}
.franchise-cta.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #F18627, #FEB202);
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 32px;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s;
}
.franchise-cta.cta-button:hover {
  opacity: 0.9;
}

/* タブレット以上 */
@media (min-width: 768px) {
  .franchise-title {
    font-size: 2.6rem;
  }
  .franchise-title.highlight {
    font-size: 3rem;
  }
  .franchise-title.subtitle {
    font-size: 2rem;
  }
  .franchise-note {
    font-size: 1.2rem;
  }
  .franchise-description {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .strength-wrapper {
    background-color: #FCEBC6;
  }
  .franchise-section {
    margin: 0 auto;
    padding: 36px 0;
  }
}/*# sourceMappingURL=introduce.css.map */