/*----------- For beginners -----------*/
.fb_sec {
  background: url(../img/for_beginners/fou_bg.png) center center /cover no-repeat;
  position: relative;
  padding-top: 40px;
  padding-bottom: 200px;
}

.fb_sec::before {
  content: '';
  position: absolute;
  width: 100%;
  height: auto;
  background: url(../img/for_beginners/fou_bg_bottom.png) center center /contain no-repeat;
  aspect-ratio: 700/35;
  bottom: -2px;
  left: 0;
  z-index: 2;
}

.fb_sec::after {
  content: '';
  position: absolute;
  width: 466px;
  height: 222px;
  background: url(../img/for_beginners/fou_image_illust.png) center center /contain no-repeat;
  bottom: 0;
  left: calc(50% - 233px);
}

.fb_sec .text_box {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  margin: 0 145px;
  padding: 30px 20px 40px;
  text-align: center;
}

.fb_sec .orange_btn_arrow {
  width: 320px;
}

@media screen and (max-width: 991px) {
  .fb_sec .text_box {
    margin: 0;
  }
}

@media screen and (max-width: 575px) {
  .fb_sec {
    padding-bottom: 140px;
  }

  .fb_sec::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 142px;
    background: url(../img/for_beginners/fou_image_illust.png) center center /contain no-repeat;
    bottom: 0;
    left: calc(50% - 150px);
  }
}

/*----------- Flow of use -----------*/

.fou_sec .h2_box {
  margin-bottom: 64px;
}

.fou_step .step_lists {
  display: flex;
  gap: 34px;
}

.fou_step .step_lists li {
  background-color: #F3F7DE;
  border-radius: 12px;
  padding: 46px 20px 20px;
  width: calc((100% / 3) - 17px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.fou_step .step_lists li::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 30px;
  background: url(../img/common/arrow_t_orange.png) center center /contain no-repeat;
  right: -27px;
  top: calc(50% - 15px);
}

.fou_step .step_lists li:last-child:after {
  content: none;
}

.fou_step .step_lists li .step {
  position: absolute;
  top: -2.5rem;
  font-size: 250%;
}

.fou_step .step_lists li h3 {
  font-size: 125%;
  font-weight: 700;
}

.fou_step .step_lists li:nth-of-type(1)>img {
  width: 163px;
}

.fou_step .step_lists li:nth-of-type(2)>img {
  width: 209px;
}

.fou_step .step_lists li:nth-of-type(3)>img {
  width: 207px;
}

.fou_step .step_lists li .text_box {
  width: 100%;
  text-align: left;
}

.fou_step .step_lists li .text_box a {
  position: relative;
  display: inline-block;
}

.fou_step .step_lists li .text_box a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #FF7600;
  left: 0;
  bottom: 0;
}

.fou_step .step_lists li .text_box a:hover::before {
  opacity: 0;
}

@media screen and (max-width: 575px) {
  .fou_step .step_lists {
    flex-wrap: wrap;
    gap: 40px;
  }

  .fou_step .step_lists li {
    width: 100%;
  }

  .fou_step .step_lists li::after {
    transform: rotate(90deg);
    bottom: -15px;
    left: calc(50% - 15px);
    right: auto;
    top: auto;
  }
}

/*----------- faq -----------*/

.faq_box {
  padding: 0 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq_list {
  background-color: #f7f7f7;
  border-radius: 4px;
  width: 100%;
}

button.faq_Q {
  padding: 20px 40px;
  width: 100%;
  display: block;
  position: relative;
  border: none;
}

button.faq_Q::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #FF7600;
  border-radius: 4px;
  right: 22px;
  top: 46px;
  transition: 0.3s;
}

button.faq_Q::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #FF7600;
  border-radius: 4px;
  right: 22px;
  top: 46px;
  transform: rotate(90deg);
  transition: 0.3s;
}

button.faq_Q[aria-expanded="true"]::after {
  transform: rotate(0deg);
}

button.faq_Q span {
  position: relative;
  font-size: 112.5%;
  font-weight: 700;
}

button.faq_Q span::before {
  content: 'Q';
  font-family: "Caveat", cursive, sans-serif;
  font-size: 150%;
  margin-right: 20px;
  color: #FF7600;
}

.faq_A {
  padding: 0px 40px 20px 70px;
  width: 100%;
  display: block;
}

.faq_A span {
  position: relative;
  font-size: 100%;
}

.faq_A span::before {
  content: 'A';
  position: absolute;
  font-family: "Caveat", cursive, sans-serif;
  font-size: 150%;
  color: #ADC054;
  left: -1.4em;
  top: -8px;
}

@media screen and (max-width: 991px) {
  .faq_box {
    padding: 0 10px 40px;
  }
}

@media screen and (max-width: 575px) {
  .faq_box {
    padding: 0 10px 40px 0;
  }

  button.faq_Q {
    padding: 20px 40px 20px 20px;
  }

  .faq_A {
    padding: 0 20px 20px 54px;
  }
}

/*----------- LINE -----------*/
.line_box {
  background-color: #9CE8BC;
  border-radius: 12px;
  padding: 40px 100px;
  position: relative;
}

.line_box::before {
  content: '';
  position: absolute;
  width: 504px;
  height: 372px;
  background: url(../img/for_beginners/line_img.png) center center/contain no-repeat;
  right: 0;
  bottom: 0;
}

.line_box .h2_box {
  justify-content: flex-start;
  align-items: baseline;
}

.line_box .h2_box .caveat_font {
  color: #414141;
}

.line_box .btn_wrap {
  justify-content: flex-start;
}

.line_btn {
  padding: 6.5px 20px;
  width: 240px;
  background: #05c656;
  border: 2px solid #fff;
  color: #fff;
  padding-right: 46px;
  position: relative;
  text-align: center;
}

.line_btn:hover {
  background: #fff;
  color: #05c656;
}

.line_btn::before {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right:20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.7rem;
  transition: 0.3s;
}

.line_btn:hover::before {
  font-size: 0.8rem;
  color: #05c656;
}

@media screen and (max-width: 1399px) {
  .line_box::before {
    width: 338px;
    height: 250px;
    background: url(../img/for_beginners/line_img.png) center center/contain no-repeat;
    opacity: 0.6;
  }

  .line_box .text_box {
    position: relative;
    text-shadow: #fff 1px 1px 0px, #fff -1px 1px 0px,
      #fff 1px -1px 0px, #fff -1px -1px 0px;
  }
}

@media screen and (max-width: 991px) {
  .line_box {
    padding: 40px 20px;
  }
}