.top__inner {
  max-width: 1000px;
  width: 90%;
  margin-inline: auto;
}
.top__container {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .top__container {
    flex-direction: column;
  }
}
.top__left {
  width: 27%;
}
@media screen and (max-width: 768px) {
  .top__left {
    width: 100%;
    max-width: 400px;
  }
}
.top__textbox {
  width: calc(100% - 295px);
}
@media screen and (max-width: 768px) {
  .top__textbox {
    width: 100%;
  }
}
.top__disc {
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
}
.top__disc::before, .top__disc::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.top__disc::before {
  margin-block-end: calc((1 - 2) * 0.5em);
}
.top__disc::after {
  margin-block-start: calc((1 - 2) * 0.5em);
}

.attention {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}
.attention__left {
  max-width: 40px;
  width: 100%;
}
.attention__right {
  width: 100%;
}
.attention__text {
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
  text-indent: -1em;
  padding-left: 1em;
  color: #ff554d;
}

.condition {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .condition {
    margin-top: 80px;
  }
}
.condition__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 90%;
}
.condition__title {
  line-height: 1.125;
  letter-spacing: 0.06em;
  font-size: 3.2rem;
}
.condition__title::before, .condition__title::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.condition__title::before {
  margin-block-end: calc((1 - 1.125) * 0.5em);
}
.condition__title::after {
  margin-block-start: calc((1 - 1.125) * 0.5em);
}
@media screen and (max-width: 768px) {
  .condition__title {
    font-size: 2.8rem;
  }
}
.condition__title--small {
  line-height: 2.25;
  letter-spacing: 0.12em;
  font-size: 1.6rem;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.condition__container {
  margin-top: 50px;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .condition__container {
    margin-top: 25px;
  }
}
.condition__list {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .condition__list {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .condition__list {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) and (max-width: 600px) {
  .condition__list {
    flex-wrap: wrap;
  }
}
.condition__item {
  width: 220px;
  height: 120px;
  background: #f4f9fb;
  border: 1px solid #737373;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  padding-inline: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .condition__item {
    width: calc(50% - 10px);
    font-size: 1.8rem;
    height: 80px;
  }
}
.condition__note {
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  color: #737373;
  text-indent: -1em;
  padding-left: 1em;
}
.condition__note:first-of-type {
  margin-top: 30px;
}

.tab-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .tab-list {
    gap: 10px;
  }
}
.tab-list__head {
  text-align: center;
}
.tab-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  width: 300px;
  border: 1px solid #d9d9d9;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  color: #737373;
  font-size: 2rem;
  cursor: pointer;
  padding-inline: 5px;
}
@media screen and (max-width: 768px) {
  .tab-list__item {
    height: 55px;
    font-size: 13px;
  }
}
.tab-list__item--small {
  font-size: 1.6rem;
}
.tab-list__item.is-active {
  background: #1a1a1a;
  color: var(--white);
  position: relative;
  border: none;
}
.tab-list__item.is-active::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: #1a1a1a;
  width: 16px;
  height: auto;
  aspect-ratio: 16/8;
  bottom: 0;
  left: 50%;
  translate: -50% 100%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.tab-list__item--small {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .tab-list__item--small {
    font-size: 1.4rem;
  }
}

.return {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .return {
    margin-top: 80px;
  }
}
.return__container {
  border-top: 1px solid #1a1a1a;
  background: #f7f7f5;
  padding-block: 110px 140px;
}
@media screen and (max-width: 768px) {
  .return__container {
    padding-block: 60px 70px;
  }
}
.return__inner {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
}
.return__head {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .return__head {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
  }
}
.return__title {
  line-height: 1.125;
  letter-spacing: 0.12em;
  font-size: 3.2rem;
}
.return__title::before, .return__title::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.return__title::before {
  margin-block-end: calc((1 - 1.125) * 0.5em);
}
.return__title::after {
  margin-block-start: calc((1 - 1.125) * 0.5em);
}
@media screen and (max-width: 768px) {
  .return__title {
    font-size: 2.8rem;
  }
}
.return__subtitle {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #737373;
}
.return__subtitle::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #a5a5a5;
}
@media screen and (max-width: 767px) {
  .return__subtitle::before {
    width: 15px;
  }
}
.return__page {
  display: none;
}
.return__page.is-active {
  display: block;
}

