/* ------------------------------------------------------------------------------
     reset
-------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

body.is-pc a[href^="#"]:focus:not(:hover) {
  opacity: 1 !important;
}

body.is-sp a[href^="#"]:hover {
  opacity: 1;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

a {
  background-color: transparent;
}

@media (hover:hover){
  @media (min-width: 769px) {
a:hover{
  opacity: 0.6;
}
  }
}

b,
strong {
  font-weight: bolder;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: bottom;
}

/* Utility */
@media screen and (max-width: 768px) {
  .qx-sp-none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .qx-pc-none {
    display: none;
  }
}

.qx-bold {
  font-weight: 600;
}

.qx-al {
  text-align: left !important;
}

.qx-ac {
  text-align: center !important;
}

.qx-ar {
  text-align: right !important;
}

.qx-fc-red {
  color: #e62f33;
}

.qx-mt0 {
  margin-top: 0;
}

.qx-mt30 {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .qx-mt30 {
    margin-top: 4vw;
  }
}

.qx-mt40 {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .qx-mt40 {
    margin-top: 5.33333vw;
  }
}

.qx-mt50 {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .qx-mt50 {
    margin-top: 6.66667vw;
  }
}

.qx-mt60 {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .qx-mt60 {
    margin-top: 8vw;
  }
}

.qx-mt70 {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .qx-mt70 {
    margin-top: 8vw;
  }
}

.qx-mt80 {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .qx-mt80 {
    margin-top: 8vw;
  }
}

.qx-mw-440 {
  width: 100% !important;
  max-width: 440px !important;
}

@media screen and (max-width: 768px) {
  .qx-mw-440 {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* Layout */
.qx-main {
  padding: 80px 40px 80px;
}

@media screen and (max-width: 768px) {
  .qx-main {
    padding: 10.66667vw 4vw;
    background-size: 100% auto;
  }
}

.qx-main__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .qx-main {
    padding: 6.66667vw 4vw;
  }
}

.qx-main__title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .qx-main__title {
    font-size: 5.8vw;
    margin-bottom: 5.33333vw;
  }
}

.qx-main__lead {
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .qx-main__lead {
    font-size: 4vw;
    padding: 0 4vw;
  }
}

.qx-accordion {
  border: 2px solid #56419E;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .qx-accordion {
    position: relative;
    border-radius: 1.33333vw;
    border: none;
  }
}

.qx-accordion::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid #56419E;
  pointer-events: none;
}

.qx-accordion__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .qx-accordion__list {
    gap: 4vw;
  }
}

.qx-accordion__title {
  padding: 20px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  position: relative;
  color: #56419E;
}

.qx-accordion__title a {
  color: #56419E;
}

.qx-accordion__title::before, .qx-accordion__title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 17px;
  height: 2px;
  border-radius: 4px;
  background-color: #56419E;
  transition: .3s;
}

.qx-accordion__title::after {
  transform: translateY(-50%) rotate(90deg);
}

.qx-accordion__title.is-open::after {
  transform: translateY(-50%) rotate(0deg);
}

@media screen and (max-width: 768px) {
  .qx-accordion__title {
    padding: 5.33333vw 5.33333vw;
    font-size: 3.8vw;
  }
  .qx-accordion__title::before, .qx-accordion__title::after {
    width: 3.33333vw;
    height: 0.53333vw;
    border-radius: 0.66667vw;
    right: 4.4vw;
  }
}

.qx-menu__list {
  margin: 0;
  width: 100%;
}

.qx-menu__hdg {
  padding: 20px 20px;
  font-size: 14px;
  font-weight: 600;
  background-color: #E3E3FA;
  position: relative;
}

.qx-menu__hdg::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 13px solid #E3E3FA;
}

.qx-menu__hdg a{
  color: #56419E;
}

@media screen and (max-width: 768px) {
  .qx-menu__hdg {
    padding: 5.33333vw 5.33333vw;
    font-size: 3.8vw;
  }
  .qx-menu__hdg::after {
    bottom: -2.66667vw;
    border-left: 1.6vw solid transparent;
    border-right: 1.6vw solid transparent;
    border-top: 2.66667vw solid #E3E3FA;
  }
}

