:root {
  /* Colors */
  --black: #000000;
  --black-23: #231815;
  --white: #FFFFFF;
  --white-f0: #F0F2F5;
  --blue: #005EAD;
  --yellow: #FFCB0D;
  --light-yellow: #FFED97;
  --orange: #F46000;
  --light-orange: #F8B62C;
  --gray: #D9D9D9;
  --gray-4A: #4A4A4A;
  --gray-71: #717171;
  /* Font family */
  --noto: "Noto Sans JP", sans-serif;
}

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

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

ol, ul {
  margin: 0;
  padding: 0;
}

.breadcrumbs__block {
  margin-top: 24px;
  padding-block: 10px 12px;
}
@media screen and (max-width: 838px) {
  .breadcrumbs__block {
    margin-top: 32px;
    padding-block: 10px 12px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs__block {
    margin-top: 0;
  }
}

.breadcrumbs__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__container {
    padding: 0 10px;
  }
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 52px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__list {
    gap: 42px;
  }
}

.breadcrumbs__item {
  position: relative;
  color: var(--black);
  font-family: var(--noto);
  font-size: 16px;
}

.breadcrumbs__item::after {
  content: "＞";
  position:  absolute;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__item::after {
    margin-left: 13px;
  }
}

.breadcrumbs__item:last-child::after {
  display: none;
}

.breadcrumbs__link {
  color: var(--black);
  letter-spacing: 0.04em;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.breadcrumbs__link:hover {
  color: var(--blue);
}

span.breadcrumbs__link {
  pointer-events: none;
}

.banner__block {
  background: var(--blue);
  width: 100%;
  height: 118px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .banner__block {
    height: 90px;
    padding: 10px;
  }
}

.banner__heading {
  color: var(--white);
  font-family: var(--noto);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .banner__heading {
    font-size: 20px;
  }
}

.button__primary {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  width: 100%;
  max-width: 604px;
  min-height: 94px;
  margin: 0 auto;
  border: 4px solid var(--black);
  border-radius: 60px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button__primary {
    max-width: 295px;
    min-height: 55px;
    border: 3px solid var(--black);
    border-radius: 80px;
    font-size: 16px;
  }
}

.button__primary::after {
  content: "";
  mask: url("/public/img/icons/caret-right-white-lg.svg") no-repeat center / contain;
  background: var(--white);
  width: 13px;
  height: 19px;
  display: block;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button__primary::after {
    width: 7px;
    height: 11px;
    right: 12px;
  }
}

.button__primary:hover {
  background: var(--white);
  color: var(--orange);
}

.button__primary:hover::after {
  background: var(--orange);
}

.title__block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 254px;
  min-height: 61px;
  margin-bottom: 40px;
  background: var(--white);
  color: var(--black);
  border: 4px solid var(--black);
  box-shadow: 5px 5px 0px var(--black);
  border-radius: 80px;
}
@media screen and (max-width: 767px) {
  .title__block {
    max-width: 100%;
    min-height: 52px;
    margin-bottom: 32px;
    box-shadow: 2px 2px 0px var(--black);
  }
}

.title__text {
  font-family: var(--noto);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .title__text {
    font-size: 20px;
  }
}

.step__block {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .step__block {
    max-width: 319px;
  }
}

.step__box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 24px;
  background: var(--white);
  color: var(--black);
  font-family: var(--noto);
  border: 3px solid var(--black-23);
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .step__box {
    margin: 0 auto;
  }
}

.step__box.step__box--1 {
  margin-bottom: 86px;
}
@media screen and (max-width: 767px) {
  .step__box.step__box--1 {
    margin-bottom: 118px;
  }
}

.step__box.step__box--1::after {
  content: "";
  background: url("/public/img/common/step-1-lines.png") no-repeat center / contain;
  width: 100%;
  max-width: 471px;
  height: 86px;
  display: block;
  position: absolute;
  bottom: -86px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .step__box.step__box--1::after {
    background: url("/public/img/common/step-1-lines-sp.png") no-repeat center / contain;
    max-width: 178px;
  }
}

.step__box.step__box--2 {
  align-items: flex-start;
  min-height: 408px;
  padding-top: 73px;
}
@media screen and (max-width: 767px) {
  .step__box.step__box--2 {
    min-height: 274px;
    padding: 35px 8px 16px;
  }
}

.step__box.step__box--2 .step__num {
  top: -61px;
}
@media screen and (max-width: 767px) {
  .step__box.step__box--2 .step__num {
    top: -108px;
  }
}

.step__box.step__box--3 {
  padding: 7px;
  margin-bottom: 78px;
}
@media screen and (max-width: 767px) {
  .step__box.step__box--3 {
    padding: 32px 26px;
    margin-bottom: 50px;
  }
}