.return-top {
  display: flex;
  align-items: flex-start;
  background: var(--white);
  gap: 50px;
  padding: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .return-top {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
}
.return-top__image {
  max-width: 549px;
  width: 100%;
}
.return-top__textbox {
  width: 100%;
}
.return-top__text {
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
  margin-top: 25px;
}
.return-top__text::before, .return-top__text::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.return-top__text::before {
  margin-block-end: calc((1 - 2) * 0.5em);
}
.return-top__text::after {
  margin-block-start: calc((1 - 2) * 0.5em);
}
.return-top__text--large {
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-size: 2rem;
  margin-top: 0;
}
.return-top__text--large::before, .return-top__text--large::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.return-top__text--large::before {
  margin-block-end: calc((1 - 1.6) * 0.5em);
}
.return-top__text--large::after {
  margin-block-start: calc((1 - 1.6) * 0.5em);
}
.return-top__text--small {
  font-size: 1.5rem;
  display: block;
}

.step {
  margin-top: 60px;
}
.step__title {
  line-height: 1.2857142857;
  letter-spacing: 0.12em;
  font-size: 2.8rem;
}
.step__title::before, .step__title::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.step__title::before {
  margin-block-end: calc((1 - 1.2857142857) * 0.5em);
}
.step__title::after {
  margin-block-start: calc((1 - 1.2857142857) * 0.5em);
}
@media screen and (max-width: 768px) {
  .step__title {
    font-size: 2.4rem;
  }
}
.step__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .step__list {
    margin-top: 20px;
    gap: 25px;
  }
}
.step__item {
  position: relative;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .step__item {
    gap: 20px;
  }
}
.step__item:not(:last-of-type)::before {
  content: "";
  position: absolute;
  background: #0d3da9;
  display: inline-block;
  height: calc(100% + 50px);
  width: 1px;
  left: 25px;
  z-index: 0;
  top: 0;
}
.step__index {
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1/1;
  background: #0d3da9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-size: 2rem;
  color: var(--white);
}
.step__index::before, .step__index::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.step__index::before {
  margin-block-end: calc((1 - 1.8) * 0.5em);
}
.step__index::after {
  margin-block-start: calc((1 - 1.8) * 0.5em);
}
.step__contents {
  display: flex;
  background: var(--white);
  max-width: 1100px;
  width: 100%;
  padding: 40px;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .step__contents {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  .step__contents {
    padding: 20px;
  }
}
.step__image {
  width: 22.0588235294%;
}
@media screen and (max-width: 768px) {
  .step__image {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
}
.step__textbox {
  width: 73.5294117647%;
}
@media screen and (max-width: 768px) {
  .step__textbox {
    width: 100%;
  }
}
.step__text {
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
}
.step__text::before, .step__text::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.step__text::before {
  margin-block-end: calc((1 - 1.75) * 0.5em);
}
.step__text::after {
  margin-block-start: calc((1 - 1.75) * 0.5em);
}
.step__text--large {
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-size: 2rem;
}
.step__text--large::before, .step__text--large::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.step__text--large::before {
  margin-block-end: calc((1 - 1.4) * 0.5em);
}
.step__text--large::after {
  margin-block-start: calc((1 - 1.4) * 0.5em);
}
.step__text--large:nth-child(2) {
  margin-top: 10px;
}
.step__text:nth-child(2) {
  margin-top: 10px;
}
.step__text--mt {
  margin-top: 10px;
}
.step__note {
  color: #ff554d;
  margin-left: 100px;
  margin-top: 40px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .step__note {
    margin-left: 0;
  }
}

.contact {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
  margin-block: 60px 150px;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-block: 50px 80px;
  }
}
.contact__contents {
  background: var(--white);
  padding: 30px 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  border: 1px solid #737373;
}
@media screen and (max-width: 768px) {
  .contact__contents {
    padding: 20px;
  }
}
.contact__logo {
  max-width: 160px;
  width: 100%;
  margin-top: 40px;
}
.contact__text {
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
}
.contact__text::before, .contact__text::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.contact__text::before {
  margin-block-end: calc((1 - 1.75) * 0.5em);
}
.contact__text::after {
  margin-block-start: calc((1 - 1.75) * 0.5em);
}
.contact__tell {
  margin-top: 20px;
}
.contact__icon {
  width: 23px;
}
.contact__number {
  line-height: 1.2142857143;
  letter-spacing: 0.06em;
  font-size: 2.8rem;
}
.contact__number::before, .contact__number::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.contact__number::before {
  margin-block-end: calc((1 - 1.2142857143) * 0.5em);
}
.contact__number::after {
  margin-block-start: calc((1 - 1.2142857143) * 0.5em);
}
.contact__reception {
  margin-top: 16px;
  line-height: 2.1333333333;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  color: #737373;
}
.contact__reception::before, .contact__reception::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.contact__reception::before {
  margin-block-end: calc((1 - 2.1333333333) * 0.5em);
}
.contact__reception::after {
  margin-block-start: calc((1 - 2.1333333333) * 0.5em);
}
.contact__disc {
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
}
.contact__disc::before, .contact__disc::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.contact__disc::before {
  margin-block-end: calc((1 - 2) * 0.5em);
}
.contact__disc::after {
  margin-block-start: calc((1 - 2) * 0.5em);
}
/*# sourceMappingURL=style.css.map */