.qx-menu__item {
  padding: 0;
}

.qx-menu__item > a {
  width: 100%;
  padding: 20px 20px;
  font-size: 12px;
  border-top: 1px solid #F1F1FD;
  position: relative;
  color: #1a1a1a;
  display: block;
}

.qx-menu__item > a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(/-/media/AeonCard/service/lp/aeonpay/guide/20260406/images/icon_menu-anc.png) no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .qx-menu__item > a {
    padding: 4.66667vw  5.33333vw;
    font-size:3.6vw;
    width: calc(100% - 2px);
    margin: 0 1px;
  }
  .qx-menu__item > a::after {
    right: 4vw;
    width: 5.33333vw;
    height: 5.33333vw;
  }
}

.qx-btn-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qx-btn-list > li {
  width: 100%;
  max-width: 312px;
}

.qx-btn-list .a-button > span {
  max-width: 240px;
}

@media screen and (max-width: 768px) {
  .qx-btn-list {
    margin-top: 6.66667vw;
    gap: 4vw;
  }
  .qx-btn-list > li {
    width: 100%;
    max-width: 100%;
  }
  .qx-btn-list > li .a-button {
    margin: 0 auto;
  }
}

.qx-btn-list + .qx-box {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .qx-btn-list + .qx-box {
    margin-top: 5.33333vw;
  }
}

.qx-hdg-lv2 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .qx-hdg-lv2 {
    font-size: 5vw;
  }
}

.qx-hdg-lv3 {
  margin-top: 30px;
  font-size: 32px;
  font-weight: 600;
  display: flex;
  gap: 13px;
  align-items: center;
  color: #56419E;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .qx-hdg-lv3 {
    margin-top: 5.33333vw;
    font-size: 3.8vw;
    gap: 2.66667vw;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }
}

.qx-hdg-lv2 + .qx-hdg-lv3 {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
.qx-hdg-lv2 + .qx-hdg-lv3 {
  margin-top: 4vw;
}
}

.qx-hdg-lv3 > label {
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #B70081;
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  .qx-hdg-lv3 > label {
    padding: 0.53333vw 1.6vw;
    font-size: 3.2vw;
    border-radius: 0.4vw;
  }
}


.qx-hdg-lv3 + p {
  margin-top: 20px;
  padding-left: 30px;
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  .qx-hdg-lv3 + p {
    margin-top: 2.66667vw;
    padding-left: 4vw;
    font-size: 3.73333vw;
  }
}

.qx-hdg-lv4 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .qx-hdg-lv4 {
    font-size: 3.6vw;
  }
}

.qx-hdg-lv4 > label {
  padding: 4px 12px;
  margin-left: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #B70081;
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  .qx-hdg-lv4 > label {
    padding: 0.53333vw 1.6vw;
    margin-left: 2vw;
    font-size: 3.2vw;
    border-radius: 0.4vw;
  }
}

.qx-box {
  margin-top: 30px;
  padding: 75px 50px;
  border-radius: 20px;
  background-color: #f1f1f1;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .qx-box {
    margin-top: 4vw;
    padding: 5.33333vw 8vw;
    border-radius: 1.33333vw;
  }
}

.qx-box + .qx-box {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .qx-box + .qx-box {
    margin-top: 5.33333vw;
  }
}

.qx-box + .qx-hdg-lv3 {
  margin-top: 60px;
}

.qx-tab + .qx-hdg-lv3 {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .qx-box + .qx-hdg-lv3 {
    margin-top: 8vw;
  }

  .qx-tab + .qx-hdg-lv3 {
  margin-top: 8vw;
}
}

.qx-swiper {
  margin-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .qx-swiper {
    margin-top: 5.33333vw;
    padding-bottom: 5.33333vw;
  }
}

.qx-swiper__img {
  display: block;
  max-width: 220px;
  margin: 0 auto;
}

.qx-swiper__img_large {
  display: block;
  max-width: 420px;
  margin: 0 auto;
}

