.accordion {
  margin-bottom: 16px;
}
.accordion__box,
.accordion__content {
  display: flex;
  align-items: flex-start;
}
.accordion__box img,
.accordion__content img {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .accordion__box img,
  .accordion__content img {
    width: 20px;
  }
}
.accordion__box {
  cursor: pointer;
  padding: 12px 48px 12px 12px;
  border: 1px solid #ccc;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  .accordion__box {
    padding: 16px 64px 16px 32px;
    font-size: 1.8rem;
  }
}
.accordion__box:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("../img/icon_arrow_line.svg") center center no-repeat;
  background-size: cover;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .accordion__box:after {
    right: 24px;
    width: 24px;
    height: 24px;
  }
}
.accordion__box:hover {
  opacity: 0.8;
  background: rgba(204,204,204,0.4);
  transition: all 0.3s ease;
}
.accordion__box.open:after {
  transform: rotate(-180deg);
  transition: all 0.3s ease;
}
.accordion__box span {
  flex-grow: 1;
}
.accordion__box img,
.accordion__box b {
  margin-right: 16px;
}
@media (min-width: 768px) {
  .accordion__box img,
  .accordion__box b {
    margin-right: 32px;
  }
}
.accordion__box b {
  flex-shrink: 0;
}
.accordion__content {
  display: none;
  margin: -1px 0 0;
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 16px 10px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .accordion__content {
    padding: 16px 24px 32px;
  }
}
.toggle {
  display: none;
}
.policy {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .policy {
    font-size: 1.6rem;
  }
}
.policy__section {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .policy__section {
    padding-bottom: 28px;
  }
}
.policy__section:last-child {
  padding-bottom: 0;
}
.policy ol {
  display: block;
  position: relative;
  z-index: 2;
}
.policy ol > li {
  position: relative;
  list-style-type: none;
  counter-increment: cnt;
  padding-left: 22px;
  padding-bottom: 2px;
}
@media (min-width: 768px) {
  .policy ol > li {
    padding-left: 24px;
  }
}
.policy ol > li:before {
  position: absolute;
  left: 0;
  content: counter(cnt) ". ";
  width: 20px;
  text-align: right;
}
.btn {
  width: 100%;
  border-radius: 12px;
  position: relative;
}
@media (min-width: 480px) {
  .btn {
    transition: all 0.2s ease;
  }
}
.btn,
.btn:link,
.btn:visited {
  color: #fff;
  text-decoration: none;
}
.btn:hover,
.btn:link:hover,
.btn:visited:hover {
  opacity: 0.6;
  text-decoration: none;
  color: #fff;
}
.btn__entry {
  padding: 14px 40px 12px 16px;
  margin: 16px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  font-size: 2.6rem;
  font-weight: bold;
  background: linear-gradient(180deg, rgba(255,255,255,0) 3%, rgba(255,255,255,0.1) 11.5%, rgba(255,255,255,0) 29%), linear-gradient(180deg, #e10000 4%, #da1e1e 17%, #a50000 86%);
  box-shadow: 0px 0px 24px 0px #ffe7a8, 4px 4px 6px 0px rgba(255,255,255,0.6);
}
@media (min-width: 768px) {
  .btn__entry {
    padding: 12px 40px 12px 16px;
    font-size: 3rem;
    margin: 16px auto 40px;
  }
}
.btn__entry:after {
  content: "";
  position: absolute;
  right: 16px;
  width: 24px;
  height: 24px;
  background: url("../img/icon_arrow_btn.svg") center center no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .btn__entry:after {
    right: 32px;
    width: 36px;
    height: 36px;
  }
}
.btn__entry span,
.btn__entry img {
  flex-shrink: 0;
}
.btn__entry img {
  width: 72.53333333333333vw;
  max-width: 340px;
}
.btn__entry img:last-child {
  width: 52.26666666666666vw;
  max-width: 210px;
}
@media (max-width: 767px) {
  #entry-url3.btn__entry img {
    width: 62vw;
  }
  #entry-url3.btn__entry img:last-child {
    width: 45vw;
  }
}
.btn__entry:hover {
  box-shadow: none;
}
.btn__registration,
.btn__subscription {
  background: #e80000 !important;
  box-shadow: none;
}
.btn__registration img {
  width: 41.06666666666667vw;
  max-width: 182px;
}
.btn__registration img:last-child {
  width: 65.06666666666666vw;
  max-width: 282px;
}
.btn__subscription img {
  width: 52.800000000000004vw;
  max-width: 234px;
}
.btn__subscription img:last-child {
  width: 65.06666666666666vw;
  max-width: 282px;
}
.l-body {
  background: #000;
}
.l-wrap {
  overflow-x: hidden;
}
.container {
  max-width: 768px;
  margin: 0 auto;
}
.entry {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 24%);
  padding: 8px 16px 20px;
}
@media (min-width: 768px) {
  .entry {
    padding: 0 16px;
    background: rgba(255,255,255,0.8);
  }
}
@media (max-width: 768px) {
  .entry .btn {
    margin: 0;
  }
}
.entry .btn:hover {
  opacity: 0.8;
}
.title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .title {
    font-size: 4.8rem;
  }
}
#lucky-day {
  position: relative;
  z-index: 2;
  font-weight: 600;
  background: #fff;
  border-top: 1px solid #e80000;
  border-bottom: 1px solid #e80000;
}
#lucky-day > .container {
  text-align: center;
}
@media (min-width: 768px) {
  #lucky-day > .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
}
#lucky-day .message {
  color: #e80000;
  margin-bottom: 1.066666666666667vw;
  font-size: 3.6vw;
  padding-top: 2.133333333333333vw;
}
@media (min-width: 768px) {
  #lucky-day .message {
    margin: 0;
    font-size: 18px;
    padding: 0  ;
  }
}
#lucky-day .message:before {
  content: '＼';
  font-weight: 400;
}
@media (min-width: 768px) {
  #lucky-day .message:before {
    content: '';
  }
}
#lucky-day .message:after {
  content: '／';
  font-weight: 400;
}
@media (min-width: 768px) {
  #lucky-day .message:after {
    content: '';
  }
}
#lucky-day .luckyday-wrap {
  background: #fff;
  padding: 2.133333333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #lucky-day .luckyday-wrap {
    padding: 12px;
  }
}
#lucky-day .luckyday {
  display: inline-block;
  background: #e80000;
  color: #fff;
  padding: 0.533333333333333vw 4px;
  margin: 0 2px;
  font-size: 3.466666666666666vw;
}
@media (min-width: 768px) {
  #lucky-day .luckyday {
    margin: 0 4px;
    padding: 2px 8px;
    font-size: 16px;
  }
}
.kv {
  background: url("../img/img_bg_sp.png") top center no-repeat, linear-gradient(180deg, #f50000 24%, #fa7b7b 56%);
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .kv {
    background: url("../img/img_bg_pc.png") top center no-repeat, linear-gradient(180deg, #f50000 24%, #fa7b7b 56%);
    background-size: 100% 100%;
  }
}
.kv.middle {
  background: linear-gradient(180deg, #f50000 24%, #fa7b7b 56%);
}
.kv.middle .kv__bottom-area {
  padding-bottom: 2.666666666666667vw;
}
@media (min-width: 768px) {
  .kv.middle .kv__bottom-area {
    padding-bottom: 5px;
  }
}
.kv.middle .kv__poinco {
  top: 57vw;
}
@media (min-width: 768px) {
  .kv.middle .kv__poinco {
    top: auto;
  }
}
.kv__heading {
  text-align: center;
  background: linear-gradient(90deg, #c19d11 0%, #fbf190 50%, #c19d11 100%);
}
.kv__heading img {
  width: 97.86666666666667vw;
  max-width: 632px;
}
.kv__top-area {
  width: 73.33333333333333vw;
  max-width: 632px;
  margin: 4.266666666666667vw auto 0;
}
@media (min-width: 768px) {
  .kv__top-area {
    margin: 20px auto 0;
  }
}
.kv__bottom-area {
  background: url("../img/img_bg_cloud_sp.png") top -2.133333333333333vw center no-repeat;
  background-size: 104%;
  position: relative;
  z-index: 2;
  margin: 0;
}
@media (min-width: 768px) {
  .kv__bottom-area {
    background: url("../img/img_bg_cloud_pc.png") top -16px center no-repeat;
    background-size: 940px;
  }
}
@media (min-width: 768px) {
  .kv__bottom-area:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 120px;
    background: #fff;
    bottom: -120px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.kv__chance-box {
  position: relative;
  background: linear-gradient(0deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.7) 100%), linear-gradient(90deg, #c09b0f 0%, #fff799 50%, #c09b0f 100%);
}
.kv__chance-box:after {
  content: '';
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #f50000;
}
@media (min-width: 768px) {
  .kv__chance-box:after {
    height: 24px;
  }
}
.kv__chance {
  position: relative;
  z-index: 2;
  width: 76.8vw;
  margin: 0 auto;
  max-width: 856px;
}
@media (min-width: 768px) {
  .kv__chance {
    width: 94%;
  }
}
.kv__campaign {
  width: 87.46666666666667vw;
  max-width: 778px;
  margin: 3.2vw auto 0;
}
@media (min-width: 768px) {
  .kv__campaign {
    margin: 12px auto 0;
  }
}
.kv__campaign-detail {
  position: relative;
  width: 85.06666666666666vw;
  margin: 3vw auto 2.2vw;
  padding: 0;
  z-index: 3;
}
@media (min-width: 768px) {
  .kv__campaign-detail {
    max-width: 850px;
    margin: 15px auto 17px;
    padding: 0 30px;
  }
}
.kv__campaign-period {
  position: relative;
  z-index: 5;
  background: white;
  border-top: 1px solid #F50000;
  border-bottom: 1px solid #F50000;
}
.kv__campaign-period img {
  display: block;
  margin: 0 auto;
  padding: 5px 10px 10px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .kv__campaign-period img {
    max-width: 770px;
    padding: 5px 0 10px;
  }
}
.kv__poinco {
  position: absolute;
  z-index: 6;
  bottom: 18.5vw;
  width: 101%;
}
.kv__campaign-period .kv__poinco img {
  padding: 0;
}
@media (min-width: 768px) {
  .kv__poinco {
    top: auto;
    bottom: 66px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 1037px;
    padding-right: 25px;
  }
  .kv__campaign-period .kv__poinco img {
    max-width: 100%;
  }
}
.kv__coin {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  top: 49vw;
  margin: auto;
  max-width: 1344px;
}
@media (min-width: 768px) {
  .kv__coin {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 244px;
    margin: auto;
    max-width: 1344px;
  }
  .kv__coin img {
    min-width: 1000px;
  }
}
.kv__entry {
  position: relative;
  z-index: 4;
  padding: 0px 16px 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 70%);
}
@media (min-width: 768px) {
  .kv__entry {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 32%);
  }
}
.kv__entry .btn {
  margin-top: 0;
  max-width: 700px;
}
.kv__entry .btn {
  margin-top: 14px;
}
.campaign-notice {
  background: #fff;
  padding: 12px 16px 32px;
}
@media (min-width: 768px) {
  .campaign-notice {
    padding: 0 16px 32px;
  }
}
.docomo-kuji {
  background: linear-gradient(0deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.7) 100%), linear-gradient(90deg, #c09b0f 0%, #fff799 50%, #c09b0f 100%);
}
.docomo-kuji__heading {
  padding: 16px 32px 4px;
  position: relative;
  background: linear-gradient(90deg, #c09b0f 0%, #fff799 50%, #c09b0f 100%);
  margin-bottom: 36px;
  text-align: center;
}
.docomo-kuji__heading:after {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -35.8px;
  padding-bottom: 36px;
  background: linear-gradient(90deg, #c09b0f 0%, #fff799 50%, #c09b0f 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.docomo-kuji__heading img {
  width: 100%;
  max-width: 434px;
}
.docomo-kuji__container {
  padding: 40px 16px;
}
@media (min-width: 768px) {
  .docomo-kuji__container {
    padding: 64px 16px;
  }
}
.docomo-kuji__item {
  border-radius: 12px;
  background: #fff;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 32px 0 24px;
  box-shadow: 0px 2px 12px 0px rgba(104,83,6,0.3);
}
@media (min-width: 768px) {
  .docomo-kuji__item {
    padding: 40px 0 24px;
    margin-bottom: 80px;
  }
}
.docomo-kuji__item:last-child {
  margin-bottom: 0;
}
.docomo-kuji__item--02 {
  background: #fff;
  position: relative;
}
.docomo-kuji__item--02:before,
.docomo-kuji__item--02:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 150px;
  border-radius: 0 0 12px 12px;
}
.docomo-kuji__item--02:before {
  background-image: url("../img/img_coin_left.png");
  background-position: left -4px bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .docomo-kuji__item--02:before {
    background-position: left bottom;
  }
}
.docomo-kuji__item--02:after {
  background-image: url("../img/img_coin_right.png");
  background-position: right -20px bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .docomo-kuji__item--02:after {
    background-position: right bottom;
  }
}
.docomo-kuji__item--04 {
  padding-bottom: 32px;
}
.docomo-kuji__reason {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  margin: auto;
  width: 150px;
}
@media (min-width: 768px) {
  .docomo-kuji__reason {
    width: 180px;
  }
}
.docomo-kuji__month {
  width: 19.733333333333334vw;
  max-width: 94px;
}
.docomo-kuji__title {
  color: #cc0933;
  font-weight: bold;
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .docomo-kuji__title {
    font-size: 4rem;
  }
}
.docomo-kuji__point-box {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .docomo-kuji__point-box {
    margin: 0 auto 24px;
    display: block;
  }
}
.docomo-kuji__point {
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 6px auto 0;
  padding: 0 4px;
  position: relative;
  z-index: 2;
  display: inline-block;
}
@media (min-width: 768px) {
  .docomo-kuji__point {
    font-size: 2.4rem;
    margin: 4px -8px;
  }
}
.docomo-kuji__point:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background-color: #fff389;
  z-index: -1;
}
.docomo-kuji__dpoint-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .docomo-kuji__dpoint-wrap {
    flex-direction: row;
    gap: 16px;
    margin: 16px 64px 0;
  }
}
.docomo-kuji__dpoint {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #666;
  margin: 0 24px;
  padding: 10px 16px;
}
@media (min-width: 768px) {
  .docomo-kuji__dpoint {
    margin: 0;
  }
}
.docomo-kuji__dpoint img {
  width: 100%;
  max-width: 278px;
}
.docomo-kuji__list {
  margin: 16px 0 -24px;
  border-radius: 0 0 12px 12px;
  text-align: center;
  padding: 12px 20px 8px;
  background: linear-gradient(0deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.3) 100%), linear-gradient(270deg, #c7a51e 0%, #fef697 50%, #c7a51e 100%);
}
@media (min-width: 768px) {
  .docomo-kuji__list {
    padding: 24px 64px 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0 32px;
  }
}
.docomo-kuji__list img {
  width: 100%;
  margin-bottom: 16px;
  max-width: 400px;
}
@media (min-width: 768px) {
  .docomo-kuji__list img {
    max-width: 324px;
  }
}
.docomo-kuji__annotion {
  display: inline-block;
  padding: 4px 0 12px;
  grid-column: span 2;
}
@media (min-width: 768px) {
  .docomo-kuji__annotion {
    padding: 8px 0 12px;
  }
}
@media (min-width: 768px) {
  .docomo-kuji__annotion .annotion {
    text-align: center;
  }
}
.docomo-kuji__dpoint-title {
  width: 61.33333333333333vw;
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .docomo-kuji__dpoint-title {
    width: 100%;
  }
}
.docomo-kuji__winner {
  background: #fce8e8;
  padding: 12px 16px;
  margin: 12px 20px 0;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .docomo-kuji__winner {
    max-width: 640px;
    margin: 12px auto 16px;
    padding: 16px 16px 20px;
  }
}
.docomo-kuji__winner .annotion {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .docomo-kuji__winner .annotion {
    font-size: 1.5rem;
    text-align: center;
  }
}
.docomo-kuji__winner-title {
  font-weight: 600;
  font-size: 1.7rem;
}
@media (min-width: 768px) {
  .docomo-kuji__winner-title {
    font-size: 2.4rem;
  }
}
.docomo-kuji__winner-number {
  width: 53.333333333333336vw;
  max-width: 260px;
  margin: 4px 0 6px;
}
.docomo-kuji__logo-wrap {
  display: flex;
  gap: 8px;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .docomo-kuji__logo-wrap {
    gap: 12px;
  }
}
.docomo-kuji__logo-wrap img {
  width: calc((100% - 4 * 8px) / 5);
  max-width: 72px;
}
.step {
  background: #ffe042;
  padding: 32px 16px 40px;
}
@media (min-width: 768px) {
  .step {
    padding: 64px 16px;
  }
}
.step .title {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .step .title {
    margin-bottom: 60px;
  }
}
.step__number {
  margin: -20px 0 0;
  width: 152px;
}
@media (min-width: 768px) {
  .step__number {
    width: 158px;
  }
}
.step .btn {
  margin: 16px auto 0;
  max-width: 480px;
}
.step__item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 0 16px 24px;
  margin: 0 0 60px;
  box-shadow: 0px 2px 12px 0px rgba(104,83,6,0.3);
}
@media (min-width: 768px) {
  .step__item {
    padding: 0 64px 32px;
    margin: 0 0 80px;
  }
}
.step__item--step03 {
  margin: 0;
}
.step__item:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -52px;
  right: -16px;
  left: -16px;
  margin: auto;
  width: 100vw;
  height: 39.46666666666667vw;
  background: url("../img/img_coin_sp.png") center center no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .step__item:after {
    top: -58px;
    left: 50%;
    transform: translateX(-50%);
    background: url("../img/img_coin_pc.png") center center no-repeat;
    background-size: 100%;
    max-width: 968px;
    height: 148px;
  }
}
.step__item-title {
  font-weight: bold;
  font-size: 2.6rem;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .step__item-title {
    font-size: 3.6rem;
  }
}
.step__item-title img {
  display: block;
  margin: 0 auto;
  height: 36px;
  width: auto;
}
@media (min-width: 768px) {
  .step__item-title img {
    height: 48px;
  }
}
.step .note {
  margin: 12px 0 4px;
  background: #f2f2f2;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .step .note {
    font-size: 1.8rem;
    padding: 16px;
  }
}
.step .note .annotion {
  text-align: center;
  padding-top: 6px;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .step .note .annotion {
    padding-top: 8px;
    font-size: 1.4rem;
  }
}
.step__point-box {
  display: block;
}
@media (min-width: 768px) {
  .step__point-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .step__point-box.dpoint {
    flex-direction: column;
    margin-bottom: 8px;
  }
}
.step__point-box.dpoint .step__point {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .step__point-box.dpoint .step__point {
    font-size: 2.6rem;
    margin-bottom: 2px;
  }
}
@media (min-width: 768px) {
  .step__point-box p {
    font-size: 2.2rem;
  }
}
.step__point-box b {
  font-size: 1.7rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .step__point-box b {
    font-size: 2.4rem;
  }
}
.step__point-box b:before,
.step__point-box b:after {
  padding: 0 4px;
  font-weight: 400;
}
.step__point-box b:before {
  content: '＼';
}
.step__point-box b:after {
  content: '／';
}
.step__point {
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 8px auto 4px;
  padding: 0 4px;
  position: relative;
  z-index: 2;
  display: inline-block;
}
@media (min-width: 768px) {
  .step__point {
    padding: 0 0 0 4px;
    font-size: 2.4rem;
    margin: 12px 0 8px;
  }
}
.step__point:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background-color: #fff389;
  z-index: -1;
}
.step__present {
  width: auto;
  margin-top: 8px;
}