.step__box.step__box--3::after {
  content: "";
  background: url("/public/img/icons/polygon.svg") no-repeat center / contain;
  width: 102px;
  height: 41px;
  display: block;
  position: absolute;
  bottom: -64px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .step__box.step__box--3::after {
    width: 44px;
    height: 17px;
    bottom: -36px;
  }
}

.step__box.step__box--3 .step__image img {
  margin: 0;
}

.step__box.step__box--4 {
  padding: 40px 24px 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .step__box.step__box--4 {
    padding: 32px 26px 0;
  }
}

.step__box.step__box--4 .step__text {
  position: relative;
  display: block;
  color: var(--orange);
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .step__box.step__box--4 .step__text {
    font-size: 14px;
  }
}

.step__box.step__box--4 .step__text::after {
  content: "";
  background: url("/public/img/icons/stars.svg") no-repeat center / contain;
  width: 37px;
  height: 34px;
  display: block;
  position: absolute;
  top: -16px;
  right: -17px;
}
@media screen and (max-width: 767px) {
  .step__box.step__box--4 .step__text::after {
    display: none;
  }
}

.step__box.step__box--4 .step__heading {
  color: var(--orange);
  font-size: 52px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .step__box.step__box--4 .step__heading {
    font-size: 37px;
  }
}

.step__box.step__box--4 .step__image img {
  margin: 36px auto 0;
}
@media screen and (max-width: 767px) {
  .step__box.step__box--4 .step__image img {
    margin: 27px auto 0;
  }
}

.step__num {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 95px;
  height: 31px;
  padding: 4px 16px;
  background: var(--black);
  border-radius: 24px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6em;
  position: absolute;
  top: -16px;
  left: 16px;
}

.step__heading-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .step__heading-block {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
  }
}

.step__heading-block.step__heading-block--column {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.step__heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .step__heading {
    line-height: 1.6em;
  }
}

.step__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}

.step__box-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 86px;
}
@media screen and (max-width: 767px) {
  .step__box-grid {
    gap: 23px;
    margin-bottom: 64px;
  }
}

.step__box-grid::after {
  content: "";
  background: url("/public/img/common/step-2-lines.png") no-repeat center / contain;
  width: 100%;
  max-width: 471px;
  height: 86px;
  display: block;
  position: absolute;
  bottom: -86px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .step__box-grid::after {
    background: url("/public/img/common/step-2-lines-sp.png") no-repeat center / contain;
    max-width: 178px;
    height: 64px;
    bottom: -64px;
  }
}

.step__label {
  width: 100%;
  max-width: 320px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 16px;
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .step__label {
    max-width: 140px;
    height: 48px;
    position: absolute;
    top: -39px;
    font-size: 13px;
  }
}

.step__label.step__label--orange {
  background: var(--orange);
  color: var(--white);
}

.step__image img {
  margin: 0 auto 24px;
}
@media screen and (max-width: 767px) {
  .step__image img {
    margin: 0 auto 16px;
  }
}

.step__box-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 263px;
  min-height: 53px;
  margin: 24px auto 0;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 80px;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .step__box-button {
    max-width: 133px;
    min-height: 32px;
    margin: 16px auto 0;
    border: 1px solid var(--black);
    font-size: 13px;
    padding-right: 6px;
  }
}

.step__box-button::after {
  content: "";
  mask: url("/public/img/icons/caret-right.svg") no-repeat center / contain;
  background: var(--black);
  width: 7px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .step__box-button::after {
    width: 4px;
    height: 6px;
    right: 6px;
  }
}

.step__box-button:hover {
  background: var(--black);
  color: var(--white);
}

.step__box-button:hover.step__box-button::after {
  background: var(--white);
}

.step__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .step__row {
    flex-direction: column;
  }
}

.pricing__block-box {
  width: 100%;
  margin-top: 87px;
  border: 3px solid var(--black);
  border-radius: 24px;
  padding: 32px 32px 24px;
  box-shadow: 5px 4px 0px var(--black);
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .pricing__block-box {
    margin-top: 0;
    padding: 16px 16px 8px;
  }
}

.pricing__block {
  position: relative;
  width: 920px;
  margin: 0 auto;
  font-family: var(--noto);
}
@media screen and (max-width: 767px) {
  .pricing__block {
    width: 520px;
  }
}

.pricing__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 51px;
  background: var(--black);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px;
  margin-bottom: 16px;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .pricing__heading {
    max-width: 312px;
    min-height: 54px;
    font-size: 20px;
    padding: 12px;
    margin: 40px auto 16px;
    border-radius: 80px;
  }
}

.pricing__dl {
  margin: 0;
}

.pricing__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .pricing__row {
    display: grid;
    gap: 6px;
    margin-bottom: 0;
  }
}

.pricing__row:last-child {
  margin-bottom: 0;
}