.qx-swiper__img.qx-mt20 {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .qx-swiper__img {
    max-width: 44vw;
  }

  .qx-swiper__img_large {
    max-width: 75vw;
  }
}

.qx-swiper__txt {
  margin-top: 40px;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

.qx-swiper__txt.qx-no-weight{
  font-weight: 100;
}


@media screen and (max-width: 768px) {
  .qx-swiper__txt {
    margin-top: 5.33333vw;
    font-size: 3.73333vw;
  }
}

.qx-swiper__txt > a {
  color: #B60081;
  text-decoration: underline;
}

.qx-swiper .qx-notes.qx-swiper-center {
  margin-left: auto;
  margin-right: auto;
  width: 65%;
}

.qx-swiper .swiper-pagination {
  bottom: -10px;
}

@media screen and (max-width: 768px) {
  .qx-swiper .swiper-pagination {
    bottom: -1.33333vw;
  }
}

.qx-swiper .swiper-pagination-bullet {
  background: #c9c9c9;
  opacity: 1;
}

.qx-swiper .swiper-pagination-bullet-active {
  background: #56419E;
  width: 16px;
  border-radius: 4px;
}

.qx-swiper .swiper-button-prev, .qx-swiper .swiper-button-next {
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
}

.qx-swiper .swiper-button-prev::after, .qx-swiper .swiper-button-next::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .qx-swiper .swiper-button-prev, .qx-swiper .swiper-button-next {
    width: 8.33333vw;
    height: 8.33333vw;
  }
}

.qx-swiper .swiper-button-prev {
  left: -40px;
}

@media screen and (max-width: 768px) {
  .qx-swiper .swiper-button-prev {
    left: -6vw;
  }
}

.qx-swiper .swiper-button-next {
  right: -40px;
}

@media screen and (max-width: 768px) {
  .qx-swiper .swiper-button-next {
    right: -6vw;
  }
}

.qx-app-list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.qx-app-list > li {
  width: auto;
  height: 54px;
}

.qx-app-list > li img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .qx-app-list {
    margin-top: 5.33333vw;
    gap: 4vw;
  }
  .qx-app-list > li {
    height: 10.4vw;
  }
}

.qx-notes {
  margin-top: 30px;
}

.qx-notes.qx-mt10{
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .qx-notes {
    margin-top: 4vw;
  }

  .qx-notes.qx-mt10{
    margin-top: 2vw;
  }
}

.qx-notes > li {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
  text-align: center;
}

.qx-notes > li > a {
  color: #B60081;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .qx-notes > li {
    font-size: 3.2vw;
  }
}

.qx-tab {
  border-radius: 20px;
  background-color: #F1F1FD;
}

@media screen and (max-width: 768px) {
  .qx-tab {
    border-radius: 15px;
  }
}

.qx-tab:has(.qx-tab-purple.is-active) {
  border: 2px solid #56419E;
  background-color: #F1F1FD;
}

.qx-tab:has(.qx-tab-red.is-active) {
  border: 2px solid #B60081;
  background-color: #FFEDF3;
}

.qx-tab:has(.qx-tab-blue.is-active) {
  border: 2px solid #BEE7F6;
  background-color: #E7F9FE;
}

.qx-tab__list {
  display: flex;
  background-color: #fff;
  border-radius: 20px;
  z-index: 2;
}

.qx-tab__list > li {
  height: 65px;
  border-radius: 20px;
  background-color: #fff;
  z-index: 2;
}

.qx-tab__list > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  color: #3B3A3D;
  z-index: 5;
}

.qx-tab__list > li.is-active::after {
  margin-top: 0;
  margin-left: -3px;
  margin-right: -3px;
  z-index: 3;
}

.qx-tab__list > li.qx-tab-purple.is-active {
  background-color: #56419E;
  border: 2px solid #56419E;
  margin-top: -1px;
}

.qx-tab__list > li.qx-tab-red.is-active {
  background-color: #B60081;
  border: 2px solid #B60081;
  margin-top: -1px;
}

.qx-tab__list > li.qx-tab-blue.is-active {
  background-color: #BEE7F6;
  border: 2px solid #BEE7F6;
}

