/* ============================================
   LP (index.php) 専用スタイル
   カラー: #e5222b (赤) / #118991 (ティール) / #fff4a5 (イエロー) / #ffe9e4 (背景ピンク)
   ============================================ */

.sp-only {
  display: none;
}

@media screen and (max-width: 640px) {
  .sp-only {
    display: inline;
  }
}

.lp {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to bottom, #fffdf0, #fff4a5);
}

/* 共通見出し */
.lp-heading {
  padding: 0 5%;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
  color: #333;
}

@media screen and (max-width: 640px) {
  .lp-heading {
    font-size: 22px;
  }
}

.lp-heading__sub {
  display: block;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
  color: #e5222b;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 640px) {
  .lp-heading__sub {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.lp-heading--white {
  color: #fff;
}

.lp-heading__sub--white {
  color: #fff4a5;
}

/* ============================================
   ファーストビュー下のキャッチ
   ============================================ */
.lp-hero {
  padding: 50px 5% 60px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .lp-hero {
    padding: 35px 5% 40px;
  }
}

.lp-hero__badge {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 25px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 18px;
  color: #fff;
  background-color: #e5222b;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 640px) {
  .lp-hero__badge {
    font-size: 13px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }
}

.lp-hero__title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 30px;
  color: #333;
}

@media screen and (max-width: 640px) {
  .lp-hero__title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.lp-hero__accent {
  color: #e5222b;
  font-size: 110%;
}

.lp-hero__lead {
  font-size: 22px;
  line-height: 1.8em;
  margin-bottom: 40px;
  color: #333;
}

@media screen and (max-width: 640px) {
  .lp-hero__lead {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.lp-hero__mark {
  background: linear-gradient(transparent 60%, #fff4a5 60%);
  font-weight: 700;
  color: #e5222b;
}

.lp-hero__checks {
  width: 100%;
  margin: 0 auto 40px;
  padding: 30px 25px;
  background-color: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 3px 3px 20px rgba(28, 71, 52, 0.2);
          box-shadow: 3px 3px 20px rgba(28, 71, 52, 0.2);
  text-align: left;
}

@media screen and (max-width: 640px) {
  .lp-hero__checks {
    padding: 20px 18px;
    border-radius: 16px;
  }
}

.lp-hero__checks li {
  position: relative;
  padding: 14px 0 14px 44px;
  font-size: 20px;
  line-height: 1.5em;
  border-bottom: 1px dashed #f0dedc;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
}

.lp-hero__checks li:last-child {
  border-bottom: none;
}

.lp-hero__checks li::before {
  content: "✔";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background-color: #e5222b;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  .lp-hero__checks li {
    font-size: 15px;
    padding: 10px 0 10px 36px;
  }
  .lp-hero__checks li::before {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
  }
}

/* ============================================
   CTAボタン（全画面共通）
   既存 .submit_btn と同じ 立体感のあるティールボタンに合わせる
   ============================================ */
.lp-cta {
  width: 100%;
  text-align: center;
  margin: 30px auto 0;
}

.lp-cta a {
  width: 100%;
  min-height: 90px;
  padding: 20px 30px;
  line-height: 1.4em;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  background-color: #118991;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0 10px 0 #036a71;
          box-shadow: 0 10px 0 #036a71;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  text-decoration: none;
}

.lp-cta a:hover {
  transform: translateY(4px);
  -webkit-box-shadow: 0 6px 0 #036a71;
          box-shadow: 0 6px 0 #036a71;
}

@media screen and (max-width: 640px) {
  .lp-cta a {
    min-height: 70px;
    padding: 16px 20px;
    font-size: 20px;
    border-radius: 35px;
  }
}

.lp-cta a span {
  position: relative;
  padding-right: 30px;
}

.lp-cta a span::after {
  width: 14px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  content: '';
  background: url(./img/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

@media screen and (max-width: 640px) {
  .lp-cta a span {
    padding-right: 22px;
  }
  .lp-cta a span::after {
    width: 10px;
    height: 18px;
    top: calc(50% - 9px);
  }
}

.lp-cta__note {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6em;
  color: #666;
}

@media screen and (max-width: 640px) {
  .lp-cta__note {
    font-size: 12px;
  }
}

/* ============================================
   こんな方に向いています
   ============================================ */
.lp-target {
  padding: 50px 5%;
  background-color: #fff;
}

@media screen and (max-width: 640px) {
  .lp-target {
    padding: 35px 5%;
  }
}

.lp-target__list {
  margin-top: 30px;
}

.lp-target__list li {
  position: relative;
  padding: 18px 20px 18px 60px;
  margin-bottom: 12px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 19px;
  line-height: 1.5em;
  background-color: #ffe9e4;
  border-radius: 12px;
}

.lp-target__list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 18px;
  border-right: 3px solid #e5222b;
  border-bottom: 3px solid #e5222b;
}

@media screen and (max-width: 640px) {
  .lp-target__list li {
    font-size: 15px;
    padding: 14px 16px 14px 48px;
  }
  .lp-target__list li::before {
    left: 18px;
    width: 8px;
    height: 14px;
  }
}

/* ============================================
   共感セクション
   ============================================ */
.lp-empathy {
  padding: 60px 5%;
}

@media screen and (max-width: 640px) {
  .lp-empathy {
    padding: 40px 5%;
  }
}

.lp-empathy__text {
  margin: 30px 0;
  font-size: 18px;
  line-height: 1.8em;
  text-align: center;
  color: #444;
}

@media screen and (max-width: 640px) {
  .lp-empathy__text {
    font-size: 14px;
    margin: 20px 0;
  }
}

.lp-empathy__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lp-empathy__cards li {
  padding: 24px 16px;
  background-color: #fff;
  border-radius: 16px;
  border: 2px solid #ffe9e4;
  text-align: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5em;
  -webkit-box-shadow: 3px 3px 12px rgba(229, 34, 43, 0.08);
          box-shadow: 3px 3px 12px rgba(229, 34, 43, 0.08);
}

@media screen and (max-width: 640px) {
  .lp-empathy__cards li {
    padding: 18px 10px;
    font-size: 13px;
  }
}

.lp-empathy__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  background-color: #e5222b;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  .lp-empathy__icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
    margin-bottom: 8px;
  }
}

/* ============================================
   解決の方向性
   ============================================ */
.lp-solution {
  padding: 60px 5%;
  background-color: #fff;
}

@media screen and (max-width: 640px) {
  .lp-solution {
    padding: 40px 5%;
  }
}

.lp-solution__text {
  margin: 30px 0;
  font-size: 18px;
  line-height: 1.8em;
  text-align: center;
  color: #444;
}

@media screen and (max-width: 640px) {
  .lp-solution__text {
    font-size: 14px;
    margin: 20px 0;
  }
}

.lp-solution__list {
  margin-top: 20px;
}

.lp-solution__list li {
  display: flex;
  align-items: center;
  padding: 24px 24px;
  margin-bottom: 16px;
  background-color: #fffdf0;
  border: 3px solid #f7e879;
  border-radius: 20px;
  -webkit-box-shadow: 0 6px 0 #f7e879;
          box-shadow: 0 6px 0 #f7e879;
}

@media screen and (max-width: 640px) {
  .lp-solution__list li {
    padding: 16px 16px;
    border-radius: 16px;
  }
}

.lp-solution__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-right: 20px;
  background-color: #e5222b;
  color: #fff;
  border-radius: 50%;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  .lp-solution__num {
    width: 40px;
    height: 40px;
    font-size: 22px;
    margin-right: 14px;
  }
}

.lp-solution__list li p {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4em;
  color: #333;
}

@media screen and (max-width: 640px) {
  .lp-solution__list li p {
    font-size: 15px;
  }
}

/* ============================================
   ベネフィット（濃い赤背景）
   ============================================ */
.lp-benefit {
  padding: 60px 5%;
  background-color: #e5222b;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .lp-benefit {
    padding: 40px 5%;
  }
}

.lp-benefit__accent {
  display: block;
  margin-top: 8px;
  font-size: 120%;
  color: #fff4a5;
}

.lp-benefit__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.lp-benefit__list li {
  padding: 22px 20px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5em;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .lp-benefit__list li {
    font-size: 15px;
    padding: 16px 14px;
  }
}

/* ============================================
   FAQ
   ============================================ */
.lp-faq {
  padding: 60px 5%;
  background-color: #fff;
}

@media screen and (max-width: 640px) {
  .lp-faq {
    padding: 40px 5%;
  }
}

.lp-faq__list {
  margin-top: 30px;
}

.lp-faq__item {
  padding: 24px 28px;
  margin-bottom: 16px;
  background-color: #fffdf0;
  border-radius: 20px;
  border: 2px solid #fff4a5;
}

@media screen and (max-width: 640px) {
  .lp-faq__item {
    padding: 18px 20px;
    border-radius: 16px;
  }
}

.lp-faq__item dt {
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
  color: #e5222b;
}

.lp-faq__item dt span {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 26px;
  color: #e5222b;
}

@media screen and (max-width: 640px) {
  .lp-faq__item dt {
    font-size: 15px;
    padding-left: 32px;
  }
  .lp-faq__item dt span {
    font-size: 20px;
  }
}

.lp-faq__item dd {
  position: relative;
  padding-left: 40px;
  font-size: 17px;
  line-height: 1.8em;
  color: #444;
}

.lp-faq__item dd span {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  font-weight: 700;
  color: #118991;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

@media screen and (max-width: 640px) {
  .lp-faq__item dd {
    font-size: 13px;
    padding-left: 32px;
  }
  .lp-faq__item dd span {
    font-size: 18px;
  }
}

/* ============================================
   最終CTA
   ============================================ */
.lp-final {
  padding: 60px 5%;
}

@media screen and (max-width: 640px) {
  .lp-final {
    padding: 40px 5%;
  }
}

.lp-final__accent {
  color: #e5222b;
  font-size: 115%;
}

.lp-final__text {
  margin: 25px 0;
  font-size: 18px;
  line-height: 1.8em;
  text-align: center;
  color: #444;
}

@media screen and (max-width: 640px) {
  .lp-final__text {
    font-size: 14px;
    margin: 20px 0;
  }
}

.lp-final__points {
  padding: 25px 20px;
  margin: 20px 0 30px;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 3px 3px 20px rgba(28, 71, 52, 0.15);
          box-shadow: 3px 3px 20px rgba(28, 71, 52, 0.15);
}

.lp-final__points li {
  position: relative;
  padding: 10px 0 10px 36px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 17px;
  line-height: 1.5em;
  border-bottom: 1px dashed #f0dedc;
}

.lp-final__points li:last-child {
  border-bottom: none;
}

.lp-final__points li::before {
  content: "✔";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background-color: #118991;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  .lp-final__points li {
    font-size: 14px;
    padding: 8px 0 8px 30px;
  }
  .lp-final__points li::before {
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
  }
}