.pricing__box {
  width: 100%;
  min-height: 83px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .pricing__box {
    min-width: 160px;
    min-height: 43px;
  }
}

.pricing__box.pricing__box--blank {
  background: var(--gray);
}

.pricing__box.pricing__box--label {
  background: var(--blue);
  clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
}

.pricing__box.pricing__box--ly {
  background: var(--light-yellow);
}

.pricing__box.pricing__box--lo {
  background: var(--light-orange);
}

@media screen and (max-width: 767px) {
  .pricing__box.pricing__box--sp-h65{
    min-height: 65px;
  }
}

.pricing__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .pricing__title {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .pricing__title.pricing__title--fs-sp20 {
    font-size: 20px;
  }
}

.pricing__icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .pricing__icon-box {
    gap: 0;
  }
}

.pricing__icon {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .pricing__icon {
    width: 16px;
    height: 16px;
  }
}

.pricing__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing__text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pricing__text {
    font-size: 13px;
  }
}

.faq__section {
  background: var(--white-f0);
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .faq__section {
    padding-block: 40px;
  }
}

.faq__container {
  width: 100%;
  max-width: calc(1000px + 8%);
  padding: 0 4%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .faq__container {
    max-width: 100%;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--noto);
}

.faq__item {
  background: var(--white);
  border: 3px solid var(--white-f0);
  border-radius: 16px;
  padding: 21px 29px;
  user-select: none;
}
@media screen and (max-width: 767px) {
  .faq__item {
    padding: 21px;
  }
}

.faq__item.is-active .faq__a-block {
  min-height: 67px;
  /* NOTE: `max-height: max-content` is not reliably supported across browsers.
     Use a large max-height to ensure the accordion can expand everywhere. */
  max-height: 2000px;
  padding-block: 16px;
}
@media screen and (max-width: 767px) {
  .faq__item.is-active .faq__a-block {
    min-height: unset;
    padding-block: 5px 0;
  }
}

.faq__item.is-active .faq__q-block::before {
  opacity: 0;
}

.faq__q-block,
.faq__a-block {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .faq__q-block,
  .faq__a-block {
    min-height: unset;
    padding-block: 0;
    gap: 8px;
  }
}

.faq__q-block {
  min-height: 67px;
  padding-block: 16px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__q-block {
    min-height: unset;
    padding-block: 0;
    padding-right: 16px;
  }
}

.faq__q-block::before,
.faq__q-block::after {
  content: "";
  background: var(--blue);
  display: block;
  position: absolute;
  top: 24px;
  right: 0;
  width: 2px;
  height: 16px;
  border-radius: 4px;
  transition: 0.1s ease;
}
@media screen and (max-width: 767px) {
  .faq__q-block::before,
  .faq__q-block::after {
    top: 12px;
  }
}

.faq__q-block::after {
  transform: rotate(90deg);
}

.faq__a-block {
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq__q-marker,
.faq__a-marker {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.faq__q-marker {
  color: var(--blue);
}

.faq__a-marker {
  color: var(--orange);
}

.faq__q,
.faq__a {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding-top: 5px;
}

.faq__q {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .faq__q {
    line-height: 1.5em;
  }
}

.faq__a {
  color: var(--gray-4A);
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .faq__a {
    line-height: 1.5em;
  }
}

.contact__container {
  width: 100%;
  max-width: calc(1400px + 8%);
  padding: 0 4%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contact__container {
    max-width: 100%;
  }
}

.contact__box {
  width: 100%;
  background: var(--yellow);
  border-radius: 24px;
  padding: 80px;
  font-family: var(--noto);
}
@media screen and (max-width: 767px) {
  .contact__box {
    border-radius: 16px;
    padding: 24px 8px;
  }
}

.contact__title-block {
  max-width: 261px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .contact__title-block {
    max-width: 236px;
  }
}

.contact__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 532px);
  gap: 16px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__list {
    grid-template-columns: 100%;
    gap: 8px;
  }
}

.contact__item {
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 160px;
  border-radius: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact__item {
    gap: 8px;
    min-height: 128px;
    width: 100%;
    max-width: 327px;
    margin: 0 auto;
    padding: 32px 8px;
  }
}

.contact__item:hover {
  opacity: 0.9;
}

.contact__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.contact__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact__num {
  display: block;
  color: var(--blue);
  font-size: 40px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .contact__num {
    font-size: 31px;
  }
}

.contact__sched {
  color: var(--gray-71);
  font: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact__text {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 18px;
  }
}



/* HELPER */
.display__pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .display__pc {
    display: none;
  }
}

.display__pc-flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .display__pc-flex {
    display: none;
  }
}

.display__sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .display__sp {
    display: block;
  }
}

.display__sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .display__sp-flex {
    display: flex;
  }
}

.color__white {
  color: var(--white);
}

