.lc-container {
  color: var(--cc-black-sm);
  background-color: var(--cc-gray-50);
  margin: auto;
  padding-block: 0 calc(80 * var(--sp-w));
}

.lc-mv {
  position: relative;
  overflow: hidden;
}

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

.lc-mv__mockup {
  display: block;
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 100%;
}

.lc-mv__mockup img {
  object-fit: contain;
  object-position: bottom center;
}

.lc-mv__label-1 {
  display: block;
  position: absolute;
  bottom: 34%;
  left: 4%;
  width: clamp(100px, 28vmin, 280px);
  height: clamp(100px, 28vmin, 280px);
}

.lc-mv__label-2 {
  display: block;
  position: absolute;
  bottom: 38%;
  right: 3%;
  width: clamp(100px, 26vmin, 260px);
  height: clamp(125px, 32.5vmin, 315px);
}

@media (min-width: 1024px) {
  .lc-mv__label-1,
  .lc-mv__label-2,
  .lc-mv__mockup {
    display: none;
  }
}

.lc-mv__link {
  position: absolute;
  top: 23%;
  left: 15%;
  bottom: initial;
  width: 69%;
  height: 7%;
  z-index: 1;
}

.lc-content {
  padding-inline: 16px;
}

.lc-content__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-block: 40px;
}
.lc-content__links-item {
  position: relative;
  background: #fff;
  border-left: 4px solid #880000 !important;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--ff-zen);
  color: var(--cc-black-sm);
  transition: 0.2s ease-out;
  list-style: none;
}
.lc-content__links-item::before {
  content: "";
  background: #fff;
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  opacity: 0;
}
.lc-content__links-item::after {
  content: "";
  background: #880000;
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  opacity: 0;
}
.lc-content__links-item:hover {
  border: 1px solid var(--cc-red-700);
  transition: 0.2s ease-out;
}
.lc-content__links-item:hover::before {
  animation-name: arrow-border6;
  animation-duration: 0.25s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}
