sup {
  font-size: 50%;
  line-height: 1;
  vertical-align: super;
}

/* ----------------------------------------
  keyframes
---------------------------------------- */
@keyframes arrowBump {
  0% {
    transform: translate(0, -50%);
  }
  40% {
    transform: translate(5px, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
/* ----------------------------------------
  header
---------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  padding: 27px 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.logo {
  width: 237px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #111;
  min-width: 0;
}

.logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.header-logo {
  width: 237px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #111;
  min-width: 0;
}

.header-logo-img {
  width: 100%;
}
@media (max-width: 767px) {
  /* SPヘッダー */
  .header {
    padding: 19px 15px 19px 20px;
  }

  .logo {
    width: 125px;
  }

  .header-actions {
    gap: 17px;
  }
}
/* ----------------------------------------
  footer
---------------------------------------- */
.footer {
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-main {
  background: #F72E52;
  padding: 30px 0;
  border-top: 4px solid #DD0028;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 767px) {
  .footer-main {
    background: #F72E52;
    padding: 16px 0 17px;
    font-size: 12px;
  }
  .footer-inner {
    max-width: 100%;
    padding: 0 20px;
  }
}
/* ----------------------------------------
  MV
---------------------------------------- */
.mv {
  overflow: hidden;
}
.mv-inner {
  height: 636px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .mv-inner {
    height: auto;
    padding: 0;
  }
}
.mv-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
}
.mv-img-deco {
  width: 100%;
  height: 84px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .mv-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
  }
  .mv-img-deco {
    height: auto;
  }
}
.mv + .point-note {
  width: 1200px;
  margin: 30px auto 0;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .mv + .point-note {
    width: auto;
    max-width: 100%;
    margin: 20px auto 0;
    padding: 0 20px;
  }
}
/* ----------------------------------------
  Slider
---------------------------------------- */
.slider {
  background: #F7F7F7;
  padding: 10px 0 0;
}
@media (max-width: 767px) {
  .slider {
    padding: 10px 10px 0;
  }
}

.slider-inner {
  width: calc(600px + 112px);
  margin: 0 auto;
  position: relative;
  padding: 0 56px;
}
@media (max-width: 767px) {
  .slider-inner {
    width: 355px;
    max-width: 100%;
    padding: 0;
  }
}

.slider-swiper {
  overflow: hidden;
}

.slider-link {
  display: block;
  transition: opacity 0.3s ease;
}
.slider-link:hover {
  opacity: 0.8;
}

.slider-img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .slider-img {
    display: block;
  }
}

/* 矢印 */
.slider-prev,
.slider-next {
  width: 10px;
  height: 20px;
  color: transparent;
  position: absolute;
  top: 56% !important;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 767px) {
  .slider-prev,
  .slider-next {
    display: none;
  }
}

.slider-prev {
  left: 18px !important;
  background-image: url("/assets/img/top/shared/icon-slider-prev.svg");
}

.slider-next {
  right: 18px !important;
  background-image: url("/assets/img/top/shared/icon-slider-next.svg");
}

.slider-prev::after,
.slider-next::after {
  /* Swiperのデフォルト矢印を消す */
  content: "";
}

/* ドット */
.slider-pagination {
  position: static;
  text-align: center;
  transform: translateY(-3px);
}
@media (max-width: 767px) {
  .slider-pagination {
    padding: 2px 0;
    transform: translateY(-2px);
  }
}

.slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.35;
  background: #F72E52;
  opacity: 0.2;
}

.slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #F72E52;
}

