@charset "UTF-8";
.p-plan .p-lowerFv--contact .p-lowerFv__heading {
  padding-top: 10px;
  flex: 0 1 auto;
}

.p-plan .p-lowerFv--contact .p-lowerFv__visual {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  height: 403px;
  margin-top: 0;
}

.p-plan .p-lowerFv--contact .p-lowerFv__visual img {
  object-position: center center;
}

.p-plan .p-lowerFv--contact {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .p-plan .p-lowerFv--contact {
    overflow-x: hidden;
  }
}
.p-plan {
  position: relative;
}

@media screen and (min-width: 1367px) {
  .p-plan .p-lowerFv__inner {
    width: min(1496px, 100% - 30px);
  }
  .p-plan .p-lowerFv__panel {
    width: min(1286px, 100% - 194px);
  }
  .p-plan .p-lowerFv__body {
    gap: clamp(40px, 40px + (100vw - 1366px) * 0.04, 62px);
  }
  .p-plan .p-lowerFv__heading {
    flex: 0 1 clamp(460px, 460px + (100vw - 1366px) * 0.06, 493px);
  }
  .p-plan .p-lowerFv__lead {
    flex: 0 0 clamp(223px, 223px + (100vw - 1366px) * 0.04, 245px);
  }
  .p-plan .p-lowerFv--contact .p-lowerFv__heading {
    padding-top: clamp(10px, 10px + (100vw - 1366px) * 0.01, 16px);
  }
  .p-plan .p-lowerFv--contact .p-lowerFv__visual {
    height: clamp(403px, 403px + (100vw - 1366px) * 0.08, 447px);
  }
}
@media screen and (max-width: 1365px) and (min-width: 1025px) {
  .p-plan .p-lowerFv__panel {
    width: min(1142px, 83.6017569546vw);
  }
  .p-plan .p-lowerFv__body {
    gap: clamp(24px, 24px + (100vw - 1025px) * 0.0471, 40px);
  }
  .p-plan .p-lowerFv--contact .p-lowerFv__visual {
    height: clamp(320px, 320px + (100vw - 1025px) * 0.2441, 403px);
  }
}
@media screen and (max-width: 1024px) {
  .p-plan .p-lowerFv__panel,
  .p-plan .p-lowerFv--contact .p-lowerFv__panel {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-plan .p-lowerFv--contact .p-lowerFv__panel {
    min-height: 0;
    padding-top: 42px;
    padding-right: 0;
    padding-bottom: 30px;
    padding-left: 26px;
  }
  .p-plan .p-lowerFv--contact .p-lowerFv__title {
    font-size: 28px;
  }
  .p-plan .p-lowerFv--contact .p-lowerFv__visual {
    width: auto;
    margin-inline: 0;
    height: 320px;
  }
}
@media screen and (max-width: 600px) {
  .p-plan .p-lowerFv--contact .p-lowerFv__panel {
    padding-top: 32px;
    padding-right: 0;
    padding-bottom: 24px;
    padding-left: 18px;
  }
  .p-plan .p-lowerFv--contact .p-lowerFv__title {
    font-size: 24px;
  }
  .p-plan .p-lowerFv--contact .p-lowerFv__visual {
    width: auto;
    margin-inline: 0;
    height: 220px;
  }
}
.p-planAnchorNav {
  position: relative;
  z-index: 1;
  margin-top: -26px;
}

.p-planAnchorNav__inner {
  box-sizing: border-box;
  width: calc(100% - 52px);
  max-width: 1200px;
  margin-inline: auto;
  padding-block: 19px 38px;
  padding-inline: 0px;
}

.p-planAnchorNav__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(23, 59, 46, 0.18);
}

.p-planAnchorNav__item {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  gap: 10px;
  height: 40px;
  padding-inline: 16px 18px;
  transform-origin: center;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
  will-change: transform;
}

.p-planAnchorNav__item {
  border-right: 1px solid rgba(23, 59, 46, 0.18);
}

