﻿* {
  box-sizing: border-box;
}
.uni-header-menu-icon {
  box-sizing: content-box;
}

/* -------------------
  structure
-------------------- */
.cp_str_main {
  font-size: 15px;
  line-height: 1.46;
}
.cp_str_mv img,
.cp_str_main img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .cp_str_main > *:first-child {
    padding-top: 0;
  }
  .cp_str_container {
    padding: 30px 15px 100px;
    background: url(../img/mv_bg_pc.webp) no-repeat center / cover;
    background-attachment: fixed;
    background-position: center top;
  }
  .cp_str_inner {
    margin: 0 auto;
    max-width: 1360px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    position: relative;
  }
  .cp_str_left {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
  .cp_str_mv {
    width: 620px;
    min-width: 420px;
  }
  .cp_str_main {
    padding: 15px 15px 0;
    width: 500px;
    min-width: 350px;
    min-height: 100vh;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0,0,0,.16);
    background-color: #fff;
  }
  .cp_str_right {
    position: sticky;
    top: 120px;
    right: 15px;
    width: 210px;
  }
}

@media screen and (min-width: 1390px) {
  .cp_str_left {
    flex-direction: row;
    align-items: flex-start;
  }
  .cp_str_mv {
    position: sticky;
    top: 120px;
    left: 15px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background: #fff;
  }
  .cp_str_right {
    display: none !important;
  }
}

/* -------------------
  MV Area
-------------------- */
.cp_top_summary {
  margin-top: -100px;
  padding: 50px 30px 40px;
  text-align: center;
  border-radius: 10px;
  background-color: rgba(255,253,229,.95);
  position: relative;
  z-index: 1;
}
.cp_top_summary .cp_lead {
  font-size: 18px;
}
.cp_top_summary .cp_lead + .cp_lead {
  margin-top: 10px;
}
.cp_top_summary .cp_lead em {
  font-weight: bold;
  color: #00a0e9;
}
.cp_top_summary .cp_lead em em {
  padding: 0 3px;
  display: inline;
  background: linear-gradient(transparent 60%, #fff20a 0%);
}
.cp_top_summary .cp_lead.fs-s {
  font-size: 15px;
}
.cp_lead_note {
  margin-top: 10px;
  font-size: 10px;
}
.cp_lead_note b {
  color: #e51076;
}
@media screen and (max-width: 768px) {
  .cp_top {
    padding: 15px 15px 30px;
    background: url(../img/mv_bg.webp) no-repeat center / cover;
  }
  .cp_top_summary {
    margin-top: calc(-70 / 414* 100vw);
    padding: 20px 5px;
  }
  .cp_top_summary .cp_lead {
    font-size: 15px;
  }
  .cp_top_summary .cp_lead.fs-s {
    font-size: 13px;
  }
}

/* -------------------
  Main Area
-------------------- */
/* common */
.cp_sec {
  padding: 50px 15px;
}
.cp_bg_gray {
  background-color: #f9f7f8;
}
.cp_hdgLv2 {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  -webkit-text-stroke: 6px #fff;
  text-stroke: 6px #fff;
  paint-order: stroke;
  color: #e51076;
  border-radius: 10px;
  background: url(../img/hdg_bg.png) no-repeat center / cover;
}
.cp_hdgLv2 + * {
  margin-top: 30px;
}
.cp_note,
.cp_list_disc > li {
  margin-left: 1em;
  text-indent: -1em;
}
.cp_list_disc > li + li {
  margin-top: .5em;
}
.cp_list_disc > li::before {
  content: "\30FB";
}
.cp_list_mark {
  display: table;
  width: 100%;
}
.cp_list_mark.fs-s {
  font-size: 13px;
}
.cp_list_mark > li {
  display: table-row;
}
.cp_list_mark__mrk,
.cp_list_mark__txt {
  display: table-cell;
  vertical-align: top;
}
.cp_list_mark__mrk {
  white-space: pre;
}
.cp_list_mark__txt {
  padding-bottom: .5em;
  width: 100%;
}
.cp_list_mark > li:last-child .cp_list_mark__txt {
  padding-bottom: 0;
}
@media screen and (min-width: 769px) {
  .cp_str_main .cp_sec {
    margin: 0 -15px;
  }
}

/* conditions */
.cp_conditions {
  margin: 30px 0 0;
  text-align: center;
}

/* entry */
.cp_entry_block_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
}
.cp_entry_label {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: .1em;
}
.cp_entry_check {
  padding: 5px 10px 5px 35px;
  font-size: 12px;
  letter-spacing: .1em;
  color: #000;
  border: 1px solid #989898;
  border-radius: 28px;
  background-color: #fff;
  cursor: pointer;
  transition: .3s ease;
  position: relative;
}
.cp_entry_check:hover {
  opacity: .7;
}
.cp_entry_check::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 10px;
  width: 18px;
  height: 18px;
  background: url(../img/mark.png) no-repeat center / contain;
  transform: translateY(-50%);
}