/* ----------------------------------------
  Floating
---------------------------------------- */
.floating {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  z-index: 60;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.floating__btn {
  width: 340px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(180deg, #1474FA 0%, #105AC2 100%);
  border: 4px solid #6DA6E0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .floating__btn {
    width: 295px;
    max-width: 92%;
    height: 50px;
    margin: 0 auto;
    gap: 12px;
    font-size: 18px;
    border: 3px solid #6DA6E0;
  }
}

.floating__btn:hover {
  opacity: 0.9;
}

.floating__btn:hover .floating__icon {
  animation: floatingIconDown 520ms ease-in-out;
  will-change: transform;
}

@keyframes floatingIconDown {
  0% {
    transform: translateY(-4px) rotate(90deg);
  }
  40% {
    transform: translateY(-1px) rotate(90deg); /* 下に3px */
  }
  100% {
    transform: translateY(-4px) rotate(90deg);
  }
}

.floating__icon {
  width: 8px;
  height: 14px;
  display: block;
  background: url("/assets/img/common/shared/icon-arrow-white.svg") no-repeat center / contain;
  transform: translateY(-4px) rotate(90deg);
  position: absolute;
  top: 22px;
  right: 27px;
}
@media (max-width: 767px) {
  .floating__icon {
    width: 7px;
    height: 12px;
    transform: translateY(-4px) rotate(90deg);
    position: absolute;
    top: 18px;
    right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating {
    transition: none;
  }
  .floating__btn:hover .floating__icon {
    animation: none;
  }
}

/* ----------------------------------------
  About
---------------------------------------- */
.about {
  padding: 75px 0 80px;
  margin-top: 45px;
  background: url("/assets/img/lp/p/bg-about.webp") no-repeat center top / auto auto;
}
@media (max-width: 767px) {
  .about {
    padding: 40px 0;
    margin-top: 20px;
    background: url("/assets/img/lp/s/bg-about.webp") no-repeat center top;
    background-size: 100%;
  }
}

@media (max-width: 767px) {
  .about .inner {
    padding: 0 20px;
  }
}

.about-catch {
  width: 364px;
  margin: 0 auto 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .about-catch {
    width: auto;
  }
}
.about-catch-img {
  width: 100%;
}
.about-cta {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.about-cta-lead-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin: 0 45px 60px 47px;
}
.about-cta-lead-flex-item__text {
  text-align: left;
  line-height: 3;
  background:
  radial-gradient(circle,#F72E52 1px,transparent 1px)
  left calc(3em) / 4px 2px repeat-x,
  radial-gradient(circle,#F72E52 1px,transparent 1px)
  left calc(6em) / 4px 2px repeat-x;
}
@media (max-width: 767px) {
  .about-cta-lead-flex {
    display: block;
    margin: 0 20px 0;
  }
  .about-cta-lead-flex-item {
    margin: 30px 0;
  }
  .about-cta-lead-flex-item__text {
    background:
    radial-gradient(circle,#F72E52 1px,transparent 1px)
    left calc(3em) / 4px 2px repeat-x,
    radial-gradient(circle,#F72E52 1px,transparent 1px)
    left calc(6em) / 4px 2px repeat-x,
    radial-gradient(circle,#F72E52 1px,transparent 1px)
    left calc(9em) / 4px 2px repeat-x;
    
  }
  .about-catch-lead-img {
    width: 100%;
  }
}
.about-buyback {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .about-buyback {
    margin-top: 60px;
  }
}
.buyback-title {
  background-color: #F72E52;
  border-radius: 20px 20px 0 0;
  margin-top: 30px;
  padding: 18px 0;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 767px) {
  .buyback-title {
    border-radius: 10px 10px 0 0;
    margin-top: 20px;
    padding: 15px 0;
    font-size: 20px;
  }
}
.item-name-width,
.item-price-width {
  width: 25%;
}
.item-capacity-width {
  width: 50%;
}
@media (max-width: 767px) {
  .item-name-width {
    width: 34%;
  }
  .item-capacity-width {
    width: 30%;
  }
  .item-price-width {
    width: 36%;
  }
}
.buyback-price-list {
  width: 100%;
}
@media (max-width: 767px) {
}
.buyback-price-list-head {
  background-color: #F7F7F7;
  font-weight: bold;
  border-bottom: 1px solid #E0E0E0;
}
.buyback-price-list-head__item,
.buyback-price-list__item .buyback-price-list__item-name,
.buyback-price-list__item .buyback-price-list__item-capacity,
.buyback-price-list__item .buyback-price-list__item-price {
  padding: 18px 0;
  vertical-align: middle;
}
.buyback-price-list-head__item.head__item-name,
.buyback-price-list__item .buyback-price-list__item-name {
  padding-left: 40px;
  text-align: left;
}
.buyback-price-list__item {
  border-bottom: 1px solid #E0E0E0;
}
.buyback-price-list__item:nth-of-type(odd) {
  background-color: #F7F7F7;
}
.buyback-price-list__item .buyback-price-list__item-price {
  padding-right: 40px;
  font-family: "Rubik", "Noto Sans JP", system-ui, -apple-system;
  text-align: right;
  font-size: 36px;
  font-weight: 600;
  color: #F7941D;
}
.buyback-price-list__item .buyback-price-list__yen {
  font-size: 20px;
  font-weight: bold;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .buyback-price-list {
    font-size: 14px;
  }
  .buyback-price-list-head__item,
  .buyback-price-list__item .buyback-price-list__item-nam,
  .buyback-price-list__item .buyback-price-list__item-capacity,
  .buyback-price-list__item .buyback-price-list__item-price {
    padding: 15px 0;
  }
  .buyback-price-list-head__item.head__item-name {
    padding-left: 0;
    text-align: center;
  }
  .buyback-price-list__item .buyback-price-list__item-name {
    padding-left: 15px;
    text-align: left;
  }
  .buyback-price-list__item .buyback-price-list__item-price {
    padding-right: 10px;
    font-size: 24px;
  }
  .buyback-price-list__item .buyback-price-list__yen {
    font-size: 14px;
  }
}
.about-primary {
  width: 440px;
  margin: 0 auto 46px;
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 999px;
  padding: 25px 56px 23px;
  background: linear-gradient(180deg, #1474FA 0%, #105AC2 100%);
  border: 4px solid #6DA6E0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .about-primary {
    width: 295px;
    max-width: 100%;
    margin-bottom: 25px;
    padding: 13px 0;
    border-width: 3px;
  }
}

.about-primary:hover {
  opacity: 0.8;
}

.about-primary:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .about-primary:hover::after {
    animation: none;
  }
}

.about-primary::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-white.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .about-primary::after {
    width: 6px;
    height: 14px;
    right: 15px;
    top: 48%;
  }
}

.about-primary-lead {
  display: block;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .about-primary-lead {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .about-primary-lead {
    font-size: 13px;
  }
}

.about-primary-main {
  display: block;
  margin-top: 12px;
  font-size: 34px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .about-primary-main {
    margin-top: 10px;
    font-size: 23px;
  }
}
@media (max-width: 320px) {
  .about-primary-main {
    font-size: 20px;
  }
}

.about-note {
  margin: 0 auto 22px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .about-note {
    margin-bottom: 11px;
    font-size: 14px;
    line-height: 1.5;
  }
}
.about-web__lead {
  margin: 40px 0 30px;
}
.about-web__action {
  width: 320px;
  margin: 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .about-web__lead {
    margin: 30px 0 20px;
    font-size: 14px;
  }
  .about-web__action {
    width: 235px;
    max-width: 100%;
    margin: 0 auto;
    transform: none;
  }
}

.about-web__button {
  width: 100%;
  height: 60px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #0B5BCE;
  color: #0B5BCE;
  text-decoration: none;
  font-weight: bold;
  background: #fff;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .about-web__button {
    height: 45px;
    font-size: 14px;
    width: 100%;
    min-width: 0;
  }
}

.about-web__button::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-blue.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .about-web__button::after {
    right: 17px;
    top: 47%;
    width: 6px;
    height: 14px;
  }
}

.about-web__button:hover {
  opacity: 0.8;
}

/* hover時に矢印を右へ移動→元へ戻す */
.about-web__button:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .about-web__button:hover::after {
    animation: none;
  }
}

/* ----------------------------------------
  Process
---------------------------------------- */
.process {
  background: url("/assets/img/lp/p/bg-white.webp") repeat-x center top;
  padding-top: 33px;
}
.process .bg {
  width: 100%;
  padding: 120px 0 115px;
  background: url("/assets/img/lp/p/bg-process.webp") no-repeat center 80px / auto auto #fff;
}
@media (max-width: 767px) {
  .process {
    background: url("/assets/img/lp/s/bg-white.webp") repeat-x center top / 100%;
    padding-top: 24px;
  }
  .process .bg {
    padding: 60px 0;
    background: url("/assets/img/lp/s/bg-process.webp") no-repeat center 40px #fff;
    background-size: 100%;
  }
}
.process-head {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .process-head {
    margin-bottom: 10px;
  }
}
.process-title {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .process-title {
    margin-bottom: 30px;
  }
  .process-title-img,
  .process-lead-img {
    width: 100%;
  }
}
.process-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .process-list {
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.process-card {
  flex: 1 1 0;
  max-width: 260px;
  border-radius: 20px;
  background: #fff;
  color: #2F2C2B;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
  position: relative;
}
@media (max-width: 767px) {
  .process-card {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 15px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
  }
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px; /* gap(40px)の中央に配置 */
  transform: translateY(-50%);
  width: 40px;
  height: 6px;
  background-color: #F72E52;
  pointer-events: none;
}
@media (max-width: 767px) {
  .process-card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    right: auto;
    width: 5px;
    height: 20px;
  }
}
.process-card__media-inner {
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
  text-align: center;
}
@media (max-width: 767px) {
  .process-card__media-inner {
    padding: 0 20px 0 0;
  }
}
.process-card__body {
  padding: 22px 20px 40px;
}
@media (max-width: 767px) {
  .process-card__body {
    padding: 55px 0 20px 30px;
  }
}

.process-card__step {
  position: relative;
  margin: 0;
  font-family: "Rubik", "Noto Sans JP", system-ui, -apple-system;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: #F72E52;
  align-items: center;
  font-weight: 600;
  display: flex;
  gap: 6px;
}
.process-card__step::before,
.process-card__step::after {
  content: "";
  display: block;
  width: 48px;
  height: 10px;
  background: url("/assets/img/lp/p/img-process-card-step.webp") no-repeat center / contain;
  position: absolute;
  left: -58px;
}
.process-card__step::after {
  left: auto;
  right: -58px;
}
@media (max-width: 767px) {
  .process-card__step {
    position: absolute;
    font-size: 12px;
    top: 20px;
    left: 50%;
    gap: 5px;
    transform: translateX(-50%);
  }
}
.process-card__step strong {
  font-size: 28px;
}
@media (max-width: 767px) {
  .process-card__step strong {
    font-size: 22px;
  }
}
.process-card__title {
  margin: 4px 0 0;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #2F2C2B;
}
.process-card__desc {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .process-card__title {
    margin: 4px 0 0;
    text-align: left;
  }
  .process-card__desc {
    margin-top: 10px;
    font-size: 14px;
  }
}

.process-card__action {
  margin: 20px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .process-card__action {
    margin: 24px 0 0;
  }
}
.process-card__media-item {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .process-card__media-item {
    width: 110px;
    padding-top: 0;
    padding-bottom: 35px;
  }
  .process-card.process-card--1 .process-card__media-item {
    padding-bottom: 20px;
  }
  .process-card__media-item-img {
    width: 100%;
  }
}
/* ----------------------------------------
  Point
---------------------------------------- */
.point {
  background: url("/assets/img/lp/p/bg-gray.webp") repeat-x center top / auto auto;
  padding-top: 33px;
}
.point .bg {
  width: 100%;
  padding: 85px 0 115px;
  background: url("/assets/img/lp/p/bg-point.webp") no-repeat center 80px / auto auto #F7F7F7;
}
@media (max-width: 767px) {
  .point {
    background: url("/assets/img/lp/s/bg-gray.webp") repeat-x center top / 100%;
    padding-top: 24px;
  }
  .point .bg {
    padding: 42px 0;
    background: url("/assets/img/lp/s/bg-point.webp") no-repeat center 40px #F7F7F7;
    background-size: 100%;
  }
}

@media (max-width: 767px) {
  .point .inner {
    padding: 0 20px;
  }
}

.point-head {
  text-align: center;
}

.point-eyebrow {
  margin: 0;
  font-weight: bold;
  color: #F72E52;
  font-size: 20px;
}
@media (max-width: 767px) {
  .point-eyebrow {
    font-size: 14px;
  }
}

.point-title {
  margin: 0 0 60px;
}
@media (max-width: 767px) {
  .point-title {
    margin-bottom: 45px;
  }
}
.point-grid {
  width: 1160px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 767px) {
  .point-grid {
    width: 100%;
    margin: 0 auto;
    gap: 25px;
    position: relative;
    z-index: 1;
  }
}

.point-card {
  flex: 0 0 calc((100% - 80px) / 3);
  min-height: 300px;
  padding: 48px 30px 40px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
  border: 4px solid #fee5eb;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .point-card {
    min-height: auto;
    flex-basis: 100%;
    padding: 40px 23px 23px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
    border-radius: 20px;
    border: 5px solid #fee5eb;
  }
}
.point-card__number {
  display: flex;
  align-items: center;
  position: absolute;
  padding: 8px 35px;
  background-color: #F72E52;
  border-radius: 50px 50px;
  font-family: "Rubik", "Noto Sans JP", system-ui, -apple-system;
  color: #fff;
  font-size: 14px;
  line-height: 0.8;
  font-weight: 600;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
}
.point-card__number strong {
  font-size: 28px !important;
  padding-left: 6px;
}
@media (max-width: 767px) {
  .point-card__number {
    padding: 6px 47px;
    border-radius: 15px;
    top: -15px;
  }
  .point-card__number strong {
    font-size: 25px !important;
    padding-left: 5px;
  }
}
.point-card__image {
  margin: 0 auto 20px;
}
.point-card__desc {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 767px) {
  .point-card__image {
    margin: 0 auto 15px;
  }
  .point-card__image img {
    width: 100%;
  }
  .point-card__desc {
    font-size: 14px;
    text-align: center;
  }
  .point-card.point-card--3 .point-card__desc {
    text-align: left;
  }
}
.point-figure {
  margin-top: 15px;
}
.point-figure img {
  width: 100%;
}
@media (max-width: 767px) {
  .point-figure {
    width: auto;
    margin-top: 30px;
    position: relative;
    z-index: 0;
  }
}
.point-card--1 .point-figure,
.point-card--2 .point-figure {
  margin-top: 50px;
}
.point-card__more {
  margin: 12px 0 0;
}
@media (max-width: 767px) {
  .point-figure {
    margin-top: 10px;
  }
  .point-card--1 .point-figure,
  .point-card--2 .point-figure {
    margin-top: 10px;
  }
}
.point-card__link {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-right: 15px; /* 矢印分の余白 */
  color: #0B5BCE;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .point-card__link {
    font-size: 14px;
  }
}

.point-card__link:hover {
  opacity: 0.8;
}

.point-card__link:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .point-card__link:hover::after {
    animation: none;
  }
}