.p-planAnchorNav__item::after {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background-image: url("../images/icon_com-anchor-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-planAnchorNav__item p {
  display: inline-block;
  position: relative;
  color: #173b2e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

.p-planAnchorNav__item p::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.p-planAnchorNav__item:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.p-planAnchorNav__item:focus-visible p::after {
  transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  .p-planAnchorNav__item:hover {
    transform: scale(1.05);
  }
  .p-planAnchorNav__item:hover p::after {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-planAnchorNav__item {
    transition:
      color 0.25s ease,
      opacity 0.25s ease;
    will-change: auto;
  }
  .p-planAnchorNav__item p::after {
    transition: none;
  }
  .p-planAnchorNav__item:hover,
  .p-planAnchorNav__item:focus-visible {
    transform: none;
  }
}
.p-planInitial {
  padding-top: 64px;
  padding-bottom: 103px;
}

.p-planInitial__title {
  margin-bottom: 40px;
}

.p-planInitial__lead p {
  color: #555555;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8571428571;
}

.p-planInitial__lead p + p {
  margin-top: 0.25em;
}

.p-planInitial__table {
  margin-top: 48px;
  max-width: 950px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(23, 59, 46, 0.12);
  border-radius: 6px;
}

.p-planInitial__head,
.p-planInitial__row {
  display: grid;
  grid-template-columns: 247px 137px minmax(0, 1fr);
}

.p-planInitial__head {
  background: #8e8e8e;
}

.p-planInitial__row + .p-planInitial__row {
  border-top: 1px solid rgba(23, 59, 46, 0.2);
}

.p-planInitial__headCell,
.p-planInitial__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 50px;
  padding-block: 10px;
  padding-inline: 33px;
}

.p-planInitial__headCell + .p-planInitial__headCell,
.p-planInitial__cell + .p-planInitial__cell {
  border-left: 1px solid rgba(23, 59, 46, 0.2);
}

.p-planInitial__headCell p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
}

.p-planInitial__headCell {
  align-items: center;
}

.p-planInitial__cell {
  align-items: flex-start;
  background: #fbf6f1;
}

.p-planInitial__row > .p-planInitial__cell:nth-child(2) {
  align-items: center;
}

.p-planInitial__cell p {
  color: #555555;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.85;
}

.p-planInitial__cell p + p {
  margin-top: 5px;
}

.p-planSchedule {
  padding-bottom: 110px;
}

.p-planSchedule__title {
  margin-bottom: 42px;
}

.p-planSchedule__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 47px 56px;
  margin-top: 70px;
}

.p-planSchedule__card {
  min-height: 262px;
  padding: 30px 30px 36px;
  background: #ffffff;
  border-radius: 10px;
}

.p-planSchedule__cardHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-block: 5px 12px;
}

.p-planSchedule__cardLabel {
  position: relative;
  padding-left: 27px;
}

.p-planSchedule__cardBody p {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.1428571429;
}

.p-planSchedule__cardLabel::before {
  position: absolute;
  top: 14px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.p-planSchedule__cardHead::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  content: "";
}

.p-planSchedule__cardHead {
  position: relative;
}

.p-planSchedule__card--coral .p-planSchedule__cardLabel::before {
  background: #fd8a71;
}

.p-planSchedule__card--coral .p-planSchedule__cardHead::after {
  background: #fd8a71;
}

.p-planSchedule__card--sky .p-planSchedule__cardLabel::before {
  background: #6ecde6;
}

.p-planSchedule__card--sky .p-planSchedule__cardHead::after {
  background: #6ecde6;
}

.p-planSchedule__cardLabel p,
.p-planSchedule__cardPrice p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.p-planSchedule__card--coral .p-planSchedule__cardLabel p,
.p-planSchedule__card--coral .p-planSchedule__cardPrice p {
  color: #fd8a71;
}

