.accordion {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .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: 600;
}
@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 12px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .accordion__content {
    padding: 16px 24px 32px;
  }
}
.toggle {
  display: none;
}
.policy {
  font-size: 1.45rem;
}
@media (min-width: 768px) {
  .policy {
    font-size: 1.5rem;
  }
}
.policy__section {
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .policy__section {
    padding-bottom: 28px;
  }
}
.policy__section:last-child {
  padding-bottom: 0;
}
.policy .annotion {
  margin-top: 2px;
}
.policy b {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 2px;
}
.policy ol {
  display: block;
  position: relative;
  z-index: 2;
}
.policy ol > li {
  position: relative;
  list-style-type: none;
  counter-increment: cnt;
  padding-left: 24px;
  padding-bottom: 2px;
}
.policy ol > li:before {
  position: absolute;
  left: 0;
  content: counter(cnt) ". ";
  width: 20px;
  text-align: right;
}
.btn {
  width: 100%;
  border-radius: 4px;
  position: relative;
}
@media (min-width: 480px) {
  .btn {
    transition: all 0.2s ease;
  }
}
@media (min-width: 768px) {
  .btn {
    border-radius: 6px;
  }
}
.btn,
.btn:link,
.btn:visited {
  text-decoration: none;
}
.btn:hover,
.btn:link:hover,
.btn:visited:hover,
.btn:focus,
.btn:link:focus,
.btn:visited:focus,
.btn:active,
.btn:link:active,
.btn:visited:active {
  opacity: 0.6;
  text-decoration: none;
}
.btn__other {
  border-radius: 0;
  background: #fff;
  color: #1a1c21;
  padding: 12px 48px 12px 12px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .btn__other {
    max-width: 690px;
    font-size: 1.8rem;
    margin: auto;
    padding: 18px 48px 18px 16px;
  }
}
.btn__other: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(-90deg);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn__other:after {
    right: 24px;
    width: 24px;
    height: 24px;
  }
}
.btn__other,
.btn__other:link,
.btn__other:visited {
  color: #1a1c21;
}
.btn__other:hover {
  opacity: 0.8;
  background: rgba(204,204,204,0.4);
  transition: all 0.3s ease;
  color: #1a1c21;
}
.btn__entry {
  padding: 14px 40px 12px 16px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: #e80000;
  box-shadow: 0 6px 0 0 #b40000;
}
@media (min-width: 768px) {
  .btn__entry {
    padding: 20px 40px 18px 16px;
    margin: 10px auto 30px;
  }
}
.btn__entry:after {
  content: "";
  position: absolute;
  right: min((16/375)*100vw, 32px);
  width: min((18/375)*100vw, 28px);
  height: min((18/375)*100vw, 28px);
  background: url("../img/icon_arrow_btn.svg") center center no-repeat;
  background-size: contain;
}
.btn__entry span,
.btn__entry img {
  flex-shrink: 0;
}
.btn__entry img {
  height: min((22/375)*100vw, 32px);
  width: auto;
}
@media (min-width: 768px) {
  .btn__entry:hover,
  .btn__entry:focus,
  .btn__entry:active {
    margin: 18px auto 22px;
    box-shadow: 0 0 0 0 #b40000;
  }
}
.btn__mini {
  margin: 0 auto;
  padding: 14px 24px 12px 2px;
  width: 74.4vw;
  max-width: 480px;
  box-shadow: 0 4px 0 0 #b40000;
}
@media (min-width: 768px) {
  .btn__mini {
    width: 100%;
    padding: 18px 24px 16px 8px;
    box-shadow: 0 6px 0 0 #b40000;
  }
}
@media (min-width: 768px) {
  .btn__mini:hover,
  .btn__mini:focus,
  .btn__mini:active {
    margin: 8px auto -8px;
    box-shadow: 0 0 0 0 #b40000;
  }
}
.btn__mini img {
  height: min((19/375)*100vw, 27px);
  width: auto;
}
.btn__mini:after {
  right: min((8/375)*100vw, 16px);
  width: min((14/375)*100vw, 28px);
  height: min((14/375)*100vw, 28px);
}
.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(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
  padding: 8px 2.666666666666667vw 0;
}
@media (min-width: 768px) {
  .entry {
    padding: 0 16px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
  }
}
.entry__container {
  background: #fff;
  padding: 12px 40px;
  border-radius: 8px 8px 0px 0px;
  box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
  max-width: 848px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .entry__container {
    padding: 16px 40px 24px;
    border-radius: 12px 12px 0px 0px;
    box-shadow: 0px 2px 40px 0px rgba(0,0,0,0.4);
  }
}
.entry p {
  font-size: min((12/375)*100vw, 1.6rem);
  text-align: center;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .entry p {
    margin-top: 20px;
  }
}
.entry p a {
  display: inline-block;
  font-weight: 600;
  text-decoration: underline;
}
.entry .btn {
  margin: 0 auto;
  max-width: 608px;
}
@media (min-width: 768px) {
  .entry .btn {
    padding: 18px 40px 16px 16px;
  }
}
.entry .btn img {
  height: min((22/375)*100vw, 28px);
}
.entry .btn:hover,
.entry .btn:focus,
.entry .btn:active {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .entry .btn:hover,
  .entry .btn:focus,
  .entry .btn:active {
    margin: 6px auto -6px;
  }
}
.title {
  text-align: center;
}
.kv {
  background: #ffd6d6 url("../img/img_back.png") top center no-repeat;
  background-size: 100% 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kv__first {
  text-align: center;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .kv__first {
    margin-top: 20px;
  }
}
.kv__first img {
  width: 72vw;
  max-width: 340px;
}
.kv__box {
  background: #cc0933;
  width: 91.46666666666667vw;
  max-width: 800px;
  margin: -8px auto 0;
  padding: 10px 4.266666666666667vw 0;
  border-radius: 18px 18px 0 0;
  min-height: 134.4vw;
}
@media (min-width: 768px) {
  .kv__box {
    margin: -11px auto 0;
    padding: 11px 28px 0;
    border-radius: 24px 24px 0 0;
    min-height: 448px;
  }
}
.kv__box-title {
  width: 71.46666666666667vw;
  margin: 0 auto;
  max-width: 708px;
  min-height: 15.466666666666667vw;
}
@media (min-width: 768px) {
  .kv__box-title {
    min-height: 34px;
  }
}
.kv__box-detail {
  background: #fff;
  position: relative;
  padding: 16px 2.666666666666667vw 24.53333333333333vw;
  margin-top: 8px;
  border-radius: 10px 10px 0 0;
  min-height: 114.66666666666667vw;
}
@media (min-width: 768px) {
  .kv__box-detail {
    padding: 14px 10px 18px;
    border-radius: 12px 12px 0 0;
    min-height: 395px;
  }
}
.kv__dpoint {
  position: absolute;
  top: 7px;
  right: 1.866666666666667vw;
  width: min((28/375)*100vw, 44px);
}
@media (min-width: 768px) {
  .kv__dpoint {
    top: 12px;
    right: 12px;
  }
}
.kv__kuji {
  display: flex;
  justify-content: center;
  gap: 2.933333333333333vw;
  margin-bottom: 2.666666666666667vw;
}
@media (min-width: 768px) {
  .kv__kuji {
    gap: 13px;
    margin-bottom: 14px;
  }
}
.kv__kuji img {
  height: 6.4vw;
  width: auto;
}
@media (min-width: 768px) {
  .kv__kuji img {
    height: 32px;
  }
}
.kv__main {
  position: relative;
  z-index: 2;
  width: 76.8vw;
  margin: 0 auto;
  max-width: 624px;
  min-height: 50.66666666666667vw;
}
@media (min-width: 768px) {
  .kv__main {
    min-height: 204px;
  }
}
.kv__campaign {
  display: flex;
  flex-direction: column;
  margin: 3.2vw auto 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .kv__campaign {
    flex-direction: column-reverse;
    gap: 8px;
    max-width: 440px;
    margin: 4px auto 0;
    padding-right: 8px;
  }
}
.kv__campaign .annotion {
  margin: 0;
  font-size: 2.853333333333333vw;
}
@media (min-width: 768px) {
  .kv__campaign .annotion {
    font-size: 13px;
    margin: 0 28px;
  }
}
@media (min-width: 900px) {
  .kv__campaign .annotion {
    margin: 0 -2px;
  }
}
.kv__campaign-item-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  gap: 1.066666666666667vw;
}
@media (min-width: 768px) {
  .kv__campaign-item-wrap {
    gap: 8px;
  }
}
.kv__campaign-item {
  background: #ffed8f;
  padding: 8px 1.333333333333333vw;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .kv__campaign-item {
    padding: 9px 12px;
  }
}
.kv__campaign-arrow {
  height: 4.266666666666667vw;
  width: 2.666666666666667vw;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .kv__campaign-arrow {
    height: 20px;
    width: 14px;
  }
}
.kv__campaign-arrow img {
  height: 100%;
  width: 100%;
  vertical-align: top;
}
.kv__poinco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 970px;
}
@media (min-width: 768px) {
  .kv__poinco {
    position: relative;
  }
}
@media (min-width: 768px) {
  .kv__poinco img {
    min-width: 840px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
}
.kv__entry-title {
  background: #c79e0c;
  color: #fff;
  display: inline-flex;
  padding: 0 16px;
  margin: 0 auto 4px;
  border-radius: 80px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .kv__entry-title {
    font-size: 1.8rem;
    padding: 0 24px;
    margin: 0 auto 8px;
  }
}
.kv__entry {
  position: relative;
  z-index: 4;
  font-weight: 600;
  text-align: center;
}
.kv__entry p {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: min((14/375)*100vw, 2rem);
}
@media (min-width: 768px) {
  .kv__entry p {
    margin-bottom: 8px;
  }
}
.kv__entry p:before,
.kv__entry p:after {
  color: #c79e0c;
}
.kv__entry p:before {
  content: "＼";
  padding-right: 4px;
}
.kv__entry p:after {
  content: "／";
  padding-left: 4px;
}
.campaign-notice {
  background: #fff;
  padding: 16px 4.266666666666667vw 32px;
}
@media (min-width: 768px) {
  .campaign-notice {
    padding: 28px 16px 40px;
  }
}
.campaign-notice .container {
  max-width: 610px;
}
.campaign-notice .annotion {
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .campaign-notice .annotion {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
}
.about {
  padding: 0 4.266666666666667vw 40px;
  background: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .about {
    padding: 0 16px 64px;
  }
}
@media (min-width: 768px) {
  .about .container {
    padding: 0 24px;
  }
}
.about__item-title {
  background: #ffd6d6;
  padding: 16px 0 14px;
}
@media (min-width: 768px) {
  .about__item-title {
    padding: 18px 0;
  }
}
.about__item-title img {
  width: 77.33333333333333vw;
  max-width: 404px;
}
.about__item {
  background: #fff5f5;
  border: 4px solid #ffd6d6;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .about__item {
    border-radius: 14px;
  }
}
.about__item-inner {
  padding: 16px 16px 24px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .about__item-inner {
    padding: 20px 16px 32px;
    font-size: 1.8rem;
  }
}
.about__item-inner img {
  margin: 12px auto;
  width: 100%;
  max-width: 630px;
}
@media (min-width: 768px) {
  .about__item-inner img {
    margin: 16px auto;
  }
}
.point {
  background: #f2f2f2;
  padding: 40px 0 0;
}
@media (min-width: 768px) {
  .point {
    padding: 64px 0 0;
  }
}
.point .title {
  width: 92.26666666666667vw;
  max-width: 511px;
  margin: 0 auto;
}
.point__container {
  margin-top: -24px;
  padding: 74px 5.333333333333334vw 32px;
  background: #e80000;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .point__container {
    margin-top: -36px;
    padding: 100px 40px 40px;
    border-radius: 32px;
  }
}
.point__number {
  width: 26.13333333333333vw;
  max-width: 150px;
  position: absolute;
  top: -6.4vw;
  left: 0;
  right: 0;
  margin: auto;
}
@media (min-width: 768px) {
  .point__number {
    top: -40px;
  }
}
.point__item {
  border-radius: 12px;
  background: #fff;
  text-align: center;
  margin-bottom: 13.333333333333334vw;
  position: relative;
  padding: 7.466666666666668vw 3.733333333333334vw 20px;
}
@media (min-width: 768px) {
  .point__item {
    padding: 48px 28px 32px;
    margin-bottom: 80px;
    border-radius: 16px;
  }
}
.point__item:last-child {
  margin-bottom: 0;
}
.point__item .yellow-image {
  background: #ffed8f;
  border-radius: 8px;
  padding: 12px 20px 10px;
}
@media (min-width: 768px) {
  .point__item .yellow-image {
    padding: 18px 20px 20px;
  }
}
.point__item .yellow-image img {
  width: 100%;
  max-width: 404px;
}
@media (min-width: 768px) {
  .point__item .yellow-image img {
    max-width: 390px;
  }
}
.point__item .yellow-image--min {
  padding: 11px 10px 9px;
}
.point__item .yellow-image--min img {
  height: 14.666666666666666vw;
  width: auto;
  margin: auto;
}
@media (min-width: 768px) {
  .point__item .yellow-image--min img {
    height: 62px;
  }
}
.point__item--01 {
  padding: 28px 0 0;
}
@media (min-width: 768px) {
  .point__item--01 {
    padding: 48px 0 0;
  }
}
.point__item--01 .top-area {
  padding: 0 3.2vw 24px;
}
@media (min-width: 768px) {
  .point__item--01 .top-area {
    padding: 0 28px 40px;
  }
}
.point__item--01 .top-area-detail {
  margin: 16px 0 24px;
}
@media (min-width: 768px) {
  .point__item--01 .top-area-detail {
    display: flex;
    gap: 20px;
    margin: 8px 0 36px;
  }
}
@media (min-width: 768px) {
  .point__item--01 .point__title {
    margin-bottom: 8px;
  }
}
.point__item--01 .bottom-area {
  padding: 24px 3.2vw 14.933333333333335vw;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  background: #ffed8f url("../img/img_coin_sp.png") bottom center no-repeat;
  background-size: 108%;
  font-size: min((16/375)*100vw, 1.8rem);
}
@media (min-width: 768px) {
  .point__item--01 .bottom-area {
    padding: 24px 28px 56px;
    background: #ffed8f url("../img/img_coin_pc.png") bottom center no-repeat;
    background-size: 100%;
  }
}
.point__item--01 .bottom-area-detail {
  margin: 12px 0 16px;
}
@media (min-width: 768px) {
  .point__item--01 .bottom-area-detail {
    margin: 16px 0;
  }
}
.point__item--01 .bottom-area-save {
  max-width: 457px;
  margin: 0 auto;
}
.point__item--02 {
  background: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .point__item--02 .yellow-image {
    margin-top: -4px;
    padding: 20px 0 24px;
  }
}
@media (min-width: 768px) {
  .point__item--02 .point__logo-wrap {
    margin-top: 16px;
    gap: 22px;
  }
}
.point__item--02 .point__logo-wrap img {
  width: 9.866666666666667vw;
  max-width: 60px;
}
.point__item--02 p {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .point__item--02 p {
    margin-top: 24px;
    font-size: 1.8rem;
  }
}
.point__item--04 {
  padding-bottom: 32px;
  font-size: min((16/375)*100vw, 1.8rem);
}
.point__item--04 b {
  font-weight: 600;
}
.point__item--04 .fever-section {
  margin: 0 0 16px;
}
.point__item--04 .fever-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
@media (min-width: 768px) {
  .point__item--04 .fever-title {
    margin-top: 4px;
    gap: 4px;
  }
}
@media (min-width: 768px) {
  .point__item--04 .fever-title img {
    width: 20px;
    height: 20px;
  }
}
.point__item--04 .fever-img {
  margin: 0 -14px 16px;
  background: url("../img/img_point4_bg.png") top center no-repeat;
}
@media (min-width: 768px) {
  .point__item--04 .fever-img {
    margin: 0 -28px 16px;
  }
}
.point__item--04 .fever-img img {
  width: 73.33333333333333vw;
  max-width: 360px;
}
.point__item--04 .fever-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 6px 5px;
  background: linear-gradient(90deg, #f8c50f 0%, #fff799 50%, #f8c50f 100%);
  border-radius: 2px;
  margin: 4px 6.4vw;
  font-weight: 600;
  font-size: min((14/375)*100vw, 1.8rem);
}
@media (min-width: 768px) {
  .point__item--04 .fever-item {
    padding: 5px 6px 4px;
    max-width: 360px;
    margin: 6px auto;
  }
}
.point__item--04 .fever-item span {
  color: #e80000;
  font-size: min((17/375)*100vw, 2.4rem);
  font-weight: bold;
}
.point__item--04 .fever-item span:after {
  content: '以上';
  font-size: min((13/375)*100vw, 1.6rem);
}
.point__item--04 .fever-item img {
  width: 30px;
  margin-right: 6px;
}
@media (min-width: 768px) {
  .point__item--04 .fever-item img {
    width: 36px;
    margin-right: 8px;
  }
}
.point__title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .point__title {
    margin-bottom: 24px;
  }
}
.point__course {
  margin-bottom: 32px;
  font-size: min((15/375)*100vw, 1.7rem);
}
@media (min-width: 768px) {
  .point__course {
    margin-bottom: 48px;
  }
}
.point__course:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .point__course:last-child {
    margin-bottom: 24px;
  }
}
.point__course p {
  margin-bottom: min((5/375)*100vw, 12px);
}
.point__course img {
  width: 100%;
  max-width: 360px;
}
.point__course-title {
  height: min((36/375)*100vw, 52px);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .point__course-title {
    height: 52px;
    margin-bottom: 16px;
  }
}
.point__course-title img {
  height: 100%;
  width: auto;
}
.point__course-title img:hover,
.point__course-title img:focus,
.point__course-title img:active {
  cursor: pointer;
}
.point__course-title--carryover {
  height: min((48/375)*100vw, 68px);
}
@media (min-width: 768px) {
  .point__course-title--carryover {
    height: 68px;
  }
}
.point__course-title--carryover img {
  max-width: 400px;
}
.point__logo-wrap {
  display: flex;
  gap: 8px;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .point__logo-wrap {
    gap: 12px;
  }
}
.point__logo-wrap img {
  width: calc((100% - 4 * 8px) / 5);
  max-width: 72px;
}
.step {
  background: #f2f2f2;
  padding: 40px 4.266666666666667vw;
}
@media (min-width: 768px) {
  .step {
    padding: 64px 16px;
  }
}
.step .title {
  width: 73.6vw;
  max-width: 430px;
  margin: 0 auto 24px;
}
@media (min-width: 768px) {
  .step .title {
    margin: 0 auto 40px;
  }
}
.step__item {
  position: relative;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 20px 3.2vw 24px;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .step__item {
    padding: 40px 56px 48px;
    margin: 0 0 32px;
  }
}
.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 {
  height: 15.466666666666667vw;
  max-height: 88px;
  margin: 0 auto 16px;
}
@media (min-width: 768px) {
  .step__item-title {
    height: 40px;
    margin: 0 auto 28px;
  }
}
.step__item-title img {
  height: 100%;
  width: auto;
}
.step__point {
  background: #ffed8f;
  border-radius: 80px;
  padding: min((16/375)*100vw, 26px) 10px min((12/375)*100vw, 22px);
  margin: -2.133333333333333vw auto 0;
  width: 100%;
  max-width: 560px;
}
@media (min-width: 768px) {
  .step__point {
    margin: -8px auto 0;
    padding: 26px 20px 22px;
  }
}
.step__point img {
  height: 3.333333333333333vw;
  width: auto;
  max-height: 18px;
  vertical-align: middle;
}
.step__fukidashi {
  width: 45.86666666666667vw;
  max-width: 240px;
  margin: 24px auto 6px;
}
@media (min-width: 768px) {
  .step__fukidashi {
    margin: 52px auto 6px;
  }
}
.step__finish {
  text-align: center;
  padding: 60px 20px 0;
  background: url("../img/icon_arrow_bottom.svg") top 6px center no-repeat;
  background-size: 60px 40px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .step__finish {
    padding: 72px 20px 0;
  }
}
.step__finish img {
  width: 100%;
  max-width: 460px;
}
@media (min-width: 768px) {
  .step__finish img {
    max-width: 496px;
  }
}
.step__finish p {
  font-weight: 600;
  margin-top: 10px;
  font-size: min((16/375)*100vw, 2rem);
}
@media (min-width: 768px) {
  .step__finish p {
    margin: 16px 0;
  }
}
.voice {
  padding: 32px 4.266666666666667vw 8px;
  background: #e80000 url("../img/img_bg_voice.png") top center no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .voice {
    background-size: 100% 260px;
    padding: 64px 16px;
  }
}
.voice .title {
  margin: 0 auto -16px;
  width: 92.80000000000001vw;
  max-width: 560px;
}
@media (min-width: 768px) {
  .voice .title {
    margin: 0 auto -24px;
  }
}
.voice__item-wrap {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .voice__item-wrap {
    display: flex;
    gap: 24px;
  }
}
.voice__border {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 4px;
  width: 100%;
}
@media (min-width: 768px) {
  .voice__border .voice__a-1 span {
    min-height: 84px;
  }
}
@media (min-width: 768px) {
  .voice__border .voice__a-2 span {
    min-height: 42px;
  }
}
@media (min-width: 768px) {
  .voice__border .voice__a-3 span {
    min-height: 63px;
  }
}
.voice__item {
  background: linear-gradient(90deg, #f5c400 0%, #fff799 50%, #f5c400 100%);
  border-radius: 4px;
  padding: 8px 2.133333333333333vw;
  text-align: center;
}
@media (min-width: 768px) {
  .voice__item {
    padding: 8px;
  }
}
.voice__heading {
  margin-bottom: 8px;
}
.voice__heading img {
  height: 54px;
}
.voice__inner {
  background: #fff;
  padding: 16px 4.266666666666667vw;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .voice__inner {
    padding: 16px;
  }
}
.voice__q {
  text-align: left;
  padding: 4px;
  padding-left: 28px;
  margin-bottom: 8px;
  position: relative;
  background: #f4f4f4;
  color: #888;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 80px;
}
.voice__q:before {
  content: '';
  width: 10px;
  height: 2px;
  background: #d9d9d9;
  position: absolute;
  left: 10px;
  top: 12px;
}
.voice__a {
  text-align: left;
  margin-bottom: 16px;
  font-size: 1.4rem;
  position: relative;
}
.voice__a:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 6px;
  width: 16px;
  height: 20px;
  background: url("../img/icon_comment.svg") center center no-repeat;
  background-size: cover;
}
.voice__a span {
  margin-left: 30px;
  display: block;
  font-weight: 600;
}
.voice__buy {
  border: 1px solid #e80000;
  border-radius: 4px;
}
.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: #f2f2f2;
  border-radius: 2px;
  font-size: 1.3rem;
}
.voice__buy dd {
  font-size: 1.5rem;
  font-weight: 500;
}
.voice__buy-heading {
  background: #fff5f5;
  padding: 6px 0 12px;
  border-radius: 2px 2px 0 0;
}
.voice__profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.voice__profile:after {
  content: 'が';
  font-size: 1.4rem;
}
.voice__profile p {
  font-weight: 500;
  padding-left: 4px;
}
.voice__profile p:after {
  content: 'さん';
  font-size: 1.4rem;
}
.voice__profile span {
  font-size: 1.1rem;
  padding-top: 2px;
  margin: 0 -4px;
}
.voice__buy-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice__buy-title img {
  height: 16px;
}
.voice__buy-list {
  padding: 10px 16px 8px;
}
.faq {
  background: #fff;
  padding: 32px 5.333333333333334vw 40px;
}
@media (min-width: 768px) {
  .faq {
    padding: 64px 16px;
  }
}
.faq .title {
  margin: 0 auto 24px;
  width: 44.800000000000004vw;
  max-width: 262px;
}
.faq__item {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .faq__item {
    padding: 16px 20px;
  }
}
.faq__q {
  padding: 16px 12px 16px 52px;
  border-radius: 4px;
  font-weight: bold;
  background: #f2f2f2 url("../img/txt_faq_q.svg") center left 16px no-repeat;
}
@media (min-width: 768px) {
  .faq__q {
    padding: 18px 12px 18px 56px;
    font-size: 1.8rem;
    background-position: center left 18px;
  }
}
@media (min-width: 768px) {
  .faq__item-inner {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 24px 16px 0;
  }
}
.faq__a {
  margin: 12px 0 16px;
  padding: 0 2px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .faq__a {
    margin: 0;
    font-size: 1.6rem;
  }
}
.faq__point {
  padding: 12px;
  color: #e80000;
  border: 2px solid #ffb2b2;
  border-radius: 4px;
  background: #fff;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  position: relative;
  margin: 0 4px;
}
@media (min-width: 768px) {
  .faq__point {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 286px;
    min-height: 70px;
    flex-shrink: 0;
    margin: 0;
    border-width: 2.5px;
  }
}
.faq__point:before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 12px solid #ffb2b2;
}
@media (min-width: 768px) {
  .faq__point:before {
    top: 0;
    bottom: 0;
    left: -14px;
    right: auto;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 12px solid #ffb2b2;
    border-left: none;
  }
}
.faq__point .annotion {
  font-weight: 400;
  text-align: center;
  font-size: 1.2rem;
  padding: 6px 0 0;
}
@media (min-width: 768px) {
  .faq__point .annotion {
    font-size: 1.4rem;
  }
}
.faq__point img {
  height: 42px;
}
.faq__point.row1 img {
  height: 18px;
}
.other {
  background: #f2f2f2;
  padding: 32px 20px 48px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}