.point-card__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 48%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-blue.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .point-card__link::after {
    right: 3px;
    top: 48%;
    width: 6px;
    height: 14px;
  }
}

.point-note {
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
@media (max-width: 767px) {
  .point-note {
    margin: 20px 0 0;
  }
  }
.point-note-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .point-note-item {
    font-size: 12px;
  }
}
.point-note-item__mark {
  flex: 0 0 auto;
  line-height: 1.5;
}

.point-note-item__text {
  flex: 1 1 auto;
  min-width: 0;
}

.point-service {
  margin: 60px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .point-service {
    margin-top: 30px;
  }
}

.point-service__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 320px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #2F2C2B;
  background: transparent;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  color: #2F2C2B;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .point-service__link {
    width: 235px;
    height: 45px;
    font-size: 14px;
  }
}

.point-service__link::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-black.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .point-service__link::after {
    right: 13px;
    top: 48%;
    width: 6px;
    height: 14px;
  }
}

.point-service__link:hover {
  opacity: 0.8;
}

.point-service__link:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .point-service__link:hover::after {
    animation: none;
  }
}


/* ----------------------------------------
  Apply
---------------------------------------- */
.apply {
  background: url("/assets/img/lp/p/bg-gray.webp") repeat-x center top / auto auto;
  padding-top: 33px;
}
.apply .bg {
  width: 100%;
  padding: 120px 0 115px;
  background: url("/assets/img/lp/p/bg-apply.webp") no-repeat center 80px / auto auto #F7F7F7;
}
@media (max-width: 767px) {
  .apply {
    background: url("/assets/img/lp/s/bg-gray.webp") repeat-x center top / 100%;
    padding-top: 24px;
  }
  .apply .bg {
    padding: 42px 0;
    background: url("/assets/img/lp/s/bg-apply.webp") no-repeat center 40px #F7F7F7;
    background-size: 100%;
  }
  .apply .inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

.apply-head {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .apply-head {
    margin-bottom: 30px;
  }
}

.apply-eyebrow {
  margin: 0;
  font-weight: bold;
  color: #F72E52;
  font-size: 20px;
}
@media (max-width: 767px) {
  .apply-eyebrow {
    font-size: 14px;
  }
}

.apply-title {
  margin: 18px 0 0;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.01em;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .apply-title img {
    width: 100%;
  }
}

.apply-line {
  display: block;
  width: 2px;
  height: 60px;
  background: #F72E52;
  margin: 25px auto 0;
}
@media (max-width: 767px) {
  .apply-line {
    height: 50px;
  }
}

.apply-lead {
  text-align: center;
  margin: 0 0 140px;
  font-size: 16px;
  line-height: 1.5;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .apply-lead {
    margin-bottom: 100px;
    font-size: 14px;
  }
}

.apply-lead__strong {
  color: #F72E52;
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 767px) {
  .apply-lead__strong {
    font-size: 18px;
  }
}

.apply-app-wrap {
  position: relative;
  width: 960px;
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .apply-app-wrap {
    width: 100%;
    margin: 0 auto 30px;
    margin-bottom: 30px;
  }
}

.apply-app {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #105AC2 0%, #1474FA 100%);
  border-radius: 18px;
  padding: 31px 60px 30px;
  color: #fff;
  z-index: 1;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .apply-app {
    padding: 25px 20px 30px;
  }
}

/* 半円 */
.apply-app-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -63px;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: #105AC2;
  border-radius: 300px 300px 0 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .apply-app-wrap::before {
    top: -35px;
    width: 150px;
    height: 75px;
    border-radius: 75px 75px 0 0;
  }
}
/* 線 */
.apply-app-wrap::after {
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 78px;
  z-index: 1;
  content: "";
}
@media (max-width: 767px) {
  .apply-app-wrap::after {
    top: 65px;
  }
}

