:root {
  --c-bg: #ffffff;
  --c-panel: #ffffff;
  --c-border: #707070;
  --c-muted: #949494;
  --c-text: #555555;
  --c-strong: #555555;
  --c-main: #52B132;
  --c-main-light: #e8f7e6;
  --c-error: #ea473a;
  --c-row: #f7f7f7;
  --c-bg-gray: #f6f8f7;
}

.c-bg-white-inner {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 1px 1px 8px #e5e5e5;
}

#plan-about .plan-wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  align-items: center;
}
@media only screen and (max-width: 820px) {
  #plan-about .plan-wrap {
    flex-direction: column;
  }
}
#plan-about .plan-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#plan-about .plan-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--c-main);
  font-size: 14px;
  border: 2px solid var(--c-main);
  border-radius: 30px;
}
#plan-about .plan-toggle__btn:hover {
  opacity: 0.8;
}
#plan-about .plan-toggle__icon {
  position: relative;
  width: 14px;
  height: 14px;
}
#plan-about .plan-toggle__icon::before, #plan-about .plan-toggle__icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: transform 0.2s ease;
}
#plan-about .plan-toggle__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
#plan-about .plan-toggle__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
#plan-about .plan-toggle__btn.is-open .plan-toggle__icon::after {
  transform: translateX(-50%) scaleY(0);
}
#plan-about .plan-box {
  display: none;
}
#plan-about .plan-box.is-open {
  display: grid !important;
}
#plan-about .plan-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}
@media only screen and (max-width: 820px) {
  #plan-about .plan-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
#plan-about .plan-card {
  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;
  flex: 1 1 0;
  padding: 20px 10px;
  border-radius: 10px;
  border: 1px solid #707070;
  background: white;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-top: 0;
  height: 100%;
}
#plan-about .plan-card__label {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: 0;
  padding: 2px 4px;
  border-radius: 17px;
  font-weight: 700;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  background: var(--c-main);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#plan-about .plan-card__name {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--c-strong);
  text-align: center;
  font-size: 14px;
}
#plan-about .plan-card__price {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: center;
}
#plan-about .plan-card__desc {
  font-size: 13px;
  margin-bottom: 6px;
}
#plan-about .plan-card__option {
  font-weight: 700;
  margin-top: 2em;
  font-size: 14px;
}
#plan-about .plan-card__features {
  list-style: none;
  margin: 0 0 10px;
}
#plan-about .plan-card__features li {
  font-size: 12px;
}
#plan-about .plan-card__attention li {
  font-size: 12px;
  color: var(--c-text);
}
#plan-about .plan-card__footer {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#plan-about .plan-btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--c-border);
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  background: #fff;
  color: var(--c-muted);
  text-decoration: unset;
}
#plan-about .plan-btn:hover {
  background: var(--c-main);
  color: #fff;
  border-color: var(--c-main);
}

#plan-choice .bg-plan {
  background: var(--c-bg-gray);
}
#plan-choice .ttl {
  color: var(--c-text);
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 0em;
  vertical-align: middle;
  margin-top: 1em;
}
#plan-choice .grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
@media only screen and (max-width: 820px) {
  #plan-choice .grid {
    flex-direction: column;
  }
}
#plan-choice .card {
  border-radius: 20px;
  border: 1px solid var(--c-border);
  padding: 20px;
}
@media only screen and (min-width: 821px) {
  #plan-choice .card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}
@media only screen and (min-width: 821px) {
  #plan-choice .card.-full {
    flex: 0 0 100%;
  }
}
#plan-choice .sub {
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px solid var(--c-border);
  padding: 0 0 10px;
  margin-bottom: 10px;
  flex: 0 1 100%;
}
#plan-choice .option-sub {
  font-weight: 700;
}
#plan-choice .option-txt {
  font-size: 14px;
}
#plan-choice .subtxt {
  font-size: 14px;
}
#plan-choice .select {
  width: 60px;
  height: 30px;
  font-size: 0.9em;
}
#plan-choice .select-area {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 20px;
}
#plan-choice .wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}
#plan-choice .icon-thum {
  flex-shrink: 0;
  max-width: 87px;
}
#plan-choice .ttl {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 1em;
}
#plan-choice .option-txt {
  font-size: 16px;
}
#plan-choice .mini {
  border: 1px dashed var(--c-border);
  padding: 20px;
  border-radius: 20px;
  background: #fcfefd;
}
@media only screen and (min-width: 821px) {
  #plan-choice .mini {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}
#plan-choice .mini.-full {
  flex: 0 0 100%;
}
#plan-choice .suboption-txt {
  font-size: 14px;
}
#plan-choice .point {
  font-size: 17px;
  color: var(--c-main);
  font-weight: 700;
}
#plan-choice .category {
  border-radius: 30px;
  background: var(--c-main);
  color: #fff;
  padding: 5px 10px;
  font-weight: 400;
  margin-left: 5px;
}
#plan-choice .check-area {
  display: flex;
  gap: 0 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}
#plan-choice .option-wrap {
  display: flex;
  gap: 0 16px;
  align-items: center;
}
@media only screen and (min-width: 821px) {
  #plan-choice .option-wrap.-sb {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 820px) {
  #plan-choice .option-wrap {
    flex-direction: column;
  }
}
#plan-choice .price {
  color: var(--c-main);
  font-weight: 700;
}
#plan-choice .include {
  font-size: 14px;
}
#plan-choice .features {
  font-size: 14px;
  font-weight: 700;
}
#plan-choice .features li {
  font-weight: 700;
}
#plan-choice .attention {
  font-size: 12px;
}
#plan-choice .attention li {
  font-weight: 400;
  color: var(--c-text);
}
#plan-choice .option-bulk {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  background: #fff;
  margin: 0 0 12px;
  text-align: left;
}
@media only screen and (max-width: 820px) {
  #plan-choice .option-bulk .point {
    font-size: 14px;
  }
}
#plan-choice .option-bulk__label {
  font-weight: 700;
  color: var(--c-strong);
}
#plan-choice .option-bulk__select {
  height: 36px;
  font-size: 14px;
  text-align: left;
  font-weight: 600;
}
@media only screen and (min-width: 821px) {
  #plan-choice .option-bulk__select {
    min-width: 240px;
  }
}
@media only screen and (max-width: 820px) {
  #plan-choice .option-bulk__select {
    font-size: 11px;
    width: 100%;
  }
}
#plan-choice .option-custom {
  border: 1px solid var(--c-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  padding: 0 14px 0;
}
#plan-choice .option-custom__box {
  display: none;
}
#plan-choice .option-custom__wrap {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-weight: 700;
  color: var(--c-main);
  cursor: pointer;
}
#plan-choice .option-custom__wrap.is-open .option-custom__icon::after {
  transform: translateX(-50%) scaleY(0);
}
#plan-choice .option-custom__label {
  color: var(--c-main-light);
}
#plan-choice .option-custom__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}
#plan-choice .option-custom__icon::before, #plan-choice .option-custom__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
#plan-choice .option-custom__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
#plan-choice .option-custom__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
#plan-choice .telnum_main + .telnum_main {
  margin-top: 40px;
}
#plan-choice .plan_txt {
  margin-bottom: 2em;
}/*# sourceMappingURL=estimates_add.css.map */