.cp_entry_block_main {
  margin: 15px 0 0;
}
.cp_entry_input {
  padding: 10px 20px;
  width: 100%;
  font-size: 20px;
  letter-spacing: .05em;
  border: 1px solid #989898;
  border-radius: 10px;
  background-color: #f6f6f6;
  box-shadow: inset 0 4px 9px rgba(0,0,0,.28);
  transition: .3s ease-in;
}
.cp_entry_input[readonly] {
  background-color: #989898;
  box-shadow: none;
}
.cp_entry_input::placeholder {
  color: #C0C0C0;
}
.cp_entry_error {
  margin-top: 5px;
  display: none;
}
.cp_entry_block_main.is-error .cp_entry_error {
  display: block;
}
.cp_entry_error strong {
  font-size: 15px;
  font-weight: bold;
  color: #E63D3D;
}

.cp_entry_block_foot {
  margin: 10px 0 0;
}
.cp_entry_agreement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cp_entry_agreement [type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
}
.cp_entry_agreement [type="checkbox"]::before,
.cp_entry_agreement [type="checkbox"]::after {
  position: relative;
  content: "";
  display: block;
}
.cp_entry_agreement [type="checkbox"]::before {
  z-index: 0;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #000;
  border-radius: 3px;
  background-color: #fff;
}
.cp_entry_agreement [type="checkbox"]:checked::before {
  background: linear-gradient(0deg,#000 0%, #555 100%);
}
.cp_entry_agreement [type="checkbox"]:checked::after {
  z-index: 1;
  top: -18px;
  left: 5px;
  width: 14px;
  height: 12px;
  background: url(../img/check.svg) no-repeat center / contain;
}
.cp_entry_agreement_txt {
  font-size: 11px;
}
.cp_entry_agreement_txt a,
.que_txt a {
  text-decoration: underline;
  color: #40a8f5;
  transition: .3s ease;
}
.cp_entry_agreement_txt a:hover,
.que_txt a:hover {
  text-decoration: none;
  opacity: .7;
}
.cp_entry_submit {
  margin: 20px auto 0;
  width: fit-content;
  min-width: 290px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .1em;
  color: #fff;
  border: none;
  border-radius: 58px;
  background-color: #1f1f1f;
  transition: .3s ease-in;
  cursor: pointer;
  position: relative;
}
.cp_entry_submit:hover {
  opacity: .7;
}
.cp_entry_submit[disabled] {
  background-color: #989898;
  cursor: not-allowed;
}
.cp_entry_submit::before,
.cp_entry_submit::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
.cp_entry_submit::before {
  right: 15px;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
}
.cp_entry_submit::after {
  right: 24px;
  width: 7px;
  height: 14px;
  background: url(/cms/tobupoint/img/usr/common/btn_arrow_bk.svg) no-repeat;
}

/* entry confirmation */
.cp_entry_block form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
.cp_entry_block .cp_entry_block_head {
  line-height: 20px;
}
.cp_entry_block_main.confirmation {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  letter-spacing: .1em;
}
.cp_entry_block_main.confirmation + .submit_ {
  margin: 20px 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.cp_entry_block_main.confirmation + .submit_ .form_confirmation_btn {
  border: 1px solid #000;
  border-radius: 100px;
  position: relative;
}
.cp_entry_block_main.confirmation + .submit_ .form_confirmation_btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: .05em;
  transform: translate(-50%, -50%);
}
.cp_entry_block_main.confirmation + .submit_ .form_confirmation_btn.back {
  color: #000;
  background-color: #fff;
}
.cp_entry_block_main.confirmation + .submit_ .form_confirmation_btn.back::before {
  content: "\623B\308B"; /* 戻る */
}
.cp_entry_block_main.confirmation + .submit_ .form_confirmation_btn.regist {
  color: #fff;
  background-color: #000;
}
.cp_entry_block_main.confirmation + .submit_ .form_confirmation_btn.regist::before {
  content: "\30A8\30F3\30C8\30EA\30FC"; /* エントリー */
}
.cp_entry_block_main.confirmation + .submit_ .form_confirmation_btn [type="image"] {
  opacity: 0;
  display: block;
}

/* shop */
.cp_shop {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  transition: height .3s;
  overflow: hidden;
}
.cp_shop_item {
  width: calc((100% - 15px) / 2);
}
.cp_shop:not(.is-expanded) .cp_shop_item:nth-child(n + 5) {
  display: none;
}
.cp_shop_link {
  padding: 10px;
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  height: 100%;
  color: #2F2F2F;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 1px 6px 1px rgba(0, 0, 0, .05);
  transition: .2s linear;
}
.cp_shop_name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.cp_shop_data {
  display: flex;
  gap: 3px;
}
[class^="shop_cate_"] {
  width: 24px;
  height: 24px;
  background: no-repeat center / 24px auto;
}
.shop_cate_card {
  background-image: url(/cms/tobupoint/img/usr/common/icon_card.svg);
}
.shop_cate_app {
  background-image: url(/cms/tobupoint/img/usr/common/icon_app.svg);
}
.shop_cate_pasmo {
  background-image: url(/cms/tobupoint/img/usr/common/icon_pasmo.svg);
}
.cp_shop_img img {
  width: 100%;
  height: auto;
}
.cp_shop_more {
  margin: 30px auto 0;
  width: fit-content;
  min-width: 290px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .1em;
  color: #000;
  box-shadow: 0 0 10px rgba(72,72,72,.2);
  border: none;
  border-radius: 58px;
  background-color: #fff;
  cursor: pointer;
  transition: .3s ease;
  position: relative;
}
.cp_shop_more:hover {
  opacity: .7;
}
.cp_shop_more::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  width: 33px;
  height: 33px;
  background: url(/cms/tobupoint/img/usr/common/acd_plus_icon.svg) no-repeat center / contain;
  transform: translateY(-50%);
  transition: .3s ease;
}
.cp_shop_more[aria-expanded="true"]::after {
  background-image: url(/cms/tobupoint/img/usr/common/acd_minus_icon.svg);
}
.cp_img {
  margin: 30px auto 0;
  max-width: calc(345 / 375 * 100vw);
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  position: relative;
  z-index: 0;
}
.cp_img_inner,
.cp_img_outer {
  position: absolute;
  z-index: 1;
  display: block;
}
.cp_img_inner {
  top: 106px;
  right: 0px;
  padding: 0 18px;
  width: 270px;
  font-size: 20px;
  font-weight: bold;
}
.cp_img_outer {
  top: 218px;
  right: 0;
  padding-left: 8px;
  width: 230px;
}
.cp_img_outer p {
  margin-left: 1em;
  font-size: 16px;
  text-indent: -1em;
  line-height: 1.25;
}
.cp_img_outer p + p {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .cp_img {
    max-width: calc(345 / 375 * 100vw);
  }
  .cp_img_inner {
    top: calc(80 / 375 * 100vw);
    right: calc(-7 / 375 * 100vw);
    padding: 0 calc(18 / 375 * 100vw);
    width: calc(206 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
  }
  .cp_img_outer {
    top: calc(170 / 375 * 100vw);
    padding-left: calc(8 / 375 * 100vw);
    width: calc(170 / 375 * 100vw);
  }
  .cp_img_outer p {
    font-size: calc(12 / 375 * 100vw);
  }
}
.cp_shop_btn {
  margin: 30px auto 0;
  width: fit-content;
  min-width: 320px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .1em;
  color: #1f1f1f;
  border: none;
  border-radius: 58px;
  background-color: #fff;
  transition: .3s ease-in;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  cursor: pointer;
  position: relative;
}
.cp_shop_btn:hover {
  opacity: .7;
}
.cp_shop_btn::before,
.cp_shop_btn::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
.cp_shop_btn::before {
  right: 12px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
}
.cp_shop_btn::after {
  right: 21px;
  width: 7px;
  height: 14px;
  background: url(/cms/tobupoint/img/usr/common/btn_arrow_bk.svg) no-repeat;
}

/* faq */
.cp_faq_item {
  padding: 0 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(72,72,72,.2);
}
.cp_faq_item + .cp_faq_item {
  margin-top: 15px;
}
.cp_faq_que_btn,
.cp_faq_ans_content {
  display: flex;
  align-items: flex-start;
}
.cp_faq_que_btn {
  padding: 15px 40px 15px 0;
  width: 100%;
  font-family: inherit;
  text-align: left;
  color: #000;
  border: none;
  background: none;
  cursor: pointer;
  transition: .3s ease;
  position: relative;
}
.cp_faq_que_btn:hover {
  opacity: .7;
}
.cp_faq_que_btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 33px;
  height: 33px;
  background: url(/cms/tobupoint/img/usr/common/acd_plus_icon.svg) no-repeat center / contain;
  transform: translateY(-50%);
  transition: .3s ease;
}
.cp_faq_que_btn[aria-expanded=true]::after {
  background-image: url(/cms/tobupoint/img/usr/common/acd_minus_icon.svg);
}
.cp_faq_qa {
  min-width: 30px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  top: -1px;
}
.cp_faq_qa.que {
  color: #e51076;
}
.cp_faq_qa.ans {
  color: #666;
}
.que_txt {
  flex: 1;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.46;
}
.cp_faq_ans_content {
  padding: 15px 0;
  border-top: 2px dotted #d1d1d1;
}
.js-accordion-panel {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}

