@charset "UTF-8";
/*!
 * MORIBITO membershipform — Figma準拠（Atomic Design + Sass）
 * ビルド: npm run sass
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
}

:root {
  --accent: #0d9eb7;
  --font-color: #242b39;
  --surface-light: #f0fbfc;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  color: var(--font-color);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.membershipform-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.a-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 6px 6px;
  border-radius: 5px;
  background: #ff6c6e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  white-space: nowrap;
}
.a-badge--optional {
  background: var(--surface-light);
  color: var(--accent);
}

.a-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 280px;
  padding: 22px 35px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
}
.a-btn:hover:not(:disabled):not(.off) {
  opacity: 0.9;
}
.a-btn:is(:has(.a-btn__chevron),
:has(.o-thanks-actions__icon),
:has(.o-thanks-survey__submit-icon)):hover:not(:disabled):not(.off):not(.o-thanks-survey__submit--sending):not(.a-btn--ghost) {
  opacity: 1;
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
}
.a-btn:disabled, .a-btn.off {
  opacity: 0.45;
  cursor: not-allowed;
}
.a-btn--ghost {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.a-btn--ghost:is(:has(.a-btn__chevron),
:has(.o-thanks-actions__icon),
:has(.o-thanks-survey__submit-icon)):hover:not(:disabled):not(.off) {
  opacity: 1;
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.a-btn--block {
  width: 100%;
}
.a-btn > .a-btn__chevron {
  position: absolute;
  top: 50%;
  right: 23px;
  margin-top: -7px;
}
.a-btn > .a-btn__chevron--left {
  right: auto;
  left: 23px;
}

.a-btn__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 12px;
  flex-shrink: 0;
  color: inherit;
  transform: scaleX(-1);
}
.a-btn__chevron svg {
  display: block;
  width: 8px;
  height: 12px;
}
.a-btn__chevron--left {
  transform: none;
}

.a-input {
  display: block;
  width: 100%;
  padding: 17px 16px;
  border: 1px solid #bedce5;
  border-radius: 8px;
  background: var(--surface-light);
  color: var(--font-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  appearance: none;
}
.a-input::placeholder {
  color: #9ca3af;
}
.a-input:focus {
  outline: none;
  border-color: var(--accent);
}
.a-input.field-error {
  border-color: #ff6c6e;
}

.a-textarea {
  display: block;
  width: 100%;
  min-height: 160px;
  padding: 17px 16px;
  border: 1px solid #bedce5;
  border-radius: 8px;
  background: var(--surface-light);
  color: var(--font-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  resize: vertical;
  appearance: none;
  font-family: inherit;
}
.a-textarea::placeholder {
  color: #9ca3af;
}
.a-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.a-select {
  position: relative;
  width: 100%;
}
.a-select__control {
  padding-right: 40px;
  cursor: pointer;
  appearance: none;
  background-image: none;
}
.a-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.a-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--font-color);
}
.a-label--sub {
  font-size: 14px;
}

.a-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.a-link:hover {
  text-decoration: none;
  opacity: 0.85;
}
.a-link--muted {
  color: var(--font-color);
  text-decoration: none;
  font-weight: 300;
}
.a-link--muted:hover {
  color: var(--accent);
  opacity: 1;
}

.a-checkbox {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin: 0;
  appearance: none;
  border: 1px solid #bedce5;
  border-radius: 4px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px 14px;
  cursor: pointer;
}
.a-checkbox:checked {
  background-color: var(--surface-light);
  background-image: url("../img/common/icon-checkbox-check.svg");
  border-color: #bedce5;
}
.a-checkbox:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.a-icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}
.a-icon--arrow-left {
  width: 16px;
  height: 16px;
  background-image: url("../img/common/icon-arrow-left.svg");
}
.a-icon--pin {
  width: 13px;
  height: 18px;
  background-image: url("../img/common/icon-pin.svg");
}
.a-icon--monthly {
  width: 20px;
  height: 14px;
  background-image: url("../img/common/icon-monthly.svg");
}
.a-icon--once {
  width: 16px;
  height: 14px;
  background-image: url("../img/common/icon-once.svg");
}
.a-icon--check-on {
  width: 22px;
  height: 22px;
  background-image: url("../img/common/icon-check-on.svg");
}
.a-icon--check-off {
  width: 22px;
  height: 22px;
  background-image: url("../img/common/icon-check-off.svg");
}
.a-icon--alert {
  width: 16px;
  height: 16px;
  background-image: url("../img/common/icon-alert-circle.svg");
}

.m-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.m-field__hint {
  margin: -2px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #747984;
}
.m-field .field-msg {
  margin: 0;
  font-size: 13px;
  color: #ff6c6e;
}

.m-field-row {
  display: flex;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .m-field-row {
    flex-direction: column;
    gap: 16px;
  }
}
.m-field-row > .m-field {
  flex: 1;
  min-width: 0;
}
.m-field-row--payment {
  align-items: flex-start;
}
.m-field-row--payment > .m-field--expire,
.m-field-row--payment > .m-field--cvc {
  flex: 1 1 0;
  width: 50%;
  min-width: 0;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .m-field-row--payment > .m-field--expire,
  .m-field-row--payment > .m-field--cvc {
    flex: none;
    width: 100%;
  }
}

.m-expire {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
}
.m-expire__slash {
  flex-shrink: 0;
  padding-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #747984;
}
.m-expire .a-input {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  text-align: left;
  padding-left: 16px;
  padding-right: 16px;
}

.m-address {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.m-address__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--font-color);
}

.m-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.m-step-item__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #81cedc;
}
.m-step-item__label {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 14px;
  color: #81cedc;
  white-space: nowrap;
}
.m-step-item--current .m-step-item__dot {
  background: var(--accent);
}
.m-step-item--current .m-step-item__label {
  color: var(--accent);
}

.m-amount-pill {
  display: inline-flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 100px;
  border: 1px solid #bedce5;
  background: #fff;
  color: var(--font-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
}
.m-amount-pill:hover {
  border-color: var(--accent);
}
.m-amount-pill--on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.m-amount-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.m-amount-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
}
.m-amount-custom__input {
  display: none;
  width: 130px;
  height: 51px;
  padding: 0 16px;
  border: 1px solid #bedce5;
  border-radius: 8px;
  background: #fff;
  text-align: right;
  font-size: 16px;
  color: var(--font-color);
}
.m-amount-custom__input::placeholder {
  color: #9ca3af;
}
.m-amount-custom__input:focus {
  outline: none;
  border-color: var(--accent);
}
.m-amount-custom__unit {
  display: none;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--font-color);
  white-space: nowrap;
}
.m-amount-custom.is-open .m-amount-custom__input,
.m-amount-custom.is-open .m-amount-custom__unit {
  display: block;
}

.m-amount-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.m-amount-block__label,
.m-freq-block__label {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--font-color);
}

.m-freq-block,
.m-amount-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.m-amount-section {
  gap: 16px;
}
.m-amount-section__msg {
  margin: 0;
  font-size: 13px;
  color: #ff6c6e;
}

.m-freq-option {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  text-align: left;
  background: #fff;
  border: 1px solid #bedce5;
  border-radius: 12px;
  cursor: pointer;
  color: var(--font-color);
  transition: border-color 0.15s ease;
}
.m-freq-option:hover {
  border-color: var(--accent);
}
.m-freq-option--on {
  border-width: 2px;
  border-color: var(--accent);
  padding: 19px;
}
.m-freq-option__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.m-freq-option__check {
  flex-shrink: 0;
}
.m-freq-option__desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.m-freq-options {
  display: flex;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .m-freq-options {
    flex-direction: column;
  }
}

.m-section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.m-section-heading__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.m-section-heading__num {
  margin: 0;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .m-section-heading__num {
    font-size: 24px;
  }
}
.m-section-heading__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--font-color);
}
@media screen and (max-width: 767px) {
  .m-section-heading__title {
    font-size: 18px;
  }
}
.m-section-heading__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--font-color);
}

.m-confirm-row {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 2px 15px;
  border-bottom: 1px solid #bedce5;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .m-confirm-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.m-confirm-row__label {
  margin: 0;
  flex: 0 0 220px;
  width: 220px;
  font-weight: 700;
  color: #747984;
}
@media screen and (max-width: 767px) {
  .m-confirm-row__label {
    flex: none;
    width: auto;
    font-size: 14px;
  }
}
.m-confirm-row__value {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-weight: 400;
  color: var(--font-color);
  word-break: break-word;
}

.m-page-title {
  text-align: center;
  padding: 62px 0 41px;
}
@media screen and (max-width: 767px) {
  .m-page-title {
    padding: 32px 0 24px;
  }
}
.m-page-title h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .m-page-title h1 {
    font-size: 24px;
    text-align: center;
  }
}
.m-page-title p {
  margin: 12px auto 0;
  max-width: 640px;
  font-size: 16px;
  color: var(--font-color);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .m-page-title p {
    text-align: left;
  }
}
.m-page-title--doc p {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .m-page-title--doc p {
    font-size: 14px;
  }
}

.o-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}
.o-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 120px;
}
@media screen and (max-width: 767px) {
  .o-header__inner {
    padding: 16px;
    justify-content: center;
  }
}
.o-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--font-color);
  white-space: nowrap;
}
.o-header__brand:hover {
  opacity: 0.9;
}
.o-header__logo {
  font-family: "Futura", "Avenir Next", "Hiragino Sans", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
}
.o-header__tag {
  font-size: 12px;
  font-weight: 700;
  line-height: 10px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .o-header__tag {
    letter-spacing: 0.12em;
  }
}
.o-header__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--font-color);
  text-decoration: none;
  white-space: nowrap;
}
.o-header__back:hover {
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .o-header__back {
    display: none;
  }
}

.o-footer {
  margin-top: auto;
  background: #454c4c;
  color: #fff;
}
.o-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 80px;
}
@media screen and (max-width: 767px) {
  .o-footer__inner {
    flex-direction: column;
    gap: 16px;
    padding: 28px 16px;
    text-align: center;
  }
}
.o-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}
.o-footer__logo {
  font-family: "Futura", "Avenir Next", "Hiragino Sans", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
}
.o-footer__tag {
  font-size: 10px;
  font-weight: 800;
  line-height: 10px;
}
.o-footer__copy {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.o-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 32px 0;
  background: var(--surface-light);
}
@media screen and (max-width: 767px) {
  .o-stepper {
    gap: 8px;
    padding: 20px 16px;
  }
}
.o-stepper__line {
  width: 48px;
  height: 0;
  border-top: 2px solid #bedce5;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .o-stepper__line {
    width: 32px;
  }
}

.o-plan-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(40, 70, 75, 0.13);
  padding: 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .o-plan-card {
    padding: 16px;
    gap: 16px;
    border: 1px solid #bedce5;
  }
}
.o-plan-card__head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .o-plan-card__head {
    gap: 12px;
    align-items: center;
  }
}
.o-plan-card__thumb {
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .o-plan-card__thumb {
    width: 100px;
    height: 74px;
  }
}
.o-plan-card__meta {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .o-plan-card__meta {
    padding-top: 0;
    gap: 4px;
  }
}
.o-plan-card__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .o-plan-card__eyebrow {
    font-size: 12px;
  }
}
.o-plan-card__mission {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--font-color);
}
@media screen and (max-width: 767px) {
  .o-plan-card__mission {
    font-size: 15px;
  }
}
.o-plan-card__actor {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #747984;
}
@media screen and (max-width: 767px) {
  .o-plan-card__actor {
    font-size: 12px;
  }
}
.o-plan-card__summary {
  background: var(--surface-light);
  border-radius: 10px;
  padding: 20px 25px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .o-plan-card__summary {
    padding: 10px;
    border-radius: 8px;
  }
}
.o-plan-card__summary-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .o-plan-card__summary-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}
.o-plan-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.o-plan-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  color: var(--font-color);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .o-plan-card__tag {
    font-size: 15px;
  }
}
.o-plan-card__sep {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: url("../img/common/icon-sep.svg") center/contain no-repeat;
  flex-shrink: 0;
}
.o-plan-card__amount {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  color: var(--font-color);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .o-plan-card__amount {
    justify-content: flex-end;
    width: 100%;
  }
}
.o-plan-card__amount-num {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 34px;
}
@media screen and (max-width: 767px) {
  .o-plan-card__amount-num {
    font-size: 26px;
    line-height: 26px;
  }
}
.o-plan-card__amount-unit {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .o-plan-card__amount-unit {
    font-size: 15px;
  }
}
.o-plan-card__note {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #747984;
}
@media screen and (max-width: 767px) {
  .o-plan-card__note {
    font-size: 12px;
  }
}
.o-plan-card__summary-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
  padding-top: 21px;
  border-top: 1px solid #bedce5;
}
.o-plan-card__toggle {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media screen and (max-width: 767px) {
  .o-plan-card__toggle {
    font-size: 14px;
  }
}
.o-plan-card__toggle:hover {
  text-decoration: none;
  opacity: 0.85;
}
.o-plan-card__editor {
  display: none;
  flex-direction: column;
  gap: 28px;
  padding-top: 22px;
}
.o-plan-card[data-editing=true] .o-plan-card__editor {
  display: flex;
}
.o-plan-card--confirm .o-plan-card__pricing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding-top: 22px;
  border-top: 1px solid #bedce5;
}
@media screen and (max-width: 767px) {
  .o-plan-card--confirm .o-plan-card__pricing {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}
.o-plan-card--confirm .o-plan-card__pricing-label {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--font-color);
}
.o-plan-card--confirm .o-plan-card__amount {
  color: #ff6c6e;
}

.o-form-supporter {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  padding-top: 61px;
}
@media screen and (max-width: 767px) {
  .o-form-supporter {
    gap: 24px;
    padding-top: 48px;
  }
}
.o-form-supporter__fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .o-form-supporter__fields {
    gap: 24px;
  }
}

.o-form-payment {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  padding-top: 61px;
  margin-top: 60px;
  border-top: 1px solid #bedce5;
}
@media screen and (max-width: 767px) {
  .o-form-payment {
    gap: 20px;
    padding-top: 48px;
    margin-top: 0;
  }
}
.o-form-payment__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.o-form-payment__method {
  margin: 0 0 -17px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--font-color);
}
.o-form-payment__note {
  margin: 0;
  font-size: 16px;
  color: var(--font-color);
}
.o-form-payment__registered {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 18px 25px;
  border-radius: 10px;
  background: var(--surface-light);
}
.o-form-payment__registered-row {
  display: flex;
  flex-wrap: wrap;
  gap: 49px;
  align-items: center;
  width: 100%;
}
.o-form-payment__registered-label, .o-form-payment__registered-number {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--font-color);
}
.o-form-payment__toggle {
  align-self: flex-end;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .o-form-payment__toggle {
    font-size: 14px;
  }
}
.o-form-payment__toggle:hover {
  text-decoration: none;
  opacity: 0.85;
}

.o-form-consent {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 100%;
  padding-top: 61px;
  margin-top: 57px;
  border-top: 1px solid #bedce5;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .o-form-consent {
    gap: 48px;
    padding-bottom: 0;
  }
}
.o-form-consent__agree {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 27px;
}
.o-form-consent__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--font-color);
}
.o-form-consent__actions {
  display: flex;
  justify-content: flex-end;
}
.o-form-consent__actions .a-btn {
  width: 100%;
  max-width: 340px;
}
@media screen and (max-width: 767px) {
  .o-form-consent__actions {
    display: block;
  }
  .o-form-consent__actions .a-btn {
    max-width: none;
  }
}

.o-confirm-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.o-confirm-block__head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.o-confirm-block__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--font-color);
}
@media screen and (max-width: 767px) {
  .o-confirm-block__title {
    font-size: 18px;
  }
}
.o-confirm-block__num {
  margin: 0;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .o-confirm-block__num {
    font-size: 24px;
  }
}
.o-confirm-block__edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.o-confirm-block__edit:hover {
  text-decoration: none;
  opacity: 0.85;
}
.o-confirm-block__edit .a-btn__chevron {
  width: 6px;
  height: 9px;
}
.o-confirm-block__edit .a-btn__chevron svg {
  width: 6px;
  height: 9px;
}
.o-confirm-block__edit .a-btn__chevron path {
  stroke: var(--accent, #0d9eb7);
  stroke-width: 1px;
}
.o-confirm-block__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #bedce5;
}
.o-confirm-block__agree {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.o-confirm-block__agree-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  background-color: #f3f3f3;
  background-image: url("../img/common/icon-checkbox-check-muted.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px 14px;
}
.o-confirm-block__agree-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-color);
}

.o-confirm-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .o-confirm-actions {
    flex-direction: column-reverse;
    gap: 12px;
  }
}
.o-confirm-actions .a-btn {
  width: 340px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .o-confirm-actions .a-btn {
    width: 100%;
    min-width: 0;
  }
}
.o-confirm-actions__status {
  margin: 12px 0 0;
  width: 100%;
  font-size: 13px;
  color: #747984;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .o-confirm-actions__status {
    text-align: left;
  }
}

.o-thanks-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: center;
}
.o-thanks-hero__icon {
  width: 90px;
  height: 93px;
  object-fit: contain;
}
.o-thanks-hero__titles {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
}
.o-thanks-hero__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .o-thanks-hero__title {
    font-size: 24px;
  }
}
.o-thanks-hero__sub {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .o-thanks-hero__sub {
    font-size: 18px;
  }
}
.o-thanks-hero__mail {
  margin: -3px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--font-color);
}

.o-thanks-receipt {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.o-thanks-receipt__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--font-color);
}
.o-thanks-receipt__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #bedce5;
}

.o-thanks-survey {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 26px 32px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(40, 70, 75, 0.13);
}
@media screen and (max-width: 767px) {
  .o-thanks-survey {
    padding: 20px 16px;
  }
}
.o-thanks-survey__banner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.o-thanks-survey__banner {
  margin: 0;
  width: 100%;
  padding: 18px 20px;
  border-radius: 8px;
  background: #fff1a4;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--font-color);
}
.o-thanks-survey__arrow {
  display: block;
  width: 24px;
  height: 17px;
  margin-top: -1px;
}
.o-thanks-survey__form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 34px;
  width: 100%;
  margin-top: 10px;
}
.o-thanks-survey__form[hidden] {
  display: none;
}
.o-thanks-survey__fields {
  display: flex;
  flex-direction: column;
  gap: 38px;
  width: 100%;
}
.o-thanks-survey__anon {
  display: flex;
  align-items: center;
  gap: 12px;
}
.o-thanks-survey__anon-text {
  margin: 0;
  font-size: 16px;
  color: var(--font-color);
}
.o-thanks-survey__actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .o-thanks-survey__actions .a-btn {
    width: 100%;
    min-width: 0;
  }
}
.o-thanks-survey__submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-width: 0;
  width: 180px;
  padding: 12px 16px 12px 20px;
  border-radius: 6px;
  font-size: 14px;
}
.o-thanks-survey__submit-label {
  flex: 1;
  min-width: 0;
  margin-right: -4px;
  text-align: center;
}
.o-thanks-survey__submit-icon {
  display: inline-block;
  flex-shrink: 0;
}
.o-thanks-survey__submit-icon--send {
  width: 15px;
  height: 14px;
  background-color: currentColor;
  mask: url("../img/common/icon-survey-send.svg") center/contain no-repeat;
  -webkit-mask: url("../img/common/icon-survey-send.svg") center/contain no-repeat;
}
.o-thanks-survey__submit-icon--spinner {
  width: 13px;
  height: 13px;
  background-image: url("../img/common/icon-survey-spinner.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: o-thanks-survey-spin 1s linear infinite;
}
.o-thanks-survey__submit-icon[hidden] {
  display: none;
}
.o-thanks-survey__submit--sending {
  background: #a7afb0;
  opacity: 1;
  cursor: wait;
}
.o-thanks-survey[data-state=sending] .a-input,
.o-thanks-survey[data-state=sending] .a-textarea {
  background: #f3f3f3;
  border-color: #c1c1c1;
  color: var(--font-color);
  pointer-events: none;
}
.o-thanks-survey[data-state=sending] .a-checkbox {
  background-color: #f3f3f3;
  border-color: #c1c1c1;
  cursor: not-allowed;
}
.o-thanks-survey[data-state=sending] .a-checkbox:checked {
  background-image: url("../img/common/icon-checkbox-check-muted.svg");
}
.o-thanks-survey[data-state=sending] .o-thanks-survey__anon {
  pointer-events: none;
}
.o-thanks-survey__done {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}
.o-thanks-survey__done[hidden] {
  display: none;
}
.o-thanks-survey__done-title {
  margin: 0;
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .o-thanks-survey__done-title {
    font-size: 18px;
  }
}
.o-thanks-survey__done-text {
  margin: 0;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--font-color);
}

@keyframes o-thanks-survey-spin {
  to {
    transform: rotate(360deg);
  }
}
.o-thanks-actions {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .o-thanks-actions {
    flex-direction: column;
    gap: 12px;
  }
}
.o-thanks-actions .a-btn {
  width: 400px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .o-thanks-actions .a-btn {
    width: 100%;
    min-width: 0;
  }
}
.o-thanks-actions__icon {
  position: absolute;
  top: 50%;
  left: 35px;
  margin-top: -10.5px;
  display: inline-block;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.o-thanks-actions__icon--share {
  mask-image: url("../img/common/icon-share.svg");
  -webkit-mask-image: url("../img/common/icon-share.svg");
}
.o-thanks-actions__icon--report {
  width: 20px;
  height: 22px;
  margin-top: -11px;
  mask-image: url("../img/common/icon-report.svg");
  -webkit-mask-image: url("../img/common/icon-report.svg");
}

.o-share-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
@media screen and (max-width: 767px) {
  .o-share-modal {
    padding: 24px 15px;
    align-items: flex-start;
    overflow-y: auto;
  }
}
.o-share-modal[hidden] {
  display: none;
}
.o-share-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 30, 49, 0.6);
}
.o-share-modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .o-share-modal__close {
    top: 12px;
    right: 12px;
  }
}
.o-share-modal__close img {
  display: block;
  width: 34px;
  height: 34px;
}
.o-share-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 80px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .o-share-modal__panel {
    max-height: none;
    padding: 40px 20px;
    margin: 36px 0 24px;
  }
}
.o-share-modal__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  text-align: center;
}
.o-share-modal__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent, #0d9eb7);
}
@media screen and (max-width: 767px) {
  .o-share-modal__title {
    font-size: 20px;
  }
}
.o-share-modal__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--font-color, #242b39);
}
.o-share-modal__preview {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 394px;
  overflow: hidden;
  border: 1px solid #bedce5;
  border-radius: 15px;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .o-share-modal__preview {
    max-width: none;
  }
}
.o-share-modal__preview-media {
  position: relative;
  width: 100%;
  aspect-ratio: 444/233;
  overflow: hidden;
  background: #f0fbfc;
}
.o-share-modal__preview-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-share-modal__preview-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}
.o-share-modal__preview-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #242b39;
}
.o-share-modal__preview-desc, .o-share-modal__preview-domain {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #747984;
}
.o-share-modal__text-wrap {
  width: 100%;
}
.o-share-modal__text {
  display: block;
  width: 100%;
  height: 150px;
  margin: 0;
  padding: 17px 16px;
  border: 1px solid #bedce5;
  border-radius: 8px;
  background: #f0fbfc;
  box-sizing: border-box;
  resize: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #242b39;
  overflow-y: auto;
}
.o-share-modal__text:focus {
  outline: 2px solid #0d9eb7;
  outline-offset: 1px;
}
.o-share-modal__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 23px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .o-share-modal__actions {
    gap: 12px;
  }
}
.o-share-modal__action {
  flex: 0 0 auto;
  width: 64px;
}
@media screen and (min-width: 768px) {
  .o-share-modal__action--sp-only {
    display: none;
  }
}
.o-share-modal__action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #242b39;
}
.o-share-modal__action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 14px;
  box-sizing: border-box;
}
.o-share-modal__action-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-share-modal__action-icon--bordered {
  padding: 10px;
  border: 2px solid #c7c7c7;
  background: #fff;
}
.o-share-modal__action-icon--bordered img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.o-share-modal__action-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
.o-share-modal__toast {
  position: sticky;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: #242b39;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  box-sizing: border-box;
}
.o-share-modal__toast[hidden] {
  display: none;
}

html.js-share-modal-open,
html.js-share-modal-open body {
  overflow: hidden;
}

.p-input {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.p-input__main {
  flex: 1;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 0 80px;
}
@media screen and (max-width: 767px) {
  .p-input__main {
    max-width: none;
    padding: 0 15px 64px;
  }
}
.p-input__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-alert {
  margin: 0 0 24px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff0f0;
  color: #ff6c6e;
  font-size: 14px;
}

.hide {
  display: none !important;
}

.p-confirm {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.p-confirm__main {
  flex: 1;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 0 120px;
}
@media screen and (max-width: 767px) {
  .p-confirm__main {
    max-width: none;
    padding: 0 15px 64px;
  }
}
.p-confirm__body {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-confirm__body {
    gap: 40px;
  }
}

.p-thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.p-thanks__main {
  flex: 1;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 54px 0 120px;
}
@media screen and (max-width: 767px) {
  .p-thanks__main {
    max-width: none;
    padding: 32px 15px 64px;
  }
}
.p-thanks__body {
  display: flex;
  flex-direction: column;
  gap: 58px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-thanks__body {
    gap: 40px;
  }
}

.p-terms__main {
  flex: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px 120px;
}
@media screen and (max-width: 767px) {
  .p-terms__main {
    padding: 0 16px 64px;
  }
}
.p-terms__lead {
  margin: 0 0 50px;
  padding: 20px 30px;
  border-radius: 8px;
  background: var(--surface-light);
}
@media screen and (max-width: 767px) {
  .p-terms__lead {
    margin-bottom: 32px;
    padding: 16px 20px;
  }
}
.p-terms__lead p {
  margin: 0 0 0.4em;
  font-size: 18px;
  font-weight: 400;
  color: var(--font-color);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-terms__lead p {
    font-size: 14px;
  }
}
.p-terms__lead p:last-child {
  margin-bottom: 0;
}
.p-terms__articles {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-terms__articles {
    gap: 32px;
    margin-bottom: 40px;
  }
}
.p-terms__article {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.p-terms__article-ttl {
  margin: 0;
  padding-bottom: 24px;
  border-bottom: 2px solid #81cedc;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-terms__article-ttl {
    font-size: 18px;
    padding-bottom: 16px;
  }
}
.p-terms__article-body p {
  margin: 0 0 0.4em;
  font-size: 16px;
  font-weight: 400;
  color: var(--font-color);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-terms__article-body p {
    font-size: 14px;
  }
}
.p-terms__article-body p:last-child {
  margin-bottom: 0;
}
.p-terms__num, .p-terms__item {
  display: flex;
  gap: 2px;
}
.p-terms__num > span {
  flex: none;
  width: 1.5em;
}
.p-terms__item {
  padding-left: 0;
}
.p-terms__item > span {
  flex: none;
  min-width: 2.5em;
}
.p-terms__actions {
  display: flex;
  justify-content: center;
}
.p-terms__back {
  min-width: 340px;
}
@media screen and (max-width: 767px) {
  .p-terms__back {
    min-width: 0;
    width: 100%;
  }
}

.p-law__main {
  flex: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px 120px;
}
@media screen and (max-width: 767px) {
  .p-law__main {
    padding: 0 16px 64px;
  }
}
.p-law__lead {
  margin: 0 0 50px;
  padding: 20px 30px;
  border-radius: 8px;
  background: var(--surface-light);
}
@media screen and (max-width: 767px) {
  .p-law__lead {
    margin-bottom: 32px;
    padding: 16px 20px;
  }
}
.p-law__lead p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--font-color);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-law__lead p {
    font-size: 14px;
  }
}
.p-law__table {
  display: grid;
  grid-template-columns: minmax(152px, 0.3fr) minmax(0, 1fr);
  margin: 0 0 50px;
  padding: 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-law__table {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}
.p-law__row {
  display: contents;
}
.p-law__th, .p-law__td {
  margin: 0;
  padding: 26px 15px;
  border-bottom: 1px solid #bedce5;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-law__th, .p-law__td {
    padding: 16px 0;
    font-size: 14px;
  }
}
.p-law__row:first-child .p-law__th, .p-law__row:first-child .p-law__td {
  border-top: 1px solid #bedce5;
}
.p-law__th {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--accent);
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-law__th {
    display: block;
    padding-bottom: 8px;
    border-bottom: 0;
  }
}
.p-law__td {
  font-weight: 400;
  color: var(--font-color);
}
@media screen and (max-width: 767px) {
  .p-law__td {
    padding-top: 0;
  }
}
.p-law__td a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-law__td a:hover {
  text-decoration: none;
}
.p-law__actions {
  display: flex;
  justify-content: center;
}
.p-law__back {
  min-width: 340px;
}
@media screen and (max-width: 767px) {
  .p-law__back {
    min-width: 0;
    width: 100%;
  }
}

/*# sourceMappingURL=form.css.map */
