.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}

.tab_swiper{
position: relative;
padding: 1.6rem 0 10.0rem;
}
.swiper_04,.swiper_03{
position: relative;
padding: 0 0 10.0rem;
}
.swiper_10{
position: relative;
padding: 4.8rem 0 10.0rem;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: '\f138';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: '\f137';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
@media (max-width : 769px){
.tab_swiper,.swiper_04,.swiper_03,.swiper_10{
  overflow-x: hidden;
  }
.tab_swiper{
padding: 0.6rem 0 8.0rem;
}
}
.swiper{
padding: 4.8rem 0 10.0rem;
}
.swiper-wrapper {
gap: 0;
padding: 0;
    flex-wrap: nowrap;
  width: 100%;
}
li.swiper-slide {
padding: 0.8rem 1.8rem;
}
.swiper-pagination-bullet {
  margin: 0 0.8rem;
  background: #111;
}
.swiper-pagination{
  margin-bottom: 6.0rem;
}
.swiper-scrollbar{
  margin-bottom: 3.6rem;
}
.swiper-pagination-bullet:first-child {
  margin: 0;
}
.swiper-button-next,
.swiper-button-prev {
  top: auto;
  bottom: 8.4rem;
    padding: 1.8rem;
z-index: 99;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 5.0rem;
font-weight: 900;
  color: #777;
--shadow-color: #fff;
  text-shadow: 0.1rem 0.1rem 0 var(--shadow-color), -0.1rem -0.1rem 0 var(--shadow-color), -0.1rem 0.1rem 0 var(--shadow-color), 0.1rem -0.1rem 0 var(--shadow-color), 0 0.1rem 0 var(--shadow-color), -0.1rem 0 var(--shadow-color), -0.1rem 0 0 var(--shadow-color), 0.1rem 0 0 var(--shadow-color);  
  opacity: 0.6;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.5;
}

.swiper_04 .swiper-button-next,
.swiper_04 .swiper-button-prev {
  top: 46%;
}
.tab-content .swiper-button-next,
.tab-content .swiper-button-prev {
  top: 41%;
}
.tab-content .swiper-pagination-bullet {
  margin: 0 0.8rem;
  background: #eee;
}
.tab-content .swiper-pagination{
  margin-bottom: 8.0rem;
}

@media (max-width : 519px) {
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 3.2rem;
}
.swiper-pagination{
  margin-bottom: 5.8rem;
}
.swiper-scrollbar{
  margin-bottom: 4.2rem;
}
.swiper-button-next,
.swiper-button-prev {
  top: auto;
  bottom: 5.4rem;
    padding: 1.8rem;
z-index: 99;
}
}
/*wp.css reset*/
body{
    overflow-x: hidden;
}
a{
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}
hr{
  max-width: 96.0rem;
  height: 0.1rem;
  margin: 0 auto 6.0rem;
  background-color: #eee;
  border: none;
}
.wp_content{
--gutter_half:1%;
padding: 0 var(--gutter_half);
}
.wp_content>*:not(.advertisement):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.default-max-width):not(.g_large_max_width):not(.g_small_max_width):not(.small-max-width), *[class*=inner-container]>*:not(.entry-content):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
    max-width: calc(100vw - 4% * 2);
}
@media print,only screen and (min-width: 768px) {
    .wp_content>*:not(.advertisement):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.default-max-width):not(.g_large_max_width):not(.g_small_max_width):not(.small-max-width),
    *[class*=inner-container]>*:not(.entry-content):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
        width: calc(100vw - 1% * 2);
        max-width: 123.2rem;
        min-width: 123.2rem;
    }
}
.wp_content ul li, .editor-styles-wrapper ul li{
    padding: 0;
}
.wp_content ul li:after, .editor-styles-wrapper ul li:after{
    width: 0;
}
.wp_content ul li:not(:first-child), .editor-styles-wrapper ul li:not(:first-child){
    margin-top: 0;
}
.g_page_header{
  display: none;
}
/*LP com grid*/
*,*::before,*::after{
  box-sizing:border-box;
}
.wp_content li h4{
    margin: 1.6rem 0;
}
.wp_content li p{
    margin-top: 1.6rem;
}
figure.inset{
    margin: 0;
    padding: 6% 16%;
    background-color: #f5f5f5;
}
.wp_content ul li.swiper-slide{
    padding: 0 1%;
}
.column_02,.column_03,.column_04,.column_06,.column_12{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.column_02 li,.column_03 li,.column_04 li,.column_06 li,.column_12 li{
    margin: 0 var(--gutter_half) 3.2rem;
}
.column_02 li{width: calc(100% / 2 - var(--gutter_half) * 2);}
.column_03 li {width:calc(100% / 3 - var(--gutter_half) * 2);}
.column_04 li {width:calc(100% / 4 - var(--gutter_half) * 2);}
.column_06 li {width:calc(100% / 6 - var(--gutter_half) * 2);}
.column_12 li{width:calc(100% / 12 - var(--gutter_half) * 2);}

@media (max-width : 769px){
.column_02 li,.column_03 li,.column_04 li,.column_06 li,.column_12 li{
    margin: 0 auto 3.2rem;
}
.column_02 li{width:calc(100% / 1 - var(--gutter_half) * 2);}
.column_03 li{width:calc(100% / 1 - var(--gutter_half) * 2);}
.column_04 li{width:calc(100% / 1 - var(--gutter_half) * 2);}
.column_06 li{width:calc(100% / 3 - var(--gutter_half) * 2);}
.column_12 li{width:calc(100% / 4 - var(--gutter_half) * 2);}
}
.advertisement{
  position: fixed;
  right: 2.4rem;
bottom: 2.4rem;
width: 15.0rem!important;
height: 15.0rem;
border-radius: 14.5rem;
padding-top: 1.4rem;
  background-image: linear-gradient(270deg, #891B7B 8%, #DD186B 96%);
  border: 0.2rem solid #fff;
  text-align: center;
  z-index: 999;
}
.advertisement a{
  display: inline-block;
  text-decoration: none;
  width: 100%;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}
.advertisement a .fa-download{
  margin-bottom: 0.6rem;
  font-size: 2.8rem;
}
.advertisement a img{
  border: 0.1rem solid #000;
  display: block;
  width: 100%;
  margin: -1.4rem auto;
}
.advertisement a:hover img{
  box-shadow: 0 0.1rem 0.5rem 0 rgba(0, 0, 0, 0.3);
}
@media (max-width : 769px){
.advertisement{
  right: 0.8rem;
bottom: 0.8rem;
width: 11.0rem!important;
height: 11.0rem;
border-radius: 11.0rem;
padding-top: 1.2rem;
}
.advertisement a{
  font-size: 1.2rem;
}
.advertisement a .fa-download{
  margin-bottom: 0.6rem;
  font-size: 1.8rem;
}
}
.explanation{
  display: inline-block;
  width: 100%;
  margin-top: 0.4rem;
    font-size: 1.0rem;
    opacity: 0.7;
}
.fc_red{
  color: #d6186c;
}
.ta_c{
    text-align: center;
}
.ta_r{
  text-align: right;
}

.marquee_wrap{
  position: relative;
  width: 100%;
  height: 46.0rem;
  margin-top: 1.8rem;
}
.marquee_wrap h1{
  position: absolute;
  top: calc(50% - 4.5rem);
  left: 0;
  right: 0;
  width: 80%;
  height: 9.0rem;
  line-height: 9.0rem;
  padding: 0 1.6rem;
  background-color: #191D1F;
  border: 0.2rem solid #fff;
  color: #fff;
  text-align: center;
  z-index: 9;
}
.marquee_wrap h1 span{
  display: inline-block;
}
.marquee {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}
.marquee-content_left {
  display: flex;
  width: max-content;
  margin-top: 1.0rem;
  animation: scroll-left 48s linear infinite;
}
.marquee-content_right {
  display: flex;
  width: max-content;
  margin-top: 8.0rem;
  animation: scroll-right 48s linear infinite;
}
@keyframes scroll-left {
  from {transform: translateX(0);}
  to {transform: translateX(-50%);}
}
@keyframes scroll-right {
  from {transform: translateX(-50%);}
    to {transform: translateX(0);}
}
.marquee img {
  width: 18.0rem;
  height: 18.0rem;
  margin-right: 1.2rem;
  object-fit: cover;
}
@media (max-width : 1232px){
.marquee{
  left: -2%;
}
}
@media (max-width : 769px){
.marquee_wrap{
  left: -2%;
  height: 30.0rem;
  margin-top: 2.0rem;
}
.marquee_wrap h1{
  width: 100%;
  height: 9.0rem;
  padding-top: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
.marquee_wrap h1 span{
  display: block;
}
.marquee img {
  width: 10.0rem;
  height: 10.0rem;
  margin-right: 0.4rem;
}
.marquee-content_left {
  animation: scroll-left 36s linear infinite;
}
.marquee-content_right {
  margin-top: 8.0rem;
  animation: scroll-right 36s linear infinite;
}
}

.editer_image video{
    width: 100%;
}
.editer_image video.inset{
    margin: 0;
    padding: 2% 12%;
    background-color: #f5f5f5;
}
.editer_text summary{
font-size: 1.2rem;
color: #777;
}
@media (max-width : 769px){
  .editer_image{
    order: 1;
}
.editer_text{
    order: 0;  
}
.editer_image video.inset{
    padding: 0;
}
}

li.swiper-slide h4 {
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
li.swiper-slide h4 a{
  text-decoration: none;
}
li.swiper-slide h4 a:hover{
  text-decoration: underline;
}

.links_area{
  display: flex;
  flex-wrap: wrap;
  height: 5.6rem;
}
.link_demo_movie{
  width: 50%;
}
.link_cart{
  width: 50%;
}
.link_demo_movie a{
  text-decoration: none;
  display: inline-block;
  padding: 1.05em 1.6rem;
  background-color: #191D1F;
  border: 0.1rem solid #fff;
  font-size: 1.4rem;
  color: #fff;
}
.link_demo_movie a:hover{
  opacity: 0.8;
}
.link_cart button{
  padding: 1.1em 1.6rem;
  line-height: 1.4;
  text-align: left;
}
.swiper_04 .swiper-slide{
  border-left: 0.1rem solid #ccc;
}
#cart_slide .fa-circle-chevron-down{
  margin-right: 0.6rem;
}
@media (max-width : 769px){
.link_demo_movie{
  width: calc(50% - 0.4rem * 2);
}
.link_cart{
  width: calc(50% - 0.4rem * 2);
}
.link_demo_movie a{
  padding: 0.4em 1.2rem;
    font-size: 1.2rem;
}
#cart_slide .fa-circle-chevron-down{
  display: none;
}
.link_cart button{
  padding: 0.45em 1.2rem;
  font-size: 1.2rem;
}
}

.tab-content {
  padding: 0 1.6rem;
}
.tab-content .inset{
    margin: 0;
    padding: 2% 12%;
    background-color: #222;
}
@media (max-width : 769px){
.tab-content .inset{
    padding: 0;
}  
}
.tab-container h2,
.tab-container h3 {
  margin: 1.6rem 0;
}
.tab-button {
  cursor: pointer;
  border: 0.1rem solid #ccc;
  opacity: 0.5;
  transition: opacity 0.24s;
}
.tab-button:hover {
  opacity: 1.0;
}
.tab-button.active {
  position: relative;
  border: 0.3rem solid #d6186c;
  opacity: 1.0;
}
.tab-button.active::before {
  content: "▼";
  position: absolute;
  top: -2.8rem;
  left: 0;
  right: 0;
  width: 3.0rem;
  margin: 0 auto;
  font-size: 2.0rem;
  text-align: center;
  color: #d6186c;
--shadow-color: #fff;
  text-shadow: 0.1rem 0.1rem 0 var(--shadow-color), -0.1rem -0.1rem 0 var(--shadow-color), -0.1rem 0.1rem 0 var(--shadow-color), 0.1rem -0.1rem 0 var(--shadow-color), 0 0.1rem 0 var(--shadow-color), -0.1rem 0 var(--shadow-color), -0.1rem 0 0 var(--shadow-color), 0.1rem 0 0 var(--shadow-color);  
}
@media (max-width : 769px){
.tab-button.active::before {
  font-size: 1.8rem;
}
}
.tab-section {
  display: none;
}
.tab-section.active {
  display: block;
}

.swiper_10{
  padding: 0;
}
.swiper_10 ul li.swiper-slide{
  padding: 0.4rem;
}
.swiper_10 .swiper-scrollbar{
  margin: 0 auto;
}
.swiper_10 .swiper-button-next,
.swiper_10 .swiper-button-prev {
    bottom: 4.0rem;
    margin: 0 1.6rem;
}
.swiper_10 .swiper-button-next:hover,
.swiper_10 .swiper-button-prev:hover {
  opacity: 1.0;
}
@media (max-width : 769px){
.swiper_10 .swiper-button-next,
.swiper_10 .swiper-button-prev {
    bottom: 4.0rem;
    margin: 0 -0.4rem;
}
}
#demo_movie .tab-content .swiper-button-prev::after,
#demo_movie .tab-content .swiper-button-next::after {
    color: #fff;
    --shadow-color: #000;
    text-shadow: 0.1rem 0.1rem 0 var(--shadow-color), -0.1rem -0.1rem 0 var(--shadow-color), -0.1rem 0.1rem 0 var(--shadow-color), 0.1rem -0.1rem 0 var(--shadow-color), 0 0.1rem 0 var(--shadow-color), -0.1rem 0 var(--shadow-color), -0.1rem 0 0 var(--shadow-color), 0.1rem 0 0 var(--shadow-color);
    opacity: 1.0;
}
.tab-content{
  position: relative;
  color: #fff;
}
.tab-content::before{
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  background-color: #000;
  z-index: -1;
}

.tab-content .link_cart{
  position: absolute;
  bottom: 2.4rem;
  right: 0.8rem;
  text-align: right;
}
.tab-content .link_cart button{
  display: inline-block;
  text-align: center;
}
@media (max-width : 1232px){
.tab-content::before{
  width: 100%;
  left: 0;
}
.tab-content .link_cart{
  width: 100%;
}
.tab-content .link_cart button{
  display: inline-block;
  padding: 1.6rem;
}

}
#section26 iframe{
  width: 100%;
  height: 40.0rem;
}
@media (max-width : 769px){
#section26 iframe{
  height: 32.0rem;
}
}
#closing{
  padding: 1.8rem 1.6rem 3.6rem;
}
.link_more{
  font-size: 2.4rem;
}
.link_registration{
  display: inline-block;
  width: 100%;
  max-width: 46.0rem!important;
  min-width: 32.0rem!important;
  height: 7.2rem;
  line-height: 7.2rem;
  background-color: #000;
  color: #fff;
  text-align: center;
}
.link_registration:hover{
  text-decoration: none;
  opacity: 0.8;
}
#cart-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.8rem;
    background-color: #ccc;
    text-align: center;
    color: #000;
    z-index: 9999;
    transition: opacity 0.48s ease-in-out;
}
.cart-message-hidden {
    pointer-events: none;
    opacity: 0;
}
#cart-submit-iframe {
    position: absolute;
    width: 100px;
    height: 100px;
    border: none;
    visibility: hidden;
}
#voice_list{
position: relative;
margin: 1.6rem auto;
padding: 3.6rem 0;
}
@media (max-width : 1270px){
#voice_list::after{
  left: -4%;
  width: calc(100vw + 4%);
}
}
.wp_content .voice_list li{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 1.6rem;
  padding: 0.6rem;
  background-color: rgba(255,255,255,0.6);
  border: 0.1rem solid #ccc;
  border-radius: 0.3rem;
}
@media (max-width : 769px){
.wp_content .voice_list li{
  margin-bottom: 0.8rem;
}
}
.voice_list .inset{
  padding: 0.2rem;
  width: 10.0rem;
  height: 10.0rem;
}
.voice_list .detail{
  width: calc(100% - 10.6rem);
  margin-left: 0.6rem;
}
.wp_content .voice_list .detail h4{
  width: 100%;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.2;
}
.wp_content .voice_list .detail p{
  margin: 0.4rem 0;
}
.voice_list .detail button{
  display: block;
  position: absolute;
  bottom: 0.2rem;
  right: 0.8rem;
  width: 100%;
  padding: 0;
  background: none;
  font-weight: 600;
  text-align: right;
  color: #d6186c;
}