@charset "UTF-8";
.p-sim__trigger, .p-sim__tab, .p-sim__total-fukidashi, .p-entry__container, .p-float__contents, .js-modal__target {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-caution__container, .p-benefits__tabbtns, .p-benefits__tabinner, .p-safe__contents, .p-useful__contents, .p-more__container, .p-cards__container, .c-container {
  box-sizing: content-box !important;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-caution__container, .p-benefits__tabbtns, .p-benefits__tabinner, .p-safe__contents, .p-useful__contents, .p-more__container, .p-cards__container, .c-container {
    width: 91.6666666667vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-cards__btn-link, .js-accordion__trigger {
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
.p-cards__btn-link:hover, .js-accordion__trigger:hover {
  opacity: 0.7;
}

/* -----------------------------------------------------------------------------
	表示・非表示の切り替え
----------------------------------------------------------------------------- */
[v-cloak] {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}

[hidden] {
  display: none;
}

/* -----------------------------------------------------------------------------
	ページ全体
----------------------------------------------------------------------------- */
body {
  min-width: 1000px;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
}

.c-main {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0;
}
.c-main img {
  display: block;
  max-width: 100%;
  height: auto;
}
.c-main button,
.c-main input {
  font-family: inherit;
  appearance: none;
  outline: none;
}
.c-main input {
  border-radius: 0;
  background-color: #ffffff;
}

/* -----------------------------------------------------------------------------
	モーダル
----------------------------------------------------------------------------- */
.js-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}
.js-modal__bg-enter-active {
  transition: opacity 0.5s;
}
.js-modal__bg-leave-active {
  transition: opacity 0.5s;
}
.js-modal__bg-enter, .js-modal__bg-leave-to {
  opacity: 0;
}
.js-modal__target {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.js-modal__target-enter-active {
  transition: opacity 0.3s, transform 0.5s;
}
.js-modal__target-leave-active {
  transition: opacity 0.3s, transform 0.5s;
}
.js-modal__target-enter, .js-modal__target-leave-to {
  opacity: 0;
  transform: translateY(50px);
}
.js-modal__contents {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  padding-top: 42px;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .js-modal__contents {
    padding-top: 10.8333333333vw;
  }
}
.js-modal__close {
  position: absolute;
  width: 42px;
  height: 42px;
  margin-left: auto;
  top: 0;
  right: 0;
  transform: translate(10%, -10%);
  content: "";
  color: transparent;
}
@media screen and (max-width: 768px) {
  .js-modal__close {
    width: 11.6666666667vw;
    height: 11.6666666667vw;
    right: 4.1666666667vw;
  }
}
.js-modal__close::before, .js-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  content: "";
}
.js-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.js-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.js-modal__content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

/* js-fade:start */
:root {
  --fade-translate-x: 0px;
  --fade-translate-y: 0px;
  --fade-duration: 500ms;
}

/* 表示方向 */
.up {
  --fade-translate-y: 50px;
}

.down {
  --fade-translate-y: -50px;
}

.fromLeft {
  --fade-translate-x: -50px;
}

.fromRight {
  --fade-translate-x: 50px;
}

.jsScroll {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
  transition-delay: 0ms;
  transform: translate(var(--fade-translate-x), var(--fade-translate-y));
}

.jsScrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.jsFvHide {
  opacity: 0;
  transition-duration: 1.5s;
  transition-property: opacity, transform;
  transition-delay: 0s;
}
.jsFvHide.jsFvShow {
  opacity: 1;
}

.fade-enter-active {
  transition: opacity 0.5s;
}
.fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}

/* js-fade:end */
.js-accordion__trigger {
  position: relative;
}
.js-accordion__target {
  overflow: hidden;
}
.js-accordion__target-enter-active {
  transition: all 0.5s ease-in-out;
}
.js-accordion__target-leave-active {
  transition: all 0.5s ease-in-out;
}
.js-accordion__target-enter, .js-accordion__target-leave-to {
  opacity: 0;
}
.js-accordion__icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .js-accordion__icon {
    right: 15px;
    width: 18px;
    height: 18px;
  }
}
.js-accordion__icon::before, .js-accordion__icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transform: translateY(-50%);
  transition: transform 0.3s;
  content: "";
}
.js-accordion--close .js-accordion__icon::after {
  transform: translateY(-50%) rotate(90deg);
}

/* p-xxx:start */
.p-cont picture {
  display: block;
}
.p-cont__blue {
  background-color: #ECF3F8;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/cont_bg_blue.png);
  background-repeat: repeat-y;
  background-position: center top -240px;
  background-size: 1400px;
}
@media screen and (max-width: 768px) {
  .p-cont__blue {
    background-color: #FFFFFF;
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/cont_bg_blue.png);
    background-position: center top;
    background-size: 100%;
  }
}
.p-cont__link {
  color: #0044CC;
}
.p-cont__star {
  display: inline-block;
  position: absolute;
  width: 1.4em;
  left: 0;
}
.p-cont__star--number {
  display: inline-block;
  position: absolute;
  width: 2.5em;
  left: 0;
}
.p-cont__dot {
  display: inline-block;
  position: absolute;
  width: 1.2em;
  left: 0.2em;
}
.p-cont__num {
  display: inline-block;
  position: absolute;
  width: 1.4em;
  left: 0.2em;
}
.p-cont__mark-text {
  position: relative;
  padding-left: 1.4em;
}
.p-cont__mark-text--number {
  position: relative;
  padding-left: 2em;
}
.p-cont__dot-text {
  position: relative;
  padding-left: 1.2em;
}

p#copywright {
  padding-bottom: 94px;
}
@media screen and (max-width: 768px) {
  p#copywright {
    padding-bottom: 16.25vw;
  }
}

/* p-xxx:end */
/* p-mv:start */
.p-mv__container {
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/mv_img.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  width: 100%;
  padding-bottom: 10px;
}
@media screen and (max-width: 1400px) {
  .p-mv__container {
    background-size: 1400px;
  }
}
@media screen and (max-width: 768px) {
  .p-mv__container {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/mv_img.jpg);
    background-size: cover;
    padding-bottom: 4.232323vw;
  }
}
.p-mv__contents {
  position: relative;
  width: 100%;
}
.p-mv__heading {
  position: absolute;
  top: 0;
  left: 0;
}
.p-mv__frame {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 64.2857142857vw;
  height: auto;
}
@media screen and (max-width: 1400px) {
  .p-mv__frame {
    width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .p-mv__frame {
    width: 100%;
  }
}
.p-mv__frame img {
  width: 100%;
}

/* p-mv:end */
.p-cards__infolist--normal, .p-cards__infolist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}

.p-cards__infoitem--noborder, .p-cards__infoitem--ryokin, .p-cards__infoitem {
  position: relative;
  padding-top: 10px;
  padding-bottom: 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-cards__infoitem--noborder, .p-cards__infoitem--ryokin, .p-cards__infoitem {
    padding-top: 0;
    padding: 0;
  }
}
.p-cards__infoitem--noborder:first-child::before, .p-cards__infoitem--ryokin:first-child::before, .p-cards__infoitem:first-child::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #BBBBBB;
  position: absolute;
  right: 0;
  bottom: 0;
}

.p-cards__card-gold--center, .p-cards__card-gold {
  width: 117px;
}
@media screen and (max-width: 768px) {
  .p-cards__card-gold--center, .p-cards__card-gold {
    width: 41.6666666667vw;
  }
}

.p-cards__card-goldu--center, .p-cards__card-goldu {
  width: 136px;
}
@media screen and (max-width: 768px) {
  .p-cards__card-goldu--center, .p-cards__card-goldu {
    width: 41.6666666667vw;
  }
}