.qx-tab__list > li.is-active > a {
  color: #fff;
  z-index: 5;
}

.qx-tab__list > li.qx-tab-blue.is-active > a {
  color: #3B3A3D;
  z-index: 5;
}

.qx-tab__list > li.blue {
  border: 2px solid #bee8f6;
  border-bottom: none;
}

.qx-tab__list > li.blue.is-active {
  background-color: #bee8f6;
}

.qx-tab__list > li.blue.is-active > a {
  color: #3B3A3D;
}

.qx-tab__list > li.gray {
  border: 2px solid #c9c9c9;
  border-bottom: none;
}

.qx-tab__list > li.gray.is-active {
  background-color: #dedede;
}

.qx-tab__list > li.gray.is-active > a {
  color: #3B3A3D;
}

.qx-tab__list[data-col="2"] > li {
  width: 50%;
}

.qx-tab__list[data-col="3"] > li {
  width: 33%;
}

.qx-tab__list[data-col="3"] > li:last-child {
  width: 35%;
}

@media screen and (max-width: 768px) {
.qx-tab__list {
  border-radius: 15px;

}
  
  .qx-tab__list > li {
    border-radius: 15px;
  }

 .qx-tab__list > li.blue {
    border: 1px solid #bee8f6;
    border-bottom: none;
  }
  .qx-tab__list > li.gray {
    border: 1px solid #c9c9c9;
    border-bottom: none;
  }
}

.qx-tab__list.qx-tab3 {
  display: flex;
  border-bottom: 1px solid #E2E2E2;
}

.qx-tab__list.qx-tab3 > li > a {
  font-size: 12px;
}

.qx-tab__list__item.qx-tab3 {
  position: relative;
  background: #fff;
}

.qx-tab__list.qx-tab3 li.qx-tab-red.is-active {
  padding-right: 1px;
}

.qx-tab__list__item.qx-tab3.is-active {
  border-radius: 20px;
  z-index: 2;
  margin-bottom: -1px;
}


.qx-tab__list__item.qx-tab3.is-active::after {
display: none;
}

.qx-tab__list__item.qx-tab3:not(.is-active)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 100%;
  border-right: 2px solid #E2E2E2;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.qx-tab__list__item.qx-tab3:last-child:not(.is-active)::after {
  display: none;
}

.qx-tab__list__item.qx-tab3:first-child:not(.is-active)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  border-left: 1px solid #E2E2E2;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.qx-tab:has(.qx-tab-blue.is-active) .qx-tab__list__item.qx-tab3:not(.is-active)::after,
.qx-tab:has(.qx-tab-blue.is-active) .qx-tab__list__item.qx-tab3:first-child:not(.is-active)::before {
display: none;
}


@media screen and (max-width: 768px) {
.qx-tab__list.qx-tab3 {
  border-radius: 15px;
}

.qx-tab__list__item.qx-tab3.is-active {
  border-radius: 15px;
  z-index: 2;
}

.qx-tab__list__item.qx-tab3:not(.is-active)::after {
  width: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.qx-tab__list__item.qx-tab3:first-child:not(.is-active)::before {
  width: 15px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.qx-tab.qx-js-blue .qx-tab__list__item.qx-tab3:not(.is-active)::after,
.qx-tab.qx-js-blue .qx-tab__list__item.qx-tab3:first-child:not(.is-active)::before {
display: none;
}
}

.qx-tab__contents {
  display: none;
  background-color: #F1F1FD;
  padding: 40px 40px 40px;
  overflow-x: hidden;
  border-radius: 0 0 20px 20px;
  z-index: 0;
}

 .qx-tab__contents.qx-tab-blue {
  background-color:#E7F9FE;
}

.qx-tab__contents.qx-tab-red {
  background-color: #FFEDF3;
}

.qx-tab__contents.is-show {
  display: block;
}

@media screen and (max-width: 768px) {
  .qx-tab__contents {
    padding: 5.33333vw;
  }
}

.qx-tab__contents.blue {
  background-color: #e8f8fd;
  border: 2px solid #bee8f6;
}

@media screen and (max-width: 768px) {
  .qx-tab__contents.blue {
    border: 1px solid #bee8f6;
  }
}

.qx-tab__contents.gray {
  background-color: #fff;
  border: 2px solid #c9c9c9;
}

@media screen and (max-width: 768px) {
  .qx-tab__contents.gray {
    border: 1px solid #c9c9c9;
  }
}

.qx-tab__contents .qx-swiper {
  margin-top: 0;
}

.qx-tab__contents .swiper-button-prev {
  left: -20px;
}

@media screen and (max-width: 768px) {
  .qx-tab__contents .swiper-button-prev {
    left: -3.33333vw;
  }
}

.qx-tab__contents .swiper-button-next {
  right: -20px;
}

@media screen and (max-width: 768px) {
  .qx-tab__contents .swiper-button-next {
    right: -3.33333vw;
  }
}

.qx-hdg__label {
  margin-top: 25px;
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  background-color: #B70081;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .qx-hdg__label {
    margin-top: 3.33333vw;
    padding: 2.66667vw;
    border-radius: 1.06667vw;
    font-size: 3.73333vw;
  }
}

.qx-box__sub {
  margin-top: 15px;
  text-align: center;
}

.qx-box__sub > a {
  color: #1a1a1a;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .qx-box__sub {
    margin-top: 2vw;
  }
}