.step__next {
  margin: 20px auto 14px;
  width: 30px;
  height: 20px;
}
@media (min-width: 768px) {
  .step__next {
    width: 80px;
    height: 28px;
    margin: 24px auto 16px;
  }
}
.step .dpoint-present {
  font-weight: bold;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .step .dpoint-present {
    font-size: 2.4rem;
  }
}
.step .dpoint-present span {
  font-weight: 400;
  font-size: 1.6rem;
  padding: 0 2px;
}
@media (min-width: 768px) {
  .step .dpoint-present span {
    font-size: 1.8rem;
  }
}
.about {
  padding: 24px 16px 24px;
  background: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .about {
    padding: 48px 16px 56px;
  }
}
.about__section-title {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0 0 8px;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .about__section-title {
    font-size: 3.6rem;
    margin: 0 0 24px;
  }
}
.about__section-title img {
  width: 32px;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .about__section-title img {
    width: 48px;
  }
}
.about__item-wrap {
  margin: 16px 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .about__item-wrap {
    margin: 0 0 20px;
    justify-content: space-between;
  }
}
.about__item {
  display: flex;
  flex-direction: column;
  flex: 0 1 calc(33.333% - 18px);
  align-items: center;
}
@media (min-width: 768px) {
  .about__item {
    max-width: 131px;
  }
}
.about__item img {
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .about__item img {
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .about__item img:first-child {
    max-width: 94px;
  }
}
.about__price {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .about__price {
    font-size: 1.6rem;
    gap: 8px;
  }
}
.about__price span {
  background: #efefef;
  padding: 0 4px;
}
@media (min-width: 768px) {
  .about__price span {
    padding: 0 5px 0 4px;
  }
}
.voice {
  padding: 32px 16px 8px;
  background: linear-gradient(0deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.3) 100%), linear-gradient(90deg, #c09b0f 0%, #fff799 50%, #c09b0f 100%);
}
@media (min-width: 768px) {
  .voice {
    padding: 64px 16px;
  }
}
.voice .title {
  font-size: 4rem;
}
@media (min-width: 768px) {
  .voice .title {
    font-size: 5.6rem;
  }
}
.voice .title span {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .voice .title span {
    font-size: 4rem;
  }
}
.voice__price {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .voice__item-wrap {
    display: flex;
    gap: 24px;
  }
}
.voice__border {
  background: linear-gradient(90deg, #c09b0f 0%, #fff799 50%, #c09b0f 100%);
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 4px;
  box-shadow: 0px 2px 12px 0px rgba(104,83,6,0.3);
  width: 100%;
}
@media (min-width: 768px) {
  .voice__border .voice__a-1 span {
    min-height: 64px;
  }
}
@media (min-width: 768px) {
  .voice__border:first-child .voice__a-3 span {
    min-height: 88px;
  }
}
.voice__item {
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px 12px 12px;
  text-align: center;
}
@media (min-width: 768px) {
  .voice__item {
    padding: 24px 20px 20px 16px;
  }
}
.voice__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.voice__heading img {
  width: 64px;
}
@media (min-width: 768px) {
  .voice__heading img {
    width: 80px;
  }
}
.voice__profile {
  background: #f2f2f2;
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  margin: 16px auto;
}
.voice__profile p {
  font-weight: 500;
  padding-left: 4px;
}
.voice__profile p:after {
  content: 'さん';
  font-size: 1.4rem;
}
.voice__profile span {
  font-size: 1.3rem;
}
.voice__q {
  text-align: left;
  padding-left: 28px;
  margin-bottom: 6px;
  position: relative;
}
.voice__q:before {
  content: '';
  width: 10px;
  height: 2px;
  background: #d9d9d9;
  position: absolute;
  left: 5px;
  top: 10px;
}
.voice__a {
  text-align: left;
  background: url("../img/icon_user.svg") top 4px left no-repeat;
  margin-bottom: 16px;
}
.voice__a span {
  margin-left: 26px;
  display: block;
  background: #fffbbb;
  padding: 8px 6px 8px 8px;
  border-radius: 0 12px 12px 12px;
  font-weight: 600;
}
.voice__buy {
  padding: 10px 12px 8px 12px;
  background: #f2f2f2;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .voice__buy {
    padding: 14px 24px 12px 24px;
  }
}
.voice__buy dl {
  display: flex;
  gap: 12px;
  margin: 0 0 4px;
}
@media (min-width: 768px) {
  .voice__buy dl {
    margin: 0 0 6px;
  }
}
.voice__buy dt {
  padding: 2px 16px;
  background: #fff;
  border-radius: 6px;
}
.voice__buy-title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.voice__line {
  border: none;
  height: 1px;
  background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .voice__line {
    margin-bottom: 14px;
  }
}
.faq {
  background: #fff;
  padding: 32px 24px 40px;
}
@media (min-width: 768px) {
  .faq {
    padding: 64px 16px;
  }
}
.faq__item {
  background: #f2f2f2;
  padding: 15px 12px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .faq__item {
    padding: 16px 20px;
    margin-bottom: 16px;
  }
}
.faq__line {
  border: none;
  height: 1px;
  background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
  background-size: 6px 2px;
  background-repeat: repeat-x;
}
.faq__q {
  padding-left: 30px;
  padding-bottom: 12px;
  font-weight: 600;
  font-size: 1.5rem;
  background: url("../img/txt_faq_q.svg") top left no-repeat;
}
@media (min-width: 768px) {
  .faq__q {
    font-size: 1.8rem;
  }
}
.faq__a {
  margin: 12px 0 16px;
  padding-left: 30px;
  font-size: 1.4rem;
  background: url("../img/txt_faq_a.svg") top left no-repeat;
}
@media (min-width: 768px) {
  .faq__a {
    margin: 16px 0 20px;
    font-size: 1.6rem;
  }
}
.faq__point {
  padding: 4px;
  color: #e80000;
  border: 1px solid #e80000;
  border-radius: 6px;
  background: #fff;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .faq__point {
    padding: 6px;
    font-size: 1.8rem;
  }
}
.faq__point:before,
.faq__point:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto;
}
.faq__point:before {
  top: -12px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 12px solid #f00;
}
.faq__point:after {
  top: -11px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 11px solid #fff;
}
.faq__point .annotion {
  font-weight: 400;
  text-align: center;
  font-size: 1.2rem;
  padding: 2px 0 0;
}
@media (min-width: 768px) {
  .faq__point .annotion {
    font-size: 1.4rem;
  }
}

a.btn__entry {
  display: none;
}

.campaign_close {
  display: none;
  text-align: center;
  padding: 15px;
  color: #FF0000;
  font-weight: bold;
  border: 4px solid #CC0933;
  background-color: #FFFFFF;
}