.apply-app__cap {
  position: absolute;
  left: 50%;
  top: -97px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .apply-app__cap {
    top: -65px;
  }
}

.apply-app__cap-img {
  width: 58px;
  height: auto;
}
@media (max-width: 767px) {
  .apply-app__cap-img {
    width: 43px;
  }
}

.apply-app__title {
  margin: 0 auto 60px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .apply-app__title {
    margin-bottom: 45px;
    font-size: 18px;
  }
}

.apply-app__sub {
  margin: 0 0 33px;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 767px) {
  .apply-app__sub {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
  }
}

.apply-store {
  margin-bottom: 35px;
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 767px) {
  .apply-store {
    margin-bottom: 25px;
    gap: 20px;
    flex-direction: column;
  }
}

.apply-store__card {
  flex: 1 1 0;
  width: 400px;
  background: #fff;
  color: #2F2C2B;
  border-radius: 20px;
  padding: 21px 34px 28px 36px;
  position: relative;
}
@media (max-width: 767px) {
  .apply-store__card {
    width: 100%;
    padding: 10px 20px 20px;
    border-radius: 10px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.apply-store__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 65px;
  width: 100%;
  height: 1px;
  background: #E5E5E6;
}
@media (max-width: 767px) {
  .apply-store__card::before {
    top: 41px;
  }
}

.apply-store__name {
  margin: 0 0 50px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .apply-store__name {
    margin: 0 0 31px;
    font-size: 14px;
  }
}

.apply-store__row {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .apply-store__row {
    justify-content: center;
    gap: 20px;
  }
}

.apply-store__badge {
  width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .apply-store__badge {
    width: 145px;
    max-width: 61.7%;
  }
}
.apply-store__badge:hover {
  opacity: 0.8;
}

.apply-store__badge img {
  max-width: 100%;
  height: auto;
}

.apply-store__qr {
  width: 120px;
  height: auto;
}
@media (max-width: 767px) {
  .apply-store__qr {
    width: 90px;
    max-width: 38.3%;
  }
}

.apply-store__qr img {
  max-width: 100%;
  height: auto;
}

.apply-app__more {
  text-align: center;
}
@media (max-width: 767px) {
  .apply-app__more {
    font-size: 14px;
  }
}

.apply-app__link {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-right: 12px; /* 矢印分の余白 */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.apply-app__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 48%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-white.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .apply-app__link::after {
    right: 0;
    top: 44%;
    width: 6px;
    height: 14px;
  }
}

.apply-app__link:hover {
  opacity: 0.8;
}

.apply-app__link:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .apply-app__link:hover::after {
    animation: none;
  }
}

