/*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;
}

.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: url("../../img/Gemini_Generated_Image_80mo4980mo4980mo.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{
  font-size: 2.6rem;
  text-align: left;
}
.sortpage_ttl{
  padding: 0 1.6rem;
  font-size: 2.0rem!important;
}
.sortpage_paragraph{
  padding: 0 1.6rem;
  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: block;
    width: 100%;
    max-width: 28.0rem !important;
    min-width: 24.0rem !important;
    height: 5.4rem;
    line-height: 5.4rem;
    margin: 4.6rem auto;
    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;
  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;
}

@media (max-width : 769px){
li.swiper-slide .tax{
  display: block;
}
}

/*右下固定広告*/
.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-bottom: 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); }
}

/*▼induction_pc*/
.induction_pc {display: none;}
@media (max-width : 769px){
.visually-hidden {display: none;}
.induction_pc {
display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 9.6rem;
  width: 90% !important;
  max-width: 48.0rem !important;
  min-width: 32.0rem !important;
  margin: 0 auto;
  padding: 0.8rem;
  background-color: rgba(255,255,255,1.0);
  border: 0.2rem solid #777;
  border-radius: 0.4rem;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 99;
}
.induction_close {
  cursor: pointer;
  user-select: none;
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 2.0rem;
  line-height: 1;
}
.induction_reopen {
  cursor: pointer;
  position: fixed;
  right: 1.8rem;
  bottom: 9.4rem;
  width: 5.0rem;
  height: 5.0rem;
  background: #fff;
  border: 0.2rem solid #444;
  border-radius: 50%;
  font-size: 2.3rem;
  text-align: center;
  transition: transform 0.12s ease, opacity 0.24s ease;
  z-index: 999;
}
.induction_reopen i{color: #666;}
#induction_toggle:not(:checked) ~ .induction_reopen {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}
#induction_toggle:checked ~ .induction_reopen {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
#induction_toggle:checked ~ .induction_pc {display: none;}

.induction_pc h3{
  font-size: 1.4rem;
  margin-bottom: 0.1rem;
}
.induction_pc p{
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 0;
}
.induction_pc a:hover{
  text-decoration: none;
}
.induction_pc ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0.8rem 0 0 0;
}
.induction_pc ul li{
  position: relative;
  width: calc(100% / 4 - 1.6rem);
  margin: 0 0.8rem;
  font-size: 1.0rem;
  line-height: 1.2;
  text-align: center;
}
.induction_pc ul i{
  display: block;
  font-size: 3.2rem;
  margin: 0 auto 0.4rem;
}
.induction_pc ul button.copy-text{
  position: absolute;
  top: 0.5rem;
  right: -3.8rem;
  height: 4.6rem;
  background-color: rgba(0,0,0,0);
}
.induction_pc ul button.copy-text::before {
    content: '';
}
.fa-line{color: #00B900;}
.fa-facebook-messenger{color: #44bec7;}
.fa-square-whatsapp{color: #075E54;}
.fa-envelope{color: #000080;}
.fa-copy{color: #111;}
}/*▲induction_pc*/

/*▼SALE VERSION*/
.advertisement_coupon {
  position: fixed;
  bottom: 0.6rem;
  left: 0;
  right: 0;
  width: 100% !important;
  max-width: 48.0rem !important;
  min-width: 36.0rem !important;
  margin: 0 auto;
  z-index: 999;
}
.banner {
  position: relative;
  padding: 0.4rem 0 1.2rem;
  text-align: center;
  line-height: 1.0;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(150deg, #333, #000);
  border: 0.3rem solid #ee1852;
  border-radius: 0.3rem;
  overflow: hidden;
  z-index: 99;
}
.coupon {
  width: 100%;
  max-width: 48.0rem;
  margin: 0 auto;
  padding: 1.4rem 0;
}
.banner .discount {
  display: block;
  margin: .5rem auto 1rem;
  font-size: 3.2rem;
  letter-spacing: -1px;
  color: #ee1852;
  text-shadow: 3px 3px 0 #222;
}
.banner .discount time{
  font-size: 2.0rem;
}
.banner p {
  margin: 0;
  font-size: 1.4rem;
}
.banner .coupon-text {
  font-size: 2.4rem;
  font-style: normal;
  color: #fff;
}
.banner .coupon-code {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.8rem 1.0rem 0.4rem 1.4rem;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: .1rem;
  background: #ee1852;
  color: #000;
  transform: skew(-15deg);
}
.banner .coupon-code span {
  display: inline-block;
  transform: skew(15deg);
}
@media (max-width : 769px) {
  .advertisement_coupon {
    bottom: 0.4rem;
    width: 90% !important;
    min-width: 32.0rem !important;
  }
  .banner {
    padding: 0.4rem 0 1.0rem;
  }
  .banner .discount {
    display: block;
    margin: 0.5rem auto;
    font-size: 2.6rem;
  }
  .banner .coupon-text {
    font-size: 1.6rem;
    font-style: normal;
  }
  .banner .coupon-code {
    padding: 0.4rem 1rem;
    font-size: 1.6rem;
  }
  .coupon {
    max-width: 48.0rem;
    margin: 0 auto;
    padding: 1.2rem 0;
  }
}

.sale2026sp_head_area{
  position: relative;
  width: 100%;
  height: 40.0rem;
  margin-bottom: 3.8rem;
  padding-top: 3.2rem;
  text-align: center;
  color: #fff;
}
.sale2026sp_head_area::after{
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 42.0rem;
background: url("/wp-content/uploads/2026/02/bg_wid_2026sp.jpg");
  background-size: cover;
  background-position: left;
  z-index: -2;
}
@media (max-width : 1232px){
.sale2026sp_head_area::after{
  width: calc(100vw + 5%);
  left: -5%;
}
}
.sale2026sp_head_area p.discount_detail{
  position: static;
  width: 100%;
  max-width: 71.0rem;
  margin-bottom: 0;
  text-align: center;
}
.headsup{
  margin: 0 auto!important;
  font-size: 1.2rem;
}

@media (max-width : 769px){
.sale2026sp_head_area{
  height: 32.0rem;
  margin-bottom: 4.8rem;
}
.sale2026sp_head_area::after{
  width: 108%;
  left: -4%;
  height: 34.0rem;
    background: url("/wp-content/uploads/2026/02/bg_mob_2026sp-1.jpg") no-repeat top center;
    background-size: cover;
}
.sale2026sp_head_area p.discount_detail{
  top: calc(50% - 6.0rem);
  right: 0;
  height: 20.0rem;
  max-width: 71.0rem;
  text-align: center;
}
}

.sale_sort_area{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 0.8rem!important;
  width: 100%;
  max-width: 128.0rem;
  margin-bottom: 3.6rem!important;

}
.sale_sort_area li{
  display: block;
  padding: 0.4rem 0.8rem!important;
  background-color: #e4e4e4;
  border: 0.1rem solid #aaa;
  border-radius: 0.2rem;
}
.sale_sort_area li:hover{
  opacity: 0.8;
}
.sale_sort_area li a:hover{
  text-decoration: none;
}
@media (max-width : 769px){
.sale_sort_area{
  justify-content: flex-start;
}
}

.sale_price{
  color: #D6186C;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 600;
}
.sale_price s{
  display: block;
  font-size: 1.2rem;
  color: #000;
}
.sale_price strong{
  font-size: 1.8rem;
  line-height: 1.0;
}
.sale_price strong.eng{
  display: block;
}
.sale_price span{
  font-size: 1.2rem;

}
@media (max-width : 769px){
.sale_price span{
  display: block;
}
}


p.discount_detail{
  position: absolute;
  top: 18.8rem;
  right: 12.0rem;
  width: 100%;
  max-width: 71.0rem;
  text-align: center;
}
.discount_detail .time{
  display: block;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
}
.discount_detail .ttl{
  display: block;
  font-size: 6.2rem;
  line-height: 1.2;
  font-weight: 600;
}
.discount_detail .ttl_sub{
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
}
.fc_blk{
  color: #000;
}
.fc_red{
  display: block;
  margin-bottom: 1.6rem;
  font-size: 4.2rem;
  color: #ee1852;
}
.fs_12{
  font-size: 1.2rem;
  font-weight: 600;
  color: #D6186C;
}
@media (max-width : 769px){
p.discount_detail{
  top: calc(50% - 6.0rem);
  right: 0;
  height: 14.0rem;
  max-width: 71.0rem;
  text-align: center;
}
.discount_detail .time{
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.discount_detail .ttl,
.discount_detail .fc_red{
  font-size: 3.2rem;
}
.discount_detail .ttl_sub{
  display: block;
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
.discount_detail .ttl_sub span{
  display: block;
}
.discount_detail .ttl .fc_blk{
  font-size: 4.0rem;
}
}
/*SALE VERSION▲▲▲*/