/* p-cards:start */
.p-cards__container {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-cards__container {
    padding-top: 5vw;
  }
}
.p-cards__heading {
  margin-top: 35px;
  display: block;
  width: 810px;
}
@media screen and (max-width: 768px) {
  .p-cards__heading {
    width: 91.6666666667vw;
  }
}
.p-cards__btn-link {
  display: block;
  width: 540px;
  height: 86px;
  text-align: center;
  text-decoration: none;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/cards_btn_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cards__btn-link {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/cards_btn_bg.png);
    width: 83.3333333333vw;
    height: 17.9166666667vw;
  }
}
.p-cards__btn-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/cards_icon_btnarrow.png);
  background-repeat: no-repeat;
  background-position: center bottom 9px;
  background-size: 18px auto;
}
@media screen and (max-width: 768px) {
  .p-cards__btn-link::before {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/cards_icon_btnarrow.png);
    background-repeat: no-repeat;
    background-position: center bottom 1.875vw;
    background-size: 3.75vw auto;
  }
}
.p-cards__btn-txt {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.1818181818;
  color: #FFFFFF;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-cards__btn-txt {
    padding-top: 0.8333333333vw;
    font-size: 4.5833333333vw;
    top: 0.8333333333vw;
  }
}
.p-cards__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.p-cards__listitem {
  padding-top: 16px;
  width: 440px;
}
@media screen and (max-width: 768px) {
  .p-cards__listitem {
    padding-top: 4.1666666667vw;
    width: 91.6666666667vw;
  }
}
.p-cards__ttl {
  margin-bottom: -18px;
}
@media screen and (max-width: 768px) {
  .p-cards__ttl {
    margin-bottom: -3.75vw;
  }
}
.p-cards__info, .p-cards__info--top {
  padding-top: 22px;
  padding-bottom: 24px;
  background-color: #ffffff;
  height: calc(100% - 18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-cards__info, .p-cards__info--top {
    padding-top: 3.75vw;
    padding-bottom: 5vw;
    height: auto;
  }
}
.p-cards__info--top {
  justify-content: flex-start;
}
.p-cards__infolist--normal {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-cards__infolist--normal {
    margin-top: 5vw;
  }
}
.p-cards__ryokin-head {
  margin-top: 7px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-cards__ryokin-head {
    margin-top: 2.5vw;
    font-size: 3.75vw;
  }
}
.p-cards__ryokin-head--small {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-cards__ryokin-head--small {
    font-size: 3.3333333333vw;
  }
}
.p-cards__infoitem {
  width: 195px;
}
@media screen and (max-width: 768px) {
  .p-cards__infoitem {
    width: 41.6666666667vw;
  }
}
.p-cards__infoitem--ryokin {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .p-cards__infoitem--ryokin {
    width: 41.6666666667vw;
  }
}
.p-cards__infoitem--noborder:first-child {
  margin-left: 12px;
  padding-right: 86px;
}
@media screen and (max-width: 768px) {
  .p-cards__infoitem--noborder:first-child {
    margin-left: 0;
    padding-right: 0;
  }
}
.p-cards__infoitem--noborder:first-child::before {
  content: none;
}
.p-cards__infoitem--hosho {
  width: 35%;
  padding-bottom: 20px;
}
.p-cards__infoitem--hosho:first-child {
  margin-right: 10%;
}
.p-cards__card-gold {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-cards__card-gold {
    margin-right: auto;
  }
}
.p-cards__card-goldu {
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .p-cards__card-goldu {
    margin-left: auto;
  }
}
.p-cards__nenkai-free {
  margin-left: 20px;
  margin-bottom: 2px;
  width: 152px;
}
@media screen and (max-width: 768px) {
  .p-cards__nenkai-free {
    margin-left: 0;
    padding-top: 2.9166666667vw;
    margin-bottom: -1.6666666667vw;
    width: 41.6666666667vw;
  }
}
.p-cards__nenkai-txt {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-cards__nenkai-txt {
    padding-top: 0;
  }
}
.p-cards__free-list {
  margin-top: 16px;
  padding: 10px;
  width: 380px;
  border-radius: 12px;
  background-color: rgba(203, 189, 190, 0.4);
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cards__free-list {
    border-radius: 2.5vw;
    font-size: 1.6rem;
    width: 79.1666666667vw;
  }
}
.p-cards__free-list::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid rgba(203, 189, 190, 0.4);
  position: absolute;
  bottom: 100%;
  right: 77px;
}
@media screen and (max-width: 768px) {
  .p-cards__free-list::after {
    right: 16.0416666667vw;
  }
}
.p-cards__free-item {
  padding-left: 1.2em;
  line-height: 1.5;
}
.p-cards__free-itemnum {
  line-height: 1.5;
}
.p-cards__star {
  width: 1.2em;
}
.p-cards__free-innerlist {
  padding-left: 1em;
}
.p-cards__text {
  margin-top: 16px;
  margin-bottom: 26px;
  width: 188px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  .p-cards__text {
    margin-top: 5.2083333333vw;
    margin-bottom: 3.3333333333vw;
    width: 39.1666666667vw;
    font-size: 3.3333333333vw;
  }
}
.p-cards__ryokin-txt10per {
  width: 182px;
}
@media screen and (max-width: 768px) {
  .p-cards__ryokin-txt10per {
    width: 41.6666666667vw;
  }
}
.p-cards__ryokin-txt5per {
  width: 152px;
}
@media screen and (max-width: 768px) {
  .p-cards__ryokin-txt5per {
    width: 41.6666666667vw;
  }
}
.p-cards__tsumitate {
  padding-bottom: 14px;
  width: 279px;
}
@media screen and (max-width: 768px) {
  .p-cards__tsumitate {
    margin-top: 4.5833333333vw;
    padding-bottom: 2.9166666667vw;
    width: 100%;
  }
}
.p-cards__hosho-lead {
  margin-top: 12px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-cards__hosho-lead {
    font-feature-settings: normal;
    margin-top: 4.5833333333vw;
    font-size: 3.75vw;
  }
}
.p-cards__hosho-large {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-cards__hosho-large {
    font-size: 4.1666666667vw;
    font-feature-settings: "palt";
  }
}
.p-cards__hosho-2ndline {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-cards__hosho-2ndline {
    margin-top: 0;
  }
}
.p-cards__hosho-red {
  font-size: 2rem;
  font-weight: bold;
  color: #CC0033;
}
@media screen and (max-width: 768px) {
  .p-cards__hosho-red {
    font-size: 4.1666666667vw;
  }
}
.p-cards__hosho {
  margin-top: 14px;
  margin-bottom: 14px;
  width: 254px;
}
@media screen and (max-width: 768px) {
  .p-cards__hosho {
    margin-top: 1.6666666667vw;
    padding-bottom: 0;
    width: 100%;
  }
}
.p-cards__note {
  width: 400px;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: 1.2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cards__note {
    margin-top: 0;
    width: 83.3333333333vw;
  }
}
.p-cards__note--ryokin {
  margin-top: 8px;
  width: 400px;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-cards__note--ryokin {
    margin-top: 2.9166666667vw;
    width: 83.3333333333vw;
  }
}
.p-cards__firstnote {
  padding-top: 5px;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-cards__firstnote {
    width: 91.6666666667vw;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-cards__ticket {
  margin-top: 32px;
  padding-bottom: 28px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 4px solid #49BB95;
  border-bottom: 4px solid #49BB95;
}
@media screen and (max-width: 768px) {
  .p-cards__ticket {
    margin-top: 8.3333333333vw;
    padding-bottom: 7.0833333333vw;
    border-top-width: 0.8333333333vw;
    border-bottom-width: 0.8333333333vw;
  }
}
.p-cards__ticket-ttl {
  margin-top: -4px;
}
@media screen and (max-width: 768px) {
  .p-cards__ticket-ttl {
    margin-top: -0.8333333333vw;
    width: 52.5vw;
  }
}
.p-cards__ticket-copy {
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .p-cards__ticket-copy {
    margin-top: 3.125vw;
  }
}
.p-cards__ticket-detail {
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-cards__ticket-detail {
    margin-top: 4.1666666667vw;
    margin-bottom: 4.7916666667vw;
  }
}

/* p-cards:end */
.p-more__listitem-pay, .p-more__listitem-show {
  padding-bottom: 5px;
  border-radius: 10px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-more__listitem-pay, .p-more__listitem-show {
    padding-bottom: 0;
    border-radius: 1.6666666667vw;
  }
}

/* p-more:start */
.p-more__container {
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .p-more__container {
    padding-bottom: 8.3333333333vw;
  }
}
.p-more .js-accordion__icon {
  right: 110px;
}
.p-more .js-accordion__icon::after, .p-more .js-accordion__icon::before {
  height: 3px;
}
@media screen and (max-width: 480px) {
  .p-more .js-accordion__icon::after, .p-more .js-accordion__icon::before {
    height: 0.625vw;
  }
}
@media screen and (max-width: 768px) {
  .p-more .js-accordion__icon {
    right: 8.3333333333vw;
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
}
.p-more__acd {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-more__acd {
    margin-left: auto;
    margin-right: auto;
    border-radius: 1.6666666667vw;
  }
}
.p-more__acd-btn {
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  background-color: #548FBB;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-more__acd-btn {
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
  }
}
.p-more__acd-btntxt {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: block;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 1px 1px 0 #2C6A98;
  font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
  .p-more__acd-btntxt {
    letter-spacing: normal;
    font-size: 3.9583333333vw;
    text-shadow: 1px 1px 0 #2C6A98;
  }
}
.p-more__acd-target {
  overflow: hidden;
}
.p-more__acd-content {
  padding-top: 24px;
  padding-bottom: 40px;
  padding-left: 94px;
  padding-right: 94px;
  background-color: #F3F7FA;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-more__acd-content {
    padding-top: 3.3333333333vw;
    padding-bottom: 5vw;
    padding-left: 4.1666666667vw;
    padding-right: 4.1666666667vw;
  }
}
.p-more__paylist {
  margin-top: 24px;
  width: 446px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-more__paylist {
    margin-top: 3.3333333333vw;
    width: 100%;
  }
}
.p-more__listitem-show {
  width: 241px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-more__listitem-show {
    width: 45vw;
  }
}
.p-more__illust {
  width: 222px;
}
@media screen and (max-width: 768px) {
  .p-more__illust {
    width: 100%;
  }
}
.p-more__illust--small {
  width: 156px;
}
@media screen and (max-width: 768px) {
  .p-more__illust--small {
    width: 100%;
  }
}
.p-more__plus {
  width: 37.5px;
  position: absolute;
  right: -29px;
}
@media screen and (max-width: 768px) {
  .p-more__plus {
    width: 6.25vw;
    right: -4.5833333333vw;
  }
}
.p-more__listitem-pay {
  width: 185px;
}
@media screen and (max-width: 768px) {
  .p-more__listitem-pay {
    width: 35vw;
  }
}
.p-more__txt {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 2.1rem;
  color: #49BB95;
  font-weight: bold;
  line-height: 1.1904761905;
  text-align: center;
  letter-spacing: -0.06em;
}
@media screen and (max-width: 768px) {
  .p-more__txt {
    letter-spacing: -0.05em;
    font-size: 3.5416666667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-more__txt--small {
    font-size: 2rem;
  }
}
.p-more__store {
  margin-top: 30px;
  padding: 0 145px;
  border-radius: 10px;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-more__store {
    margin-top: 3.3333333333vw;
    padding: 0;
    border-radius: 1.6666666667vw;
  }
}
.p-more__point-ttl {
  margin-top: 24px;
  width: 54rem;
  height: 4.4rem;
  border-radius: 2.2rem;
  background-color: #49BB95;
  font-size: 2.6rem;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-more__point-ttl {
    margin-top: 6.6666666667vw;
    font-size: 4.375vw;
    width: 72.2916666667vw;
    height: 7.5vw;
    border-radius: 3.75vw;
  }
}
.p-more__point-ttl::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 16px solid #49BB95;
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
}
@media screen and (max-width: 768px) {
  .p-more__point-ttl::after {
    border-left: 2.0833333333vw solid transparent;
    border-right: 2.0833333333vw solid transparent;
    border-top: 2.9166666667vw solid #49BB95;
  }
}
.p-more__point-ttl--small {
  font-size: 2.3rem;
}
@media screen and (max-width: 768px) {
  .p-more__point-ttl--small {
    font-size: 3.9583333333vw;
  }
}
.p-more__point-ttltxt {
  padding-top: 0.9rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-more__point-ttltxt {
    padding-top: 1.6666666667vw;
  }
}
.p-more__point-txt {
  margin-top: 20px;
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: -0.06em;
  font-feature-settings: normal;
  line-height: 1.6086956522;
}
@media screen and (max-width: 768px) {
  .p-more__point-txt {
    font-size: 3.75vw;
    line-height: 1.6666666667;
  }
}
.p-more__point-txt--large {
  font-size: 2.5rem;
  letter-spacing: -0.06em;
}
@media screen and (max-width: 768px) {
  .p-more__point-txt--large {
    font-size: 4.1666666667vw;
  }
}
.p-more__point-txt--small {
  font-size: 2rem;
  letter-spacing: -0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-more__point-txt--small {
    font-size: 3.3333333333vw;
  }
}
.p-more__point-merit {
  margin-top: 8px;
}
.p-more__point-illust {
  margin-top: 20px;
  width: 392px;
}
@media screen and (max-width: 768px) {
  .p-more__point-illust {
    margin-top: 0;
    width: 100%;
  }
}
.p-more__note {
  margin-top: 4px;
  position: relative;
  padding-left: 1.4em;
}
@media screen and (max-width: 768px) {
  .p-more__note {
    margin-top: 10px;
    line-height: 1.2;
    font-size: 1.6rem;
  }
}

/* p-more:end */
/* p-useful:start */
.p-useful__container {
  padding-top: 60px;
  padding-bottom: 56px;
  background-color: #DBF3EB;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/useful_bg_green.png);
  background-repeat: repeat-y;
  background-position: center top -241px;
  background-size: 1400px;
}
@media screen and (max-width: 768px) {
  .p-useful__container {
    padding-top: 6.6666666667vw;
    padding-bottom: 8.3333333333vw;
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/useful_bg_green.png);
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100%;
  }
}
.p-useful__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.p-useful__title {
  position: relative;
}
.p-useful__subttl {
  position: absolute;
}
.p-useful__pay {
  width: 890px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding-top: 37px;
  padding-bottom: 22px;
  position: relative;
  background-color: #ffffff;
  border: 2px solid #333333;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-useful__pay {
    margin-right: 1.6666666667vw;
    padding-left: 2.9166666667vw;
    padding-right: 2.9166666667vw;
    padding-top: 3.125vw;
    padding-bottom: 6.25vw;
    width: 90vw;
  }
}
.p-useful__pay::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 2px);
  background-color: #F2D97A;
  border: 2px solid #333333;
  position: absolute;
  left: 12px;
  bottom: -12px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-useful__pay::before {
    height: 100%;
    left: 2.0833333333vw;
    bottom: -2.0833333333vw;
  }
}
@media screen and (max-width: 480px) {
  .p-useful__pay::before {
    left: 10px;
    bottom: -10px;
  }
}
.p-useful__copy {
  margin-left: 10px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-useful__copy {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-useful__start-txt {
  font-size: 2.4rem;
  line-height: 1.375;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-useful__start-txt {
    font-size: 5vw;
  }
}
.p-useful__start-txt--red {
  color: #CC0033;
}
.p-useful__start-txt--small {
  font-size: 2.1rem;
}
@media screen and (max-width: 768px) {
  .p-useful__start-txt--small {
    font-size: 4.5833333333vw;
  }
}
.p-useful__sup {
  font-size: 0.6em;
}
.p-useful__illust {
  width: 303px;
}
@media screen and (max-width: 768px) {
  .p-useful__illust {
    margin-top: 2.5vw;
    width: 100%;
  }
}
.p-useful__pay-notelist {
  margin-top: 7px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  padding-right: 24px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-useful__pay-notelist {
    margin-top: 2.9166666667vw;
    padding-right: 0;
  }
}
.p-useful__pay-note {
  line-height: 1.5;
  position: relative;
  padding-left: 1.4em;
}
@media screen and (max-width: 768px) {
  .p-useful__pay-note {
    font-size: 1.6rem;
  }
}
.p-useful__caselist {
  margin-top: 30px;
  margin-left: 10px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-useful__caselist {
    margin-top: 3.3333333333vw;
    margin-right: auto;
    left: auto;
    justify-content: space-between;
    align-items: flex-end;
    width: 77.5vw;
  }
}
.p-useful__caseitem-shop {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-useful__caseitem-shop {
    margin-right: 0;
    padding-top: 2.5vw;
    width: 34.5833333333vw;
    flex-direction: column;
  }
}
.p-useful__caseitem-pay {
  margin-left: 45px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-useful__caseitem-pay {
    margin-left: 0;
    width: 39.375vw;
    flex-direction: column;
  }
}
.p-useful__case-txt {
  padding-right: 20px;
  font-size: 1.9rem;
  line-height: 1.3157894737;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-useful__case-txt {
    padding-right: 0;
    font-size: 3.9583333333vw;
    width: 100%;
  }
}
.p-useful__illust-shop {
  width: 129px;
}
@media screen and (max-width: 768px) {
  .p-useful__illust-shop {
    margin-top: 5.625vw;
    width: 100%;
  }
}
.p-useful__illust-phone {
  width: 48px;
}
@media screen and (max-width: 768px) {
  .p-useful__illust-phone {
    margin-top: 3.3333333333vw;
    width: 100%;
  }
}
.p-useful__checklist {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.p-useful__checklistitem {
  padding-top: 28px;
  padding-bottom: 16px;
  width: 436px;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-useful__checklistitem {
    padding-top: 6.6666666667vw;
    padding-bottom: 5vw;
    padding-left: 4.1666666667vw;
    padding-right: 4.1666666667vw;
    width: 100%;
    justify-content: flex-start;
  }
  .p-useful__checklistitem:not(:first-child) {
    margin-top: 9.375vw;
  }
}
.p-useful__check-mark {
  position: absolute;
  width: 60px;
  top: -22px;
  left: -8px;
}
@media screen and (max-width: 768px) {
  .p-useful__check-mark {
    width: 10.4166666667vw;
    top: -7.5vw;
    left: -1.25vw;
  }
}
.p-useful__table {
  margin-bottom: 8px;
  width: 340px;
}
@media screen and (max-width: 768px) {
  .p-useful__table {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
  }
}
.p-useful__check-notelist {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-useful__check-notelist {
    margin-top: 1.6666666667vw;
    width: 100%;
    align-items: flex-start;
  }
}
.p-useful__check-note {
  width: 100%;
  line-height: 1.5;
  position: relative;
  padding-left: 1.4em;
}
@media screen and (max-width: 768px) {
  .p-useful__check-note {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-useful__check-note--autowidth {
  width: auto;
  line-height: 1.5;
  position: relative;
  padding-left: 1.4em;
}
@media screen and (max-width: 768px) {
  .p-useful__check-note--autowidth {
    width: 77.0833333333vw;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-useful__illust-free {
  padding-top: 0.9174311927%;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .p-useful__illust-free {
    margin-top: 0;
    margin-bottom: 2.0833333333vw;
    padding-top: 0;
    width: 100%;
  }
}

/* p-useful:end */
/* p-safe:start */
.p-safe__container {
  background-color: #E9F7F2;
}
.p-safe__contents {
  padding-top: 48px;
  padding-bottom: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-safe__contents {
    padding-top: 8.3333333333vw;
    padding-bottom: 22.9166666667vw;
  }
}
.p-safe__subttl {
  width: 540px;
}
@media screen and (max-width: 768px) {
  .p-safe__subttl {
    width: 100%;
  }
}
.p-safe__list {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-safe__list {
    margin-top: 5.2083333333vw;
  }
}
.p-safe__listitem {
  padding-top: 25px;
  width: 430px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-safe__listitem {
    margin-left: auto;
    margin-right: auto;
    padding-top: 5.2083333333vw;
    width: 89.5833333333vw;
  }
  .p-safe__listitem:not(:first-child) {
    margin-top: 5vw;
  }
}
.p-safe__ttl {
  padding-right: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-safe__ttl {
    padding-right: 0;
  }
}
.p-safe__info {
  width: 422px;
  margin-right: 8px;
  margin-bottom: 8px;
  padding-top: 40px;
  position: relative;
  background-color: #ffffff;
  border: 2px solid #333333;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-safe__info {
    margin-left: 0.4166666667vw;
    margin-right: 1.6666666667vw;
    padding-top: 8.5416666667vw;
    width: 87.9166666667vw;
  }
}
.p-safe__info::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 2px);
  background-color: #49BB95;
  border: 2px solid #333333;
  position: absolute;
  left: 10px;
  bottom: -10px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-safe__info::before {
    height: 100%;
    left: 2.0833333333vw;
    bottom: -2.0833333333vw;
  }
}
@media screen and (max-width: 480px) {
  .p-safe__info::before {
    left: 10px;
    bottom: -10px;
  }
}
.p-safe__txt {
  margin-bottom: 20px;
  width: 360px;
  font-size: 2.2rem;
  line-height: 1.5454545455;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-safe__txt {
    margin-bottom: 4.1666666667vw;
    width: 75vw;
    font-size: 4.5833333333vw;
  }
}

/* p-safe:end */
.p-benefits__tabbtn-goldu, .p-benefits__tabbtn-gold {
  width: 50%;
  height: 56px;
  border-radius: 16px 16px 0 0;
  background-color: #DFDFDF;
  color: #C2C2C2;
  font-size: 2.2rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-benefits__tabbtn-goldu, .p-benefits__tabbtn-gold {
    height: 70px;
  }
}
@media screen and (max-width: 480px) {
  .p-benefits__tabbtn-goldu, .p-benefits__tabbtn-gold {
    height: 14.5833333333vw;
    font-size: 4.5833333333vw;
  }
}

.p-benefits__listitem--plusicon, .p-benefits__listitem {
  padding-bottom: 24px;
  border-radius: 10px;
  background-color: #FDF2F4;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-benefits__listitem--plusicon, .p-benefits__listitem {
    padding-bottom: 4.5833333333vw;
    border-radius: 2.0833333333vw;
  }
}

/* p-benefits:start */
.p-benefits {
  position: relative;
}
.p-benefits__container {
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/benefits_bg.png);
  background-repeat: no-repeat;
  background-position: center top 56px;
  background-size: 1400px;
}
@media screen and (max-width: 768px) {
  .p-benefits__container {
    background: none;
  }
}
.p-benefits__tabbtns {
  position: relative;
  z-index: 1;
  margin-top: -56px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-benefits__tabbtns {
    margin-top: -70px;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p-benefits__tabbtns {
    margin-top: -14.5833333333vw;
  }
}
.p-benefits__tabbtn-gold.jsActive {
  background-color: #BE8C2B;
  color: #fff;
}
.p-benefits__tabbtn-goldu.jsActive {
  background-color: #E1C953;
  color: #fff;
  text-shadow: 1px 1px 1px #D8BE3C;
}
@media screen and (max-width: 768px) {
  .p-benefits__tabwrap, .p-benefits__tabwrap--gold {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/benefits_bg_goldu.png);
    background-position: center top;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .p-benefits__tabwrap--gold {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/benefits_bg.png);
  }
}
.p-benefits__tabinner {
  padding-top: 40px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-benefits__tabinner {
    padding-top: 6.25vw;
    padding-bottom: 8.3333333333vw;
  }
}
.p-benefits__heading {
  width: 634px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-benefits__heading {
    width: 92.7083vw;
  }
  .p-benefits__heading img {
    width: 100%;
  }
}
.p-benefits__note {
  width: 712px;
  margin: 10px auto 10px;
  padding: 16px 24px;
  border: 1px solid #CC0033;
  background-color: #FFFFFF;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-benefits__note {
    width: 91.6667vw;
    margin: 2vw auto 1vw;
    padding: 3.3333vw 5vw;
    font-size: 3.75vw;
  }
}
.p-benefits__maintxt {
  width: 712px;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-benefits__maintxt {
    width: 68.125vw;
    padding-bottom: 5vw;
    padding-top: 6.25vw;
  }
  .p-benefits__maintxt img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-benefits__details {
    width: 91.6667vw;
  }
  .p-benefits__details img {
    width: 100%;
  }
}
.p-benefits__terms {
  margin: 18px 0 24px;
  font-size: 16px;
  line-height: 1.3125;
}
@media screen and (max-width: 768px) {
  .p-benefits__terms {
    margin: 3.75vw 0 5vw;
    font-size: 3.5417vw;
  }
}
.p-benefits__terms a {
  color: #CC0033;
}
.p-benefits__mainnote {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4375;
}
@media screen and (max-width: 768px) {
  .p-benefits__mainnote {
    margin-bottom: 1.25vw;
  }
}
.p-benefits__title {
  position: relative;
}
.p-benefits__title--gold, .p-benefits__title--goldu {
  padding-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-benefits__title--gold, .p-benefits__title--goldu {
    padding-top: 1.25vw;
  }
}
.p-benefits__subttl {
  width: 130px;
  position: absolute;
  left: 56px;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-benefits__subttl {
    width: 83.3333333333vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-benefits__ttl-img {
  width: 712px;
}
@media screen and (max-width: 768px) {
  .p-benefits__ttl-img {
    width: 100%;
    margin-bottom: 3.3333333333vw;
  }
}
.p-benefits__btn-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54rem;
  height: 8rem;
  border-radius: 4rem;
  border: 3px solid #CC0033;
  background-color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2727272727;
  text-decoration: none;
  color: #CC0033;
}
@media screen and (max-width: 768px) {
  .p-benefits__btn-link {
    width: 83.3333333333vw;
    height: 13.3333333333vw;
    border-radius: 6.6666666667vw;
    font-size: 3.75vw;
    line-height: 1.3333333333;
  }
}
.p-benefits__btn-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/benefits_icon_btnarrow.png);
  background-repeat: no-repeat;
  background-position: right 28px center;
  background-size: 11px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-benefits__btn-link::before {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/benefits_icon_btnarrow.png);
    background-position: right 5vw center;
    background-size: 2.2916666667vw;
  }
}
.p-benefits__tabAreaPos {
  position: absolute;
  top: -50px;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-benefits__tabAreaPos {
    top: -7.7083333333vw;
  }
}