.lc-content__links-item:hover::after {
  animation-name: arrow-border6;
  animation-duration: 0.25s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
  z-index: 2;
}
.lc-content__links-item a {
  position: relative;
  display: block;
  padding: 24px;
  padding-right: 58px;
  font-size: clamp(18px, 1.25vw + 4px, 20px);
  height: 100%;
}
.lc-content__links-item a:before {
  position: absolute;
  width: 32px;
  height: 44px;
  content: "";
  display: block;
  padding: 9.911px 4.5px 10.089px 3.5px;
  border-radius: 3.2px;
  background: var(--Red-700-Primary, #800);
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.lc-content__links-item a:after {
  position: absolute;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  content: "";
  display: block;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 50%;
  right: 36px;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .lc-container {
    padding-block: 112px 160px;
  }
  .lc-mv__link {
    bottom: 21%;
    left: 7%;
    width: 38%;
    height: 18%;
    top: initial;
  }
  .lc-content {
    padding-inline: 108px;
  }
  .lc-content__links {
    flex-direction: row;
    gap: 24px;
    margin-block: 64px;
  }
  .lc-content__links-item {
    flex: 1;
    border-radius: 4px;
  }
  .lc-content__links-item a:hover:after {
    transform: translateY(calc(-50% + 8px)) rotate(45deg);
  }
}
@media (min-width: 1440px) {
  .lc-content__links-item a {
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  .lc-content__links {
    gap: calc(8 * var(--sp-w));
  }
  .lc-content__links-item {
    border-left: calc(4 * var(--sp-w)) solid #880000 !important;
    border: calc(1 * var(--sp-w)) solid transparent;
    border-radius: calc(4 * var(--sp-w));
  }
  .lc-content__links-item::before {
    left: calc(-4 * var(--sp-w));
    width: calc(4 * var(--sp-w));
    height: 100%;
    border-radius: calc(4 * var(--sp-w)) 0 0 calc(4 * var(--sp-w));
    opacity: 0;
  }
  .lc-content__links-item::after {
    content: "";
    background: #880000;
    position: absolute;
    left: calc(-4 * var(--sp-w));
    top: 0;
    width: calc(4 * var(--sp-w));
    height: 100%;
    border-radius: calc(4 * var(--sp-w)) 0 0 calc(4 * var(--sp-w));
    opacity: 0;
  }
  .lc-content__links-item:hover {
    border: calc(1 * var(--sp-w)) solid var(--cc-red-700);
    transition: 0.2s ease-out;
  }
  .lc-content__links-item:hover::before {
    animation-name: arrow-border6;
    animation-duration: 0.25s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: forwards;
  }
  .lc-content__links-item:hover::after {
    animation-name: arrow-border6;
    animation-duration: 0.25s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
    z-index: 2;
  }
  .lc-content__links-item a {
    padding: calc(13 * var(--sp-w)) calc(60 * var(--sp-w))
      calc(13 * var(--sp-w)) calc(20 * var(--sp-w));
    font-size: 16px;
  }
  .lc-content__links-item a:before {
    width: 32px;
    height: 40px;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
  }
  .lc-content__links-item a:after {
    width: 7px;
    height: 7px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    border-right-width: 1px;
    border-bottom-width: 1px;
  }
}

.feature-block {
  background-color: #ffffff;
  margin: 80px auto 0 auto;
  border: 1px solid var(--cc-stroke-wb);
  border-radius: 8px;
}
.feature-block:first-of-type {
  margin-top: 64px;
}
@media (max-width: 1023px) {
  .feature-block {
    margin-top: calc(64 * var(--sp-w));
    padding: 0;
    border: calc(1 * var(--sp-w)) solid var(--cc-stroke-wb);
    border-radius: calc(4 * var(--sp-w));
  }
  .feature-block:first-of-type {
    margin-top: 40px;
  }
}

.feature-block__inner {
  width: 1016px;
  margin: auto;
  padding: 40px 0 48px 0;
  position: relative;
  border: none;
}
.feature-block__inner::before {
  content: "";
  background: #880000;
  width: 56px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .feature-block__inner {
    width: 93.02%;
    padding-inline: 40px;
  }
}
@media (max-width: 1023px) {
  .feature-block__inner {
    width: 93.02%;
    margin: auto;
    padding: calc(24 * var(--sp-w)) 0 calc(40 * var(--sp-w)) 0;
  }
  .feature-block__inner::before {
    left: 0;
    width: calc(56 * var(--sp-w));
  }
}

.feature-block__heading {
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .feature-block__heading {
    margin-bottom: 24px;
  }
}

.feature-block__heading span {
  font-size: 18px;
  font-family: var(--ff-zen);
  color: var(--cc-red-700);
  padding-bottom: 8px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .feature-block__heading span {
    font-size: calc(14 * var(--sp-w));
    padding-bottom: 0;
  }
}

.feature-block__heading h2 {
  font-size: 40px;
  font-family: var(--ff-zen);
  padding-bottom: 24px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .feature-block__heading h2 {
    font-size: calc(24 * var(--sp-w));
    padding-bottom: 12px;
  }
}

.feature-block__heading p {
  font-size: 16px;
}
@media (max-width: 1023px) {
  .feature-block__heading p {
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  .lc-content__support-container {
    padding-bottom: 12px;
  }
}

.lc-content__support-points {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lc-content__support-points-list {
  display: flex;
  justify-content: space-between;
  gap: 5.51%;
}
@media (max-width: 1023px) {
  .lc-content__support-points-list {
    display: flex;
    flex-direction: column;
    gap: calc(8 * var(--sp-w));
  }
}

.lc-content__support-point {
  flex: 1;
  display: flex;
  flex-direction: column;
  opacity: 1;
  position: relative;
}
@media (min-width: 1024px) {
  .lc-content__support-point-right {
    display: contents;
  }
}
@media (max-width: 1023px) {
  .lc-content__support-point {
    display: flex;
    flex-direction: row-reverse;
    gap: calc(16 * var(--sp-w));
    align-items: center;
  }
  .lc-content__support-point-right {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .lc-content__support-point-right {
    display: contents;
  }
}

.lc-content__support-point-number,
.lc-content__rewards-point-number {
  font-size: 18px;
  font-family: "Marcellus", serif;
  color: var(--cc-red-600);
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .lc-content__support-point-number,
  .lc-content__rewards-point-number {
    order: 1;
  }
}
@media (max-width: 1023px) {
  .lc-content__support-point-number,
  .lc-content__rewards-point-number {
    font-size: 16px;
    padding: 0;
    margin-bottom: calc(4 * var(--sp-w));
    margin-top: 0;
    line-height: 1.2;
  }
}

.lc-content__support-point-number span,
.lc-content__rewards-point-number span {
  font-size: 24px;
  margin-left: 4px;
}
@media (max-width: 1023px) {
  .lc-content__support-point-number span,
  .lc-content__rewards-point-number span {
    font-size: 18px;
    margin-left: calc(4 * var(--sp-w));
  }
}

.lc-content__support-point-image {
  padding: 16px 52px;
  background-color: #eeeeee;
}
@media (min-width: 1024px) {
  .lc-content__support-point-image {
    margin-top: 8px;
    order: 2;
  }
}
@media (max-width: 1023px) {
  .lc-content__support-point-image {
    order: 1;
    margin-top: 0;
    padding: 16px;
    flex-shrink: 0;
    width: 96px;
    height: 96px;
  }
}

.lc-content__support-point-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .lc-content__support-point-content {
    order: 3;
  }
}
@media (max-width: 1023px) {
  .lc-content__support-point-content {
    margin-top: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
  }
}

.lc-content__support-point-title {
  font-family: var(--ff-zen);
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .lc-content__support-point-title {
    margin-top: 8px;
  }
}
@media (max-width: 1023px) {
  .lc-content__support-point-title {
    font-size: 18px;
    margin-top: calc(4 * var(--sp-w));
    margin-bottom: calc(4 * var(--sp-w));
  }
  .lc-content__support-point-content .lc-content__support-point-title {
    margin-top: 0;
    margin-bottom: calc(4 * var(--sp-w));
  }
}

.lc-content__support-point-text {
  font-family: var(--ff-noto-sans);
  font-size: 16px;
}
@media (max-width: 1023px) {
  .lc-content__support-point-text {
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  .lc-content__steps-container {
    padding-bottom: 12px;
  }
}

.lc-content__steps-points {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lc-content__steps-points-list {
  display: flex;
  justify-content: space-between;
  gap: 5.51%;
}
@media (max-width: 1023px) {
  .lc-content__steps-points-list {
    display: flex;
    flex-direction: column;
    gap: calc(8 * var(--sp-w));
  }
}

.lc-content__steps-point {
  flex: 1;
  display: flex;
  flex-direction: column;
  opacity: 1;
  position: relative;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .lc-content__steps-point-right {
    display: contents;
  }
}
@media (max-width: 1023px) {
  .lc-content__steps-point {
    display: flex;
    gap: 8px;
  }
  .lc-content__steps-point-right {
    display: flex;
    flex: 1;
    gap: 0;
    align-items: center;
    gap: 8px;
  }
}
@media (min-width: 1024px) {
  .lc-content__steps-point-right {
    display: contents;
  }
}

.lc-content__steps-point-number {
  font-size: 18px;
  font-family: "Marcellus", serif;
  color: var(--cc-red-600);
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .lc-content__steps-point-number {
    font-size: 14px;
    padding: 0;
    margin-bottom: calc(4 * var(--sp-w));
    margin-top: 0;
    line-height: 1.2;
  }
}

.lc-content__steps-point-number span {
  font-size: 24px;
  margin-left: 4px;
}
@media (max-width: 1023px) {
  .lc-content__steps-point-number span {
    font-size: 20px;
    margin-left: calc(4 * var(--sp-w));
  }
}

@media (min-width: 1024px) {
  .lc-content__steps-point-image {
    margin-top: 8px;
  }
}
@media (max-width: 1023px) {
  .lc-content__steps-point-image {
    margin-top: 0;
    flex-shrink: 0;
  }
}

.lc-content__steps-point-image a {
  display: block;
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
  overflow: hidden;
}

.lc-content__steps-point-image a picture,
.lc-content__steps-point-image a img {
  display: block;
}

.lc-content__steps-point-image a:hover {
  border: 1px solid var(--cc-red-700);
}

@media (max-width: 1023px) {
  .lc-content__steps-point-image a {
    border: calc(1 * var(--sp-w)) solid transparent;
  }

  .lc-content__steps-point-image a:hover {
    border: calc(1 * var(--sp-w)) solid var(--cc-red-700);
  }
}

.lc-content__steps-point-content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .lc-content__steps-point-content {
    margin-top: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
  }
}

.lc-content__steps-point-title {
  font-family: var(--ff-zen);
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .lc-content__steps-point-title {
    margin-top: 8px;
  }
}
@media (max-width: 1023px) {
  .lc-content__steps-point-title {
    font-size: 18px;
    margin-top: calc(4 * var(--sp-w));
    margin-bottom: calc(8 * var(--sp-w));
  }
}

.lc-content__steps-point-text {
  font-family: var(--ff-noto-sans);
  font-size: 16px;
}
@media (max-width: 1023px) {
  .lc-content__steps-point-text {
    font-size: 14px;
  }
}

.lc-content__steps-point:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -29.65px;
  border-right: 1px solid var(--cc-gray-500);
  border-bottom: 1px solid var(--cc-gray-500);
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(-45deg);
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .lc-content__steps-point:not(:last-child)::after {
    right: -15%;
  }
}
@media (max-width: 1023px) {
  .lc-content__steps-point:not(:last-child)::after {
    content: "";
    display: block;
    left: 50%;
    top: 94.06%;
    bottom: calc(-23 * var(--sp-w));
    transform: translateX(-50%) rotate(45deg);
    width: calc(8 * var(--sp-w));
    height: calc(8 * var(--sp-w));
    border-right: calc(1 * var(--sp-w)) solid var(--cc-gray-500);
    border-bottom: calc(1 * var(--sp-w)) solid var(--cc-gray-500);
  }

  .lc-content__steps-point:not(:last-child) {
    padding-bottom: calc(33.5 * var(--sp-w));
  }
}

@media (max-width: 1023px) {
  .lc-content__rewards-container {
    padding-bottom: 0;
  }
}

.lc-content__rewards-points-list {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .lc-content__rewards-points-list {
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid #e5e5e5;
  }
}

.lc-content__rewards-point {
  display: flex;
  position: relative;
  border-top: 1px solid #e5e5e5;
  padding-right: 0;
  padding-left: 0;
  padding-top: 32px;
  padding-bottom: 0;
  gap: 18px;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .lc-content__rewards-point {
    padding-top: 32px;
    padding-inline: 24px;
    gap: 24px;
  }
}

.lc-content__rewards-point-left {
  height: 100%;
  padding-bottom: 8px;
  width: 55%;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .lc-content__rewards-point-left {
    padding-bottom: 32px;
  }
}
@media (max-width: 1023px) {
  .lc-content__rewards-point-left {
    width: 49%;
  }
}

.lc-content__rewards-point-image {
  align-self: flex-end;
}

.lc-content__rewards-point::before {
  content: "";
  background: #880000;
  width: 56px;
  height: 4px;
  position: absolute;
  left: 24px;
  top: 0;
}
@media (min-width: 1024px) {
  .lc-content__rewards-point:nth-child(odd) {
    border-right: 1px solid #e5e5e5;
  }
}
@media (max-width: 1023px) {
  .lc-content__rewards-point::before {
    width: calc(56 * var(--sp-w));
    left: 0;
  }
}

.lc-content__rewards-point-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding-bottom: 8px;
  height: 90%;
}
@media (min-width: 1024px) {
  .lc-content__rewards-point-content {
    padding-bottom: 32px;
    height: 100%;
  }
}

.lc-content__rewards-point-title {
  font-family: var(--ff-zen);
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 12px;
}

.lc-content__rewards-point-title--nowrap {
  white-space: nowrap;
}

.lc-content__rewards-point-text-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lc-content__rewards-point-text {
  font-family: var(--ff-noto-sans);
  font-size: 12px;
}

.lc-content__rewards-point-text a {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--cc-red-700);
  text-decoration: underline;
  margin-top: 8px;
  width: fit-content;
  transition: all 0.2s ease-out;
}

.lc-content__rewards-point-text a:hover {
  opacity: 0.6;
}

@media (max-width: 1023px) {
  .lc-content__rewards-point-text a {
    margin-top: 4px;
  }
}

.lc-content__rewards-point-note {
  font-family: var(--ff-noto-sans);
  font-size: 10px;
  color: var(--cc-gray-700);
  text-align: right;
  padding-top: 16px;
}

@media (min-width: 1024px) {
  .lc-content__rewards-point-title {
    font-size: 24px;
    margin-top: 8px;
    margin-bottom: 24px;
  }

  .lc-content__rewards-point-text {
    font-size: 14px;
  }

  .lc-content__rewards-point-note {
    font-size: 12px;
    padding-top: 0;
  }
}

.lc-content__voice-container {
  padding-bottom: 0;
}

.lc-content__voice-image {
  width: 100%;
  display: block;
}
@media (max-width: 1023px) {
  .lc-content__voice-image {
    padding-bottom: 4px;
  }
}

.lc-content__voice-image picture {
  display: block;
  width: 100%;
}

.lc-content__voice-image img {
  width: 100%;
  height: auto;
  display: block;
}
