@charset "UTF-8";

/* ==========================
共通
========================== */
.plan_head {
  text-align: center;
}

.plan_subtitle {
  font-size: 1.6rem;
}

.plan_head h2 {
  font-size: 3.4rem;
  font-weight: 700;
}

.plan_head span {
  color: #c99b25;
}


/* ==========================
カード
========================== */

.plan_list {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.plan_card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid;
}


/* ==========================
色
========================== */

.lite {
  border-color: #ef7d38;
}

.standard {
  border-color: #072b73;
}
.standard p.plan_catch {
    font-weight: 700;
    color: #dfa81f;
}
.premium {
  border-color: #c99b25;
}


/* ==========================
ヘッダー
========================== */

.plan_header {
  text-align: center;
  padding: 2rem 1rem;
}


.plan_header h3 {
  font-size: 3.0rem;
}

.plan_desc {
  margin-bottom: 1rem;
}

.plan_header img {
  width: 80px;
}


/* ==========================
情報
========================== */

.plan_info {
  background: #f8f8f8;
}

.plan_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.plan_row strong {
  font-size: 3rem;
}


/* ==========================
料金
========================== */

.plan_price {
    padding: 1rem 2rem;
    text-align: center;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.plan_price span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
}

.lite .plan_price span {
  background: #ef7d38;
}

.standard .plan_price span {
  background: #072b73;
}

.premium .plan_price span {
  background: #c99b25;
}

.plan_price p {
  font-size: 3.0rem;
  font-weight: 700;
}

.plan_price small {
  font-size: 2.4rem;
}


/* ==========================
リスト
========================== */

.plan_feature {
  padding: 0 1rem 2rem;
}

.plan_feature li {
  list-style: none;
  display: flex;
  gap: 12px;
}

.plan_feature li::before {
  content: "✓";
}





/* ==========================
注釈
========================== */

.plan_note {
  text-align: center;
  margin-top: 40px;
}

/*調整*/

/* ==========================
SP
========================== */

@media (max-width: 768px) {
  .plan_list {
    flex-direction: column;
  }
}