@charset "UTF-8";

/*---------------------------------*/
/* FV */
/*---------------------------------*/

.kv {
  position: relative;
  height: calc(100svh - 55px);
  width: 100%;
  background-image: url('/camp/seven-eleven_vpointpay/assets/img/kv_pc_bg.png');
  background-size: auto calc(100svh - 55px);
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.kv__img {
  position: absolute;
  max-width: 100%;
  height: auto;
}

.kv__img--1 {
  bottom: 5.5%;
  left: 50%;
  transform: translateX(-50%);
  max-height: calc(100svh * 0.59);
  width: auto;
}

.kv__img--2 {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  max-height: calc(100svh * 0.16);
  width: auto;
}

.zoom-fx {
  transform: scale(0.5);
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
  animation: zoomSmooth 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.5s;
}

@media (max-width: 767px) {
  .kv {
	height: auto;
	background-image: none;
	background-size: auto;
	background-position: 0 0;
	background-repeat: repeat;
	overflow: visible;
  }
  
  .kv__img {
    position: static;
    max-width: 100%;
	width: 100%;
    height: auto;
  }
  
  .zoom-fx {
    animation: zoomSmoothSP 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
}

@media (min-width: 768px) and (max-width: 1024px)  /* 幅 */
  and (min-height: 1024px) and (max-height: 1900px) /* 高さ */ {
  .kv {
	height: auto;
	background-image: none;
	background-size: auto;
	background-position: 0 0;
	background-repeat: repeat;
	overflow: visible;
  }
  
  .kv__img {
    position: static;
    max-width: 100%;
	width: 100%;
    height: auto;
  }
  
  .zoom-fx {
    animation: zoomSmoothSP 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
}

/*---------------------------------*/
/* 留意事項・注意事項 */
/*---------------------------------*/
.notice-accordion {
  border: 1.5px solid #c5c5c5;
}

.notice-accordion h2 {
  padding: 15px;
  background-image: url(/camp/seven-eleven_vpointpay/assets/img/icon-accordion-open.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 16px;
  background-size: 25px;
  font-size: 2vw;
  transition: transform 0.3s ease;
}

.notice-accordion h2.-open {
  background-image: url(/camp/seven-eleven_vpointpay/assets/img/icon-accordion-close.svg);
}

.notice-accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.notice-accordion-content.-open {
  max-height: 500px;
}

.notice-accordion-content > div {
  overflow: hidden;
}

.notice-accordion-content > div > div {
  border-top: 2px dotted #dfdfdf;
  padding: 16px;
}

@media only screen and (max-width: 767px) {
  .notice-accordion h2 {
    font-size: 4vw;
  }
}

.note {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #333333;
  font-weight: 400;
  font-size: 1.35vw;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .note {
    font-size: 12px;
  }
}

.note__text {
    margin-left: 1em;
    text-indent: -1em;
}

.note__text:before {
    content: '※';
}

.note-spacing{
  padding: 0 3.5vw;
}


/*---------------------------------*/
/* 実施中のキャンペーン */
/*---------------------------------*/
.navi_btn_list {
  display: flex;
  width: 100%;
  justify-content: center;
}

.navi_btn_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004098;
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: 6.5vw;
  padding: 1px;
  cursor: pointer;
}

.navi_btn_list li:hover {
	opacity: .6;
}

@media only screen and (max-width: 767px) {
	.navi_btn_list li {
	  height: 13vw;
	}
}

.navi_btn_list li:nth-child(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.navi_btn_list a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	font-size: 1.2vw;
}

@media (max-width: 767px) {
	.navi_btn_list a {
		font-size: 3vw;
    	white-space: nowrap;
	}
}

.navi_btn_list a::after {
  content: "";
  display: block;
  width: 1vw;
  height: 1vw;
  margin: 6px auto 0;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(0) rotate(45deg);
  transition: transform 0.3s ease;
}

.navi_btn_list a:hover::after {
  transform: translateY(4px) rotate(45deg);
}

@media (max-width: 767px) {
	.navi_btn_list a::after {
		width: 2.5vw;
		height: 2.5vw;
		margin: 2px auto 0;
	}
}

.campaign-image {
  width: 100%;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: 25px;
}


/*---------------------------------*/
/* お支払いするとき */
/*---------------------------------*/
.payment__list {
  background: #fff;
  border-radius: 15px;
  padding: 3.5vw 50px;
}

@media (max-width: 767px) {
  .payment__list {
    padding: 1.8vw;
  }
}

.payment__list .item {
    background: #ECEEF0;
    border: 2px solid #004098;
    position: relative;
    border-radius: 15px;
}

.payment__list .item::before {
  position: absolute;
  top: 0;
  left: 0;
  background: #004098;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7vw;
  height: 6.5vw;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 10px;
  font-size: 4vw;
}

@media (max-width: 767px) {
  .payment__list .item::before {
	width: 11.5vw;
	height: 11vw;
	border-bottom-right-radius: 4vw;
	border-top-left-radius: 1.8vw;
	font-size: 7vw;
  }
}

.payment__list .item--1::before {
    content: "1";
}

.payment__list .item--2::before {
    content: "2";
}

.payment__list .item--3::before {
    content: "3";
}

.arrow {
    text-align: center;
    margin: 10px;
}

.arrow__img {
    width: 10% !important;
}


/*---------------------------------*/
/* 特典付与について */
/*---------------------------------*/
.benefit {
	background: #fff;
	border: 2px solid #004098;
	position: relative;
}

.benefit li:not(:first-child) {
    padding: 0 3.5vw;
}

@media (max-width: 767px) {
  .benefit {
      margin-top: 4.6666666667vw;
  }
  
  .benefit li:not(:first-child) {
      padding: 0 3.5vw;
  }
}

.benefit__wrap {
  display: flex;
  padding: 1.5em;
  justify-content: center;
  background: #ECEDEF;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .benefit__wrap {
      padding: 2em 1.5em;
  }
}

.strong-font {
  font-size: 2.8vw;
  font-weight: 800;
}

.super-strong-font {
  font-size: 3.2vw;
  font-weight: 800;
}

@media screen and (max-width: 767px) {
  .strong-font {
    font-size: 5.5vw;
  }
  .super-strong-font {
    font-size: 6.4vw;
    font-weight: 800;
  }
}


/*---------------------------------*/
/* 共通 */
/*---------------------------------*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  padding: 0;
  margin: -1px;
  border: 0;
}

.section-spacing {
  padding: 3.5vw 50px;
}

@media only screen and (max-width: 767px) {
  .section-spacing {
    padding: 8.2353vw 4.7059vw;
  }
}

.step {
    background: #eceef0;
}

.step__title {
  color: #004098;
  font-weight: 700;
  letter-spacing: 0.07em;
  font-size: 2vw;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .step__title {
    font-size: 3.52vw;
    text-align: left;
  }
}

.step__pay-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ECEDEF;
  padding: 2vw 3.5vw;
}

@media screen and (max-width: 767px) {
  .step__pay-wrap {
    padding: 7vw 3.5vw;
  }
}

.point-status {
  display: flex;
  padding: 1vw 3vw;
  flex-direction: column;
  justify-content: center;
  font-size: 4.5vw;
  background: #fff;
  border-radius: 10px;
  margin: 15px 0;
}

.point-status--has,
.point-status--none {
  text-align: center;
  color: #004098;
  font-weight: bold;
  letter-spacing: 0.07em;
  font-size: 1.9vw;
}

@media screen and (max-width: 767px) {
  .point-status--has,
  .point-status--none {
    font-size: 3.5vw;
  }
}

.btn-detail {
  font-weight: bold;
  display: block;
  border: 2px solid #004098;
  background: #004098;
  text-align: center;
  color: #fff;
  letter-spacing: 0.065em;
  position: relative;
  margin: 0 auto;
  box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  
  border-radius: 50px;
  width: 40vw;
  max-width: 1200px;
  padding: 1vw;
  font-size: 1.9vw;
}

@media (max-width: 767px) {
  .btn-detail {
    width: 100%;
    padding: 2.5vw;
    font-size: 3.5vw;
  }
}

.btn-detail:active,
.btn-detail:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 #002d6b;
}

.btn-detail::after {
  transition: all 0.2s ease;
  position: absolute;
  top: 50%;
  right: 1.4em;
  width: 0.8em;
  height: 0.8em;
  transform: translateY(-50%) rotate(45deg);
  content: "";
  border-top: 0.2em solid #fff;
  border-right: 0.2em solid #fff;
}

.btn-detail:hover::after {
  transform: translate(4px, -50%) rotate(45deg);
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item__step-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.item__step-image img {
  display: block;
  border-radius: 15px;
}

.responsive-size {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .responsive-size {
    width: 100%;
    height: 100%;
  }
}

.responsive-fit {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 767px) {
  .responsive-fit {
    width: 100%;
    height: 100%;
  }
}

.responsive-auto {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.bg-accent-green {
  background: #238023 !important;
}
.accent-green {
  color: #238023
}

.bg-accent-orange {
  background: #F77C01 !important;;
}
.accent-orange {
  color: #F77C01
}

.centered-block {
  text-align: center;
  margin-top: 35px;
}

@media (max-width: 767px) {
  .centered-block {
    margin-top: 16px;
  }
}

.bg-light-blue {
  background: #EFF8FA;
}

.section-title {
  text-align: center;
  color: #004098;
  font-weight: bold;
  letter-spacing: 0.07em;
  font-size: 2.2vw;
}

@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 5vw;
    white-space: nowrap;
  }
}

.bg-light-gray {
  background: #ECEDEF;
}

.step__list {
  margin-top: 20px;
}

.step__list .item {
    background: #fff;
    border: 2px solid #004098;
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
    position: relative;
	padding-bottom: 2.5vw;
}

.step__list .item:not(:first-child) {
    margin-top: 3.5vw;
}

@media (max-width: 767px) {
  .step__list .item:not(:first-child) {
    margin-top: 6vw;
  }

  .payment__list .item {
	  border-radius: 2.6vw;
  }
}

.step__list .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #004098;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step__list .item--1::before {
    content: "1";
}

.step__list .item--2::before {
    content: "2";
}

.step__list .item--3::before {
    content: "3";
}

.step__list .item::before {
	width: 6vw;
	height: 6vw;
	border-bottom-right-radius: 11px;
	font-size: 4vw;
}

@media (max-width: 767px) {
  .step__list .item::before {
	width: 13.5vw;
	height: 13.5vw;
	border-bottom-right-radius: 4vw;
	font-size: 7.2vw;
  }
}

.step__list .item__title--1,
.step__list .item__title--2,
.step__list .item__title--3 {
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 2.6em;
  color: #004098;
  font-weight: bold;
  font-size: 2.2vw;
  text-align: left;
}

@media (max-width: 767px) {
  .step__list .item__title--1 {
    font-size: 4vw;
    line-height: 3.45em;
  }
  .step__list .item__title--2 {
    font-size: 4vw;
    line-height: 3.45em;
    padding-left: 12.5vw;
  }
  .step__list .item__title--3 {
    font-size: 3.79vw;
	  line-height: 3.45em;
  }
}

.step__list .item__title::before, .step__list .item__title::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin: 0.25em 0;
}

.app-download_btn {
  background-color: #ff7c00;
  border: 2px solid #ff7c00;
}

.app-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-size: cover;
}

@media (max-width: 767px) {
  .app-download {
    width: 68.6666666667vw;
    margin: 5.3333333333vw auto 0;
  }
}

@media (max-width: 767px) {
  .step__list .item--1 .item__contents .app-download {
    margin-top: 8.2666666667vw;
    width: 72.8vw;
  }
}

.app-download__img:nth-child(1) {
  width: 30%;
}

.app-download__img:nth-child(2).is-other {
  color: #fff;
  background: #004098;
  border-radius: 50px;
}

.step__list .item__contents .app-download__img--store {
  width: 62%;
}

.step__list .item__detail {
  padding: 1vw 3.5vw;
}

@media (max-width: 767px) {
  .step__list .item__detail {
    padding: 3.5vw;
    margin-top: 4vw;
  }

  .step__list .item__step-detail {
      padding: 6vw 0;
  }
}

.item__content {
  padding: 0 3.5vw;
}

.item__inner {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.item__content .item__inner:not(:last-child) {
	margin-bottom: 4vw;
}

.item__number {
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #004098;
  padding: 0.5em;
  font-size: 1.75vw;
}

@media screen and (max-width: 767px) {
  .item__number {
    font-size: 4vw;
    padding: 0.3em;
  }
}

.item__text {
  font-size: 1.65vw;
  line-height: 1.6;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .item__text {
    font-size: 3.2vw;
  }
}

.point-status__content {
  margin-top: 1.8vw;
}

@media screen and (max-width: 767px) {
  .point-status__content {
    margin-top: 3.5294vw;
  }
}

.block-spacing-top {
  margin-top: 3vw;
}

.block-spacing-y {
  margin: 3vw 0;
}

@media screen and (max-width: 767px) {
  .block-spacing-top {
    margin-top: 6vw;
  }

  .block-spacing-y {
    margin: 6vw 0;
  }
}

.payment {
  display: flex;
  background: #ECEEF0 !important;
  box-shadow: none !important;
}

.payment > * {
  width: 50%;
  display: flex;
  align-items: center;
  color: #004098;
  font-weight: bold;
  font-size: 4.8vw;
}

.content-spacing {
	padding: 5vw 1.5vw 0;
}

.benefit__reduction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.1em;
}
.icon-wrap img {
  height: 2em;
  width: auto;
}

.payment__step-text {
  font-size: 2.1vw;
  line-height: 1.6;
  text-align: left;
  margin: 4.2vw 0 0 2vw;
}

@media screen and (max-width: 767px) {
  .payment__step-text {
    margin: 7vw 0 0 3vw;
    font-size: 3.6vw;
  }
}

.benefit__item {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .benefit__item {
    margin-top: 3.5vw;
  }
}

.annotation-text {
  font-size: 1.28vw;
  line-height: 1.6;
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .annotation-text {
    font-size: 2.75vw;
  }
}

.text-primary {
  color: #004098;
  font-weight: 600;
  text-indent: -1em;
  padding-left: 1em;
}

.zoom-wrapper {
  overflow: hidden;
}

@keyframes zoomSmooth {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
    filter: blur(6px);
  }

  60% {
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
    filter: blur(0px);
  }

  80% {
    transform: translateX(-50%) scale(0.98);
  }

  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes zoomSmoothSP {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(6px);
  }

  60% {
    transform: scale(1.08);
    opacity: 1;
    filter: blur(0px);
  }

  80% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0px);
  }
}

.js-accordion:hover {
  cursor: pointer;
}

.flex-col-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
	.visible_sp {
		display: none !important;
	}
}