/* summary */
.cp_summary_item {
  color: #333;
}
.cp_summary_item + .cp_summary_item {
  margin-top: 30px;
}
.cp_summary_ttl {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.2;
}
.cp_summary_desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.46;
}
.cp_summary_desc .cp_list_mark.fs-s,
.cp_summary_desc .cp_note {
  margin-top: 10px;
}
.cp_summary_desc .fs-s .cp_list_mark__mrk {
  padding-right: 5px;
}
.cp_summary_desc .cp_note + .cp_note {
  margin-top: 5px;
}

/* -------------------
  Right Area
-------------------- */
.cp_sideMenu {
  padding: 78px 14px 8px;
  box-shadow: 0 0 6px rgba(0,0,0,.16);
  border-radius: 10px;
  background-color: #fff;
  position: relative;
}
.cp_sideMenu::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 50%;
  width: 86px;
  height: 60px;
  background: url(../img/tobutan1.svg) no-repeat center / contain;
  transform: translateX(-50%);
}
.cp_sideMenu_link {
  padding: 13px 15px 13px 35px;
  display: block;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  color: #1F1F1F;
  border-top: 1px dotted #999;
  transition: .3s ease-in-out;
  position: relative;
}
.cp_sideMenu_link.is-active {
  color: #E51076;
}
.cp_sideMenu_link::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
}
.cp_sideMenu_link:not(.is-active)::before {
  background: url(../img/arrow.svg) no-repeat center / 10px 6px;
}
.cp_sideMenu_link.is-active::before {
  background: url(../img/coin.svg) no-repeat center / contain;
}
.cp_qr {
  margin-top: 60px;
  padding-top: 148px;
  position: relative;
}
.cp_qr::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 160px;
  height: 180px;
  background: url(../img/tobutan2.svg) no-repeat center / contain;
  transform: translateX(-50%);
  animation: floating-y .8s ease-in-out 6 alternate;
}
@keyframes floating-y {
  0% {
    transform: translateY(0) translateX(-50%);
  }
  100% {
    transform: translateY(-10%) translateX(-50%);
  }
}
.cp_qr_inner {
  padding: 44px 10px 15px;
  box-shadow: 0 0 6px rgba(0,0,0,.16);
  border-radius: 10px;
  background-color: #fff;
}
.cp_qr img {
  margin: 0 auto;
  max-width: 150px;
  display: block;
}
.cp_qr_txt {
  margin-top: 8px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}