/* p-benefits:end */
.p-compare__table-goldu, .p-compare__table-gold {
  padding-top: 7px;
  padding-bottom: 7px;
  background-color: #333333;
  color: #fff;
  text-align: center;
}

.p-compare__bg--white, .p-compare__bg--gray {
  position: relative;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/compare_img_tableline.png);
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 1px;
}
.p-compare__bg--white::after, .p-compare__bg--gray::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}

.p-compare__txt, .p-compare__table-category {
  padding-left: 7px;
  padding-right: 7px;
}

.p-compare__table-link--topmargin, .p-compare__table-link {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3846153846;
}

/* p-compare:start */
.p-compare {
  background-color: #E8F4F8;
  overflow: hidden;
}
.p-compare a {
  color: #0044CC;
}
.p-compare__container {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .p-compare__container {
    padding-top: 8.3333333333vw;
    padding-bottom: 8.3333333333vw;
  }
}
.p-compare__contents {
  width: 100%;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-compare__contents {
    padding-bottom: 2px;
    overflow-x: scroll;
  }
}
.p-compare__heading {
  margin-bottom: 30px;
  font-size: 3.1rem;
  font-weight: bold;
  text-shadow: 3px 3px 0px #e6e6e6;
  position: relative;
  line-height: 1.2;
  font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
  .p-compare__heading {
    font-size: 6.4583333333vw;
    line-height: 1.2258064516;
  }
}
.p-compare__heading::after {
  content: "";
  display: block;
  width: 116px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  bottom: 14px;
  left: 360px;
}
@media screen and (max-width: 768px) {
  .p-compare__heading::after {
    width: 29.1666666667vw;
    top: auto;
    bottom: 2.5vw;
    left: auto;
    right: -4.1666666667vw;
    width: 19.375vw;
  }
}
.p-compare__heading-small {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .p-compare__heading-small {
    font-size: 5.4166666667vw;
  }
}
.p-compare__table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.5rem;
  font-weight: bold;
  border-color: #333333;
  border-style: solid;
  border-left-width: 0;
  border-right-width: 1px;
  border-top-width: 0;
  border-bottom-width: 1px;
}
@media screen and (max-width: 768px) {
  .p-compare__table {
    font-size: 1.6rem;
  }
}
.p-compare__table td {
  vertical-align: top;
}
table .p-compare__cell-center {
  vertical-align: middle;
}
.p-compare__card-txt {
  padding-left: 9px;
  text-align: left;
  line-height: 1.3333333333;
}
.p-compare__table-category {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  width: 86px;
  line-height: 1.5333333333;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-compare__table-category {
    padding-left: 4px;
    padding-right: 4px;
    width: 88px;
  }
}
.p-compare__table-link--topmargin {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-compare__table-link--topmargin {
    margin-top: 4px;
  }
}
.p-compare__txt {
  padding-top: 16px;
  padding-bottom: 16px;
  line-height: 1.56;
  font-weight: 400;
}
.p-compare__txt-indent {
  display: inline-block;
  position: relative;
  padding-left: 1.4em;
}
.p-compare__txt-note {
  display: inline-block;
  position: relative;
  padding-left: 1.4em;
}
.p-compare__note {
  margin-bottom: 10px;
  line-height: 1.56;
  position: relative;
  padding-left: 1.4em;
}
.p-compare__head-tb {
  background-color: #F6F6F6;
  position: relative;
}
.p-compare__head-tb::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/compare_txt_kangen.png);
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: 17px auto;
}
.p-compare__head-tb--futai {
  background-color: #fff;
  position: relative;
}
.p-compare__head-tb--futai::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/compare_txt_hoken.png);
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: 17px auto;
}
.p-compare__txt-tb {
  margin-left: 7px;
  margin-right: 7px;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  width: 17px;
}
.p-compare__table-gold {
  border-left: 1px solid #333333;
}
.p-compare__table-goldu {
  border-right: 1px solid #333333;
  border-left: 1px solid #BBBBBB;
}
.p-compare__table-card {
  border: 1px solid #333333;
  border-right-width: 0;
  border-bottom-width: 0;
  background-color: #FFFAEB;
  text-align: left;
  width: 392px;
}
.p-compare__cardimg-gold {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 271px;
}
@media screen and (max-width: 768px) {
  .p-compare__cardimg-gold {
    padding-left: 29px;
    padding-right: 29px;
    width: 316px;
  }
}
.p-compare__cardimg-goldu {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 233px;
}
.p-compare__bg {
  border: 1px solid #333333;
  border-right-width: 0;
}
.p-compare__bg th,
.p-compare__bg td {
  border: 1px solid #333333;
  border-right-width: 0;
}
.p-compare__bg--nenkai {
  background-color: #fff;
}
.p-compare__bg--point {
  border: 1px solid #333333;
  border-right-width: 0;
}
.p-compare__bg--point th,
.p-compare__bg--point td {
  border: 1px solid #333333;
  border-top-width: 0;
  border-right-width: 0;
}
.p-compare__bg--gray {
  background-color: #F6F6F6;
}
.p-compare__bg--gray td,
.p-compare__bg--gray th {
  border-color: #333333;
  border-style: solid;
  border-left-width: 1px;
  border-right-width: 0;
  border-top-width: 0;
  border-bottom-width: 0;
}
.p-compare__bg--white {
  background-color: #fff;
}
.p-compare__bg--white td,
.p-compare__bg--white th {
  border-color: #333333;
  border-style: solid;
  border-left-width: 1px;
  border-right-width: 0;
  border-top-width: 0;
  border-bottom-width: 0;
}
.p-compare__firstrow td,
.p-compare__firstrow th {
  border-top-width: 1px;
}
.p-compare__no-dotline {
  background-image: none;
}
.p-compare__only-topborder {
  border-color: #333333;
  border-style: solid;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 0px;
  border-right-width: 0px;
}
.p-compare__only-leftborder {
  border-color: #333333;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 1px;
  border-right-width: 0px;
}
.p-compare__only-bottomborder {
  border-color: #333333;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 1px;
  border-left-width: 0px;
  border-right-width: 0px;
}
.p-compare__note {
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .p-compare__note {
    font-size: 1.6rem;
  }
}
.p-compare__cardimg-note {
  margin-left: auto;
  margin-right: auto;
  margin-top: 6px;
  margin-bottom: 8px;
  width: 364px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4375;
  padding-left: 1.4em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-compare__cardimg-note {
    margin-left: 8px;
    margin-right: 8px;
    width: 316px;
  }
}
.p-compare__nenkai-notelead {
  line-height: 1.2;
  position: relative;
  padding-left: 1.4em;
}
.p-compare__nenkai-notetxt {
  line-height: 1.56;
}
.p-compare__nenkai-innerlist {
  padding-left: 1em;
}