.apply-web {
  width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border: 4px solid #E5F1FB;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .apply-web {
    width: 100%;
  }
}

.apply-web__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 42px 55px 30px;
}
@media (max-width: 767px) {
  .apply-web__inner {
    padding: 26px 30px 30px;
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .apply-web__text {
    text-align: center;
  }
}

.apply-web__title {
  margin: 0 auto 13px;
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 767px) {
  .apply-web__title {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.apply-web__desc {
  font-size: 14px;
  line-height: 1.5;
}

.apply-web__action {
  width: 320px;
  margin: 0;
  flex: 0 0 auto;
  transform: translateY(-5px);
}
@media (max-width: 767px) {
  .apply-web__action {
    width: 235px;
    max-width: 100%;
    margin: 0 auto;
    transform: none;
  }
}

.apply-web__button {
  width: 100%;
  height: 60px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #0B5BCE;
  color: #0B5BCE;
  text-decoration: none;
  font-weight: bold;
  background: #fff;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .apply-web__button {
    height: 45px;
    font-size: 14px;
    width: 100%;
    min-width: 0;
  }
}

.apply-web__button::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-blue.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .apply-web__button::after {
    right: 17px;
    top: 47%;
    width: 6px;
    height: 14px;
  }
}

.apply-web__button:hover {
  opacity: 0.8;
}

/* hover時に矢印を右へ移動→元へ戻す */
.apply-web__button:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .apply-web__button:hover::after {
    animation: none;
  }
}