.qx-swiper + .qx-hdg__label {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .qx-swiper + .qx-hdg__label {
    margin-top: 10.66667vw;
  }
}

.qx-tab__ttl {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .qx-tab__ttl {
    font-size: 3.46667vw;
    margin-bottom: 4vw;
  }
}

.qx-swiper__img-label {
  width: 220px;
  margin: 0 auto 10px;
  background-color: #B70081;
  padding: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .qx-swiper__img-label {
    width: 44vw;
    margin-bottom: 1.33333vw;
    padding: 0.66667vw;
    font-size: 3.73333vw;
  }
}

.swiper-slide > .qx-hdg-lv4 {
  margin-top: 0;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .swiper-slide > .qx-hdg-lv4 {
    margin-bottom: 5.33333vw;
  }
}

.qx-apply__inner {
  margin: 0 auto;
  padding: 50px 50px 70px;
  width: 100%;
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  .qx-apply__inner {
    padding: 5.33333vw 5.33333vw 8vw;
  }
}

.qx-apply__hdg {
  text-align: center;
  margin-top: 40px;
  font-size: 22px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .qx-apply__hdg {
    margin-top: 5.33333vw;
    font-size: 3.73333vw;
  }
}

.qx-apply__app {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.qx-apply__app > img {
  width: 103px;
}

.qx-apply__app > a {
  height: 57px;
  flex-shrink: 0;
}

.qx-apply__app > a > img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .qx-apply__app {
    margin-top: 3.33333vw;
    gap: 2.66667vw;
  }
  .qx-apply__app > img {
    width: 17.73333vw;
  }
  .qx-apply__app > a {
    height: 9.73333vw;
  }
}

.qx-pagetopbtn {
  position: fixed;
  z-index: 11;
  width: 45px;
  right: 20px;
  bottom: 20px;
}

@media screen and (max-width: 768px) {
  .qx-pagetopbtn {
    width: 8vw;
    right: 4vw;
    bottom: 29.33333vw;
  }
}

/*20260406追加*/

.qx-bg-color-lightblue {
  background: #f1f1fd;
}

.qx-bg-color-gray {
  background: #eef2f5;
}

.qx-bg-color-blue {
  background: #ececff;
}


/* Humburger Menu */
html {
  scroll-padding-top: 78px;
  /* 固定ヘッダの高さを指定 */
}

.o-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  border-bottom: 4px solid #2c3e8a;
}


.qx-aeonpay-header-wrapper{
  border-bottom: 1px solid #4F419E;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  width: 100%;
  height: 64px;
}

.qx-aeonpay-header{
  max-width: 1050px;
  margin: 20px auto;
  display: flex;
  padding:0 25px;
  align-items: center;
  justify-content: space-between;
}

.qx-aeonpay-header-logo {
  width: 118px;
}

