@charset "UTF-8";

/* ==============
Base
=============== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "YuGothic", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
}

main {
  background: #e8f4fac5;
  overflow: hidden;
}

button {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

@media (max-width: 767px) {
  body {
    line-height: 1.75;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }
}

/* LP用フォント */
h1,
h2,
.fv__label span,
.fv__rate span,
.cta-hesd__text,
.problem__bottom {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

/* 本文はSansでOK */
body,
p,
h3,
h4 {
  font-family: "Noto Sans JP", sans-serif;
}

/* ==============
Layout
=============== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.sec {
  padding: 80px 2%;
}

.sec--pale {
  background: #f5f8fa;
}

@media (max-width: 767px) {
  .sec {
    padding: 56px 2%;
  }
}

/* ==============
Header
=============== */
.l-header {
  background: #3776b9;
  background: #fff;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.l-header__inner {
  max-width: 1200px;
  height: 70px;
  margin: 0 auto;
  padding: 0 2%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-main img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

/* header space */
main {
  margin-top: 70px;
}

@media (max-width: 767px) {
  .logo-main img {
    width: 100%;
    max-width: 214px;
  }
}

/* ==============
Buttons
================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(180deg, #f9d0b8 0%, #f1a769 25%, #d77d06 50%, #f1ab69 75%, #b65903 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg,
      #ecd894 0%,
      #f7d065 25%,
      #f8c407 50%,
      #f5cf66 75%,
      #e49905 100%);
}

/* サイズ */
.btn--large {
  padding: 18px 32px;
  width: 100%;
  max-width: 380px;
  font-size: 24px;
}

.btn--small {
  padding: 10px 20px;
}

@media (max-width: 767px) {
  .btn--small {
    font-size: 12px;
    padding: 12px 10px;
  }
}

/* ============================================================================
Common List Styles
============================================================================ */

/* ● 基本の黒丸リスト */
.list-basic {
  list-style: none;
  padding-left: 1.2em;
}

.list-basic li {
  position: relative;
  margin: 0.4em 0;
  font-size: 1rem;
  padding-left: 1.0em;
}

.list-basic li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

/* ✓ チェックリスト */
.list-check {
  list-style: none;
  padding-left: 1.6em;
}

.list-check li {
  position: relative;
  margin: 0.4em 0;
  font-size: 1rem;
  padding-left: 1.0em;
}

.list-check li::before {
  content: "✓";
  color: #1d80c5;
  font-weight: 700;
  position: absolute;
  left: -1.2em;
  top: 0;
}

/* ==============
Section head
=============== */
.sec__head {
  text-align: center;
  margin-bottom: 40px;
}

.sec__eyecatch {
  font-size: clamp(16px, 6vw, 42px);
}

.sec__title {
  margin: 16px 0 0.7em;
  font-size: clamp(24px, 3vw, 64px);
}

.sec__title span {
  color: #1d80c5;
}

/* ======================
FV全体
====================== */
.fv {
  width: 100%;
  height: 750px;
  position: relative;
  overflow: hidden;
}

.fv__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 750px;
  background: url("../images/fv-photo.jpg") center/cover no-repeat;
  z-index: 1;
}

.fv__inner {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  z-index: 2;
}

/* ===== 左側コンテンツ ===== */
.fv__left {
  flex: 80%;
  z-index: 2;
}

.fv__label {
  display: inline-block;
  padding: 6px 28px;
  border-radius: 999px;
  background: #3776b9;
  color: #ffffff;
  letter-spacing: 0.08em;
  font-size: clamp(14px, 2.8vw, 24px);
  margin-bottom: 22px;
}

.fv__label span {
  color: #ffeb3b;
  font-weight: 700;
}

h1.fv__title {
  font-size: clamp(18px, 4vw, 50px);
  margin-bottom: 0.5em;
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5em;
  border-radius: 10px;
}

.fv__title--em {
  background: linear-gradient(90deg, #1d80c5, #00c2a8);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.fv-badge img {
  width: 810px;
}

@media (max-width: 767px) {
  .fv {
    height: auto;
  }

  .fv__inner {
    flex-direction: column;
    padding: 50px 4%;
  }

  .fv__bg {
    width: 100vh;
    opacity: 0.5;
  }
}

/* ==============
Problem
=============== */
#problem {
  padding: 150px 4%;
  padding-bottom: 120px;
  background: #3776b9 url(../images/bg_pattern02.png) center/cover no-repeat;
  overflow: visible;
  position: relative;
  border-bottom: solid 1px #3776b9;
}

#problem::after {
  content: "";
  position: absolute;
  bottom: -4vw;
  left: 0;
  width: 100%;
  height: 4vw;
  background: #3776b9;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 2;
  border: solid 1px #3776b9;
}