/* ----------------------------------------
  Attention
---------------------------------------- */
.attention {
  padding: 80px 0 80px;
}
@media (max-width: 767px) {
  .attention {
    padding: 40px 0;
  }
}
.attention .inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .attention .inner {
    width: 100%;
  }
}
.attention-title {
  margin: 0 0 40px;
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .attention-title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.attention-title::after {
  content: "";
  width: 48px;
  height: 12px;
  display: block;
  margin: 24px auto 0;
  background: url("/assets/img/common/shared/icon-title-dots.svg") no-repeat center / contain;
}
@media (max-width: 767px) {
  .attention-title::after {
    width: 32px;
    height: 8px;
    margin-top: 15px;
  }
}

.attention-sub-title {
  margin: 0 0 30px;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .attention-sub-title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
  }
}

.attention-list + .attention-sub-title {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .attention-list + .attention-sub-title {
    margin-top: 40px;
  }
}

.attention-list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .attention-list {
    gap: 10px;
  }
}

.attention-list li {
  position: relative;
  padding-left: 1.4em;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .attention-list li {
    font-size: 14px;
  }
}

.attention-list li a {
  color: #0B5BCE;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.attention-list li a:hover {
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .attention-list li a:hover {
    animation: none;
  }
}

.attention-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.attention-lead {
  margin-top: 80px;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 767px) {
  .attention-lead {
    margin-top: 40px;
    font-size: 12px;
    line-height: 1.5;
  }
}
/* ----------------------------------------
  Modal
---------------------------------------- */
body.is-modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 108px 20px;
  overflow: scroll;
}
@media (max-width: 767px) {
  .modal__content {
    padding: 60px 20px;
    display: block;
  }
}

.modal__inner {
  width: 960px;
  text-align: center;
}
@media (max-width: 767px) {
  .modal__inner {
    width: 100%;
  }
}

.modal__lead {
  margin: 0 0 140px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .modal__lead {
    margin: 0 0 90px;
    font-size: 16px;
  }
}
.modal__lead__strong {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .modal__lead__strong {
    font-size: 18px;
  }
}

.modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .modal__close {
    top: 16px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
}
.modal__close:hover {
  opacity: 0.8;
}

.modal__close > span {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
}
@media (max-width: 767px) {
  .modal__close > span {
    width: 30px;
    height: 30px;
  }
}

.modal__close > span::before,
.modal__close > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 6px;
  background: #fff;
  transform-origin: center;
}
@media (max-width: 767px) {
  .modal__close > span::before,
  .modal__close > span::after {
    width: 25px;
    height: 4px;
  }
}

.modal__close > span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close > span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 767px) {
  .modal .apply-app-wrap {
    margin-bottom: 0;
  }
}

