/*! Writen  by SCSS */
.inner_main .main_bg {
  height: auto;
}
.inner_main .page_mv img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/840;
}
@media screen and (max-width: 768px) {
  .inner_main .page_mv img {
    aspect-ratio: 828/1180;
  }
}

.page_ttl_wrap .page_read {
  margin-top: clamp(40px, 5vw, 60px);
}

.referral_section {
  padding: clamp(40px, 5vw, 60px) 0;
}

.benefit_detail {
  background: rgba(223, 180, 3, 0.2);
  padding-bottom: clamp(50px, 5.834vw, 70px);
}

.referral_ttl {
  font-weight: bold;
  font-size: clamp(18px, 2.167vw, 26px);
  border-bottom: 1px solid #ccc;
  color: #eb612a;
  padding-bottom: 20px;
  margin-bottom: 40px;
  line-height: 1;
}

.benefit_detail_list {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .benefit_detail_list {
    display: grid;
    place-content: center;
    justify-items: center;
    grid-template-columns: minmax(0, max-content);
  }
}
@media screen and (max-width: 480px) {
  .benefit_detail_list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.benefit {
  width: 100%;
  max-width: 577px;
  border: 1px solid #eb612a;
  padding: 24px 32px;
  box-shadow: 0px 8px 0px rgba(255, 168, 64, 0.4);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 480px) {
  .benefit {
    justify-content: center;
    padding: 20px 24px;
    gap: 16px;
  }
}
.benefit:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0 auto;
  content: "";
  background: url(../images/referral/benefit_ribbon.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 95px;
  aspect-ratio: 95/89;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .benefit:before {
    width: clamp(60px, 12.37vw, 95px);
  }
}
.benefit_contract_amount {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .benefit_contract_amount {
    font-size: clamp(18px, 4.167vw, 32px);
  }
}
@media screen and (max-width: 480px) {
  .benefit_contract_amount {
    font-size: clamp(16px, 5vw, 24px);
    gap: 8px;
  }
}
.benefit_contract_amount_range {
  font-weight: normal;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .benefit_contract_amount_range {
    font-size: clamp(16px, 2.605vw, 20px);
  }
}
@media screen and (max-width: 480px) {
  .benefit_contract_amount_range {
    font-size: clamp(12px, 3.334vw, 16px);
  }
}
.benefit_desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 44px;
  color: #eb612a;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .benefit_desc {
    font-size: clamp(32px, 5.73vw, 44px);
  }
}
@media screen and (max-width: 480px) {
  .benefit_desc {
    font-size: clamp(24px, 6.667vw, 32px);
  }
}
.benefit_desc_price {
  font-size: 68px;
  padding-bottom: 4%;
  margin-bottom: 4%;
  background: linear-gradient(transparent 75%, rgba(255, 209, 5, 0.3) 75%);
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .benefit_desc_price {
    font-size: clamp(44px, 8.855vw, 68px);
  }
}
@media screen and (max-width: 480px) {
  .benefit_desc_price {
    font-size: clamp(34px, 10vw, 48px);
  }
}
.benefit_desc_price::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -7%;
  display: block;
  width: 33px;
  aspect-ratio: 33/27;
  background: url(../images/referral/emphasis_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .benefit_desc_price::before {
    top: -16%;
    left: -8%;
    width: 20px;
  }
}
@media screen and (max-width: 480px) {
  .benefit_desc_price::before {
    top: -16%;
    left: -8%;
  }
}
.benefit_desc_unit {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .benefit_desc_unit {
    font-size: clamp(18px, 5.209vw, 40px);
  }
}
@media screen and (max-width: 480px) {
  .benefit_desc_unit {
    font-size: clamp(16px, 3.75vw, 18px);
  }
}

.introduction_flow {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .introduction_flow {
    gap: 50px;
  }
}
.introduction_flow .item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  padding: 32px 40px;
  gap: 48px;
  background: #ffffff;
  border: 1px solid #ffa840;
  box-shadow: 0px 8px 0px rgba(255, 168, 64, 0.3);
  margin-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .introduction_flow .item {
    grid-template-columns: 120px minmax(0, 1fr);
    padding: 28px 20px;
    gap: 14px 24px;
  }
}
@media screen and (max-width: 480px) {
  .introduction_flow .item {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}
.introduction_flow .item:after {
  position: absolute;
  left: 0;
  bottom: -62px;
  right: 0;
  display: block;
  margin: 0 auto;
  width: 50px;
  aspect-ratio: 50/30;
  height: auto;
  background: #eb612a;
  content: "";
  mask-image: url(../images/referral/rounded-arrow-bottom.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (max-width: 480px) {
  .introduction_flow .item:after {
    width: 30px;
    bottom: -43px;
  }
}
.introduction_flow .item:last-of-type:after {
  content: none;
}
.introduction_flow .image-wrapper {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  .introduction_flow .image-wrapper {
    max-width: 240px;
    margin: 0 auto;
  }
}
.introduction_flow .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.introduction_flow .desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .introduction_flow .desc {
    gap: 20px;
  }
}
.introduction_flow .ttl {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #eb612a;
  font-weight: bold;
  font-size: clamp(20px, 2.167vw, 26px);
}
@media screen and (max-width: 768px) {
  .introduction_flow .ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media screen and (max-width: 480px) {
  .introduction_flow .ttl {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: clamp(16px, 4.167vw, 20px);
  }
}
.introduction_flow .step-no {
  background: #eb612a;
  padding: 8px 10px 10px;
  font-size: clamp(16px, 1.667vw, 20px);
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .introduction_flow .step-no {
    font-size: clamp(14px, 3.334vw, 16px);
  }
}
.introduction_flow .text {
  font-size: clamp(16px, 1.667vw, 20px);
}
@media screen and (max-width: 480px) {
  .introduction_flow .text {
    font-size: clamp(14px, 3.334vw, 16px);
  }
}

.cta_button .link {
  display: block;
  max-width: 280px;
  margin: 0 auto;
  padding: 29px 35px;
  font-size: clamp(18px, 2.167vw, 26px);
  text-align: center;
  line-height: 1;
  font-weight: bold;
  background: #eb612a;
  border: 1px solid #eb612a;
  border-radius: 40px;
  color: #fff;
  transition: 0.3s all ease-in-out 0s;
}
body:not(.mobile) .cta_button .link:hover {
  color: #eb612a;
  background: #fff;
}/*# sourceMappingURL=referral.css.map */