/* =========================================================
  01. ページ全体
========================================================= */
.terms-simple-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.terms-simple-card {
  position: relative;
  overflow: hidden;

  border: 1px solid #dbe7f3;
  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfdff 100%
    );

  box-shadow:
    0 14px 36px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.terms-simple-card::before {
  position: absolute;
  inset: 0 0 auto 0;

  height: 4px;

  background:
    linear-gradient(
      90deg,
      #2563eb 0%,
      #3b82f6 55%,
      #93c5fd 100%
    );

  content: "";
}

/* =========================================================
  02. ヘッダー
========================================================= */
.terms-simple-header {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 18px 22px 16px;

  border-bottom: 1px solid #e5edf5;

  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 100%
    );
}

.terms-simple-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  border: 1px solid #bfdbfe;
  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      #eff6ff 0%,
      #dbeafe 100%
    );

  color: #2563eb;

  font-size: 1.05rem;

  box-shadow:
    0 6px 14px rgba(37, 99, 235, 0.12);
}

.terms-simple-header-text {
  min-width: 0;
}

.terms-simple-title {
  margin: 0;

  color: #10213f;

  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.3;
}

.terms-simple-subtitle {
  margin-top: 3px;

  color: #64748b;

  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.5;
}

/* =========================================================
  03. 本文
========================================================= */
.terms-simple-body {
  padding: 18px 22px 20px;
}

.terms-simple-lead {
  margin-bottom: 14px;
  padding: 11px 14px;

  border: 1px solid #dbe7f3;
  border-radius: 12px;

  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #f1f5f9 100%
    );

  color: #334155;

  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.65;
}

/* =========================================================
  04. 一覧
========================================================= */
.terms-simple-list {
  display: grid;
  gap: 8px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.terms-simple-list-item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;

  border: 1px solid #e2e8f0;
  border-radius: 12px;

  background: #ffffff;
  color: #374151;

  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.55;

  box-shadow:
    0 3px 10px rgba(15, 23, 42, 0.03);
}

.terms-simple-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 28px;

  width: 28px;
  height: 28px;

  border-radius: 8px;

  background: #eff6ff;
  color: #2563eb;

  font-size: 0.8rem;
}

.terms-simple-list-text {
  flex: 1;
  min-width: 0;
}

/* =========================================================
  05. 補足
========================================================= */
.terms-simple-note {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-top: 13px;
  padding: 10px 12px;

  border: 1px solid #e2e8f0;
  border-radius: 12px;

  background: #f8fafc;
  color: #64748b;

  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.55;
}

.terms-simple-note-icon {
  color: #64748b;

  font-size: 0.9rem;
}

/* =========================================================
  06. ボタン
========================================================= */
.terms-simple-actions {
  display: flex;
  justify-content: center;

  margin-top: 14px;
}

.terms-simple-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  min-height: 38px;
  padding: 7px 15px;

  border-color: #cbd5e1;
  border-radius: 10px;

  background: #ffffff;
  color: #475569;

  font-size: 0.78rem;
  font-weight: 700;

  box-shadow:
    0 5px 12px rgba(15, 23, 42, 0.05);

  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.terms-simple-actions .btn:hover {
  border-color: #94a3b8;

  background: #f8fafc;
  color: #1e293b;

  transform: translateY(-1px);
}

/* =========================================================
  07. スマートフォン
========================================================= */
@media (max-width: 768px) {
  .terms-simple-card {
    border-radius: 16px;
  }

  .terms-simple-header {
    align-items: flex-start;

    padding: 18px 16px 15px;
  }

  .terms-simple-body {
    padding: 16px;
  }

  .terms-simple-title {
    font-size: 1.16rem;
  }

  .terms-simple-subtitle {
    font-size: 0.74rem;
  }

  .terms-simple-lead {
    font-size: 0.84rem;
  }

  .terms-simple-list-item {
    align-items: flex-start;

    padding: 10px;
  }

  .terms-simple-actions .btn {
    width: 100%;
  }
}