.p-planSchedule__card--sky .p-planSchedule__cardLabel p,
.p-planSchedule__card--sky .p-planSchedule__cardPrice p {
  color: #6ecde6;
}

.p-planSchedule__cardPrice {
  flex-shrink: 0;
}

.p-planSchedule__cardBody {
  padding-top: 30px;
}

.p-planSchedule__other {
  margin-top: 112px;
}

.p-planSchedule__notes {
  margin-top: 40px;
  margin-left: 5px;
}

.p-planSchedule__notes p {
  position: relative;
  padding-left: 1em;
  line-height: 1.8571428571;
}

.p-planSchedule__notes p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
  content: "・";
  content: "・";
}

.p-planFlow {
  padding-bottom: 150px;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .p-planFlow {
    overflow-x: hidden;
  }
}
.p-planFlow__title {
  margin-bottom: 62px;
}

.p-planFlow__panel {
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 10px;
}

.p-planFlow__panelInner {
  padding: 90px 38px 86px 62px;
}

@media screen and (min-width: 1366px) {
  .p-planFlow__panel {
    width: 1283px;
  }
}
.p-planFlow__steps {
  position: relative;
}

.p-planFlow__steps::before {
  position: absolute;
  top: 35.5px;
  bottom: 35.5px;
  left: 35.5px;
  width: 1px;
  background: rgba(85, 85, 85, 0.2);
  content: "";
}

.p-planFlow__step {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 27px;
  align-items: flex-start;
}

.p-planFlow__step + .p-planFlow__step {
  margin-top: 38px;
}

.p-planFlow__badge {
  display: flex;
  flex: 0 0 71px;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 71px;
  min-width: 71px;
  height: 71px;
  background: #ff8a70;
  border-radius: 999px;
}

