/* Meta用 - section-knowセクションのCSS */

.section-intro {
  position: relative;
}

.section-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/section1-bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0.4;
  z-index: -1;
}

/* 給付金画像セクション */
.benefit-full-image {
  width: 100%;
  height: auto;
  display: block;
}

/* リスク警告セクション */
.risk-warning {
  text-align: center;
  margin: 40px 0;
}

.risk-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.risk-line {
  font-size: 18px;
  font-weight: normal;
  color: var(--color-normaltext);
  margin: 0;
  font-family: 'BIZ UDPGothic', sans-serif;
}

.risk-amount {
  background: linear-gradient(131.67deg, #FF771D 24.81%, #FFA916 121.67%);
  border-radius: 11px;
  padding: 8px 20px;
  color: white;
  font-size: 32px;
  font-weight: bold;
  font-family: 'BIZ UDPGothic', sans-serif;
  margin: 8px 0;
}

/* セルフリスクセクション */
.self-risk-section {
  margin: 20px 0;
  text-align: center;
}

.risk-title {
  margin-bottom: 20px;
  line-height: 1.8;
}

.risk-title-bg {
  background: #FFD4A1;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 22px;
  color: var(--color-darkblue);
  font-family: 'Zen Maru Gothic', sans-serif;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: normal;
}

.risk-title-text {
  display: block;
  font-size: 22px;
  color: var(--color-darkblue);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
}

.risk-title-text .underline {
  text-decoration: underline;
  text-decoration-color: #FFD4A1;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

/* ナビセクション */
.navi-section {
  background-image: url('../img/navi-section.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 40px 0;
}

/* ナビゲーター紹介 */
.navigator-intro {
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

.navigator-intro::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 50px;
  background-image: url('../img/deco.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}

.navigator-intro-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ナビキャッチ2セクション */
.navi-catch2-section {
  text-align: center;
}

.navi-catch2-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 受給条件カード */
.conditions-card {
  margin: 20px 0;
  text-align: center;
}

.conditions-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* リスクボックス */
.risk-boxes {
  text-align: center;
  margin-top: 2px;
  padding: 0 20px;
}

.risk-boxes-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* 相談バナー */
.consultation-card {
  text-align: center;
  margin: 30px 0;
}

.consultation-banner {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.service-text {
  text-align: center;
  margin-bottom: 30px;
}

.service-text p {
  font-size: 16px;
  color: var(--color-normaltext);
  margin: 4px 0;
  line-height: 1.4;
}

/* 実績・特徴セクション */
.features-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.feature-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-title {
  font-size: 14px;
  color: var(--color-normaltext);
  margin-bottom: 8px;
  line-height: 1.4;
}

.feature-number {
  font-size: 21px;
  font-weight: bold;
  background: linear-gradient(129.58deg, #FF771D 24.81%, #FFA916 121.67%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Noto Sans JP', sans-serif;
}

/* レスポンシブスタイル */
@media (min-width: 768px) {
  .risk-boxes {
    gap: 30px;
  }
  
  .features-section {
    flex-direction: row;
    justify-content: space-around;
  }
  
  .feature-item {
    flex: 1;
    max-width: 200px;
  }
  
  .cta-bottom {
    flex-wrap: nowrap;
  }
}

/* CTAセクション */
.cta-section {
  margin: 60px 0;
  text-align: center;
}

.cta-lead-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.cta-decoration {
  color: var(--color-orange);
  font-size: 16px;
}

.cta-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.cta-card {
  background: #06C755;
  border-radius: 16px;
  padding: 16px;
  color: white;
  text-decoration: none;
  display: block;
  box-shadow: 0px 4px 0px #3C7E57;
}

.cta-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cta-copy {
  text-align: left;
}

.cta-copy p {
  font-size: 21px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}

.cta-amount {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.amount-slots {
  display: flex;
  gap: 3px;
}

.slot {
  width: 40px;
  height: 63px;
  background: #49494E;
  border: 3px solid #002C46;
  border-radius: 4px;
  position: relative;
}

.slot::before,
.slot::after {
  content: "";
  position: absolute;
  left: 7px;
  width: 20px;
  height: 19px;
  border: 3px solid #625D4D;
  border-radius: 2px;
}

.slot::before {
  top: 9px;
}

.slot::after {
  top: 32px;
}

.yen-symbol {
  font-size: 41px;
  font-weight: bold;
  color: white;
}

.man-en {
  font-size: 19px;
  font-weight: bold;
}

.cta-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 16px 0;
}

.cta-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-instruction,
.cta-action {
  font-size: 14px;
  margin: 0;
}

.line-badge {
  background: white;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}

.line-icon {
  width: 20px;
  height: auto;
}

.cta-arrows {
  display: flex;
  gap: 4px;
}

.arrow {
  color: white;
  font-size: 16px;
}

.section-review {
  padding-top: 40px;
}