@media screen and (max-width: 768px) {
  .qx-aeonpay-header-wrapper {
    height: 53px;
  }

  .qx-aeonpay-header{ 
    padding-left: 2%;
    margin: 0 auto 0;
    height: 50px;
    vertical-align: middle;
  }
  .qx-aeonpay-header-logo {
    width: 94px;
  }
}

.qx-pc-menu_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  padding: 0 0;
}




.qx-pc-menu_list__item a{
    padding: 0 0;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-family-JP, "Hiragino Kaku Gothic ProN");
  color: #3B3A3D;
}

.qx-hamburger-menu__icon {
  position: fixed;
  background-color: #4F419E;
  top: 2px;
  right: 0px;
  width: 64px;
  height: 54px;
  cursor: pointer;
  z-index: 10002;
  overflow: hidden;
}

.qx-hamburger-menu__icon__line {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-40%, -8px);
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: .5s;
  transition-timing-function: ease-out;
}

.qx-hamburger-menu__icon__line.second {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-40%, -50%);
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: .5s;
  transition-timing-function: ease-out;
}

.qx-hamburger-menu__icon__line.third {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-40%, 6px);
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: .5s;
  transition-timing-function: ease-out;
}

.qx-hamburger-menu_txt{
  position: absolute;
  color: #fff;
  font-size: 8px;
  bottom: 20%;
  left: 50%;
  transform:translateX(-50%);
}

.is-active .qx-hamburger-menu__icon__title {
  transform: translate(-40%, -15px);
  opacity: 0;
}

.is-active .qx-hamburger-menu__icon__line {
  top: 40%;
  transform: translate(-40%, -50%) rotate(45deg);
  height: 2px;
}

.is-active .qx-hamburger-menu__icon__line.second {
  top: 40%;
  left: 50%;
  transform: translate(-40%, -50%) rotate(-45deg);
  height: 2px;
}

.is-active .qx-hamburger-menu__icon__line.third {
  opacity: 0;
}

.qx-hamburger-menu__contents {
  position: fixed;
  top: 3px;
  right: 0;
  padding: 80px 0 0px;
  width: 375px;
  max-height: 100vh;
  overflow-y: auto;
  background-color: #ECECFF;
  box-shadow: 0 15px 22px rgba(44, 61, 138, 0.2);
  z-index: 10001;
  transform: translateX(375px);
  opacity: 0;
  transition: .3s;
  transition-timing-function: ease-in-out;
  pointer-events: none;
}

.is-active .qx-hamburger-menu__contents {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.qx-hamburger-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.qx-hamburger-menu__list__item {
  margin: 0;
  padding: 5px 25px 5px 25px;
  border-bottom: 2px solid #e2e2fe;
  width: 100%;
}


.qx-hamburger-menu__list > .qx-hamburger-menu__list__item:last-child {
  border-bottom: none;
}

.qx-hamburger-menu__list__link {
  color: #4F419E;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  padding: 15px 0;
  display: block;
  position: relative;
}

.qx-hamburger-menu__list > .qx-hamburger-menu__list__item:last-child .qx-hamburger-menu__list__link::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  -webkit-mask: url("/-/media/aeoncard/assets/images/icon/launch-purple.svg") no-repeat center center/contain;
  mask: url("/-/media/aeoncard/assets/images/icon/launch-purple.svg") no-repeat center center/contain;
  margin-left: 6px;
  vertical-align: middle;
  background-color:#4F419E;
}

.qx-hamburger-menu__list__item .qx-hamburger-menu__list {
  margin-left: 7px;
}

.qx-hamburger-menu__list__item .qx-hamburger-menu__list .qx-hamburger-menu__list__item {
  border-bottom: none;
  padding: 0;
}

.qx-hamburger-menu__list__item .qx-hamburger-menu__list .qx-hamburger-menu__list__link {
  font-size: 14px;
}

.qx-hamburger-menu__list__item .qx-hamburger-menu__list .qx-hamburger-menu__list__link::after {
  width: 8px;
  height: 14px;
  background: url("/-/media/aeoncard/service/lp/aeonpay/20250626/images/icon_menu-arrow_02.png") no-repeat center center/contain;
}

