/*draft css*/
.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-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;
}
.swiper-wrapper {
gap: 0;
padding: 0;
  flex-wrap: nowrap;
  width: 100%;
}
li.swiper-slide {
padding: 0.8rem 1.8rem;
}
.swiper-pagination{
  margin-bottom: 6.0rem;
}
.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;
}
@media (max-width : 519px) {
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 3.2rem;
}
.swiper-pagination{
  margin-bottom: 5.8rem;
}
.swiper-button-next,
.swiper-button-prev {
  top: auto;
  bottom: 5.4rem;
    padding: 1.8rem;
z-index: 99;
}
}
.swiper_06_01,.swiper_06_02{
position: relative;
padding: 0 0 10.0rem;
}
.swiper_06_01 .swiper-button-next,
.swiper_06_02 .swiper-button-next,
.swiper_06_01 .swiper-button-prev,
.swiper_06_02 .swiper-button-prev{
    top: auto;
    bottom: 19.0rem;
    padding: 1.8rem;
    z-index: 99;
}
@media (max-width : 769px){
.swiper_06_01,.swiper_06_02{
  overflow-x: hidden;
}
}


/*wp.css reset*/
html {
  scroll-behavior: smooth;
}
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:0.8rem;
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;
}
*,*::before,*::after{
  box-sizing:border-box;
}
.wp_content li h4{
    margin: 1.6rem 0;
}
.wp_content li p{
    margin: 0 0 1.2rem;
}
.wp_content ul li{
    padding: 0;
}
body:not(.trial):not(.page-template-page-changer) .g_breadcrumb {
    margin-top: 0!important;
}
@media print, only screen and (min-width: 768px) {
    body:not(.trial):not(.page-template-page-changer) .g_breadcrumb {
        margin-top: 0!important;
    }
}