#problem+section {
  margin-top: 4vw;
  position: relative;
  z-index: 1;
}

.problem {
  background: #fff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
}

.problem__title {
  color: #3776b9;
  font-size: clamp(20px, 4.2vw, 42px);
  text-align: center;
  margin-bottom: 0.7em;
}

.problem__list {
  max-width: 860px;
  margin: 70px auto 0;
}

.problem__list li {
  font-size: clamp(16px, 3vw, 24px);
  font-weight: bold;
  color: #3776b9;
  line-height: 33px;
  letter-spacing: 0.08em;
  padding: 30px 2em 30px 2em;
  position: relative;
  list-style: none;
  border-bottom: dashed 2px #3776b9;
}

.problem__list li::before {
  content: "✓";
  color: #3776b9;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: 0.8em;
  top: 50%;
  transform: translateY(-50%);
}

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

.problem__list li span {
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-block;
  background-color: #3776b9;
  padding: 2px 0.2em 4px;
  margin-left: 0.2em;
  color: #ffe600;
}

.bg__img {
  position: absolute;
  right: -4px;
  bottom: -7px;
  width: 200px;
}

.problem__bottom {
  margin-top: 3.0em;
  text-align: center;
  color: #fff;
  font-size: 36px;
}

@media (max-width: 767px) {
  #problem {
    padding: 30px 4%;
  }

  .problem {
    padding: 30px 18px;
  }

  .problem__title {
    margin: 0px 0 20px;
    text-align: left;
  }

  .problem__list {
    margin: 0;
  }

  .problem__list li {
    font-size: 18px;
    padding: 0px 0em 20px 1.5em;
    margin-bottom: 18px;
  }

  .problem__list li:last-child {
    margin-bottom: 0;
    line-height: 1.5em;
  }

  .problem__list li span {
    font-size: 18px;
    margin: 0;
    padding: 2px 10px;
  }

  .problem__list li::before {
    left: 0.2em;
    top: 0;
    transform: initial;
  }

  .bg__img {
    right: 4px;
    top: 5px;
    width: 104px;
  }

  .problem__bottom {
    margin-top: 1em;
    font-size: 20px;
  }
}

/* ==============
Points
=============== */
#points {}

#points .container {
  max-width: 1100px;
}

.points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.point-card {
  background: #ffffff;
  border-radius: 999px;
  padding: 30px 20px 40px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: left;
  flex-direction: row-reverse;
  position: relative;
  margin: 20px 0;
  margin-left: -50vw;
  padding-left: 52vw;
}

.text__set {
  display: flex;
  gap: 30px;
  align-items: center;
}

.point-card:nth-child(2) {
  flex-direction: row;
  justify-content: end;
  margin-right: -50vw;
  padding-right: 52vw;
  margin-left: 0;
  padding-left: 0;
}

.point-card:nth-child(2) .text__set {
  flex-direction: row-reverse;
}

.point-card__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1d80c5;
  font-size: clamp(30px, 5.8vw, 50px);
  font-weight: bold;
  line-height: 1;
}

.point-card__label strong {
  font-size: clamp(60px, 9vw, 120px);
}