/* p-compare:end */
.p-info__yearttl, .p-info__card-ttl {
  margin-bottom: 8px;
  padding: 6px 8px;
  background-color: #FEF5CB;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-info__yearttl, .p-info__card-ttl {
    padding: 1.25vw 2.0833333333vw;
    font-size: 3.75vw;
  }
}

/* p-info:start */
.p-info {
  background-color: #FEF5CB;
}
.p-info__container {
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-info__container {
    padding-top: 8.3333333333vw;
    padding-bottom: 8.3333333333vw;
  }
}
.p-info .js-accordion__icon {
  right: 38px;
  width: 24px;
  height: 24px;
}
.p-info .js-accordion__icon::after, .p-info .js-accordion__icon::before {
  background-color: #333333;
  height: 4px;
}
@media screen and (max-width: 480px) {
  .p-info .js-accordion__icon::after, .p-info .js-accordion__icon::before {
    height: 0.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .p-info .js-accordion__icon {
    height: 3px;
    right: 3.3333333333vw;
    width: 3.9583333333vw;
    height: 3.9583333333vw;
  }
}
.p-info__acd {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-info__acd-btn {
  padding-top: 26px;
  padding-bottom: 26px;
  position: relative;
  width: 100%;
  background-color: #FFE564;
  border: 2px solid #333333;
}
@media screen and (max-width: 768px) {
  .p-info__acd-btn {
    padding-top: 5.625vw;
    padding-bottom: 5.625vw;
  }
}
.p-info__acd-btntxt {
  font-size: 2.4rem;
  display: block;
  text-align: center;
  font-weight: bold;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .p-info__acd-btntxt {
    margin-right: 3.75vw;
    font-size: 4.5833333333vw;
  }
}
.p-info__acd-target {
  overflow: hidden;
}
.p-info__acd-content {
  padding-top: 32px;
  padding-bottom: 32px;
  padding-right: 94px;
  padding-left: 94px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-info__acd-content {
    padding-top: 8.3333333333vw;
    padding-bottom: 6.6666666667vw;
    padding-left: 4.1666666667vw;
    padding-right: 4.1666666667vw;
  }
}
.p-info__security {
  width: 100%;
}
.p-info__ttl {
  margin-bottom: 24px;
  width: 224px;
}
@media screen and (max-width: 768px) {
  .p-info__ttl {
    margin-bottom: 2.9166666667vw;
    width: 46.6666666667vw;
  }
}
.p-info__cards {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  width: 445px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-info__cards {
    margin-bottom: 1.25vw;
    width: 70.8333333333vw;
  }
}
.p-info__card {
  width: 191px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-info__card {
    width: 33.75vw;
  }
}
.p-info__txt {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-info__txt {
    margin-left: 0;
    margin-top: 0;
    font-size: 3.75vw;
  }
}
.p-info__info {
  margin-top: 48px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-info__info {
    margin-top: 6.6666666667vw;
  }
}
.p-info__data-ttl {
  margin-bottom: 7px;
  width: 356px;
}
@media screen and (max-width: 768px) {
  .p-info__data-ttl {
    margin-bottom: 1.6666666667vw;
    width: 100%;
  }
}
.p-info__dataitems {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  font-weight: 500;
}
.p-info__data-year {
  margin-left: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-info__data-year {
    margin-left: 0;
  }
}
.p-info__yeardata {
  width: 49.2%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-info__yeardata {
    width: 100%;
    font-size: 3.3333333333vw;
  }
  .p-info__yeardata:not(:first-child) {
    margin-top: 5vw;
  }
}
.p-info__yearbold {
  font-weight: bold;
}
.p-info__year-price {
  width: 100%;
  display: flex;
}
.p-info__year-price:first-child {
  margin-bottom: 24px;
}
.p-info__yearttl {
  width: 153px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-info__yearttl {
    padding-left: 1.0416666667vw;
    padding-right: 1.0416666667vw;
    width: 31.875vw;
  }
}
.p-info__yearttl-data {
  width: 166px;
}
@media screen and (max-width: 768px) {
  .p-info__yearttl-data {
    width: 33.5416666667vw;
  }
}
.p-info__yearnotelead {
  position: relative;
  padding-left: 1.4em;
  line-height: 1.5;
}
.p-info__yearnote {
  margin-top: 4px;
}
.p-info__yearnote-item {
  margin-left: 0.2em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-info__yearnote-item {
    margin-left: 0;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-info__year-innernote {
  padding-left: 1em;
}
.p-info__logo-list {
  margin-top: 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-info__logo-list {
    margin-top: 2.0833333333vw;
    margin-bottom: 2.0833333333vw;
  }
}
.p-info__logo-vs {
  width: 190px;
}
@media screen and (max-width: 768px) {
  .p-info__logo-vs {
    width: 50vw;
  }
}
.p-info__logo-mc {
  width: 113px;
}
@media screen and (max-width: 768px) {
  .p-info__logo-mc {
    width: 23.3333333333vw;
  }
}
.p-info__data {
  margin-bottom: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-info__data {
    margin-bottom: 5vw;
    width: 100%;
  }
}
.p-info__data--family {
  margin-bottom: 0;
}
.p-info__data--half {
  margin-bottom: 30px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-info__data--half {
    margin-bottom: 5vw;
    width: 100%;
  }
}
.p-info__data-detail {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p-info__data-detail--center {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .p-info__data-detail--center {
    align-items: center;
  }
}
.p-info__detail-txt {
  margin-left: 24px;
  font-size: 1.6rem;
  line-height: 1.4375;
}
@media screen and (max-width: 768px) {
  .p-info__detail-txt {
    margin-left: 0;
    font-size: 3.75vw;
    line-height: 1.5;
  }
}
.p-info__touch-txt {
  margin-left: 24px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
@media screen and (max-width: 768px) {
  .p-info__touch-txt {
    margin-left: 0;
    font-size: 3.75vw;
    line-height: 1.5;
  }
}
.p-info__money {
  margin-top: 16px;
  margin-left: auto;
  margin-right: 5px;
  width: 325px;
}
@media screen and (max-width: 768px) {
  .p-info__money {
    margin-top: 3.3333333333vw;
    margin-right: auto;
    width: 100%;
  }
}
.p-info__illust {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 600px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-info__illust {
    width: 100%;
    flex-wrap: wrap;
  }
}
.p-info__illust-item {
  margin-right: 14px;
  width: 160px;
}
@media screen and (max-width: 768px) {
  .p-info__illust-item {
    margin-right: 0;
    width: 40vw;
  }
}
.p-info__illust-item--wide {
  padding-left: 61px;
  width: 256px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-info__illust-item--wide {
    margin-top: 2.0833333333vw;
    padding-left: 0;
    padding-top: 9.375vw;
    width: 100%;
  }
}
.p-info__illust-item--wide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/info_img_arrow.png);
  background-repeat: no-repeat;
  background-position: left 10px top 28px;
  background-size: 24px auto;
}
@media screen and (max-width: 768px) {
  .p-info__illust-item--wide::before {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/info_img_arrow.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 17.0833333333vw auto;
  }
}
.p-info__illust-caption {
  margin-top: 4px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-info__illust-caption {
    margin-top: 1.6666666667vw;
    font-size: 3.5416666667vw;
    line-height: 1.4705882353;
  }
}
.p-info__familylist {
  margin-left: 24px;
  width: 356px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4375;
}
@media screen and (max-width: 768px) {
  .p-info__familylist {
    margin-left: 0;
    width: 100%;
    font-size: 3.3333333333vw;
    line-height: 1.5;
  }
}
.p-info__familylist li {
  position: relative;
  line-height: 1.5;
  padding-left: 1.2em;
}
@media screen and (max-width: 768px) {
  .p-info__familylist li {
    line-height: 1.5;
  }
}
.p-info__family-bold {
  font-weight: 900;
}

/* p-info:end */
/* p-caution:start */
.p-caution {
  background-color: #FFFFFF;
}
.p-caution a {
  color: #0044CC;
}
.p-caution p {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-caution p {
    line-height: 1.375;
  }
}
.p-caution__container {
  padding-top: 48px;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .p-caution__container {
    padding-top: 5vw;
    padding-bottom: 6.6666666667vw;
  }
}
.p-caution__heading {
  padding: 14px 0;
  background-color: #504F4F;
  color: #FFFFFF;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-caution__heading {
    padding: 20px 0;
    font-size: 2.4rem;
    font-weight: bold;
  }
}
.p-caution__contents {
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  padding-left: 90px;
  padding-right: 90px;
  color: #504F4F;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-caution__contents {
    padding-left: 0;
    padding-right: 0;
    width: 83.3333333333vw;
    font-size: 1.6rem;
    line-height: 1.375;
  }
}
.p-caution__data-detail {
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-caution__data-detail {
    padding-bottom: 16px;
  }
}
.p-caution__innerLink {
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-caution__innerLink {
    padding-top: 16px;
  }
}
.p-caution__data-ttl {
  margin-bottom: 16px;
  padding: 8px 12px;
  background-color: #656565;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 500;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .p-caution__data-ttl {
    margin-bottom: 8px;
    font-size: 2rem;
    line-height: 1.4;
  }
}
.p-caution__datattl-uline {
  border-bottom: 1px solid #707070;
}
.p-caution__datattl-uline:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-caution__datattl-uline:not(:first-child) {
    margin-top: 16px;
  }
}
.p-caution__inner-uline {
  border-bottom: 1px solid #707070;
}
.p-caution__torihiki {
  margin-top: 0.5em;
}
.p-caution__note {
  margin-top: 1em;
}
.p-caution__datattl-sub {
  margin-bottom: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  border: 1px solid #999999;
  font-size: 1.6rem;
  color: #504F4F;
  line-height: 1.4375;
}
.p-caution__datattl-sub:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-caution__datattl-sub:not(:first-child) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-caution__datattl-sub {
    font-size: 1.8rem;
    line-height: 1.2777777778;
  }
}
.p-caution__datattl-gray {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 1.6rem;
  color: #504F4F;
  background-color: #DDDDDD;
  font-weight: 500;
  line-height: 1.4375;
}
@media screen and (max-width: 768px) {
  .p-caution__datattl-gray {
    font-size: 1.8rem;
    line-height: 1.2777777778;
  }
}
.p-caution__red {
  color: #cc0033;
}
.p-caution__table {
  max-width: 100%;
  border-collapse: collapse;
}
.p-caution__table th,
.p-caution__table td {
  width: 250px;
  padding: 0.5rem 1rem;
  border: 2px solid #000;
}
.p-caution__table th {
  background-color: #eee;
  font-weight: 400;
}