/* -------------------
  Modal
-------------------- */
.cp_modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .8);
  overflow: hidden;
}
.cp_modal.is-hidden {
  display: none;
}
.cp_modal {
  /* width: 90%; */
  max-width: 1100px;
  position: relative;
}
.cp_modal_inner {
  margin: 0 auto;
  padding: 20px;
  max-height: 75vh;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
}
.cp_modal_btnClose {
  margin: 30px auto 0;
  width: fit-content;
  min-width: 300px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .1em;
  color: #fff;
  border: none;
  border-radius: 100px;
  background-color: #1F1F1F;
  position: relative;
}
.cp_modal_btnClose::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  width: 15px;
  height: 15px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14.828" height="14.828" viewBox="0 0 14.828 14.828"><g transform="translate(-20.222 -22.222)"><path d="M0,0H16.97" transform="translate(21.636 35.636) rotate(-45)" fill="none" stroke="%23fff" stroke-linecap="round" stroke-width="2"/><path d="M0,0H16.97" transform="translate(33.636 35.636) rotate(-135)" fill="none" stroke="%23fff" stroke-linecap="round" stroke-width="2"/></g></svg>') no-repeat center / contain;
  transform: translateY(-50%);
  transition: .3s ease;
}

/* Contents */
.cp_popup_pop {
  position: absolute;
  top: -35px;
  right: -15px;
  z-index: 1;
  opacity: 0;
}
.cp_modal:not(.is-hidden) .cp_popup_pop {
  animation: poyon .8s 1s forwards;
}
.cp_popup_pop img {
  max-width: 190px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .cp_modal {
    max-width: 90%;
  }
  .cp_popup_pop {
    top: calc(-26 / 375 * 100vw);
    right: calc(-8 / 375 * 100vw);
  }
  .cp_popup_pop img {
    max-width: calc(160 / 375 * 100vw);
  }
}