.point-card__title {
  margin-top: 12px;
  font-size: clamp(20px, 3.7vw, 32px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.point-card__title strong {
  color: #1d80c5;
}

.point__desc .list-basic {
  padding-left: 0;
}

.point__desc .list-basic li {
  font-size: clamp(16px, 1.75vw, 20px);
}

.point__desc .list-basic li strong {
  background: linear-gradient(transparent 70%, #ffe15d 70%);
}

.point-card .point01_img {
  width: clamp(150px, 22vw, 270px);
  height: auto;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.point-card .point02_img {
  width: clamp(190px, 22vw, 280px);
  height: auto;
  position: absolute;
  left: clamp(0px, 10vw, 100px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.point-card .point03_img {
  width: clamp(100px, 13.5vw, 170px);
  height: auto;
  position: absolute;
  right: 40px;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
}

@media (max-width: 854px) {
  .point-card .point02_img {
    width: clamp(120px, 22vw, 280px);
    left: 50px;
  }
}

@media (max-width: 767px) {
  .point-card .point02_img {
    width: 190px;
  }
}

@media (max-width: 575px) {
  .point-card .point03_img {
    top: -24px;
    transform: initial;
    right: 17px;
  }
}

.point-conclusion {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-inline: -50vw;
  background: #1d80c5;
  color: #fff;
  padding: 1em;
  margin-bottom: 30px;
}

.point-conclusion strong {
  color: #ffd000;
}

@media (max-width: 767px) {
  #points {
    padding-bottom: 0;
  }

  .point-conclusion {
    font-size: 16px;
    margin-inline: 0;
  }

  .points {
    margin-bottom: 0px;
  }

  .point-card {
    border-radius: 0;
    box-shadow: none;
    display: block;
    position: relative;
    margin: 0px 0;
    padding: 55px 4% 30px;
  }

  .text__set {
    gap: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .point-card:nth-child(2) {
    display: block;
    justify-content: end;
    margin: 0;
    padding: 55px 4% 30px;
  }

  .point-card:nth-child(2) .text__set {
    flex-direction: column;
  }

  .point-card__label {
    font-size: 30px;
  }

  .point-card__label strong {
    font-size: 60px;
  }

  .point-card__title {
    font-size: 20px;
  }

  .point__desc .list-basic {
    padding: 0;
  }

  .point__desc .list-basic li {
    font-size: 14px;
  }

  .point-card .point01_img {
    right: 20px;
    top: -16px;
    transform: initial;
  }

  .point-card .point02_img {
    right: 20px;
    top: 35px;
    transform: initial;
    left: initial;
  }

}

/* ご利用企業 */
.sec--logos {
  background: #fff;
  margin: 20px 2% 40px;
}

.logos {
  margin-top: 32px;
  text-align: center;
}

.logos__title {
  color: #777;
}

.logos__list {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logos__list li {
  width: 33%;
}

@media (max-width: 767px) {
  .sec--logos {
    background: #fff;
  }

  .logos__list {
    flex-wrap: wrap;
    gap: 20px 20px;
    justify-content: space-between;
    margin-top: 20px;
  }

  .logos__list li {
    width: calc((100% - 20px)/2);
  }
}

/* ===========================
未申請の損失セクション
=========================== */
.sec-loss {
  background: #fff;
  padding: 100px 4% 120px;
}

.loss__head {
  text-align: center;
  margin-bottom: 60px;
}

.loss__title {
  font-size: clamp(20px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.5;
}

.loss__title .accent {
  color: #0f6bd5;
  background: linear-gradient(transparent 60%, #d7eaff 60%);
  padding: 0 4px;
}

.loss__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
}

.loss__box {
  padding: 30px 26px;
  border: 2px solid #e8e8e8;
  background: #fafafa;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.loss__box.good {
  border-color: #0fa85b;
  background: #f3fff8;
}

.loss__box.bad {
  border-color: #d74848;
  background: #fff5f5;
}

.loss__box-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.loss__list li {
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.7;
  margin-bottom: 12px;
}

.loss__bottom-text {
  text-align: center;
  margin-top: 60px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #333;
}

@media (max-width: 767px) {
  .sec-loss {
    padding: 40px 4% 40px;
  }

  .loss__head {
    margin-bottom: 40px;
  }

  .loss__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .loss__box {
    padding: 16px 16px;
  }

  .loss__box-title {
    font-size: 20px;
  }

}

/* ================================
Voices（お客様の声）
================================= */
.sec-voices {
  background: #3776b9 url(../images/bg_pattern02.png) center/cover no-repeat;
  padding: 100px 2%;
}

.voices__head {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.voices__eyecatch {
  font-size: clamp(24px, 6vw, 64px);
}

.voices__subtitle {
  font-weight: 600;
  font-size: 20px;
}

/* セクション全体 */
.benefit-section {
  padding: 70px 2%;
  background: #fff;
  margin-bottom: 150px;
}

.benefit-section__title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* カードレイアウト */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
}

/* カード */
.benefit-item {
  background: #f8fbff;
  border: 1px solid #d7e6f6;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

/* タイトル */
.benefit-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0e4773;
}

/* 金額（一番目立たせる） */
.benefit-amount {
  font-size: 24px;
  font-weight: 700;
  color: #1d80c5;
  margin-bottom: 6px;
}

/* 補足 */
.benefit-note {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* 最下部のメッセージ */
.benefit-bottom {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #333;
  font-family: serif;
}

.benefit-bottom strong {
  color: #1d80c5;
  background: linear-gradient(transparent 70%, #ffe15d 70%);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .benefit-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 0 20px;
  }

  .benefit-section__title {
    font-size: 22px;
  }

  .benefit-section__title {
    font-size: 16px;
    margin: 0;
  }
}

.voices__title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.voices__grid {
  display: grid;
  gap: 25px;
  grid-template-columns: 2fr 2fr;
}

.voice-card {
  background: #fff;
  padding: 25px 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.voice-card__tag {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #3776b9;
}

.voice-card__text {
  line-height: 1.75;
  font-size: 18px;
  white-space: normal;
}

.voice-card__text strong {
  line-height: 1.75;
  font-size: 18px;
  white-space: normal;
  background: linear-gradient(transparent 70%, #ffe15d 70%);
}

.voice__bottom-text {
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin: 60px 0 0;
}

@media (max-width: 767px) {
  .sec-voices {
    padding: 45px 4%;
  }

  .voices__head {
    margin-bottom: 30px;
  }

  .voices__eyecatch {
    font-size: 24px;
  }

  .voices__subtitle {
    font-weight: 400;
    font-size: 16px;
  }

  .voice__bottom-text {
    font-size: 16px;
    margin: 20px 0 0;
  }

  .benefit-section {
    padding: 30px 0;
    margin-bottom: 60px;
  }

  .benefit-list {
    padding: 30px 4%;
    margin: 0px 0 20px;
    flex-direction: column;
  }

  .benefit-item {
    padding: 8px 20px;
  }

  .benefit-title {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.5em;
  }

  .benefit-amount {
    font-size: 20px;
  }

  .benefit-bottom {
    font-size: 18px;
    padding: 0 8px;
  }

  .voices__title {
    font-size: 18px;
  }

  .voices__grid {
    display: flex;
    gap: 17px;
    flex-direction: column;
  }

  .voice-card {
    padding: 20px 20px;
  }

  .voice-card__tag {
    font-size: 18px;
  }

  .voice-card__text,
  .voice-card__text strong {
    font-size: 16px;
  }
}

/* ================================
数字で見る実績（Results）
================================ */

/* セクション背景（淡いグラデに変更推奨） */
.sec--pale {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

/* 見出し */
.results__head {
  text-align: center;
  margin-bottom: 60px;
}

.results__eyecatch {
  font-size: clamp(24px, 6vw, 64px);
  font-weight: 700;
  color: #0d3d66;
  letter-spacing: 0.05em;
}

/* 数字ブロック全体 */
.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* 各ブロック */
.results__item {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 55, 115, 0.1);
  border: 1px solid rgba(0, 70, 140, 0.1);
  transition: transform 0.3s ease;
}

.results__item:hover {
  transform: translateY(-6px);
}

/* ラベル */
.results__label {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 600;
  color: #0f4c81;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.results__value {
  font-size: clamp(24px, 2.4vw, 42px);
  font-weight: 800;
  color: #0b2f53;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

/* カウントアップ数字 */
.results__value .js-count {
  font-size: clamp(32px, 6.2vw, 58px);
  font-weight: 900;
  background: linear-gradient(90deg, #0d6efd 0%, #0aa0ff 100%);
  -webkit-background-clip: text;
  color: transparent;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .results__head {
    margin-bottom: 30px;
  }

  .results__eyecatch {
    font-size: 28px;
  }

  .results {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .results__item {
    padding: 20px 20px;
  }

}

/* ================================
WHY（なぜ未申請が損なのか）
================================ */
.sec-why {
  background: linear-gradient(180deg, #fff7f7 0%, #ffeeee 100%);
}

/* 見出し */
.why__head {
  text-align: center;
  margin-bottom: 50px;
}

.why__title {
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 700;
  color: #0d3d66;
  letter-spacing: 0.02em;
}

.why__title .accent {
  background: linear-gradient(90deg, #ff6b6b, #ff3b3b);
  -webkit-background-clip: text;
  color: transparent;
}

/* WF部分 */
.why__wf {
  background: #ffffff;
  padding: 2.0em;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why__wf li {
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.6;
  position: relative;
}

.why__wf li::before {
  content: "✔";
  position: absolute;
  left: -1.2em;
  top: 2px;
  color: #0d7cff;
  font-weight: 700;
}

/* 危険メッセージ */
.why__danger {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #e60033;
}

/* 理由エリア */
.why__reason {
  background: #f7faff;
  padding: 40px 80px 100px;
  max-width: 800px;
  margin: 60px auto 0;
  box-shadow: 0 8px 25px rgba(13, 60, 102, 0.08);
  position: relative;
  overflow: hidden;
}

.why__reason-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #0d3d66;
}

.why__reason-list {
  font-size: 20px;
}

.why__reason-list li {
  position: relative;
  padding-left: 1.4em;
}

.why__reason-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #0d7cff;
  font-weight: 900;
  font-size: 28px;
  top: -3px;
}

.why__reason img {
  position: absolute;
  right: 10px;
  bottom: -10px;
  width: 260px;
}

/* スマホ対応 */
@media (max-width: 767px) {

  .why__reason-list {
    grid-template-columns: 1fr;
  }

  .why__wf li {
    font-size: 16px;
  }

  .why__reason {
    padding: 40px 14px 90px;
    margin: 20px auto 0;
  }

  .why__reason-title {
    font-size: 20px;
  }

  .why__reason-list {
    font-size: 18px;
  }

  .why__reason-list li::before {
    left: 4px;
    font-weight: 900;
    font-size: 20px;
    top: -2px;
  }

  .why__reason img {
    right: -8px;
    bottom: -7px;
    width: 170px;
  }
}

@media (max-device-width: 767px) {
  .why__reason {
    padding: 40px 14px 70px;
  }

  .why__reason-list {
    font-size: 16px;
  }

  .why__reason img {
    bottom: -3px;
    width: 120px;
  }
}

/* ==============
Flow
=============== */
/* セクション全体 */
.sec-flow {
  background: #ffffff url(../images/bg_pattern03.png) center / cover no-repeat;
}

.flow__head {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding: 20px 0;
}

.flow__head span {
  position: relative;
}

.flow__head span::before,
.flow__head span::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #1d80c5, #00c2a8);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(120deg);
}

.flow__head span::before {
  left: -100px;
}

.flow__head span::after {
  right: -100px;
}

.flow__head p {
  font-size: 20px;
  font-weight: 600;
}

.flow__title {
  margin-top: 12px;
  font-size: clamp(20px, 5vw, 46px);
  font-weight: 800;
  color: #0f2d4d;
  line-height: 1.5;
}


/* フローのリスト */
.flow-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
}

/* 1つのステップ */
.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 135px 24px 20px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
}

/* 背景を濃くしていく */
.step-1 {
  background: #6ec5ff;
}

.step-2 {
  background: #55b7ff;
}

.step-3 {
  background: #3fa8f5;
}

.step-4 {
  background: #258fdc;
}

.step-5 {
  background: #1a72b5;
}

/* 左の番号 */
.flow-num {
  font-size: 50px;
  font-weight: 700;
  width: 100px;
  text-align: center;
}

/* テキスト中央 */
.flow-text {
  flex: 1;
  text-align: center;
}

.flow-text h3 {
  font-size: clamp(18px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ▼矢印 */
.flow-arrow {
  text-align: center;
  font-size: clamp(24px, 5vw, 46px);
  margin: 12px 0;
  color: #1a72b5;
}

/* 最後のまとめ */
.flow__note {
  text-align: center;
  margin-top: 50px;
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
}

@media (max-width: 767px) {

  .flow__head span::before,
  .flow__head span::after {
    width: 50px;
    height: 3px;
    transform: translateY(-50%) rotate(110deg);
  }

  .flow__head span::before {
    left: -40px;
  }

  .flow__head span::after {
    right: -40px;
  }

  .flow-step {
    padding: 12px 15px 12px 15px;
    justify-content: flex-start;
  }

  .flow-num {
    font-size: 30px;
    width: 60px;
  }

  .flow-text h3 {
    margin: 0;
  }

  .flow-text p {
    font-size: 16px;
  }

  .flow-text {
    text-align: left;
  }

  .flow__note {
    margin-top: 30px;
    font-size: 16px;
  }
}

/* ===========================
スライド挑戦方式
=========================== */
.slide-challenge {
  padding: 0px 0 80px;
  position: relative;
}

.slide-challenge .container {
  position: relative;
}

.slide-challenge__wrap {
  display: flex;
  gap: 3%;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  background: #fff;
  margin-inline: -50vw;
  padding: 50px 50vw 0;
  border-top: solid 4px #1d80c5;
  margin-bottom: 60px;
}

@media (max-width: 1180px) {
  .slide-challenge__wrap {
    margin-inline: initial;
    padding: 50px 100px 12px 4%;
    padding-top: clamp(0px, 5vw, 50px);
    position: relative;
  }
}

.industry-first__image {
  height: clamp(230px, 6.5vw, 300px);
  background: url(../images/slide_challenge.png) center / contain no-repeat;
  border-radius: 14px;
  filter: brightness(0.9);
  width: 250px;
}

.industry-first__content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.industry-first__content>div {
  min-width: 0;
}

/* 金の丸バッジ */
.industry-first__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: clamp(110px, 17vw, 180px);
  min-width: clamp(110px, 22vw, 180px);
  flex-shrink: 0;
  background: linear-gradient(334deg, #B67B03 0% 18%, #DAAF08 31%, #FEE9A0 49%, #DAAF08 74%, #B67B03 89% 100%);
  border-radius: 50%;
  color: #4b3b00;
  font-size: clamp(18px, 3vw, 38px);
  font-weight: 900;
  font-family: serif;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15), inset 0 2px 3px rgba(255, 255, 255, 0.4), inset 0 -3px 4px rgba(0, 0, 0, 0.15);
  margin-bottom: 18px;
}


/* メインタイトル */
.industry-first__title {
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 800;
  color: #0f2d4d;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* サブタイトル */
.industry-first__subtitle {
  font-size: clamp(18px, 3.4vw, 28px);
  font-weight: 600;
  color: #1d80c5;
}

@media (max-width: 1030px) {
  .slide-challenge__wrap {
    margin-inline: initial;
    padding: 50px 27vw 12px 2%;
    padding-top: clamp(0px, 5vw, 50px);
    position: relative;
    margin-bottom: 0px;
  }

  .industry-first__image {
    height: 200px;
    background: url(../images/slide_challenge.png) bottom / contain no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25vw;
  }
}

@media (max-device-width: 767px) {
  .industry-first__content {
    gap: 0px;
    align-items: baseline;
    flex-direction: column;
  }

  .industry-first__badge {
    width: 65px;
    min-width: 65px;
    font-size: 15px;
    margin-bottom: 10px;
    position: relative;
    left: -6px;
  }

  .industry-first__title {
    font-size: 28px;
    position: absolute;
    top: 37px;
    left: 80px;
  }

  .industry-first__subtitle {
    font-size: 16px;
    line-height: 1.5em;
  }

  .industry-first__image {
    height: 116px;
    background: url(../images/slide_challenge.png) bottom / contain no-repeat;
    width: 90px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

/* 比較ボックス */
.comparison-box {
  padding: 30px 24px;
  border: solid 0px #eee;
  display: flex;
  gap: 2%;
  margin: 0 auto;
}

/* 1行 */
.comparison-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 0 16px;
  flex-direction: column;
  width: 49%;
  border: solid 1px #ccc;
  background: #fff;
}

.comp-label {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  flex-shrink: 0;
}

/* ラベル色 */
.comp-label--gray {
  background: #e2e2e2;
  color: #555555;
}

.comp-label--blue {
  background: #1d80c5;
  color: #fff;
}

/* 流れの部分 */
.comp-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 5px;
}

/* バッジ（不採択/再挑戦/採択） */
.comp-badge {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
}

/* バッジ色 */
.comp-badge--ng {
  background: #c62828;
}

.comp-badge--retry {
  background: #1d80c5;
}

.comp-badge--ok {
  background: #00a46e;
}

/* 矢印 */
.comp-arrow {
  font-size: 20px;
  color: #555;
}

/* 終了 */
.comp-end {
  font-size: 16px;
  font-weight: 700;
  color: #555;
}

/* 説明文 */
.slide-challenge__note {
  margin-top: 40px;
  text-align: center;
  line-height: 1.8;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 500;
}

.slide-challenge__note .highlight {
  color: #1d80c5;
  font-weight: 700;
}

/* SP対応 */
@media (max-width: 767px) {
  .comparison-box {
    flex-direction: column;
    gap: 20px;
    padding: 20px 2%
  }

  .comparison-row {
    width: 100%;
  }

  .comp-flow {
    justify-content: center;
    gap: 3px;
    padding: 0;
  }

  .comp-arrow {
    font-size: 14px;
  }

  .slide-challenge__note {
    margin: 0px;
    padding: 0 2%;
  }
}

/* ===============================
プラン紹介セクション
================================*/

.plans {
  padding: 80px 4% 100px;
  position: relative;
  background: url(../images/bg_pattern04.jpg) center / cover no-repeat;
}

.plans::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.plans .container {
  position: relative;
}

.plans__title {
  text-align: center;
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 700;
  margin-bottom: 50px;
}

/* 2カラム */
.plans__columns {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* カード */
.plan-card {
  flex: 1;
  min-width: 340px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  padding: 0 0 32px;
}

.plan-standard {
  background: #eff8ff;
}

.plan-advanced {
  background: #fff8ee;
}

/* 上のプラン名帯 */
.plan-card__head {
  background: #dfe9f5;
  padding: 18px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  text-align: center;
}

.plan-standard .plan-card__head {
  background: #1d80c5;
  color: #fff;
}

.plan-advanced .plan-card__head {
  background: #f88d00;
  color: #fff;
}

.box {
  background: #ffffff;
  padding: 20px;
  margin: 0 20px 20px;
}

.box h4 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 1.0em;
}

/* プラン説明 */
.plan-card__lead {
  height: 144px;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: bold;
  text-align: center;
  margin: 20px 20px;
  border: solid 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.plan-standard .plan-card__lead {
  color: #1d80c5;
}

.plan-advanced .plan-card__lead {
  color: #f88d00;
}

.plan-card__lead strong {
  color: #333;
  background: linear-gradient(transparent 70%, #ffe15d 70%);
}

.plan-card__section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  padding: 0 20px 15px;
  text-align: center;
  border-bottom: dashed 1px #ccc;
  margin: 1.5em 20px 1em;
}

/* サブ説明 */
.plan-card__sublead {
  padding: 0 26px;
  margin-bottom: 20px;
  font-size: 18px;
}

.plan-card__sublead strong {
  color: #f88d00;
}

/* リスト */
.plan-list {
  list-style: none;
  margin: 0 0 20px;
}

.plan-list li {
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 10px;
  padding-left: 1.5em;
  position: relative;
}

.plan-list:not(.dot-none) li::before {
  content: "・";
  position: absolute;
  left: 4px;
  color: #1d80c5;
  font-weight: 900;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.plan-list.dot-none li {
  padding: 0;
}

.plan-advanced .plan-list li::before {
  color: #f88d00;
}

/* 料金表示 */
.plan-card__price {
  font-size: 18px;
  font-weight: 700;
  color: #00385e;
  text-align: center;
}

.plan-card__price strong,
.plan-discount {
  font-weight: 700;
  background: linear-gradient(transparent 70%, #ffe15d 70%);
}

.plan-discount span {
  color: #ff0000;
}

/* 成果報酬フッター */
.plans__footer {
  margin-top: 60px;
  text-align: center;
}

.plans__footer-title {
  font-size: 32px;
  font-weight: 700;
  font-family: serif;
  margin-bottom: 16px;
}

.plans__footer-text {
  font-size: clamp(16px, 2.5vw, 26px);
  background: #ffffff;
  padding: 2em;
  font-family: serif;
  font-weight: 600;
}

/* SP */
@media (max-width: 768px) {
  .plans__columns {
    flex-direction: column;
    gap: 30px;
  }

  .plans__footer-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .plans__footer-text {
    padding: 1em 12px 40px;
  }
}

/* ==============
FAQ
=============== */
#faq {
  background: #fff;
}

.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item+.faq-item {
  margin-top: 12px;
}

.faq-item__q {
  width: 100%;
  padding: 14px 40px 14px 16px;
  text-align: left;
  border: none;
  background: #d0e8ff;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #444;
}

.faq-item__q::after {
  content: "＋";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #1d80c5;
}

.faq-item__q.is-open::after {
  content: "－";
}

.faq-item__a {
  height: 0;
  overflow: hidden;
  transition: height 0.28s ease;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.faq-item__a-inner {
  padding: 16px;
}

/* ====================================
中間CTA（LPで絶対入れる）
==================================== */
section.cta-hesd {
  background: #3776b9;
  border-bottom: solid 1px #3776b9;
  padding: 60px 2%;
  position: relative;
}

section.cta-hesd::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 60px;
  height: 40px;
  background: #3776b9;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 2;
  border: solid 1px #3776b9;
  transform: translateX(-50%);
}

.cta-hesd__text {
  text-align: center;
  color: #fff;
  font-size: 40px;
}

.cta-hesd__text strong {
  color: #ffd000;
}

.cta-mid {
  background: #f7f2e3;
  padding: 90px 2% 110px;
  overflow: hidden;
}

.cta-mid .container {
  position: relative;
  text-align: center;
}

.cta-mid .text {
  font-size: 20px;
  margin: 0.5em 0;
}

.cta-mid .text strong {
  background: linear-gradient(transparent 70%, #ffe15d 70%);
}

.cta-mid__title {
  font-size: clamp(24px, 4.4vw, 50px);
  font-weight: 700;
  margin-bottom: 48px;
  text-shadow: #bbbbbb 2px 2px 2px;
}

.cta-mid__title strong {
  color: #1d80c5;
}

.cta-mid img {
  position: absolute;
  bottom: clamp(-121px, 129vw, -124px);
  left: clamp(0px, 10vw, 100px);
  width: clamp(130px, 16vw, 210px);
  height: auto;
}


@media (max-width: 767px) {
  section.cta-hesd {
    padding: 40px 2%;
  }

  .cta-hesd__text {
    font-size: 24px;
  }

  section.cta-hesd::after {
    bottom: -30px;
    width: 40px;
    height: 30px;
  }

  .cta-mid {
    padding: 30px 4% 128px;
  }

  .cta-mid__title {
    margin-bottom: 10px;
    text-shadow: none;
  }

  .cta-mid img {
    bottom: -161px;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
  }
}

/* ==============
Footer
=============== */
.footer {
  background: #0b2138;
  color: #ffffff;
  padding: 10px 0 10px;
  font-size: 14px;
}

.footer__inner {
  text-align: center;
}

.footer__copy a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 8px;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer__copy a:hover {
  opacity: 1;
  color: #ffeb3b;
  text-decoration: underline;
}