.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: 6px;
  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.8;
  text-decoration: none;
  color: #fff;
}
.btn__entry {
  padding: 10px 40px 8px 16px;
  margin: 16px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 2.6rem;
  font-weight: bold;
  background: #e80000;
  box-shadow: 0 8px 0 0 #cc0933;
}
@media (min-width: 768px) {
  .btn__entry {
    padding: 16px 40px 10px 16px;
    flex-direction: row;
    gap: 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:hover {
  margin: 24px auto 16px;
  box-shadow: 0 0 0 0 #cc0933;
}
@media (min-width: 768px) {
  .btn__entry:hover {
    margin: 24px auto 32px;
  }
}
.btn__buy {
  min-height: 60px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border: 4px solid #000;
  max-width: 500px;
  margin: 0 auto 8px;
}
@media (min-width: 768px) {
  .btn__buy {
    border: 4px solid #000;
    height: 80px;
    max-width: 768px;
  }
}
.btn__buy:after {
  content: "";
  position: absolute;
  right: 1.333333333333333vw;
  bottom: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .btn__buy:after {
    width: 40px;
    height: 40px;
    right: 28px;
    bottom: 16px;
  }
}
.btn__buy .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 28.26666666666667vw;
  max-width: 180px;
  padding: 0 14px 0 2px;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .btn__buy .logo {
    max-width: none;
    width: 262px;
    padding: 0 40px 0 40px;
  }
}
.btn__buy .logo:after {
  content: "";
  position: absolute;
  right: 0;
  width: 26px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #fff);
}
@media (min-width: 768px) {
  .btn__buy .logo:after {
    width: 60px;
  }
}
.btn__buy .logo img {
  position: relative;
  z-index: 2;
  max-height: 44px;
  width: auto;
}
@media (min-width: 768px) {
  .btn__buy .logo img {
    max-height: 72px;
  }
}
.btn__buy .text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 8vw;
  flex-grow: 2;
}
@media (min-width: 768px) {
  .btn__buy .text {
    padding: 0 80px 0 30px;
    flex-grow: auto;
  }
}
.btn__buy .text img {
  max-height: 40px;
  width: auto;
}
@media (min-width: 768px) {
  .btn__buy .text img {
    max-height: 50px;
  }
}
.btn__buy.big {
  border-color: #e80000;
}
.btn__buy.big:after {
  background: url("../img/icon_arrow_btn_big.svg") center center no-repeat;
  background-size: contain;
}
.btn__buy.big .logo {
  background: #e80000;
}
.btn__buy.big:hover {
  background: rgba(232,0,0,0.08);
}
.btn__buy.big:hover .logo:after {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92));
}
.btn__buy.toto {
  border-color: #f1ae00;
}
.btn__buy.toto:after {
  background: url("../img/icon_arrow_btn_toto.svg") center center no-repeat;
  background-size: contain;
}
.btn__buy.toto .logo {
  background: #ffd900;
}
.btn__buy.toto:hover {
  background: rgba(255,217,0,0.3);
}
.btn__buy.toto:hover .logo:after {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7));
}
.btn__buy.winner {
  border-color: #8bcfe0;
}
.btn__buy.winner:after {
  background: url("../img/icon_arrow_btn_winner.svg") center center no-repeat;
  background-size: contain;
}
.btn__buy.winner .logo {
  background: #daebf0;
}
.btn__buy.winner:hover {
  background: rgba(218,235,240,0.6);
}
.btn__buy.winner:hover .logo:after {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4));
}
.l-body {
  background: #fe9;
}
.l-wrap {
  overflow-x: hidden;
}
.container {
  max-width: 768px;
  margin: 0 auto;
}
.entry {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
  background: rgba(255,241,0,0.8);
  padding: 8px 16px 20px;
}
@media (min-width: 768px) {
  .entry {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .entry .btn {
    margin: 0;
  }
}
.entry .btn:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .entry .btn:hover {
    margin: 8px auto -8px;
  }
}
.kv__top-area {
  text-align: center;
  padding: 12px 14px 0;
  background: url("../img/img_bg.png") center center no-repeat;
  background-size: cover;
}
.kv__middle-area {
  position: relative;
}
.kv__middle-area::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50.13333333333333vw 112px 50.13333333333333vw;
  border-color: transparent transparent #fff transparent;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .kv__middle-area::after {
    border-width: 0 50.13333333333333vw 80px 50.13333333333333vw;
  }
}
.kv__middle-area .container {
  position: relative;
  z-index: 2;
}
.kv__bottom-area {
  padding: 0 10px 32px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.kv__entry {
  padding: 0 6px;
}
.kv__kuji {
  background: #fff;
  border: 4px solid #000;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .kv__kuji {
    border: 6px solid #000;
  }
}
.kv__kuji-top {
  padding: 4px 16px;
  background: linear-gradient(90deg, #c09b0f 0%, #fff799 50%, #c09b0f 100%);
}
@media (min-width: 768px) {
  .kv__kuji-top {
    padding: 16px 32px;
  }
}
.kv__kuji-bottom {
  padding: 12px 8px 8px 6px;
  color: #e80000;
}
@media (min-width: 768px) {
  .kv__kuji-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 46px 20px 52px;
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .kv__kuji-12 {
    height: auto;
    max-width: 400px;
  }
}
.kv__kuji-chance {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .kv__kuji-chance {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin: 0;
    gap: 10px;
  }
}
.kv__kuji-chance p {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .kv__kuji-chance p {
    text-align: left;
    font-size: 2.6rem;
    line-height: 1.2;
  }
}
.kv__now {
  position: relative;
  z-index: 2;
  background: #000;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  display: inline-block;
}
@media (min-width: 768px) {
  .kv__now {
    font-size: 2.4rem;
  }
}
.kv__now p {
  padding: 2px 0 3px;
}
@media (min-width: 768px) {
  .kv__now p {
    padding: 2px 24px 3px;
  }
}
.kv__now::before,
.kv__now::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.kv__now::before {
  border-width: 0 35.199999999999996vw 32px 0;
  border-color: transparent #000 transparent transparent;
  left: -35.06666666666667vw;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .kv__now::before {
    border-width: 0 296px 41px 0;
    left: -296px;
  }
}
.kv__now::after {
  border-width: 0 0 32px 35.199999999999996vw;
  border-color: transparent transparent transparent #000;
  right: -35.06666666666667vw;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .kv__now::after {
    border-width: 0 0 41px 296px;
    right: -296px;
  }
}
.kv__card {
  padding: 20px 0 12px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .kv__card {
    padding: 8px;
  }
}
.kv__card:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  width: 100%;
  height: 375px;
  background: radial-gradient(50% 50% at 50% 50%, #fff 67%, rgba(255,255,255,0) 100%);
}
.kv__card img {
  width: 37.333333333333336vw;
  max-width: 220px;
}
@media (min-width: 768px) {
  .kv__card img {
    display: none;
  }
}
.kv__pc-card {
  display: none;
}
@media (min-width: 768px) {
  .kv__pc-card {
    display: block;
    max-width: 220px;
    margin: 0 auto;
    padding-bottom: 8px;
  }
}
.kv__limited {
  width: 65.33333333333333vw;
  margin: 0 auto;
  max-width: 672px;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .kv__campaign {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .kv__notice {
    padding: 0 48px;
  }
}
.step {
  padding: 32px 16px 32px;
}
@media (min-width: 768px) {
  .step {
    padding: 64px 16px 48px;
  }
}
@media (min-width: 768px) {
  .step .btn__entry {
    font-size: 2.2rem;
  }
}
.step .btn__entry img {
  width: 66.66666666666666vw;
  max-width: 320px;
}
.step__title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0 0 40px;
}
.step__title span {
  color: #cc0933;
}
@media (min-width: 768px) {
  .step__title {
    font-size: 4.8rem;
    margin: 0 0 80px;
  }
}
.step__number {
  margin: -12px 0 0;
  width: 80px;
}
@media (min-width: 768px) {
  .step__number {
    width: 158px;
  }
}
.step__item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 0 16px 16px;
  margin: 0 0 72px;
  box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.08);
}
@media (min-width: 768px) {
  .step__item {
    padding: 0 64px 16px;
    margin: 0 0 108px;
  }
}
.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.4rem;
}
@media (min-width: 768px) {
  .step__item-title {
    font-size: 3.6rem;
  }
}
.step .skip {
  margin: 4px 0 8px;
}
.step__point-box {
  padding: 8px 0 4px;
}
@media (min-width: 768px) {
  .step__point-box {
    padding: 12px 0 16px;
  }
}
.step__point-box .step__point {
  margin: 0;
}
.step__point {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 8px auto 20px;
}
@media (min-width: 768px) {
  .step__point {
    font-size: 2rem;
    margin: 12px auto 24px;
  }
}
.step__point.ok {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.step__point span {
  background: #fff389;
  color: #cc0933;
  padding: 4px;
}
@media (min-width: 768px) {
  .step__point span {
    padding: 8px 16px;
  }
}
.step__point .point {
  line-height: 1;
  background: #cc0933;
  color: #fff;
  border-radius: 80px;
  font-size: 1.5rem;
  display: inline-block;
  height: 22px;
  margin-right: 8px;
}
@media (min-width: 768px) {
  .step__point .point {
    height: 26px;
    padding: 6px 12px;
  }
}
.step__present {
  background: #fff389;
  border-radius: 6px;
  padding: 8px 16px;
  margin: 8px auto;
}
@media (min-width: 768px) {
  .step__present {
    padding: 12px 16px;
  }
}
.step__present img {
  width: 100%;
  max-width: 272px;
}
.step__present img {
  width: 100%;
  max-width: 372px;
}
.step__next {
  margin: 20px auto;
  width: 34px;
  height: 24px;
}
@media (min-width: 768px) {
  .step__next {
    width: 80px;
    height: 28px;
    margin: 24px auto;
  }
}
.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;
  }
}
.step .future {
  width: calc(100% + 32px);
  margin: -52px -16px -12px;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  padding: 52px 0 0;
  background: linear-gradient(180deg, #fff 30%, rgba(254,255,255,0) 100%), linear-gradient(90deg, #f8c50f 0%, #fff799 50%, #f8c50f 100%);
}
@media (min-width: 768px) {
  .step .future {
    width: calc(100% + 128px);
    margin: -52px -64px -4px;
  }
}
.step .future img {
  max-width: calc(100% - 20px);
  margin: 0 auto;
  padding-bottom: 10px;
}
.step .future__title {
  font-weight: bold;
  font-size: 2rem;
  color: #c89000;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .step .future__title {
    font-size: 2.8rem;
  }
}
.step .future__billion {
  width: 79.46666666666667vw;
  max-width: 400px;
  margin: 0 auto 8px;
}
.step .future__billion img {
  width: 100%;
}
.docomo-kuji {
  padding: 24px 14px 32px;
  background: #fad02c;
}
@media (min-width: 768px) {
  .docomo-kuji {
    padding: 48px 16px;
  }
}
.docomo-kuji__item {
  border: 4px solid #000;
  background: linear-gradient(90deg, #f8c50f 0%, #fff799 50%, #f8c50f 100%);
  text-align: center;
}
.docomo-kuji__title {
  text-align: center;
}
.docomo-kuji__title-intro {
  width: 48.53333333333333vw;
  margin: 2px auto 3px;
}
@media (min-width: 768px) {
  .docomo-kuji__title-intro {
    max-width: 280px;
    margin: 6px auto;
  }
}
.docomo-kuji__title-main {
  background: #e80000;
  padding: 7px 12px;
}
@media (min-width: 768px) {
  .docomo-kuji__title-main {
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .docomo-kuji__title-main img {
    max-width: 460px;
  }
}
.docomo-kuji__list {
  text-align: center;
  padding: 12px 20px 0;
}
@media (min-width: 768px) {
  .docomo-kuji__list {
    padding: 16px 40px 0;
    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: 540px;
}
@media (min-width: 768px) {
  .docomo-kuji__list img {
    max-width: 324px;
  }
}
.docomo-kuji__annotion {
  display: inline-block;
  margin: 0 16px 16px;
}
@media (min-width: 768px) {
  .docomo-kuji__annotion {
    margin: 0 0 24px;
  }
}
.docomo-kuji__dpoint {
  padding: 10px 16px 16px;
  border-radius: 12px;
  text-align: center;
  background: #fff url("../img/img_coin_dpoint.png") center top 100% no-repeat;
  background-size: contain;
  border: 4px solid #fff;
}
@media (min-width: 768px) {
  .docomo-kuji__dpoint {
    background: #fff url("../img/img_coin_pc.png") center bottom -36px no-repeat;
    background-size: 140%;
    padding: 14px 56px 20px;
    border: 8px solid #fff;
  }
}
.docomo-kuji__dpoint-title {
  width: 61.33333333333333vw;
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .docomo-kuji__dpoint-title {
    width: 100%;
  }
}
.docomo-kuji__dpoint-1per {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px 10px 16px;
  border: 1px solid #cc0933;
  border-radius: 8px;
  background: #fff;
}
@media (min-width: 768px) {
  .docomo-kuji__dpoint-1per {
    border-width: 2px;
    padding: 12px 56px 12px 32px;
    gap: 24px;
  }
}
.docomo-kuji__dpoint-1per .card {
  width: 19.2vw;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .docomo-kuji__dpoint-1per .card {
    width: 72px;
  }
}
.docomo-kuji .center {
  font-size: 2rem;
  font-weight: bold;
  padding: 12px;
}
@media (min-width: 768px) {
  .docomo-kuji .center {
    font-size: 2.6rem;
    padding: 18px;
  }
}
.about {
  padding: 32px 16px 40px;
  background: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .about {
    padding: 64px 16px 80px;
  }
}
.about__section-title {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0 0 8px;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .about__section-title {
    font-size: 3.2rem;
    margin: 0 0 24px;
  }
}
.about__section-title:after {
  content: "";
  width: 128px;
  height: 4px;
  background: #cc0933;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.about__logo {
  width: 128px;
}
@media (min-width: 768px) {
  .about__logo {
    width: 200px;
  }
}
.about__intro {
  font-weight: bold;
  margin: 8px 0 0;
}
@media (min-width: 768px) {
  .about__intro {
    font-size: 2rem;
    margin: 24px 0 0;
  }
}
.about__item-wrap {
  margin: 32px 0 0;
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .about__item-wrap {
    margin: 40px 0 0;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.about__item {
  text-align: left;
}
.about__item img {
  margin: 8px 0;
}
.about__item-title {
  background: #fcebe2;
  color: #e80000;
  padding: 4px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .about__item-title {
    font-size: 2.4rem;
  }
}
/*------------202408------------*/
.step03_img_02{
  margin-top: 30px;
}
.step__item.step__item--step03{
  padding-bottom: 0;
}
.voice_wrap,.cambtn_wrap{
  background: #fff;
  text-align: center;
  padding: 0 16px;
}
.style_01{
  margin-top: -16px;
}
.style_02{
  margin-top: 10px;
}
#entry-show .step__item{
  padding-bottom: 40px;
}
.num_6_start li{
  text-indent: -1.3em;
  padding-left: 1.3em;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .style_05{
    text-align: right;
  }
  .voice_txt img{
    margin-bottom: 30px;
  }
  .voice_img img{
    max-width: 690px;
  }
  .cambtn_wrap{
    padding: 80px 16px 110px;
  }
  .cambtn_txt img{
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .voice_txt img{
    margin-bottom: 20px;
  }
  .voice_img img{
    max-width: 690px;
    width: 100%;
  }
  .cambtn_wrap{
    padding: 60px 16px 60px;
  }
  .cambtn_txt img{
    margin-bottom: 20px;
  }
  .style_03,.style_04{
    text-align: center;
  }
  .style_04{
    margin-top: 20px;
  }
}