@charset "UTF-8";
:root {
  --color-bg: #f2f2f2;
  --color-panel: #ffffff;
  --color-border: #707070;
  --color-text-main: #565756;
  --color-text-strong: #565756;
  --color-accent: #52b132;
  --color-alert-bg: #ffeaea;
  --color-alert-border: #ea473a;
  --color-muted: #949494;
}

* {
  box-sizing: border-box;
}

.panel {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: 9px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.panel--alert {
  background: var(--color-alert-bg);
  border-color: var(--color-alert-border);
  border-radius: 0;
}

.current-box {
  border-radius: 0;
}
@media only screen and (min-width: 769px) {
  .current-box {
    padding: 30px 50px;
  }
}

.panel__title {
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
}

.panel__title-mark {
  color: var(--color-alert-border);
  font-weight: 700;
}

.panel__flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.panel__body p {
  margin: 4px 0;
  line-height: 1.6;
}

@media only screen and (min-width: 769px) {
  .panel__right {
    flex: 0 0 254px;
  }
}

.plan_btn {
  width: 100%;
}

.current-wrap {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .current-wrap {
    flex-direction: column;
  }
}

.current-wrap + .current-wrap {
  margin-top: 30px;
}

.current-grid {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .current-grid {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

.current-grid__label {
  color: var(--color-muted);
  font-size: 14px;
}

.current-grid__value-strong {
  font-weight: 600;
}

.current-result {
  font-size: 20px;
}

.btn-container {
  margin-top: 40px;
  display: flex;
}

.change-btn {
  color: #52B132;
  border-radius: 5px;
  border: 2px solid #52b132;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .change-btn {
    min-width: 237px;
    height: 46px;
    padding-left: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .change-btn {
    padding: 10px 20px 10px 40px;
  }
}
.change-btn::before {
  content: "";
  background: url(./assets/images/icon-change.svg) no-repeat;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.change-btn:hover {
  opacity: 0.6;
}

.section-title {
  margin: 24px 0 8px;
  color: var(--color-text-strong);
}

.section-lead {
  margin: 0 0 16px;
  line-height: 1.7;
}

/* プランカード */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.plan-card {
  height: 100%;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #ffffff;
  padding: 28px 15px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.plan-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.plan-card__label {
  display: inline-block;
  align-self: flex-start;
  padding: 2px 8px;
  border-radius: 17px;
  font-size: 12px;
  border: 1px solid #707070;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}

.plan-card__name {
  font-weight: 600;
  color: var(--color-text-strong);
  text-align: center;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.plan-card__price {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}
.plan-card__price .-sm {
  font-size: 16px;
}

.plan-card__badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 17px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 11px;
}

.plan-card__desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px;
}

.plan-card__features {
  list-style: none;
  margin: 0;
  font-size: 14px;
}
.plan-card__features li::before {
  content: "";
  background: url(./assets/images/icon-check.svg) no-repeat;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 12px;
  margin-right: 15px;
}

.plan-card__features li + li {
  margin-top: 2px;
}

.plan-card__action {
  margin-top: auto;
  padding-top: 10px;
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--color-text-main);
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
}

.btn-plan-change {
  background: #52B132;
  color: #fff;
  border-color: #52B132;
}

.is-selected .btn-plan-change {
  border: 1px solid #949494;
  background: #fff;
  color: #949494;
}

.btn-block {
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .-w50 {
    flex: 0 0 calc(50% - 8px);
    height: 65px;
    font-size: 22px;
  }
}

.plan-card.is-selected {
  border-color: var(--color-accent);
  background: #f5fbf5;
  box-shadow: 0 0 0 1px rgba(82, 177, 50, 0.25);
  transform: translateY(-1px);
}

/* サマリー＋フッター */
.bottom-area {
  margin-top: 24px;
}

.summary-box {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  align-items: baseline;
  gap: 32px;
  font-size: 15px;
}

.summary-box__label {
  color: var(--color-muted);
}

.summary-box__value {
  font-weight: 600;
  font-size: 20px;
}
.summary-box__value .-sm {
  font-size: 16px;
}

.summary-note {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 8px;
  line-height: 1.6;
}
.is-hidden {
  display: none;
}

.footer-actions {
  margin-top: 24px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 100px;
}
@media only screen and (min-width: 769px) {
  .footer-actions {
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 960px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .page {
    padding: 12px 10px 32px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .summary-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .footer-actions {
    flex-direction: column;
  }
  .footer-actions .btn-block {
    width: 100%;
  }
  body {
    padding-bottom: 150px;
  }
  .bottom-area {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 8px 12px 10px;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
  }
  .bottom-area .summary-box {
    margin-top: 0;
  }
  .bottom-area .summary-note {
    margin-bottom: 6px;
  }
  .bottom-area .footer-actions {
    margin-top: 8px;
  }
  .is-hidden {
    display: none;
  }

}/*# sourceMappingURL=new-plan.css.map */