/* ------------------------------------------------------------------------------
     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;
}

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-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 {
  margin: 0 auto;
  padding: 100px 50px;
  width: 100%;
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  .qx-main {
    padding: 6.66667vw 4vw;
  }
}

.qx-main__title {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .qx-main__title {
    font-size: 7.46667vw;
    margin-bottom: 5.33333vw;
  }
}

.qx-main__lead {
  text-align: center;
  font-size: 21px;
}

@media screen and (max-width: 768px) {
  .qx-main__lead {
    font-size: 4vw;
  }
}

.qx-accordion {
  border: 2px solid #B70081;
  border-left: 15px solid #B70081;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
}

@media screen and (max-width: 768px) {
  .qx-accordion {
    border: 1px solid #B70081;
    border-left: 2.66667vw solid #B70081;
    border-radius: 1.33333vw;
    max-width: 100%;
  }
}

.qx-accordion__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .qx-accordion__list {
    margin-top: 8vw;
    gap: 4vw;
  }
}

.qx-accordion__title {
  padding: 25px 20px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  position: relative;
}

.qx-accordion__title::before, .qx-accordion__title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 25px;
  height: 4px;
  border-radius: 4px;
  background-color: #B70081;
  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 6.66667vw;
    font-size: 5.33333vw;
  }
  .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 25px;
  font-size: 20px;
  font-weight: 600;
  background-color: #f1f1f1;
  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 #f1f1f1;
}

@media screen and (max-width: 768px) {
  .qx-menu__hdg {
    padding: 5.33333vw 6.66667vw;
    font-size: 4vw;
  }
  .qx-menu__hdg::after {
    bottom: -2.66667vw;
    border-left: 1.6vw solid transparent;
    border-right: 1.6vw solid transparent;
    border-top: 2.66667vw solid #f1f1f1;
  }
}

.qx-menu__item {
  padding: 0;
}

.qx-menu__item > a {
  width: 100%;
  padding: 20px 25px;
  font-size: 20px;
  border-top: 1px solid #f1f1f1;
  position: relative;
  color: #1a1a1a;
  display: block;
}

.qx-menu__item > a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(/-/media/AeonCard/service/lp/aeonpay/guide/images/icon_menu-anc.png) no-repeat center center/contain;
}

@media screen and (max-width: 768px) {
  .qx-menu__item > a {
    padding: 4.66667vw 6.66667vw;
    font-size: 4vw;
  }
  .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 {
  margin-top: 90px;
  border-left: 8px solid #B70081;
  padding-left: 12px;
  font-size: 38px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .qx-hdg-lv2 {
    margin-top: 8vw;
    border-left: 1.6vw solid #B70081;
    padding-left: 2.4vw;
    font-size: 6.66667vw;
  }
}

.qx-hdg-lv3 {
  margin-top: 30px;
  padding-left: 30px;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  gap: 13px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .qx-hdg-lv3 {
    margin-top: 5.33333vw;
    padding-left: 4vw;
    font-size: 4.8vw;
    flex-direction: column-reverse;
    gap: 2.66667vw;
    align-items: flex-start;
  }
}

.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: 26px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .qx-hdg-lv4 {
    font-size: 4.26667vw;
  }
}

.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: 40px 50px;
  border-radius: 10px;
  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;
}

@media screen and (max-width: 768px) {
  .qx-box + .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;
}

@media screen and (max-width: 768px) {
  .qx-swiper__img {
    max-width: 44vw;
  }
}

.qx-swiper__txt {
  margin-top: 40px;
  font-size: 16px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .qx-swiper__txt {
    margin-top: 5.33333vw;
    font-size: 3.73333vw;
  }
}

.qx-swiper__txt > a {
  color: #1a1a1a;
  text-decoration: underline;
}

.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: #B70081;
}

.qx-swiper .swiper-button-prev, .qx-swiper .swiper-button-next {
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
}

.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: 5.33333vw;
    height: 5.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;
}

@media screen and (max-width: 768px) {
  .qx-notes {
    margin-top: 4vw;
  }
}

.qx-notes > li {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .qx-notes > li {
    font-size: 3.2vw;
  }
}

.qx-tab__list {
  margin-top: 40px;
  display: flex;
}

.qx-tab__list > li {
  height: 80px;
  border-radius: 18px 18px 0 0;
  background-color: #fff;
  border: 2px solid #B70081;
  border-bottom: none;
}

.qx-tab__list > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  color: #1a1a1a;
}

.qx-tab__list > li.is-active {
  background-color: #B70081;
}

.qx-tab__list > li.is-active > a {
  color: #fff;
}

.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: #1a1a1a;
}

.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: #1a1a1a;
}

.qx-tab__list[data-col="2"] > li {
  width: 50%;
}

.qx-tab__list[data-col="3"] > li {
  width: 33.3%;
}

@media screen and (max-width: 768px) {
  .qx-tab__list {
    margin-top: 5.33333vw;
  }
  .qx-tab__list > li {
    height: 11.73333vw;
    border-radius: 2.4vw 2.4vw 0 0;
    border: 1px solid #B70081;
    border-bottom: none;
  }
  .qx-tab__list > li > a {
    font-size: 2.66667vw;
  }
  .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__contents {
  display: none;
  border: 2px solid #B70081;
  background-color: #ffebff;
  padding: 40px;
  overflow-x: hidden;
}

.qx-tab__contents.is-show {
  display: block;
}

@media screen and (max-width: 768px) {
  .qx-tab__contents {
    border: 1px solid #B70081;
    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;
  }
}
