/* ========================================
   ユーティリティ
   ======================================== */
.sp-br {
  display: none;
}
@media (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}

/* ========================================
   レイアウト
   ======================================== */
.l-main {
  background-color: #F9F9F9;
  text-align: center;
}

/* ========================================
   共通コンポーネント
   ======================================== */
.c-section-title {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .c-section-title {
    margin-bottom: 80px;
  }
}

.c-section-title__main {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .c-section-title__main {
    font-size: 48px;
    margin-bottom: 16px;
  }
}

.c-section-title__sub {
  font-size: 14px;
}
@media (min-width: 768px) {
  .c-section-title__sub {
    font-size: 20px;
  }
}

.c-section-title--functions .c-section-title__main {
  color: #33B1C6;
}
.c-section-title--benefits .c-section-title__main {
  color: #1990D6;
}
.c-section-title--price .c-section-title__main {
  color: #7B4388;
}
.c-section-title--faq .c-section-title__main,
.c-section-title--faq .c-section-title__sub {
  color: #ffffff;
}

/* ========================================
   セクション共通
   ======================================== */
.p-problem,
.p-functions {
  padding: 32px 2%;
}
.p-benefits,
.p-price {
  padding: 32px 2% 40px;
}
.p-flow,
.p-faq {
  padding: 40px 2%;
}

@media (min-width: 768px) {
  .p-problem,
  .p-functions {
    padding: 60px 0;
  }
  .p-benefits,
  .p-price {
    padding: 60px 0 80px;
  }
  .p-flow,
  .p-faq {
    padding: 80px 0;
  }
}

/* 画像共通スタイル */
[class*="__img-wrap"] {
  max-width: 1100px;
  margin: 0 auto;
}

/* ========================================
   Problem セクション
   ======================================== */
.p-problem__title {
  color: #343579;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .p-problem__title {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

/* ========================================
   Solution Intro セクション
   ======================================== */
.p-solution-intro {
  background: #8EDDD5;
  padding: 16px 0;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .p-solution-intro {
    padding: 32px 0;
    margin-bottom: 60px;
  }
}

.p-solution-intro__text {
  color: #343579;
  font-size: 14px;
}
@media (min-width: 768px) {
  .p-solution-intro__text {
    font-size: 24px;
  }
}
@media (min-width: 1000px) {
  .p-solution-intro__text {
    font-size: 32px;
  }
}

.p-solution-intro__text span {
  font-weight: 900;
}

/* ========================================
   Functions セクション
   ======================================== */
.p-functions {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(/img/stock-system-functions-bg.jpg) center/cover no-repeat;
}

.p-functions__txt {
  color: #343579;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-functions__txt {
    font-size: 22px;
    margin-bottom: 60px;
  }
}

.p-functions__txt span {
  font-size: 20px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .p-functions__txt span {
    font-size: 32px;
  }
}

.p-functions__img-wrap {
  max-width: 800px;
}

/* ========================================
   Flow セクション
   ======================================== */
.p-flow {
  background-color: #8EDDD5;
}

/* ========================================
   Price セクション
   ======================================== */
.p-price__txt {
  color: #343579;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-price__txt {
    font-size: 20px;
    margin-bottom: 60px;
  }
}

.p-price__txt span {
  font-size: 22px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .p-price__txt span {
    font-size: 32px;
  }
}

/* ========================================
   FAQ セクション
   ======================================== */
.p-faq {
  background-color: #8EDDD5;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4.44vw, 40px);
}

.p-faq__item {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.p-faq__q {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .p-faq__q {
    margin-bottom: 16px;
  }
}

.p-faq__q-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #8EDDD5;
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  text-align: center;
  line-height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .p-faq__q-icon {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
}

.p-faq__q-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-faq__q-text {
    font-size: 20px;
  }
}

.p-faq__a {
  display: flex;
}

.p-faq__a-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  color: #8EDDD5;
  border: 2px solid #8EDDD5;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .p-faq__a-icon {
    width: 32px;
    height: 32px;
    line-height: 28px;
  }
}

.p-faq__a-text {
  font-size: 12px;
  line-height: 1.8;
  color: #555;
}
@media (min-width: 768px) {
  .p-faq__a-text {
    font-size: 18px;
  }
}