main{
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  main {
    margin-top: 53px;
  }
  .qx-hamburger-menu__icon {
    top: 0px;
    right: 0px;
    transform: scale(0.75);
    transform-origin: top right;
    width: 70px;
    height: 70px;
  }
  .qx-hamburger-menu__contents {
    top: 0;
    margin-top: 53px;
    padding:0 0 40px;
    width: 100%;
    height: 100%;
  }
  .qx-hamburger-menu__contents::-webkit-scrollbar {
    width: 4px;
  }
  .qx-hamburger-menu__contents::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
  }
  .qx-hamburger-menu__contents::-webkit-scrollbar-track-piece:start {
    background-color: #f2f2f2;
  }
  .qx-hamburger-menu__contents::-webkit-scrollbar-track-piece:end {
    background-color: #f2f2f2;
  }
}

@media screen and (max-width: 374px) {
  .qx-hamburger-menu__icon {
    right: 0px;
  }
}

.qx-second-top {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .qx-second-top {
  padding: 8vw 0;
}
}

/*os判定*/
.qx-app-links{
visibility:hidden;
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}

body.qx-js-ios .qx-app-links,
body.qx-js-android .qx-app-links,
body.qx-js-pc .qx-app-links{
visibility:visible;
}

.qx-app-link-ios,
.qx-app-link-android,
.qx-app-link-pc{
display:none;
}

body.qx-js-ios .qx-app-link-ios{
display:inline-block;
}

body.qx-js-android .qx-app-link-android{
display:inline-block;
}

body.qx-js-pc .qx-app-link-pc{
display:flex;
gap:20px;
justify-content: center;
}

.qx-app-links-bt{
  max-width: 205px;
  width: 100%;
}


@media screen and (max-width: 768px) {
.qx-app-links{
flex-flow:column nowrap;
align-items: center;
justify-content: center;
gap: 0px;
}

.qx-app-links-bt{
  max-width: 205px;
  width: 100%;
}
}

.qx-main-bt-wrapper {
    display: flex;
    justify-content: center;
}

.qx-main-bt-wrapper a {
  background: #4F419E;
  border-radius: 4px;
  display: flex;
  width: 100%;
  height: 58px;
  max-width: 320px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.qx-main-bt-wrapper a.qx-main-bt-start::before {
  display: inline-block;
  content: "";
  background: url(/-/media/aeoncard/service/lp/aeonpay/20260406/images/icon_start.png) center center no-repeat;
  background-size: cover;
  width: 14px;
  height: 20px;
}


@media screen and (max-width: 768px) {
.qx-main-bt-wrapper a {
    max-width: 237px;

}
}

.qx-page-app {
  padding: 40px 40px 60px;
  width: 100%;
}

.qx-page-app .qx-main__inner {
  max-width: 1000px;
}

.qx-page-app-title {
  font-weight: 600;
  font-size: 20px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .qx-page-app {
  padding: 4vw 4vw 4vw;
  margin-top: 10vw;
}
  .qx-page-app-title {
  font-size: 3.46667vw;
  margin-bottom: 2vw;
}

}

.qx-aeonpay-color-txt {
  color: #B50080;
}

.qx-color-txt-red {
  color: #E51E2E;
}

.qx-float {
  display: none;
  position: fixed;
  z-index: 10;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(241, 241, 241, 0.8);
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .qx-float {
    padding: 2.66667vw;
  }
}

.qx-float__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .qx-float__flex {
    gap: 2.66667vw;
  }
}

.qx-float__flex > img {
  width: 70px;
}

.qx-float__hdg {
  font-size: 15px;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .qx-float__hdg {
    font-size: 3.46667vw;
  }
}

.qx-float__app {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.qx-float__app > a {
  height: 55px;
  flex-shrink: 0;
}

.qx-float__app > a > img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .qx-float__app {
    margin-top: 1.6vw;
    gap: 2.66667vw;
  }
  .qx-float__app > img {
    width: 17vw;
  }
  .qx-float__app > a {
    height: 12vw;
  }
}

.qx-float-end {
  border: none;
  background: none;
}