/**
 * File: worry-section.css
 * Usage: 「こんなお悩みありませんか？」セクションのスタイル
 * Used in: single-symptoms.php, single-shop.php
 */

/* ========================================
   こんなお悩みありませんか？
   ======================================== */
.ly_worry {
  position: relative;
  padding: 40px 16px 0;
}
.ly_worry::after{
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 100px 400px 0 400px;
  border-color: #F2F4F5 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .ly_worry::after{
    border-width: 80px 150px 0 150px;
    bottom: -80px;
  }
}
.bl_worry_inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin-inline: auto;
}

.bl_worry_wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.bl_worry_content{
  max-width: 780px;
  margin: 0 auto 16px 0;
  width: 100%;
}

.bl_worry_wrapper > img{
  width: 33%;
}

.bl_worry_ttl,
.bl_worry_note {
  font-size: var(--font-xl);
  font-weight: 700;
  text-align: center;
}

.bl_worry_ttl {
  margin-bottom: 24px;
  color: var(--color-primary);
}

.bl_worry_list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
  margin: 0;
}

.bl_worry_item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 15px;
  background-color: #fff;
  border-radius: var(--radius-md);
}

.bl_worry_icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.bl_worry_txt {
  font-size: var(--font-base);
  font-weight: 500;
  color: var(--color-dark);
}

.bl_worry_bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F2F4F5;
  z-index: 1;
}

.bl_worry_note {
  margin-bottom: 80px;
  color: #334B63;
  margin-top: 0px;
}
.bl_worry_bottom{
  color: var(--color-primary);
  text-align: center;
  position: relative;
  z-index: 2;
}
.bl_worry_note_bottom{
  font-size: clamp(1.25rem, 0.735rem + 2.35vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;;
}
@media screen and (max-width: 767px) {
  .bl_worry_wrapper{
    flex-direction: column-reverse;
    align-items: center;
  }
  .bl_worry_wrapper > img{
    width: 50%;
  }
  .bl_worry_note{
    margin-top: 0px;
    margin-bottom: 60px;
    font-size: 16px;
    line-height: 1.2;
  }
}
/* ========================================
   Tablet (768px〜)
   ======================================== */
@media screen and (min-width: 768px) {
  .ly_worry {
    padding: 56px 24px 0;
  }

  .bl_worry_ttl{
    font-size: var(--font-3xl);
  }

  .bl_worry_ttl {
    margin-bottom: 32px;
  }


  .bl_worry_list {
    gap: var(--space-md);
  }

  .bl_worry_item {
    gap: var(--space-md);
    padding: 15px 15px;
  }

  .bl_worry_icon {
    width: 28px;
    height: 28px;
  }

  .bl_worry_txt {
    font-size: var(--font-base);
  }
}

/* ========================================
   PC (1024px〜)
   ======================================== */
@media screen and (min-width: 1024px) {
  .ly_worry {
    padding: 124px 40px 0;
  }

  .bl_worry_ttl {
    font-size: var(--font-5xl);
  }

  .bl_worry_ttl {
    margin-bottom: 40px;
  }


  .bl_worry_item {
    padding: 15px;
    border-radius: var(--radius-lg);
  }

  .bl_worry_icon {
    width: 32px;
    height: 32px;
  }

  .bl_worry_txt {
    font-size: 20px;
  }

}