/* p-caution:end */
/* p-float:start */
.p-float {
  position: relative;
  z-index: 10;
}
.p-float__container {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
.p-float__contents {
  width: 100%;
  max-width: 1400px;
  padding-left: 70px;
  padding-right: 70px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-float__contents {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-float__btns {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  width: 100%;
  background-color: #fff;
  border: 2px solid #707070;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .p-float__btns {
    border: none;
    border-top: 2px solid #707070;
  }
}
.p-float__btns::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  left: 50%;
  background-color: #707070;
  z-index: 2;
}
.p-float__btn-frame {
  display: block;
}

/* p-float:end */
.p-entry__btn-link-gold, .p-entry__btn-link-goldu {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 6px;
  width: 380px;
  height: 82px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-entry__btn-link-gold, .p-entry__btn-link-goldu {
    width: 79.1666666667vw;
    height: 17.0833333333vw;
  }
}
.p-entry__btn-link-gold::before, .p-entry__btn-link-goldu::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/entry_icon_arrow.png);
  background-repeat: no-repeat;
  background-position: right 28px top 31px;
  background-size: 11px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-entry__btn-link-gold::before, .p-entry__btn-link-goldu::before {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/entry_icon_arrow.png);
    background-position: right 5.2083333333vw top 6.0416666667vw;
    background-size: 2.9166666667vw;
  }
}

