.w-main {
  width: var(--w-main);
  margin: 0 auto;
}

.auto-wrap {
  white-space: pre-wrap;
}

/* text */
.one-point-circle {
  position: relative;
}

.one-point-circle::before {
  content: '';
  position: absolute;
  top: -15px;
  left: calc(50% - 0.15em);
  background-color: var(--blue-dark);
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.double-underline {
  position: relative;
}

.double-underline::before,
.double-underline::after {
  content: '';
  position: absolute;
  width: calc(100% - 0.05em);
  height: 2px;
  background-color: var(--white);
  left: 0;
  bottom: -0.2em;
}

.double-underline::after {
  bottom: -0.4em;
}

/* heading */
.main-heading {
  position: relative;
  color: var(--blue-dark);
}

.main-heading::before,
.main-heading::after {
  content: '';
  position: absolute;
  background-color: var(--blue-dark);
  height: 3px;
  width: 60px;
  bottom: -30px;
  left: 50%;
  border-radius: 3px;
  transform: translateX(-50%);
}

.main-heading::after {
  bottom: -40px;
  width: 30px;
}

.one-point-sub-heading {
  position: relative;
}

.one-point-sub-heading::before,
.one-point-sub-heading::after {
  content: "";
  height: 150%;
  width: 2px;
  position: absolute;
  background-color: var(--black);
}

.one-point-sub-heading::before {
  left: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}

.one-point-sub-heading::after {
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
}

/* block */
.hashtag {
  display: inline-block;
  color: var(--blue);
  background-color: var(--blue-light);
  line-height: 2.5;
  padding: 0 15px;
  border-radius: 6px;
}

.rect-block {
  background-color: var(--blue-dark);
  color: var(--white);
  line-height: 2.6;
  text-align: center;
}

/* arrow */
.down-arrow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: -24px 0;
}
.down-arrow-wrapper svg {
  color: var(--blue-dark);
  width: 50px;
  stroke-width: 3px;
}

.down-arrow-wrapper svg:first-child {
  transform: translateY(24px);
}

.down-arrow-wrapper svg:last-child {
  transform: translateY(-24px);
}

/* button */
.cta-wrapper {
  display: grid;
  grid-template-columns: auto;
  width: max-content;
  margin: 0 auto;
}

.cta1 .btn {
  background: linear-gradient(to right, var(--blue), var(--blue-darker));
  color: var(--white);
  border-radius: 50px;
  line-height: 2.8;
  display: flex;
  justify-content: center;
}

.cta2 .btn {
  background: var(--white);
  color: var(--black);
  border-radius: 6px;
  line-height: 2.8;
  display: flex;
  justify-content: center;
}

/* other */
.num-of-list {
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  font-size: var(--p);
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  letter-spacing: 0;
  background-color: var(--blue-dark);
  color: var(--white);
}

/* fukidashi */
.fukudashi-wrapper {
  display: flex;
  justify-content: center;
}

.fukudashi-wrapper .desc {
  padding: 20px 46px 24px;
  border-radius: 48px;
  border: 3px solid #242424;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.fukudashi-wrapper .desc p {
  line-height: 2.2;
}

.triangle-of-fukudashi {
  position: absolute;
  left: 3%;
  top: -15%;
}

.part1-of-fukudashi,
.part2-of-fukudashi,
.part3-of-fukudashi,
.part4-of-fukudashi {
  position: absolute;
  background-color: var(--white);
  display: inline-block;
}

.part1-of-fukudashi {
  width: 15%;
  height: 30px;
  top: 0;
  left: 0;
}

.part3-of-fukudashi {
  left: 18%;
  bottom: -3%;
  width: 10%;
  height: 5%;
}

.part4-of-fukudashi {
  right: -1%;
  bottom: 3%;
  width: 7%;
  height: 20%;
  transform: rotate(-45deg);
}

.fukudashi-left,
.fukudashi-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fukudashi-left {
  margin-right: 80px;
}

.fukudashi-right {
  margin-left: 80px;
}

.fukudashi-left > span,
.fukudashi-right > span {
  display: inline-block;
  height: 3px;
  width: 40px;
  border-radius: 2px;
  background-color: var(--black);
}

.fukudashi-left > span:first-child,
.fukudashi-right > span:first-child {
  margin-bottom: 60px;
}

.fukudashi-left > span:first-child,
.fukudashi-right > span:last-child {
  transform: rotate(15deg);
}

.fukudashi-left > span:last-child,
.fukudashi-right > span:first-child {
  transform: rotate(-15deg);
}