.modal__content {
  background-color: #fff;
  margin: 40px auto;
  width: 91.46666666666667vw;
  max-width: 640px;
}
.modal__content-inner {
  padding: 24px 16px;
  font-size: 1.4rem;
  max-height: calc(100svh - 120px);
  overflow-y: scroll;
  text-align: left;
}
@media (min-width: 768px) {
  .modal__content-inner {
    padding: 48px 40px;
    font-size: 1.6rem;
  }
}
.modal__content-inner p {
  text-align: left;
}
.modal__content-inner img {
  margin-top: 16px;
}
.modal__content-inner .annotion {
  margin-top: 8px;
  font-size: 1.3rem;
}
.modal__title {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .modal__title {
    font-size: 2.4rem;
  }
}
.modal__title span {
  display: block;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .modal__title span {
    font-size: 2rem;
  }
}
.modal .modal-section {
  margin-bottom: 24px;
}
.modal .lucky-section {
  margin-bottom: 12px;
}
.modal .lucky-section b {
  font-weight: 600;
}
.modal .lucky-section-title {
  font-size: 1.6rem;
}
.modal .lucky-section-title span {
  font-size: 1.3rem;
  font-weight: 600;
}
.modal .lucky-title {
  padding: 4px 8px;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  margin: 8px 0;
}
.modal .lucky-title span {
  font-size: 1.2rem;
}
.modal .tensha {
  background: #e80000;
}
.modal .ichiryu {
  background: #f08300;
}
.modal .tora {
  background: #09c;
}
.modal .close {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #efefef;
  color: #1a1c21;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 16px;
}
@media (min-width: 768px) {
  .modal .close {
    font-size: 1.6rem;
  }
}
.modal .close img {
  margin: 0;
}
.modal .close:hover,
.modal .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