.g_page_head_area{
  position: relative;
  width: 100%;
  height: 40.0rem;
  margin-bottom: 4.8rem;
  text-align: center;
  color: #fff;
}
.g_page_head_area::after{
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 42.0rem;
  background: url("https://www.vocaloid.com/images/vocaloid_1_0_0/product_cover.png");
  background-size: cover;
  z-index: -2;
}
@media (max-width : 1232px){
.g_page_head_area::after{
  width: calc(100vw + 5%);
  left: -5%;
}
}
@media (max-width : 769px){
.g_page_head_area::after{
  width: 108%;
  left: -4%;
}
}
.g_page_head_area .g_page_head_area_title{
  font-size: 4.0rem;
  margin: 0 auto;
  margin-top: -3.6rem!important;
  color: #fff;
}
.g_page_head_area_sub_title{
  margin-bottom: 1.6rem!important;
}
.g_page_head_area_sub_title span{
  letter-spacing: -0.02rem;
}
.g_page_head_area .g_page_head_area_text{
  margin: 0 auto 1.6rem;
font-size: 1.6rem;
}
.g_page_head_area_text span{
display: block;
}
.g_page_head_area_text a{
  color: #D6186C;
}
.g_page_head_area .g_page_head_area_caution{
font-size: 1.0rem;
}
.g_page_head_area i{
  margin: 0 0.4rem 0 0.2rem;
}
@media (max-width : 769px) {
.g_page_head_area{
height: 27.0rem;
margin-bottom: 12.0rem;
}
.g_page_head_area::after{
height: 23.0rem;
}
.g_page_head_area .g_page_head_area_title{
margin-top: -3.8rem!important;
font-size: 2.2rem;
}
.g_page_head_area .g_page_head_area_sub_title{
  margin-bottom: 1.2rem;
font-size: 1.2rem;
font-weight: 600;
}
.g_page_head_area .g_page_head_area_text{
max-width: 37.5rem;
padding: 0 1.6rem;
font-size: 1.2rem;
line-height: 1.8;
text-align: left;
}
.g_page_head_area_text span{
display: inline-block;
}
}
.voice_search{
  position: relative;
  max-width: 96.0rem!important;
  min-width: 60.0rem!important;
  height: 6.6rem;
  padding: 0.6rem 1.6rem;
  border: 0.1rem solid #fff;
  border-radius: 0.2rem;
}
.voice_search::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color:rgba(245,245,245,0.7);
  border-radius: 0.1rem;
  z-index: -1;
}
.voice_search h3{
  font-size: 1.6rem;
  margin: 2.4rem 0 0.8rem;
}
.voice_search ul{
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.6rem;
  width: 100%;
  margin: 0;
  font-size: 1.2rem;
}
@media (max-width : 769px){
.voice_search{
  position: absolute;
  bottom: -4.8rem;
  min-width: 100%!important;
  height: 6.2rem;
  margin-bottom: 1.4rem;
  padding: 0.8rem 1.4rem;
}
.g_page_head_area .g_page_head_area_text{
  margin: 0 auto 0;
}
}
.sort_area{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  bottom: -5.6rem;
  gap: 0.8rem 0.8rem!important;
}
.sort_area li{
  display: block;
  padding: 0.4rem 0.8rem!important;
  background-color: #e4e4e4;
  border: 0.1rem solid #aaa;
  border-radius: 0.2rem;
}
.sort_area li:hover{
  opacity: 0.8;
}
.sort_area li a:hover{
  text-decoration: none;
}
@media (max-width : 769px){
.sort_area{
  justify-content: flex-start;
  bottom: -7.2rem;
}
}
.wide ul.character,li ul.character{
  border: 0.1rem solid #eee;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.8rem 1.6rem;
  margin-top: 0;
}
.wide h2{
  margin: 0 0 0.4rem 1.2rem;
  font-size: 2.0rem!important;
}
.wide ul.character h3{
  font-size: 1.4rem;
}
.wide ul.character li,li ul.character li{
  width: calc(100% / 2 - 0.8rem * 2);
  margin: 0.4rem 0.4rem 0;
  padding: 0.4rem 0!important;
  border-radius: 0.2rem;
}
@media (max-width : 769px){
.wide ul.character li,li ul.character li{
  width: calc(100% / 2 - 0.8rem * 2);
}
}
.column_04{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.column_04 li{
  position: relative;
  margin: 0 var(--gutter_half) 2.4rem;
}
.column_04 li {
  width:calc(100% / 4 - var(--gutter_half) * 2);
}
.column_04 li.wide{
  width:calc(100% / 2 - var(--gutter_half) * 2);
}
.column_04 li.wide .links_area{
  width:calc(100% / 2 - var(--gutter_half) * 2);
  left: 52%;
}
.border_whi{
  border: 0.1rem solid #fff;
}
@media (max-width : 769px){
.column_04 li{
    margin: 0 auto 3.2rem;
}
.column_04 li{
  width:calc(100% / 2 - var(--gutter_half) * 2);
}
.column_04 li.wide{
  width:calc(100% / 1 - var(--gutter_half) * 2);
}
.column_04 li.wide .links_area{
  left: 52%;
}
}
@media (min-width: 1600px) {
.column_04{
    padding-right: 0!important;
}
.column_04 li{
  position: relative;
  width: calc(100% / 6 - 4.6rem);
  margin: 0 1.6rem 3.2rem;
}
.column_04 li::after{
  content: "";
  position: absolute;
  top: 0!important;
  width: calc(100% + 1.6rem)!important;
  height: calc(100% + 1.6rem)!important;
  background-color: #fff!important;
  border-right: 0.1rem solid #999;
  border-bottom: 0.1rem solid #eee;
z-index: -1;
}
.column_04 li.wide{
  width: calc(100% / 3 - 6.0rem);
}
.voice_banks{
  max-width: 192.0rem!important;
}
.voice_banks h2{
  text-align: center;
}
}
@media (max-width : 769px){
.voice_banks{
max-width: 100%!important;
}
}
.voice_banks h2{
  width: 100%;
  max-width: 123.2rem;
  font-size: 2.8rem;
}
.voice_banks h2 span{
  font-size: 1.4rem;
  font-weight: 400;
}
.voice_banks h2.sortpage_ttl{
  margin-bottom: 1.2rem;
}
figure.inset{
  position: relative;
    margin: 0;
    padding: 1.8rem 0 1.8rem 2.4rem;
    background-color: #e4e4e4;
    text-align: left;
}
figure.inset img{
  max-height: 18.6rem;
}
figure.ta_c{
    padding: 1.8rem 0;
  text-align: center!important;
}
@media (max-width : 769px){
figure.inset{
    padding: 1.2rem 2.6rem 1.2rem 1.0rem;
    text-align: left;
}
figure.inset img{
  max-height: 12.0rem;
}
figure.ta_c{
    padding: 1.2rem 0;
  text-align: center!important;
}
}
.voice_banks h3{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
  width: 100%;
  margin: 0.8rem 0 0;
  font-size: 2.0rem;
  font-weight: 500;
}
.wp_content li p.categories{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
  height: 2.4rem;
  margin-bottom: 0;
  font-size: 1.0rem;
  font-weight: 600;
}
.voice_banks .categories span{
  display: inline-block;
  margin: 0 0.4rem 0 0;
  padding: 0.3rem 0.4rem 0.2rem;
  background-color: rgba(255,255,255,0.9);
  border: 0.1rem solid #aaa;
  border-radius: 0.2rem;
  font-size: 1.0rem;
  font-weight: 500;
  color: #222;
  text-shadow: 0 0 0.1rem #bbb;
}
.wp_content li p.explanation_txt{
  height: 5.6rem;
  overflow-y: hidden;
  margin-bottom: 0.8rem!important;
    font-size: 1.2rem;
}
.voice_banks .js_sound_link{
  position: absolute;
  bottom: 0;
  right: 1.2rem;
  color: #222;
  text-shadow: 0 0 0.1rem #bbb;
}
@media (max-width : 769px){
.voice_banks h2{
  padding: 0 0.8rem;
  font-size: 2.6rem;
  text-align: left;
}
.sortpage_paragraph{
  padding: 0 0.8rem;
  text-align: left;
}
.voice_banks h2 span{
  display: block;
}
.voice_banks h3{
  font-size: 1.6rem;
  font-weight: 500;
}
.wp_content li p.explanation_txt{
  height: 9.2rem;
}
.voice_banks .js_sound_link{
  position: absolute;
  bottom: -0.3rem;
  right: -0.25rem;
  color: #222;
  text-shadow: 0 0 0.1rem #bbb;
}
}
@media (min-width : 1600px){
.voice_banks .js_sound_link{
  right: 0.2rem;
}
.sortpage_paragraph{
  text-align: center;
}
}
.links_area{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  min-width: 17.0rem;
  height: 5.6rem;
}
.link_detail{
  width: 50%;
}
.link_cart{
  width: 50%;
}
.link_detail a{
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  width: 96%;
  max-width: 13.6rem;
  height: 5.2rem;
  padding: 0 1.6rem;
  line-height: 5.2rem;
  background-color: #191D1F;
  border: 0.1rem solid #fff;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
.link_detail a:hover{
  opacity: 0.8;
}
.link_cart button{
  width: 100%;
  height: 5.2rem;
  padding: 1.0rem 1.4rem;
  line-height: 1.4;
  border: 0.1rem solid #fff;
}
.link_cart a{
      display: inline-block;
      background-color: #D6186C;
      width: 100%;
      height: 5.2rem;
      line-height: 5.2rem;
      padding: 0 1.2rem;
      text-align: center;
      border: 0.1rem solid #fff;
  font-size: 1.4rem;
      color: #fff;
    }
    .link_cart a:hover{
      text-decoration: none;
      opacity: 0.7;
    }
@media (max-width : 769px){
.link_detail{
  width: calc(50% - 0.3rem * 2);
  margin-left: 0!important;
}
.link_cart{
  width: calc(50% - 0.3rem * 2);
}
.link_detail a{
  white-space: normal;
  width: 100%;
  padding: 0.7rem 1.2rem;
  font-size: 1.3rem;
  line-height: 1.4;
      font-weight: 600;
  text-align: left;
}
.link_cart button{
  padding: 0.4em 1.2rem;
  font-size: 1.3rem;
      font-weight: 600;
  text-align: left;
}
.link_cart a{
    padding: 0.7rem 1.2rem;
      font-size: 1.3rem;
      line-height: 1.4;
      font-weight: 600;
      text-align: left;
  }
.link_cart a i.fa-cart-shopping{
  display: none;
}
}
/*購入ガイドリンク*/
.link_registration {
  display: none;
}
@media (max-width : 769px){
.link_registration {
    display: block;
    width: 100%;
    max-width: 46.0rem !important;
    min-width: 32.0rem !important;
    height: 7.2rem;
    line-height: 7.2rem;
    margin: 0 auto 6.0rem;
    background-color: #000;
    color: #fff;
    text-align: center;
}
}
/*レコメンドエリア*/
.swiper_06_01{
  position: relative;
  margin-bottom: 0;
  padding: 1.6rem 0 0.2rem;
}
.recommend h2{
  margin: 4.8rem 0 0.4rem!important;
  font-size: 2.6rem;
}
@media (min-width: 1600px) {
.recommend h2{
  text-align: center;
}
}
@media (max-width : 769px){
.recommend h2{
  margin: 0 0 0.4rem!important;
  padding: 0 0.8rem;
  font-size: 2.0rem;
}
}
.recommend h3{
  margin: 0.4rem 0!important;
  font-size: 1.3rem;
}
.recommend a:hover{
  opacity: 0.7;
}
h4.ttl{
  height: 4.2rem;
  margin: 0.8rem 0 0.2rem!important;
  font-size: 1.4rem;
  overflow: hidden;
}
li.swiper-slide{
  position: relative;
  padding: 1.2rem 1.6rem!important;
}
li.swiper-slide::after{
  content: "";
  position: absolute;
  top: 0!important;
  left: 0.8rem!important;
  right: 0;
  width:calc(100% - 1.6rem)!important;
  height: 100%!important;
  background-color: #eee!important;
  border: 0.1rem solid #ddd;
  border-radius: 0.1rem;
  z-index: -1;
}
li.swiper-slide img{
  width: 80%;
  height: auto;
  margin-left: 10%;
  border: 0.1rem solid #fff;
}
li.swiper-slide strong{
  font-size: 1.8rem;
}
li.swiper-slide .tax{
  margin-left: 0.4rem;
  font-size: 1.1rem;
}
/*右下固定広告*/
.advertisement{
  position: fixed;
  right: 0.8rem;
bottom: 0.8rem;
width: 10.0rem!important;
height: 10.0rem;
padding-top: 2.2rem;
  background-color: #000;
  border: 0.4rem solid #222;
  text-align: center;
  z-index: 999;
}
.advertisement:hover{
  opacity: 0.6;
}
.advertisement a{
  display: inline-block;
  text-decoration: none;
  width: 100%;
  font-weight: 400;
  color: #fff;
}
.advertisement a .fa-flag{
  display: block;
  margin: 0 auto 0.2rem;
  font-size: 2.2rem;
}
.advertisement a span{
  font-size: 1.2rem;
  letter-spacing: -0.03rem;
}
@media (max-width : 769px){
.advertisement {
  display: none;
}
}
/*cart behavior related*/
.g_cart_num{
  display: none!important;
} 
#cart-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100vw;
    height: 6.0rem;
    line-height: 6.0rem;
    padding: 0;
    background-color: #777;
    font-size: 1.6rem;
    text-align: center;
    color: #fff;
    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;
}
.g_button_action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.24s;
}
.g_button_action.is-loading {
  position: relative;
  width: 100%;
    background-color: #888 !important;
    cursor: not-allowed;
    pointer-events: none;
}
@media (max-width : 769px) {
.g_button_action.is-loading {
  width: 100%;
}
}
.g_button_action.is-loading::before {
    content: "";
    position: absolute;
    width: 1.4rem;
    height: 1.4rem;
    border: 0.2rem solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.96s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}