.p-planFlow__badgeLabel {
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.p-planFlow__badgeNumber {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.p-planFlow__stepBody {
  flex: 1 1 auto;
  padding-top: 12px;
}

.p-planFlow__stepTitle {
  color: #ff8a70;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.p-planFlow__stepText {
  margin-top: 5px;
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

.p-planFlow__note {
  margin-top: 47px;
}

.p-planFlow__note p {
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

@media screen and (min-width: 1367px) {
  .p-planAnchorNav {
    margin-top: clamp(-26px, -26px - (100vw - 1366px) * 0.0144, -34px);
  }
  .p-planAnchorNav__inner {
    max-width: none;
    width: min(
      clamp(1200px, 1200px + (100vw - 1366px) * 0.2455, 1336px),
      100% - 30px
    );
    padding-top: clamp(19px, 19px + (100vw - 1366px) * 0.009, 24px);
    padding-bottom: clamp(38px, 38px + (100vw - 1366px) * 0.0108, 44px);
  }
  .p-planAnchorNav__list {
    padding-bottom: clamp(20px, 20px + (100vw - 1366px) * 0.0072, 24px);
  }
  .p-planAnchorNav__item {
    gap: clamp(10px, 10px + (100vw - 1366px) * 0.0036, 12px);
    height: clamp(40px, 40px + (100vw - 1366px) * 0.0072, 44px);
    padding-inline: clamp(16px, 16px + (100vw - 1366px) * 0.0036, 18px)
      clamp(18px, 18px + (100vw - 1366px) * 0.0036, 20px);
  }
  .p-planInitial__inner,
  .p-planSchedule__inner,
  .p-planFlow__inner {
    max-width: none;
    width: min(
      clamp(1200px, 1200px + (100vw - 1366px) * 0.2455, 1336px),
      100% - 30px
    );
  }
  .p-planInitial {
    padding-top: clamp(64px, 64px + (100vw - 1366px) * 0.0217, 76px);
    padding-bottom: clamp(103px, 103px + (100vw - 1366px) * 0.0271, 118px);
  }
  .p-planInitial__title {
    margin-bottom: clamp(40px, 40px + (100vw - 1366px) * 0.0144, 48px);
  }
  .p-planInitial__table {
    max-width: clamp(950px, 950px + (100vw - 1366px) * 0.1625, 1040px);
    margin-top: clamp(48px, 48px + (100vw - 1366px) * 0.0181, 58px);
  }
  .p-planInitial__headCell,
  .p-planInitial__cell {
    min-height: clamp(50px, 50px + (100vw - 1366px) * 0.0108, 56px);
    padding-block: clamp(10px, 10px + (100vw - 1366px) * 0.0036, 12px);
    padding-inline: clamp(33px, 33px + (100vw - 1366px) * 0.009, 38px);
  }
  .p-planSchedule {
    padding-bottom: clamp(110px, 110px + (100vw - 1366px) * 0.0398, 132px);
  }
  .p-planSchedule__title {
    margin-bottom: clamp(42px, 42px + (100vw - 1366px) * 0.0126, 49px);
  }
  .p-planSchedule__cards {
    gap: clamp(47px, 47px + (100vw - 1366px) * 0.0163, 56px)
      clamp(56px, 56px + (100vw - 1366px) * 0.0217, 68px);
    margin-top: clamp(70px, 70px + (100vw - 1366px) * 0.0217, 82px);
  }
  .p-planSchedule__card {
    min-height: clamp(262px, 262px + (100vw - 1366px) * 0.0361, 282px);
    padding-top: clamp(30px, 30px + (100vw - 1366px) * 0.0072, 34px);
    padding-right: clamp(30px, 30px + (100vw - 1366px) * 0.0108, 36px);
    padding-bottom: clamp(36px, 36px + (100vw - 1366px) * 0.0072, 40px);
    padding-left: clamp(30px, 30px + (100vw - 1366px) * 0.0108, 36px);
  }
  .p-planSchedule__cardBody {
    padding-top: clamp(30px, 30px + (100vw - 1366px) * 0.0072, 34px);
  }
  .p-planSchedule__other {
    margin-top: clamp(112px, 112px + (100vw - 1366px) * 0.0289, 128px);
  }
  .p-planSchedule__notes {
    margin-top: clamp(40px, 40px + (100vw - 1366px) * 0.0144, 48px);
  }
  .p-planFlow {
    padding-bottom: clamp(150px, 150px + (100vw - 1366px) * 0.0361, 170px);
  }
  .p-planFlow__title {
    margin-bottom: clamp(62px, 62px + (100vw - 1366px) * 0.0181, 72px);
  }
  .p-planFlow__panel {
    width: auto;
    margin-right: calc(50% - 50vw);
  }
  .p-planFlow__panelInner {
    box-sizing: border-box;
    width: min(1200px, 100%);
    padding-top: 90px;
    padding-right: 38px;
    padding-bottom: 86px;
    padding-left: 62px;
  }
  .p-planFlow__step {
    gap: clamp(27px, 27px + (100vw - 1366px) * 0.0126, 34px);
  }
  .p-planFlow__step + .p-planFlow__step {
    margin-top: clamp(38px, 38px + (100vw - 1366px) * 0.0144, 46px);
  }
  .p-planFlow__note {
    margin-top: clamp(47px, 47px + (100vw - 1366px) * 0.0163, 56px);
  }
}
@media screen and (max-width: 1365px) and (min-width: 1025px) {
  .p-planFlow__panel {
    margin-right: calc(50% - 50vw);
  }
  .p-planAnchorNav__inner {
    width: min(1200px, 100% - 36px);
    padding-top: clamp(19px, 19px + (100vw - 1025px) * 0.0176, 25px);
    padding-bottom: clamp(28px, 28px + (100vw - 1025px) * 0.0294, 38px);
  }
  .p-planAnchorNav__list {
    padding-bottom: clamp(16px, 16px + (100vw - 1025px) * 0.0118, 20px);
  }
  .p-planAnchorNav__item {
    gap: clamp(8px, 8px + (100vw - 1025px) * 0.0059, 10px);
    height: clamp(36px, 36px + (100vw - 1025px) * 0.0118, 40px);
    padding-inline: clamp(10px, 10px + (100vw - 1025px) * 0.0176, 16px)
      clamp(12px, 12px + (100vw - 1025px) * 0.0176, 18px);
  }
  .p-planInitial {
    padding-bottom: clamp(96px, 96px + (100vw - 1025px) * 0.0205, 103px);
  }
  .p-planInitial__head,
  .p-planInitial__row {
    grid-template-columns: clamp(
        140px,
        140px + (100vw - 1025px) * 0.314,
        247px
      ) clamp(110px, 110px + (100vw - 1025px) * 0.0792, 137px) minmax(0, 1fr);
  }
  .p-planInitial__headCell,
  .p-planInitial__cell {
    padding-block: clamp(10px, 16px - (100vw - 1025px) * 0.0176, 16px);
    padding-inline: clamp(18px, 18px + (100vw - 1025px) * 0.044, 33px);
  }
  .p-planSchedule {
    padding-bottom: clamp(96px, 96px + (100vw - 1025px) * 0.0411, 110px);
  }
  .p-planSchedule__cards {
    row-gap: clamp(24px, 24px + (100vw - 1025px) * 0.0675, 47px);
    column-gap: clamp(24px, 24px + (100vw - 1025px) * 0.0939, 56px);
    margin-top: clamp(40px, 40px + (100vw - 1025px) * 0.088, 70px);
  }
  .p-planSchedule__card {
    padding-top: clamp(22px, 22px + (100vw - 1025px) * 0.0235, 30px);
    padding-right: clamp(18px, 18px + (100vw - 1025px) * 0.0352, 30px);
    padding-bottom: clamp(22px, 22px + (100vw - 1025px) * 0.041, 36px);
    padding-left: clamp(18px, 18px + (100vw - 1025px) * 0.0352, 30px);
  }
  .p-planSchedule__other {
    margin-top: clamp(72px, 72px + (100vw - 1025px) * 0.1173, 112px);
  }
  .p-planFlow {
    padding-bottom: clamp(96px, 96px + (100vw - 1025px) * 0.1584, 150px);
  }
  .p-planFlow__panelInner {
    padding-top: clamp(30px, 30px + (100vw - 1025px) * 0.176, 90px);
    padding-right: clamp(28px, 28px + (100vw - 1025px) * 0.0293, 38px);
    padding-bottom: clamp(38px, 38px + (100vw - 1025px) * 0.1408, 86px);
    padding-left: clamp(28px, 28px + (100vw - 1025px) * 0.0997, 62px);
  }
  .p-planFlow__title {
    margin-bottom: clamp(32px, 32px + (100vw - 1025px) * 0.088, 62px);
  }
}
@media screen and (max-width: 1024px) {
  .p-planFlow__panel {
    margin-right: calc(50% - 50vw);
  }
  .p-planAnchorNav__inner {
    width: calc(100% - 36px);
    padding-top: 34px;
    padding-right: 48px;
    padding-bottom: 32px;
    padding-left: 48px;
  }
  .p-planAnchorNav__list {
    flex-wrap: wrap;
    gap: 18px 0;
  }
  .p-planAnchorNav__item {
    width: 50%;
    justify-content: flex-start;
  }
  .p-planAnchorNav__item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  .p-planInitial {
    padding-top: 72px;
    padding-bottom: 96px;
  }
  .p-planInitial__title {
    margin-bottom: 32px;
  }
  .p-planInitial__head,
  .p-planInitial__row {
    grid-template-columns: 140px 110px minmax(0, 1fr);
  }
  .p-planInitial__headCell,
  .p-planInitial__cell {
    padding: 16px 18px;
  }
  .p-planSchedule {
    padding-bottom: 96px;
  }
  .p-planSchedule__cards {
    gap: 24px;
    margin-top: 40px;
  }
  .p-planSchedule__card {
    min-height: 0;
    padding: 22px 18px 22px;
  }
  .p-planFlow {
    padding-bottom: 96px;
  }
  .p-planFlow__panelInner {
    padding: 30px 28px 38px;
  }
}
@media screen and (max-width: 768px) {
  .p-planAnchorNav__inner {
    width: calc(100% - 24px);
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 700px) {
  .p-planSchedule__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-planAnchorNav__item p {
    font-size: 11px;
  }
  .p-planInitial {
    padding-top: 56px;
    padding-bottom: 72px;
  }
  .p-planInitial__title {
    margin-bottom: 24px;
  }
  .p-planInitial__table {
    margin-top: 32px;
  }
  .p-planInitial__head,
  .p-planInitial__row {
    grid-template-columns: 100px 92px minmax(0, 1fr);
  }
  .p-planInitial__headCell,
  .p-planInitial__cell {
    padding: 12px 10px;
  }
  .p-planInitial__headCell p,
  .p-planInitial__cell p {
    font-size: 12px;
    line-height: 1.7;
  }
  .p-planSchedule {
    padding-bottom: 72px;
  }
  .p-planSchedule__title {
    margin-bottom: 24px;
  }
  .p-planSchedule__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  .p-planSchedule__card {
    padding: 18px 14px;
    border-radius: 8px;
  }
  .p-planSchedule__cardHead {
    gap: 12px;
    padding-bottom: 10px;
  }
  .p-planSchedule__cardLabel {
    padding-left: 14px;
  }
  .p-planSchedule__cardLabel::before {
    width: 6px;
    height: 6px;
  }
  .p-planSchedule__cardLabel p,
  .p-planSchedule__cardPrice p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.875;
  }
  .p-planSchedule__cardBody {
    padding-top: 18px;
  }
  .p-planSchedule__other {
    margin-top: 32px;
  }
  .p-planSchedule__notes {
    margin-top: 20px;
  }
  .p-planFlow {
    padding-bottom: 72px;
  }
  .p-planFlow__title {
    margin-bottom: 24px;
  }
  .p-planFlow__panelInner {
    padding: 24px 16px 28px;
  }
  .p-planFlow__steps::before {
    top: 28px;
    bottom: 28px;
    left: 28px;
  }
  .p-planFlow__step {
    gap: 14px;
  }
  .p-planFlow__badge {
    flex-basis: 56px;
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
  .p-planFlow__badgeNumber {
    font-size: 21px;
  }
  .p-planFlow__stepBody {
    padding-top: 6px;
  }
  .p-planFlow__stepTitle {
    font-size: 14px;
    line-height: 1.6;
  }
  .p-planFlow__stepText,
  .p-planFlow__note p {
    font-size: 12px;
    line-height: 1.9;
  }
  .p-planFlow__note {
    margin-top: 24px;
  }
}
@media screen and (max-width: 500px) {
  .p-planAnchorNav__inner {
    width: calc(100% - 16px);
    padding-right: 16px;
    padding-left: 16px;
  }
  .p-planAnchorNav__item {
    gap: 6px;
    padding-inline: 8px 10px;
  }
  .p-planAnchorNav__item::after {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
  }
  .p-planAnchorNav__item p {
    font-size: 9px;
  }
  .p-planInitial__head,
  .p-planInitial__row {
    grid-template-columns: 80px 80px minmax(0, 1fr);
  }
  .p-planInitial__headCell,
  .p-planInitial__cell {
    padding: 10px 8px;
  }
  .p-planInitial__headCell p,
  .p-planInitial__cell p {
    font-size: 11px;
    line-height: 1.6;
  }
  .p-planSchedule__cardLabel p,
  .p-planSchedule__cardPrice p {
    font-size: 14px;
  }
  .p-planSchedule__cardBody p,
  .p-planSchedule__notes p,
  .p-planInitial__lead p {
    font-size: 11px;
    line-height: 1.85;
  }
}