.p-entry__txt-gold, .p-entry__txt-goldu {
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-entry__txt-gold, .p-entry__txt-goldu {
    font-size: 4.5833333333vw;
    line-height: 1.2272727273;
  }
}

/* p-entry:start */
.p-entry__container {
  background-color: #ffffff;
  padding-top: 56px;
  padding-bottom: 64px;
  padding-left: 58px;
  padding-right: 58px;
}
@media screen and (max-width: 768px) {
  .p-entry__container {
    padding-top: 6.25vw;
    padding-bottom: 8.3333333333vw;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 91.6666666667vw;
  }
}
.p-entry__copy-goldu {
  margin-bottom: 20px;
  display: block;
  width: 305px;
}
@media screen and (max-width: 768px) {
  .p-entry__copy-goldu {
    margin-top: -1.4583333333vw;
    margin-bottom: 2.0833333333vw;
    width: 62.9166666667vw;
  }
}
.p-entry__btns {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-entry__btns {
    margin-top: 1.6666666667vw;
    flex-direction: column;
    align-items: center;
  }
}
.p-entry__btnitem {
  width: 380px;
}
@media screen and (max-width: 768px) {
  .p-entry__btnitem {
    width: 79.1666666667vw;
  }
  .p-entry__btnitem:not(:first-child) {
    margin-top: 6.6666666667vw;
  }
}
.p-entry__ttl {
  padding-bottom: 6px;
  margin-bottom: 16px;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: bold;
  border-bottom: 2px solid #333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-entry__ttl {
    font-size: 5.2083333333vw;
    margin-bottom: 3.3333333333vw;
  }
}
.p-entry__btn-link-goldu {
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/entry_btn_goldu.png);
}
@media screen and (max-width: 768px) {
  .p-entry__btn-link-goldu {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/entry_btn_goldu.png);
  }
}
.p-entry__btn-link-gold {
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/entry_btn_gold.png);
}
@media screen and (max-width: 768px) {
  .p-entry__btn-link-gold {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/entry_btn_gold.png);
  }
}
.p-entry__txt-goldu {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
}
/* p-entry:end */
/* p-cta:start */
.p-cta {
  position: fixed;
  z-index: 10;
  width: 120px;
  height: 125px;
  right: calc(50% - 622px);
  bottom: 107px;
}
@media screen and (max-width: 1400px) {
  .p-cta {
    right: 70px;
    bottom: 7.6428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .p-cta {
    width: 21.6666666667vw;
    height: auto;
    right: 3.3333333333vw;
    bottom: 19.1666666667vw;
  }
}

/* p-cta:end */
.p-sim__total-point--u {
  --icon-img: url("//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sim_icon_u.png");
}

.p-sim__total-point--gold {
  --icon-img: url("//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sim_icon_gold.png");
}

.p-sim__cautions > li, .p-sim__note-text {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-sim__cautions > li, .p-sim__note-text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.p-sim__total-num, .p-sim__result-point {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: 10px;
  margin-right: 5px;
  width: 180px;
  height: 50px;
  padding-right: 0.2em;
  padding-bottom: 0.2em;
  background-color: #ffffff;
  border-bottom: 1.5px solid #BBBBBB;
  font-family: "Montserrat", serif !important;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-sim__total-num, .p-sim__result-point {
    width: 180px;
    height: 50px;
    margin-left: 10px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__total-num, .p-sim__result-point {
    margin-left: 2.0833333333vw;
    margin-right: 1.0416666667vw;
    width: 37.5vw;
    height: 10.4166666667vw;
    font-size: 7.5vw;
  }
}

/* p-sim:start */
.p-sim {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p-sim .c-container {
  max-width: 100%;
}
.p-sim__container {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.p-sim__head {
  display: block;
  width: 372px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .p-sim__head {
    width: 230px;
    margin-bottom: 20px;
  }
}
.p-sim__title {
  width: 100%;
}
.p-sim__trigger {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 480px) {
  .p-sim__trigger {
    font-size: 5.4166666667vw;
  }
}
.p-sim .js-accordion__icon {
  right: 30px;
}
@media screen and (max-width: 768px) {
  .p-sim .js-accordion__icon {
    right: 15px;
  }
}
.p-sim .js-accordion__icon::before, .p-sim .js-accordion__icon::after {
  background-color: #333333;
  height: 3px;
}
.p-sim__contents {
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
  background-color: #EFF5F9;
}
@media screen and (max-width: 768px) {
  .p-sim__contents {
    padding-top: 15px;
    padding-left: 0;
    padding-right: 0;
  }
}
.p-sim__tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.p-sim__tabs > li {
  width: 50%;
}
.p-sim__tab {
  width: 100%;
  height: 44px;
  background-color: #D5D5D5;
  border-radius: 16px 16px 0 0;
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .p-sim__tab {
    font-size: 3.9583333333vw;
  }
}
.p-sim__tab.jsSelected {
  background-color: #5E9ECE;
}
.p-sim__content {
  background-color: #ffffff;
  padding: 40px 50px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-sim__content {
    padding: 30px 20px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__content {
    padding: 6.25vw 4.1666666667vw;
    padding-bottom: 6.6666666667vw;
  }
}
.p-sim__sections > li:not(:first-child) {
  margin-top: 35px;
  padding-top: 35px;
  position: relative;
}
.p-sim__sections > li:not(:first-child)::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 400px;
  height: 1px;
  background-color: #707070;
  content: "";
}
.p-sim__section {
  width: 100%;
}
.p-sim__section-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-sim__section-title {
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-sim__input--2col {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-sim__input--2col {
    flex-direction: column;
  }
}
.p-sim__input--2col > * {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-sim__input--2col > * {
    width: 100%;
  }
}
.p-sim__select {
  margin-top: 25px;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .p-sim__select {
    padding-left: 0;
  }
}
.p-sim__select-head {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .p-sim__select-head {
    font-size: 3.75vw;
  }
}
.p-sim__select-arrow {
  margin-top: 10px;
  width: 320px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-sim__select-arrow {
    width: 100%;
  }
}
.p-sim__select-arrow::before {
  display: block;
  width: 33px;
  height: 80%;
  background-color: #fff;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/pc/sim_icon_arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
  content: "";
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-sim__select-arrow::before {
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/golduaff-pro/images/sp/sim_icon_arrow-down.svg);
    width: 36px;
    background-size: 18px;
  }
}
.p-sim__select-box {
  width: 100%;
  height: 40px;
  border: 1px solid #BBBBBB;
  background-color: #ffffff;
  appearance: none;
  outline: none;
  font-size: 1.6rem;
  padding-left: 1em;
  letter-spacing: -0.01em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-sim__select-box {
    height: 50px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__select-box {
    font-size: 4.1666666667vw;
  }
}
.p-sim__cost {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-sim__cost {
    margin-top: 25px;
    flex-direction: column;
  }
}
.p-sim__cost--thin {
  margin-top: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .p-sim__cost--thin {
    padding-left: 0;
  }
}
.p-sim__cost-head {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  padding-right: 1.5em;
}
@media screen and (max-width: 768px) {
  .p-sim__cost-head {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__cost-head {
    font-size: 3.75vw;
  }
}
.p-sim__cost-area {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-sim__cost-area {
    justify-content: center;
  }
}
.p-sim__cost-month {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  .p-sim__cost-month {
    font-size: 3.75vw;
  }
}
.p-sim__cost-input {
  width: 180px;
  height: 50px;
  border: none;
  border-bottom: 1.5px solid #BBBBBB;
  padding-right: 0.2em;
  margin-left: 0.2em;
  margin-right: 0.15em;
  font-family: "Montserrat", serif !important;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-sim__cost-input {
    margin-left: 0.1em;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__cost-input {
    width: 37.5vw;
    height: 10.4166666667vw;
    font-size: 7.5vw;
  }
}
.p-sim__cost-text {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .p-sim__cost-text {
    font-size: 7.5vw;
  }
}
.p-sim__cost-text .u-txt--small {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .p-sim__cost-text .u-txt--small {
    font-size: 4.1666666667vw;
  }
}
.p-sim__cost-text .u-txt--xsmall {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .p-sim__cost-text .u-txt--xsmall {
    font-size: 3.3333333333vw;
  }
}
.p-sim__results {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  width: 700px;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-sim__results {
    width: 100%;
    flex-direction: column;
  }
}
.p-sim__results > li {
  width: 48.5714285714%;
}
@media screen and (max-width: 768px) {
  .p-sim__results > li {
    width: 100%;
  }
  .p-sim__results > li:not(:first-child) {
    margin-top: 4px;
  }
}
.p-sim__result, .p-sim__result--gold, .p-sim__result--u {
  padding-top: 0;
  padding-bottom: 5px;
  padding-left: 13px;
  padding-right: 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-sim__result, .p-sim__result--gold, .p-sim__result--u {
    padding: 5px 25px;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__result, .p-sim__result--gold, .p-sim__result--u {
    padding: 5px 5.2083333333vw;
  }
}
.p-sim__result--u {
  background-color: #FAF0C3;
}
.p-sim__result--gold {
  background-color: #E7DDCB;
}
.p-sim__result-head {
  margin-left: 1em;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-sim__result-head {
    font-size: 2rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__result-head {
    font-size: 4.1666666667vw;
  }
}
.p-sim__result-head .u-txt--small {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-sim__result-head .u-txt--small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__result-head .u-txt--small {
    font-size: 3.3333333333vw;
  }
}
.p-sim__result-cont {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-sim__result-cont {
    justify-content: flex-end;
  }
}
.p-sim__result-text {
  font-size: 1.6rem;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .p-sim__result-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__result-text {
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 769px) {
  .p-sim__result-point {
    width: 195px;
    height: 45px;
    margin-left: 15px;
  }
}
.p-sim__note {
  margin-top: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.p-sim__note-text {
  padding-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-sim__note-rate {
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-sim__cautions > li {
  padding-left: 2em;
  position: relative;
}
.p-sim__caution-mark {
  width: 1.75em;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
.p-sim a {
  color: #0044CC;
}
.p-sim__total {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-sim__total {
    padding-top: 35px;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__total {
    padding-top: 7.2916666667vw;
  }
}
.p-sim__total-title {
  margin-top: 45px;
  position: relative;
  font-size: 2.6rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-sim__total-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__total-title {
    font-size: 4.5833333333vw;
  }
}
.p-sim__total-title::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid #656565;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -25px);
}
@media screen and (max-width: 768px) {
  .p-sim__total-title::after {
    border-left-width: 17px;
    border-right-width: 17px;
    border-top-width: 19px;
  }
}
.p-sim__total-points {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.p-sim__total-points > li {
  width: 48.7804878049%;
}
@media screen and (max-width: 768px) {
  .p-sim__total-points > li {
    width: 100%;
  }
}
.p-sim__total-point, .p-sim__total-point--gold, .p-sim__total-point--u {
  margin-top: 20px;
  padding: 16px 25px;
  padding-top: 0;
  border-radius: 6px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-sim__total-point, .p-sim__total-point--gold, .p-sim__total-point--u {
    margin-top: 25px;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__total-point, .p-sim__total-point--gold, .p-sim__total-point--u {
    padding: 3.3333333333vw 5.8333333333vw;
    padding-top: 0;
  }
}
.p-sim__total-point--u {
  background-color: #FAF0C3;
}
.p-sim__total-point--gold {
  background-color: #E7DDCB;
}
.p-sim__total-head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .p-sim__total-head {
    font-size: 4.1666666667vw;
  }
}
.p-sim__total-head::before {
  width: 85px;
  height: 53px;
  margin-right: 10px;
  background-image: var(--icon-img);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  content: "";
  transform: translateY(-20%);
}
@media screen and (max-width: 768px) {
  .p-sim__total-head::before {
    transform: translate(-5%, -20%);
  }
}
@media screen and (max-width: 480px) {
  .p-sim__total-head::before {
    width: 17.7083333333vw;
    height: 11.0416666667vw;
    margin-right: 2.0833333333vw;
  }
}
.p-sim__total-fukidashi {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-sim__total-fukidashi {
    top: 47px;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__total-fukidashi {
    top: 9.7916666667vw;
  }
}
.p-sim__total-fukidashi img {
  height: 30px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-sim__total-fukidashi img {
    height: 32px;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__total-fukidashi img {
    height: 6.6666666667vw;
  }
}
.p-sim__total-cont {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-sim__total-cont {
    margin-top: 27px;
    justify-content: center;
    padding-left: 1.5em;
  }
}
@media screen and (max-width: 480px) {
  .p-sim__total-cont {
    margin-top: 5.625vw;
  }
}
.p-sim__total-text {
  padding-bottom: 8px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .p-sim__total-text {
    padding-bottom: 1.6666666667vw;
    font-size: 3.75vw;
  }
}
.p-sim__total .u-txt--small {
  font-size: 1.7rem;
}
@media screen and (max-width: 480px) {
  .p-sim__total .u-txt--small {
    font-size: 3.5416666667vw;
  }
}
.p-sim__total .u-txt--xsmall {
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .p-sim__total .u-txt--xsmall {
    font-size: 3.3333333333vw;
  }
}
.p-sim__bnr {
  width: 700px;
  margin: 35px auto 0;
}
@media screen and (max-width: 768px) {
  .p-sim__bnr {
    width: 83.3333333333vw;
    margin: 7.2916666667vw auto 0;
  }
}
.p-sim__link {
  display: block;
}

.u-color--red {
  color: #CC0033;
}

.u-fw--500 {
  font-weight: 500;
}

/* p-sim:end */