@keyframes poyon {
  0% {
    opacity: 0;
    transform: scale(1, 0.8);
  }
  20% {
    opacity: .5;
    transform: scale(0.8, 1.1);
  }
  70% {
    opacity: .8;
    transform: scale(1.1, 0.8);
  }
  90% {
    opacity: .8;
    transform: scale(0.8, 1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

/* -------------------
  thanks
-------------------- */
.cp_thianks {
  margin: 40px auto 0;
  padding: 30px 40px;
  max-width: 1360px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  border-radius: 12px;
  background-color: #fff;
}
.cp_thianks p + p {
  margin-top: 1em;
}
.cp_thianks_btn {
  margin: 40px auto 0;
  width: fit-content;
  min-width: 290px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .1em;
  color: #fff;
  border: none;
  border-radius: 58px;
  background-color: #1f1f1f;
  transition: .3s ease-in;
  cursor: pointer;
  position: relative;
}
.cp_thianks_btn::before,
.cp_thianks_btn::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
.cp_thianks_btn::before {
  right: 15px;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
}
.cp_thianks_btn::after {
  right: 24px;
  width: 7px;
  height: 14px;
  background: url(/cms/tobupoint/img/usr/common/btn_arrow_bk.svg) no-repeat;
}
@media screen and (max-width: 768px) {
  .cp_thianks {
    margin: 16px 15px 0;
    padding: 25px 20px;
    font-size: 18px;
    line-height: 1.6;
  }
}

.u-visuallyHidden {
    position: absolute;
    padding: 0;
    width: 1px;
    height: 1px;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
}

/* -------------------
  終了
-------------------- */
.cp_end_txt {
  margin: 0 0 20px;
  padding: 10px 0;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  background-color: rgba(255, 253, 229, .95);
}
.cp_end_entry {
  padding: 30px 10px;
  text-align: center;
  border-radius: 10px;
  background-color: #e3e3e3;
}
.cp_end_entry_txt {
  font-size: 18px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cp_end_txt {
    margin: 0;
    font-size: 16px;
    border-radius: 0;
  }
  .cp_end_entry_txt {
    font-size: 16px;
  }
}